@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

body {
  margin: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

input, textarea, select, button, .slick-slide, .slick-tarck, .slick-list {
  outline: none;
}

input, textarea {
  margin: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-size: 16px;
}

button {
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: block;
  font-size: inherit;
  color: inherit;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

*::before,
*::after {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  font-family: "Roboto", sans-serif;
}

html, body {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

:root {
  --primary: #03558C;
}

section {
  padding: 25px 0;
}

.titleSection {
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .titleSection {
    margin-bottom: 30px;
  }
}

.breadcrumbs {
  padding: 20px 0;
}
.breadcrumbs__inner {
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  gap: 8px;
}
.breadcrumbs__inner::-webkit-scrollbar {
  display: none;
}
.breadcrumbs__inner a {
  color: var(--primary);
}
@media (any-hover: hover) {
  .breadcrumbs__inner a:hover {
    text-decoration: underline;
  }
}

.slick-arrow {
  font-size: 0;
  border: none;
  display: block;
  width: 35px;
  aspect-ratio: 4/4;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  padding: 0;
  z-index: 50;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.slick-prev {
  left: -15px;
  background-image: url("../assets/images/icons/slick-prev.svg");
}

.slick-next {
  right: -15px;
  background-image: url("../assets/images/icons/slick-next.svg");
}

.header {
  background: var(--primary);
}
.header__top {
  background: #0f3870;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__top-inner {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  justify-content: space-between;
}
@media (min-width: 1680px) {
  .header__top-inner {
    /*padding-bottom: 140px;*/
  }
}
.header__logo {
  max-width: 170px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .header__logo {
    max-width: 150px;
  }
}
@media (max-width: 450px) {
  .header__logo {
    max-width: 140px;
  }
}
@media (max-width: 420px) {
  .header__logo {
    max-width: 120px;
  }
}
.header__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 1000px) {
  .header__title {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .header__title {
    font-size: 21px;
  }
}
@media (max-width: 500px) {
  .header__title {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .header__title {
    font-size: 14px;
  }
}
.header__menuBtn {
  display: none;
}
@media (max-width: 700px) {
  .header__menuBtn {
    flex-shrink: 0;
    display: block;
    width: 40px;
    aspect-ratio: 4/4;
    background-image: url("../assets/images/icons/menuBtn.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header__menu {
  padding: 12px 0;
  color: #fff;
}
@media (max-width: 700px) {
  .header__menu {
    display: none;
    position: absolute;
    z-index: 200;
    width: 100%;
    top: 285px;
    background: #fff;
    padding: 40px 20px;
    left: 0;
    color: #000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  }
.header {
    background: #0f3870;
}	
}
.header__menu .menu__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 700px) {
  .header__menu .menu__list {
    flex-direction: column;
  }
}
.header__menu .menu__list li {
  text-transform: uppercase;
  position: relative;
}
@media (any-hover: hover) {
  .header__menu .menu__list li a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: hover) {
  .header__menu .menu__list li:hover > ul {
    opacity: 1;
    pointer-events: auto;
  }
}
.header__menu .menu__list li > ul {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  max-width: 300px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 100;
  top: calc(100% + 12px);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #000;
  padding: 20px;
}
@media (max-width: 700px) {
  .header__menu .menu__list li > ul {
    position: static;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    margin-top: 15px;
    margin-left: 15px;
  }
}
.header__menu .menu__list li > ul::before {
  content: "";
  width: 100%;
  height: 100%;
  top: -18px;
  left: 0;
}
.header__menu .menu__list li > ul li + li {
  margin-top: 10px;
}

/* .header__menu .menu__list li > ul a{
	padding: 0 !important;
} */

.wrapperPageMain {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px 60px 60px;
}
@media (max-width: 1000px) {
  .wrapperPageMain {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 60px 0;
  }
}
.wrapperPageMain section > .container {
  padding: 0;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 1000px) {
  .wrapperPageMain section > .container {
    padding: 0 40px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .wrapperPageMain section > .container {
    padding: 0 20px;
  }
}
.wrapperPageMain__l {
  width: 65%;
}
@media (max-width: 1000px) {
  .wrapperPageMain__l {
    width: 100%;
  }
}
.wrapperPageMain__r {
  width: 35%;
}
@media (max-width: 1000px) {
  .wrapperPageMain__r {
    width: 100%;
  }
}
.wrapperPageMain__r .menu__list {
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1000px) {
  .wrapperPageMain__r .menu {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .wrapperPageMain__r .menu {
    padding: 0 20px;
  }
}
.wrapperPageMain__r .menu__list li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.wrapperPageMain__r .menu__list li {
  padding: 25px 15px;
  font-size: 22px;
}
@media (any-hover: hover) {
  .wrapperPageMain__r .menu__list li a:hover {
    text-decoration: underline;
  }
}

.promoSlider {
  padding-top: 0px;
}
.promoSlider__slide {
  position: relative;
}
.promoSlider__slide img {
  aspect-ratio: 16/8;
}
@media (max-width: 600px) {
  .promoSlider__slide img {
    aspect-ratio: 16/15;
  }
}
.promoSlider__slide-title {
  position: absolute;
  max-width: 90%;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 600px) {
  .promoSlider__slide-title {
    font-size: 21px;
  }
}

.news__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 1112px) {
  .news__items {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 500px) {
  .news__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.news__item {
  position: relative;
}
@media (any-hover: hover) {
  .news__item:hover .news__item-title {
    text-decoration: underline;
  }
}
.news__item img {
  aspect-ratio: 4/4;
  opacity: 0.3;
}
.news__item-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}
.news__item-date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 10px;
}
.news__item-title {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.4;
}

.logos__slider .slick-track {
  display: flex !important;
  align-items: center;
  margin: 0 -20px;
}
.logos__slider .slick-track img {
  margin: 0 20px;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 120px;
}

.newsMembers {
  padding-top: 50px;
}
.newsMembers__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.newsMembers__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
@media (any-hover: hover) {
  .newsMembers__item:hover .newsMembers__item-title {
    text-decoration: underline;
  }
}
.newsMembers__item-img {
  max-width: 320px;
  width: 100%;
  flex-shrink: 0;
}
.newsMembers__item-img img {
  /*aspect-ratio: 4/4;*/
  width:300px;
}
.newsMembers__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.newsMembers__item-date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 10px;	
}

.footer {
      background: #0f3870;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 50px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}
@media (max-width: 420px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__logo img {
  max-width: 170px;
  margin-bottom: 20px;
}
.footer__logo h4 {
  font-weight: 400;
  max-width: 300px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
.footer__contacts {
  max-width: 320px;
}
.footer__contacts-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 18px;
}
.footer__contacts-list li + li {
  margin-top: 20px;
}
.footer__contacts-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__contacts-list li svg {
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .footer__contacts-list li:hover a {
    text-decoration: underline;
  }
}
.footer__bottom {
  padding: 30px 0;
  color: #fff;
}

.category {
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .category {
    padding-bottom: 60px;
  }
}
.category__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 1280px) {
  .category__items {
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
}
@media (max-width: 800px) {
  .category__items {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 550px) {
  .category__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.category__paginate {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.wp-pagenavi > .pages, .current, .nextpostslink, .previouspostslink, .last, .page, .extend, .first{
	padding: 10px !important;
	border-radius: 4px;
}

.single {
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .single {
    padding-bottom: 60px;
  }
}
.single__date {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.6;
}
.single__img {
  max-width: 800px;
  height: 500px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .single__img {
    height: 450px;
  }
}
@media (max-width: 450px) {
  .single__img {
    height: 400px;
  }
}
.single__content {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.4;
}
.single__content ul {
  list-style: inside;
}
.single__content ul li + li {
  margin-top: 10px;
}
.single__content a {
  color: var(--primary);
}
@media (any-hover: hover) {
  .single__content a:hover {
    text-decoration: underline;
  }
}
.single__content .wp-block-file {
  font-size: 16px;
}
.single__slider {
  margin-top: 40px;
  max-width: 800px;
}
.single__slider .slick-list {
  margin: 0 -10px;
  padding-right: 60px !important;
}
.single__slider img {
  margin: 0 10px;
  height: 450px;
}

.vslab {
	position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 98;
}
.bvi-shortcode {
	background-color: #03558c!important;
}
.partners__left h2 {
    margin-top: 30px;
}


 .partners-list {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            /*padding: 20px;*/           
        }
        
        .partner-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .partner-item:last-child {
            border-bottom: none;
        }
        
        .partner-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .partner-name {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}
        
        .partner-name.english {
            font-style: italic;
            color: #555;
        }

.my_partners {
	margin-top:30px;
}

/* Общие стили формы */
.wpcf7 {
    font-family: 'Arial', sans-serif;
    max-width: 600px;   
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Стили полей ввода */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

/* Анимация при фокусе */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #4e9af1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 154, 241, 0.2);
}

/* Стиль кнопки */
.wpcf7 input[type="submit"] {
    background: #4e9af1;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #3a7bc8;
}

/* Стили для ошибок и успешной отправки */
.wpcf7 .wpcf7-not-valid-tip {
    color: #ff5a5f;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

.wpcf7 .wpcf7-response-output {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0 0;
    font-size: 14px;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: 1px solid #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
}

.wpcf7 .wpcf7-validation-errors {
    border: 1px solid #ff9800;
    background: #fff3e0;
    color: #e65100;
}

.single__content img {
	width:auto;
}
.social__logo {
    display: flex;
    gap: 8px;
}


						.social__logo a img:first-child {
					width:36px;
						}	
					
.social_footer {
	margin-top:20px;
}


.head_title p {
	margin-top:10px;
}
@media (max-width: 600px) {
.social-pc {
	display:none!important;
}
	.head_title p {
		display:none;
	}	
	.social-mob {
		display:flex!important;
		margin-bottom:20px;	
	justify-content: center;
	}
	.single__content img {
    width:100%;
}
	
	
}

	.logo_title	{
	 display: flex;
    gap: 20px;
    color: #fff;
    align-items: center;
    flex-direction: row;
					}
					.social_lang	{
	 display: flex;
    gap: 20px;
    color: #fff;
    align-items: center;
    flex-direction: row;
					}
					


.social-mob {	
	display:none;
}



.single__content p {
	margin: 0 0 1.5em 0;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}
.single__content img {
    max-width: 800px;
}
/* === Выравнивание === */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}


table.rekvizit{
	width: 100%;
	border-collapse:collapse;
	border-spacing:0;
	height: auto;
}
table.rekvizit,table.rekvizit td, table.rekvizit th {
	border: 1px solid #595959;
}
table.rekvizit td,table.iksweb th {
	padding: 3px;
	width: 30px;
	height: 35px;
}
table.rekvizit th {
	    background: #4e6982;
	color: #fff; 
	font-weight: normal;
}
.footer__texts {
	max-width:380px;
	line-height: 22px;
}
@media (max-width: 1280px) {
.header__menu .menu__list li a{ {
	font-size: 14px;
}
}
