@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/HelveticaNeueLight.otf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/HelveticaNeueRoman.otf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/HelveticaNeueMedium.otf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/HelveticaNeueBold.otf") format("truetype");
  font-weight: 700;
}
/* General styles
 ===================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue";
  font-weight: 400;
  overflow-x: hidden;
  color: #231f20;
  background-color: #003875;
}
body.overflow {
  overflow-y: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue";
}

::-webkit-scrollbar {
  width: 8px;
  scrollbar-width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #b1b1b1;
}

::-webkit-scrollbar-thumb {
  background-color: #d2232b;
}

a {
  text-decoration: none;
  color: #000;
}

ul,
li {
  list-style: none;
}

.blue-wrapper {
  padding: 50px;
}
.blue-wrapper.top {
  padding-top: 0;
}
.blue-wrapper.bottom {
  padding-bottom: 0;
}

.img {
  display: block;
  width: 100%;
  height: auto;
}

.btn:focus {
  outline: none;
}

.container {
  max-width: 1632px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.center {
  display: flex;
  justify-content: center;
}

.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
.text.white {
  color: #fff;
}

.btn {
  border: 1px solid #fff;
  background-color: #d2232b;
  color: #fff;
  transition: all 0.3s ease-in-out;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.btn--outlined {
  background-color: transparent;
}
.btn--outlined:hover {
  background-color: #fff;
  color: #d2232b;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #231f20;
}
.header .logo {
  flex-basis: 16%;
  margin: 30px 0 20px;
  padding-left: 34px;
}
.header .logo img {
  max-width: 180px;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
}

.header__nav {
  flex-basis: 84%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__top {
  padding-right: 30px;
  display: flex;
  justify-content: flex-end;
  border-left: 1px solid #231f20;
  min-height: 92px;
  margin-left: auto;
  max-width: 476px;
  width: 100%;
}
.header__top .main-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header__top .main-menu li {
  position: relative;
  margin-bottom: -37px;
  padding-bottom: 37px;
}
.header__top .main-menu li:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.header__top .main-menu .sub-menu {
  background-color: #fff;
  min-width: 318px;
  position: absolute;
  right: 50%;
  margin-top: 37px;
  z-index: 2000;
  transform: translateX(91%);
  opacity: 0;
  pointer-events: none;
}
.header__top .main-menu .sub-menu li {
  padding: 8px 0 12px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.header__top .main-menu .sub-menu li a {
  padding: 0 12px;
  margin-top: 5px;
}
.header__top .main-menu .sub-menu li:hover {
  background-color: #949599;
}
.header__top .main-menu .sub-menu li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #231f20;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__border {
  background-color: #231f20;
  min-height: 54px;
  width: 100%;
}

.mini-header {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  transition: all 0.3s ease-in;
  z-index: 2322;
}
.mini-header.active {
  left: 0;
  right: 0;
}
.mini-header .main-menu li {
  margin-bottom: 24px;
  text-align: center;
}
.mini-header .main-menu li a {
  color: #fff;
}
.mini-header .main-menu .sub-menu {
  margin: 20px 0 0;
}
.mini-header .main-menu .sub-menu::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
}
.mini-header .main-menu .sub-menu::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
}
.mini-header .main-menu .sub-menu li {
  margin-bottom: 16px;
}
.mini-header .main-menu .sub-menu li:last-child {
  margin-bottom: 0;
}
.mini-header .main-menu .sub-menu li a {
  font-size: 14px;
}
.mini-header .search_panel {
  gap: 0;
  background-color: #fff;
  padding: 5px;
  margin-left: 0;
}
.mini-header .search_panel input {
  border: none;
  max-width: unset;
  box-sizing: border-box;
  width: 100%;
}
.mini-header .search_panel input[type=submit] {
  max-width: 60px;
  box-sizing: border-box;
  min-height: 30px;
  background-color: #003875;
  color: #fff;
  font-family: inherit;
  font-weight: 300;
}

.mini-header__wrapper {
  width: 40%;
  background-color: #003875;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.mini-header__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2222;
}

.burger {
  display: none;
}

.search_panel {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}
.search_panel input {
  border: 1px solid #231f20;
  min-height: 30px;
  padding: 5px 10px;
  max-width: 140px;
}
.search_panel input:focus {
  outline: none;
}

.search__wrapper {
  min-height: 60vh;
  background-color: #fff;
  padding: 30px 16px;
}

.search__h1 {
  margin-bottom: 20px;
  padding-top: 20px;
}

.search__h1,
.search__numbers {
  text-align: center;
}

.search__results {
  margin: 20px auto 0 auto;
  max-width: 700px;
  width: 100%;
}

.search__row {
  margin-bottom: 20px;
}

.search__heading {
  margin-bottom: 10px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.search__post-types {
  display: flex;
  gap: 10px;
  align-self: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.search__post-type {
  padding: 5px;
  background-color: #d2232b;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
}

.mc4wp-response {
  max-width: 222px;
  margin: 20px auto 0 auto;
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
}

.footer {
  background-color: #d2232b;
  min-height: 122px;
}

.footer__wrapper {
  padding: 0 16px;
  display: flex;
}

.footer__row {
  padding-top: 30px;
  padding-right: 30px;
}

.footer__h5 {
  font-size: 20px;
  color: #fff;
}

.footer__text {
  color: #fff;
  font-weight: 300;
  margin-top: 7px;
}

.footer__social {
  display: flex;
}

.footer__item {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  min-height: 121px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__item img {
  transition: transform 0.2s ease-in-out;
}
.footer__item:nth-child(2) {
  border-left: none;
}
.footer__item:nth-child(3) {
  border-left: none;
}
.footer__item:hover img {
  transform: translateY(-3px);
}

.breadcrumb__wrapper {
  background-color: #fff;
  padding: 40px 0 30px 124px;
  margin: 0 50px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb__item {
  color: #b6b7ba;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item::after {
  content: "/";
  font-size: 16px;
  color: #b6b7ba;
}

.reply-form {
  border: 1px solid #b6b7ba;
  padding: 20px 30px 15px 15px;
}
.reply-form input[type=email],
.reply-form input[type=text] {
  min-height: 38px;
  background-color: #e2f4fd;
  border: 1px solid #949599;
  width: 100%;
  padding: 10px;
  font-family: inherit;
}
.reply-form input[type=email]:focus,
.reply-form input[type=text]:focus {
  outline: none;
}
.reply-form textarea {
  min-height: 70px;
  background-color: #e2f4fd;
  width: 100%;
  resize: none;
  padding: 10px;
  font-family: inherit;
}
.reply-form textarea:focus {
  outline: none;
}

.reply-form__h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reply-form__text {
  margin-bottom: 10px;
}
.reply-form__text span {
  color: #d2232b;
  font-size: 14px;
}

.reply-form__label {
  margin: 10px 0;
}
.reply-form__label span {
  color: #d2232b;
}

.reply-form__use {
  margin: 5px 0 10px;
  font-size: 12px;
}

.reply-form__btn input[type=submit] {
  max-width: 120px;
  width: 100%;
  font-size: 16px;
}

.comment-respond {
  border: 1px solid #b6b7ba;
  padding: 20px 30px 15px 15px;
}
.comment-respond input[type=email],
.comment-respond input[type=text] {
  min-height: 38px;
  background-color: #e2f4fd;
  border: 1px solid #949599;
  width: 100%;
  padding: 10px;
  font-family: inherit;
}
.comment-respond input[type=email]:focus,
.comment-respond input[type=text]:focus {
  outline: none;
}
.comment-respond textarea {
  min-height: 70px;
  background-color: #e2f4fd;
  width: 100%;
  resize: none;
  padding: 10px;
  font-family: inherit;
}
.comment-respond textarea:focus {
  outline: none;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent {
  display: flex;
  flex-direction: column;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-cookies-consent label {
  margin: 10px 0;
}
.comment-form-comment label .required,
.comment-form-author label .required,
.comment-form-email label .required,
.comment-form-url label .required,
.comment-form-cookies-consent label .required {
  color: #d2232b;
}

.comment-reply-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-submit input[type=submit] {
  border: 1px solid #fff;
  background-color: #d2232b;
  color: #fff;
  transition: all 0.3s ease-in-out;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  margin-top: 14px;
}

.comment-form-cookies-consent {
  display: none;
}

.required-field-message {
  font-size: 14px;
  color: #d2232b;
}
.required-field-message span {
  color: #d2232b;
}

.logged-in-as {
  margin-bottom: 10px;
}

#comments {
  margin-bottom: 10px;
}

.comment-author {
  margin-bottom: 10px;
}

.commentlist .reply a {
  border: 1px solid #fff;
  background-color: #d2232b;
  color: #fff;
  transition: all 0.3s ease-in-out;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  margin: 10px 0 16px;
}

.comment-awaiting-moderation {
  margin: 10px 0;
}

.comment-meta {
  margin: 5px 0;
}

.archive .latest-news {
  margin: 40px 0;
}

.page-template-news-archive .latest-news {
  margin: 40px 0;
}

/*===== Effect only Chrome on mac =====*/
.mac.chrome .yourClass {
  padding: 0;
}

/*===== Effect only Safari =====*/
_::-webkit-full-page-media,
_:future,
:root .btn {
  padding: 12px 10px 10px 10px;
}

_::-webkit-full-page-media,
_:future,
:root .search__post-type {
  padding: 8px 5px 5px 5px;
}

.hero__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.hero__left {
  flex-basis: 40%;
  background-color: #d2232b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__right {
  flex-basis: 60%;
}

.hero__item {
  min-height: 420px;
  max-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
  position: relative;
}
.hero__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(14, 13, 13) 0%, rgba(0, 0, 0, 0.5382528011) 32%, rgba(0, 0, 0, 0) 100%);
}

.hero__img {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 344px;
}

.hero__h4 {
  color: #fff;
  font-size: 32px;
}

.hero__text {
  color: #fff;
  margin: 30px 0 40px;
  line-height: 1.5;
  font-weight: 300;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  margin-bottom: 136px;
  max-width: 300px;
}

.hero__descr {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  font-weight: 300;
  margin-left: 37px;
  margin-top: 30px;
}

.hero__bottom {
  max-width: 360px;
}

.hero__subs {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-left: 62px;
  max-width: 288px;
}

.hero__newsletter {
  margin-left: 62px;
  border: 1px solid #fff;
  display: flex;
}
.hero__newsletter input[type=email] {
  min-height: 42px;
  padding: 5px 10px;
  background-color: transparent;
  color: #fff;
  width: 100%;
  border: none;
}
.hero__newsletter input[type=email]:focus {
  outline: none;
}
.hero__newsletter input[type=submit] {
  min-height: 42px;
  min-width: 80px;
  background-color: transparent;
  border: none;
  border-left: 1px solid #fff;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}

.latest-news {
  background-color: #fff;
  padding: 40px 50px 80px 50px;
  margin-bottom: 40px;
  position: relative;
}
.latest-news::before {
  content: "";
  height: 90%;
  width: 1px;
  background-color: #003875;
  position: absolute;
  top: 40px;
  left: 24px;
}
.latest-news::after {
  content: "";
  height: 90%;
  width: 1px;
  background-color: #003875;
  position: absolute;
  top: 40px;
  right: 24px;
}

.latest-news__heading {
  width: 100%;
  border-top: 1px solid #d2232b;
}

.latest-news__h3 {
  border: 1px solid #d2232b;
  border-top: none;
  padding: 14px 30px;
  font-size: 24px;
  color: #d2232b;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  margin: 0 auto;
}

.latest-news__wrapper {
  padding: 0 20px;
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 36px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.latest-news__item {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border: 2px solid #d2232b;
}

.latest-news__img {
  flex-basis: 44%;
}
.latest-news__img img {
  min-height: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-news__right {
  min-height: 300px;
  flex-basis: 56%;
  padding: 0 16px 30px 20px;
  display: flex;
  align-items: flex-end;
}

.latest-news__content {
  padding: 10px 0;
}

.latest-news__h4 {
  font-size: 20px;
  line-height: 1.3;
}

.latest-news__excerpt {
  margin: 16px 0 20px;
  line-height: 1.4;
}

.single-news.postid-12 .blue-wrapper {
  background-color: #003875;
  margin-top: 0;
}
.single-news.postid-12 .blue-wrapper.bottom {
  background-color: transparent;
}
.single-news.postid-12 .single-news-section + .blue-wrapper {
  margin-top: 40px;
}

.single-news-section {
  background-color: #fff;
  padding-left: 60px;
}

.single-news__wrapper {
  display: flex;
}

.news-main {
  width: 100%;
  padding: 0 60px 50px 67px;
}

.news-aside {
  max-width: 476px;
  width: 100%;
  border-left: 1px solid #231f20;
  padding-left: 36px;
}

.news-aside__h6 {
  color: #d2232b;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}

.news-aside__recent {
  margin-bottom: 20px;
  max-width: 388px;
}
.news-aside__recent:last-child {
  margin-bottom: 0;
}

.news-aside__heading {
  line-height: 1.4;
  font-size: 18px;
}
.news-aside__heading span {
  font-weight: 700;
}

.news-main__content h3 {
  font-size: 42px;
}
.news-main__content h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 14px 0;
}
.news-main__content img {
  width: 100%;
  display: block;
  height: auto;
  margin: 14px 0;
}
.news-main__content p {
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (max-width: 1400px) {
  .news-main__content h3 {
    font-size: 32px;
  }
  .news-main__content h5 {
    font-size: 16px;
  }
  .latest-news__img {
    flex-basis: 100%;
  }
  .latest-news__right {
    flex-basis: 100%;
  }
}
@media (max-width: 1200px) {
  .news-main__content h3 {
    font-size: 24px;
  }
  .single-news__wrapper {
    flex-wrap: wrap;
  }
  .news-main__content img {
    max-width: 600px;
  }
  .news-aside {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .news-aside__recent {
    max-width: unset;
  }
  .single-news {
    padding: 0;
  }
  .breadcrumb__wrapper {
    padding: 40px 0 30px 30px;
  }
  .news-main {
    padding: 0 30px 50px 30px;
  }
  .hero__h4 {
    font-size: 24px;
  }
  .hero__item {
    padding-left: 26px;
  }
  .hero__text {
    margin: 20px 0 30px;
  }
  .hero__left {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .latest-news__h4 {
    font-size: 16px;
  }
  .latest-news__img img {
    max-height: 280px;
    height: 100%;
  }
  .latest-news__wrapper {
    gap: 20px;
  }
  .latest-news__right {
    min-height: unset;
  }
  .hero__left {
    flex-basis: 100%;
    order: 2;
    padding: 30px 16px;
  }
  .hero__right {
    flex-basis: 100%;
    order: 1;
  }
  .header__border {
    display: none;
  }
  .header__top {
    min-height: 112px;
  }
  .hero__logo {
    margin-bottom: 60px;
  }
  .header .logo img {
    min-width: 120px;
  }
  .header__top .main-menu {
    gap: 24px;
    margin-left: 16px;
  }
  .blue-wrapper {
    padding: 30px;
  }
  .breadcrumb__wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .single-news-section {
    padding-left: 0;
  }
  .news-aside__heading {
    font-size: 16px;
  }
  .news-aside {
    padding: 0 16px;
    margin-top: 20px;
  }
  .news-main {
    padding: 0 16px;
  }
  .breadcrumb__wrapper {
    padding: 40px 16px 30px 16px;
  }
  .blue-wrapper {
    padding: 12px;
  }
  .latest-news__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .header__top .main-menu {
    display: none;
  }
  .header__top {
    border: none;
  }
  .header__top .search_panel {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header__wrapper {
    padding: 0 16px 0 0;
  }
  .breadcrumb__wrapper {
    margin: 0 12px;
  }
}
@media (max-width: 576px) {
  .latest-news {
    padding: 40px 16px 80px 16px;
  }
  .latest-news::before,
  .latest-news::after {
    display: none;
  }
  .mini-header__wrapper {
    width: 60%;
  }
  .news-main {
    padding: 0 16px;
  }
  .latest-news__h3 {
    font-size: 20px;
  }
  .latest-news__wrapper {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .hero__h4 {
    font-size: 20px;
  }
  .news-main__content h3 {
    font-size: 20px;
  }
  .news-main__content h5 {
    font-size: 14px;
  }
  .hero__subs {
    margin-left: 0;
    max-width: unset;
    text-align: center;
  }
  .hero__descr {
    margin-left: 0;
    text-align: center;
  }
  .footer__h5 {
    font-size: 16px;
  }
  .hero__newsletter {
    margin-left: 0;
  }
  .comment-respond {
    padding: 20px 15px;
  }
}
@media (max-width: 420px) {
  .breadcrumb__wrapper {
    margin: 0 5px;
  }
  .latest-news__img img {
    max-height: 250px;
    min-height: 250px;
  }
  .mini-header__wrapper {
    width: 75%;
  }
  .news-main__content h3 {
    font-size: 18px;
  }
  .hero__item {
    padding: 0 16px;
  }
  .hero__h4 {
    font-size: 16px;
  }
  .hero__text {
    font-size: 14px;
  }
  .blue-wrapper {
    padding: 5px;
  }
}/*# sourceMappingURL=main.css.map */