@charset "utf-8";

:root{
  --bg-color1: #F6F6F6;
  --accent-color1: #48B3C3;
  --accent-color2: #1F2D31;
  --accent-color3: #56D7EA;
  --accent-color1-hover: #00B8D9;
  --accent-color2-hover: #184C6F;
  --accent-font-color: #FFFFFF;
  --telegram-color: #37A3E0;
  --whatsapp-color: #51A61D;
  --max-color: #8A38F5;
}
/* border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent); */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("../fonts/inter-var-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("../fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: block;
  src: url(../fonts/inter-var-cyrillic-italic.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: block;
  src: url(../fonts/inter-var-latin-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body{
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-synthesis: none;
    font-weight: 300;
    font-style: normal;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}
h1,
.title-h1,
h2,
.title-h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 30px;
}

h2.light{
    text-transform: none;
    font-weight: normal;
}
h2.light span{
    font-weight: bold;
}
h2.star_before{
    position: relative;
    padding-left: 42px;
}
h2.star_before::before{
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
}

h3,
.title-h3 {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
}

h4,
.title-h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
}

h5,
.title-h5 {}

h6,
.title-h6 {}

@media(max-width: 767px) {
    h1,
    .title-h1,
    h2,
    .title-h2 {
        font-size: 32px;
    }
    h2.star_before::before{
        font-size: 42px;
    }
}
@media(max-width: 499px) {
    h1,
    .title-h1,
    h2,
    .title-h2 {
        font-size: 28px;
    }
    h2.star_before::before{
        font-size: 36px;
    }
    h3,
    .title-h3 {
        font-size: 24px;
    }

    h4,
    .title-h4 {
        font-size: 20px;
    }
}

a {
    color: var(--accent-color1);
    transition: all ease-out 300ms;
}

a:hover {
    color: var(--accent-color1-hover);
}

a.invert {
    color: var(--accent-color1-hover);
}

a.invert:hover {
    color: var(--accent-color1);
}

.theme-color,
.theme-color{
    color: var(--accent-color1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    border: none;
    font-weight: normal;
    font-size: 16px;
    color: var(--accent-font-color);
    background: var(--accent-color1);
    text-align: center;
    transition: all 300ms ease-out;
}

.btn:hover {
    filter: brightness(115%);
    color: var(--accent-font-color);
}

.btn:disabled{
    background: color-mix(in srgb, var(--accent-color1) 30%, transparent);;
    color: var(--accent-color1);
    cursor: default;
}
.btn.light-btn:hover{
    background: color-mix(in srgb, var(--accent-color1) 30%, transparent);;
    color: var(--accent-color1);
}

.section-more-wrapper .btn{
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    border-radius: 5px;
    color: var(--accent-color1);
    font-weight: bold;
    height: 66px;
    width: auto !important;
    display: inline-flex;
    text-transform: uppercase;
}
.section-more-wrapper .btn:hover{
    background: var(--accent-color1);
    border-color: var(--accent-color1);
    color: var(--accent-font-color);
}

.btn-min{
    height: 56px;
}
@media(min-width: 992px){
    .section-more-wrapper .btn.big{
        height: 72px;
        font-size: 20px;
    }
}

/* Header */
.header{
    color: #fff;
}
.header-top{
    background: linear-gradient(
    90deg,
    #1F2D31 0%,
    #213338 50%,
    #29393F 75%,
    #182E34 100%
    );
    position: relative;
}
.header-top-inner{
    min-height: 46px;
    position: relative;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-top__contacts-right{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.soc-buttons{
    display: flex;
    align-items: center;
}
.soc-buttons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    border-radius: 50%;
    background: #FFFFFF38;
    padding: 7px;
}
.soc-buttons a + a{
    margin-left: 15px;
}
.soc-buttons a:hover{
    background: var(--accent-color1-hover);
    transform: scale(1.2);
}
.soc-buttons a.telegram-btn:hover{
    background: var(--telegram-color);
}
.soc-buttons a.whatsapp-btn:hover{
    background: var(--whatsapp-color);
}
.soc-buttons a.max-btn:hover{
    background: var(--max-color);
}
.header-top__socials + .header-top__phone{
    margin-left: 24px;
}
.header-top__phone{
    font-size: 17px;
    font-weight: bold;
    color: #fff;
}
.header-bottom{
    background: linear-gradient(
    90deg,
    #244954 0%,
    #2A5460 25%,
    #3D6976 40%,
    #356674 60%,
    #477884 75%,
    #244954 100%
    );
    position: relative;
}
.header-bottom-inner{
    min-height: 90px;
    padding: 8px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    width: 130px;
}
.header-bottom-right{
    width: 120px;
}
.language-block{
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    height: 36px;
    position: relative;
    overflow: hidden;
}
.language-block .switcher{
    height: 100%;
    width: 64px;
    border: 1px solid #fff;
    border-radius: 600px;
    margin: 0 10px;
    position: relative;
}
.language-block .switcher a{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 600px;
}
.language-block .switcher a::after{
    content:"";
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--accent-color1);
    position: absolute;
    top: calc(50% - 14px);
    left: calc(100% - 30px);
    transition: all ease-out 300ms;
}
.language-block .switcher a:hover::after,
.language-block > a.en:hover + .switcher a::after{
    left: 2px;
}

.language-block .switcher a.ru::after{
    left: 2px;
}
.language-block .switcher a.ru:hover::after{
    left: calc(100% - 30px);
}

.language-block.is-en .switcher a::before{
    content: "";
    width: 20px;
    height: 12px;
    position: absolute;
    left: calc(100% + 10px);
    top: calc(50% - 6px);
    z-index: 2;
}
.language-block > a{
    color: #fff;
    opacity: .4;
}
.language-block > a.active{
    opacity: 1;
}

.top-menu-overlay,
.top-menu-wrapper-title,
.top-menu-wrapper-close,
.top-menu .dropdown-button,
.swipe-area,
.menu-button,
.top-menu-content-mobile{
    display: none;
}
.top-panel-fixed-push{
    display: none;
}
@media(min-width: 992px){
    .top-panel-fixed.fixed{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    /*.top-panel-fixed.fixed + .top-panel-fixed-push{
        display: block;
        height: 90px;
    }*/
    .header-top::after,
    .header-bottom::after{
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.05;
      pointer-events: none;
      z-index: 0;
      background: url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg'>\
      <filter id='noise'>\
      <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/>\
      </filter>\
      <rect width='100%' height='100%' filter='url(%23noise)'/>\
      </svg>");
    }
    .top-menu-wrapper{
        padding: 0 30px;
        width: calc(100% - 250px);
    }
    .top-menu{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .top-menu.is-calculating{
        opacity: 0;
    }
    .top-menu.is-ready{
        opacity: 1;
    }
    .top-menu > ul {
        display: flex;
    }
    .top-menu li{
        position: relative;
        line-height: 1.2;
    }
    .top-menu a{
        color: #fff;
    }
    .top-menu a[onclick="return false;"]{
        cursor: default;
    }
    .top-menu li.active > a,
    .top-menu a:hover{
        color: var(--accent-color1);
    }
    .top-menu > ul > li > a {
        font-size: 14px;
        margin: 0 15px;
        white-space: nowrap;
    }
    .top-menu li.down > a:after {
        content: "";
        display: inline-block;
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        vertical-align: middle;
        margin: -5px 0 0 8px;
        transition: all ease-out 300ms;
    }
    .top-menu ul ul li.down > a{
        position: relative;
        padding-right: 25px;
        width: 100%;
    }
    .top-menu ul ul li.down > a:after {
        transform: rotate(-45deg);
        position: absolute;
        right: 12px;
        top: 18px;
    }
    .top-menu li.down.active > a:after,
    .top-menu li.down > a:hover:after{
        border-color: var(--accent-color1);
    }
    .top-menu ul ul{
        display: none !important;
        position: absolute;
        top: calc(100% + 37px);
        left: 20px;
        width: 320px;
        z-index: 300;
        background: var(--accent-color2);
        padding: 15px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    .top-menu ul ul:before{
        content: "";
        height: 37px;
        position: absolute;
        left: 0;
        right: 0;
        top: -37px;
    }
    .top-menu li:hover > ul{
        display: block !important;
    }
    .top-menu ul ul li + li{
        margin-top: 5px;
    }
    .top-menu ul ul a{
        color: #fff;
        display: inline-block;
        padding: 7px 0;
        font-size: 15px;
    }
    .top-menu ul ul ul{
        top: 0;
        left: 100%;
    }

    .top-menu-more-list {
        display: block;
        flex: 0 0 40px;
        width: 40px;
        margin-left: 10px;
    }
    .top-menu .top-menu-more-list:not(.active){
        opacity: 0;
        pointer-events: none;
    }
    .top-menu-more-list > li > ul{
        left: auto;
        right: 0;
    }
    .top-menu-more-list > li:first-of-type {
        width: 40px;
        height: 100%;
    }
    .top-menu-more-list > li > span {
        display: block;
        width: 40px;
        height: 100%;
        cursor: pointer;
        background: url(../images/burger.svg) 50% 50% no-repeat;
    }
}

@media(min-width: 1100px){
    .top-menu > ul > li > a {
        font-size: 15px;
        margin: 0 20px;
    }
    .header-top__phone{
        font-size: 18px;
    }
    .header-top__socials + .header-top__phone{
        margin-left: 28px;
    }
    .soc-buttons a + a{
        margin-left: 18px;
    }
}

@media(max-width: 991px){
    .header-top{
        display: none;
    }
    .header-bottom{
        /*position: fixed;*/
        position: absolute;
        z-index: 500;
        top: 20px;
        left: 15px;
        right: 15px;
        background: transparent;
    }
    .header-bottom::after{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 5px;
        background: rgba(255,255,255,.1);
        backdrop-filter: blur(30px);
    }
    .header-bottom-inner{
        min-height: 70px;
        position: relative;
        z-index: 10;
    }
    .header-bottom-right {
        width: auto;
        flex: 1 0 auto;
        justify-content: flex-end;
        display: flex;
        align-items: center;
        padding-left: 30px;
    }
    .swipe-area {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 15px;
        left: -15px;
    }
    .top-menu-wrapper{
        position: fixed;
        top: 0;
        right: -370px;
        background: url(../images/mobile-menu-bg.png) 50% / cover no-repeat;
        height: 100%;
        width: 370px;
        max-width: 100%;
        z-index: 1000;
        transition: right 200ms ease-out;
        padding: 90px 50px 50px;
    }
    .top-menu-inner{
        height: 100%;
        overflow-y: scroll;
    }
    .top-menu-wrapper.open {
        right: 0;
    }
    .top-menu-overlay{
        position: fixed;
        z-index: 900;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.3);
        backdrop-filter: blur(10px);
    }
    .top-menu-wrapper.open + .top-menu-overlay{
        display: block;
    }
    .top-menu-wrapper-title{
        display: block;
        font-size: 36px;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    .top-menu-wrapper-close{
        display: block;
        position: absolute;
        top: 40px;
        right: 30px;
    }
    .top-menu li{
        position: relative;
    }
    .top-menu a,
    .top-menu a:hover{
        color: #fff;
    }
    .top-menu .active > a,
    .top-menu .active > a:hover{
        color: var(--accent-color1);
    }
    .top-menu > ul > li{
        margin-bottom: 30px;
    }
    .top-menu > ul > li.down > a{
        padding-right: 30px;
    }
    .top-menu .dropdown-button{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 25px;
        width: 30px;
        z-index: 10;
        transition: transform .25s ease;
    }
    .top-menu .dropdown-button::before {
        content: "";
        display: block;
        position: absolute;
        width: 10px;
        height: 10px;
        top: 40%;
        left: 50%;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .top-menu a[onclick="return false;"] + .dropdown-button{
        width: 100%;
    }
    .top-menu a[onclick="return false;"] + .dropdown-button::before{
        left: calc(100% - 15px);
    }
    .top-menu .dropdown-button.active{
        transform: scaleY(-1);
    }
    .top-menu ul ul{
        display: none;
        padding-left: 20px;
        padding-top: 30px;
    }
    .top-menu ul ul li{
        margin-bottom: 15px;
    }

    .menu-button{
        display: block;
        width: 30px;
        height: 20px;
        cursor: pointer;
        position: relative;
        transition: all 200ms ease-out;
        margin-left: 25px;
    }
    .icon-menu-burger{
        height: 2px;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        /*transition: transform 0.2s ease 0s;*/
    }
    .icon-menu-burger__line{
        background: var(--accent-color1);
        height: 100%;
        width: 80%;
        position: absolute;
        top: 0;
        left: 10%;
        /*transition: transform 0.2s linear 0.2s;*/
    }
    .icon-menu-burger:before,
    .icon-menu-burger:after{
        background: var(--accent-color1);
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
    }
    
    .icon-menu-burger:before{
        top: -7px;
        /*transition: top 0.2s linear 0.4s;*/
    }
    .icon-menu-burger:after{
        bottom: -7px;
        width: 60%;
        left: 20%;
        /*transition: bottom 0.2s linear 0.4s;*/
    }
    .menu-button.active .icon-menu-burger{
        transform: rotate(45deg);
        /*transition: transform 0.2s linear 0.4s;*/
    }
    .menu-button.active .icon-menu-burger__line{
        transform: rotate(90deg);
    }
    .menu-button.active .icon-menu-burger:before{
        /*transition: top 0.2s linear;*/
        top: 0;
    }
    .menu-button.active .icon-menu-burger:after{
        /*transition: bottom 0.2s linear;*/
        bottom: 0;
    }

    .top-menu-content-mobile{
        padding-top: 30px;
        display: block;
    }
    .top-menu-content-mobile .item + .item{
        margin-top: 15px;
    }
}

@media(max-width: 499px){
    .top-menu-wrapper{
        right: -100%;
        width: 100%;
    }
}

@media(max-width: 399px){
    .header-bottom .container{
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-logo{
        width: 100px;
    }
    .header-bottom-right{
        padding-left: 20px;
    }
    .menu-button{
        width: 26px;
        margin-left: 20px;
    }
    .language-block{
        width: 100px;
        font-size: 12px;
        height: 26px;
    }
    .language-block .switcher{
        width: 54px;
        margin: 0 6px;
    }
    .language-block .switcher a::after {
        height: 22px;
        width: 22px;
        top: calc(50% - 11px);
        left: calc(100% - 24px);
    }
    .language-block .switcher a.ru:hover::after {
        left: calc(100% - 24px);
    }
    .top-menu-wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* /. Header */

/* hero section */
.hero-section{
    min-height: 530px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.hero-section.full-height{
    min-height: calc(100vh - 135px);
}
.hero-section-media{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-section-media picture{
    width: 100%;
    height: 100%;
}
.hero-section-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin:center;
    transition:transform .1s linear;
    will-change:transform;
}
.hero-section-media::after{
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: #000000B2;
}
.hero-section-media::before {
    content: "";
    pointer-events: none;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/noise.gif);
    opacity: 0.1;
}
.hero-base{
    min-height: 1px;
}
.hero-base .hero-section-media::after{
    display: none;
}
.hero-base .hero-section-media::before{
    opacity: 0.01;
}
.hero-base .hero-section-content {
    padding: 55px 0;
}
.hero-base .hero-section-media{
    background: url(../images/mobile-menu-bg.png) 50% / cover no-repeat;
}

@media(max-width: 991px){
    .hero-base .hero-section-content{
        background: #fff;
        color: #333;
        padding-bottom: 0;
    }
    .hero-base .hero-section-content h1{
        margin-bottom: 0;
    }
}
@media(min-width: 992px){
    .hero-base .hero-section-media{
        background: #fff;
    }
    .hero-base .hero-section-media::before{
        display: none;
    }
    .hero-base .hero-section-content {
        color: #333;
    }
    .hero-base .hero-section-breadcrumbs{
        color: #333;
    }
    .hero-base .hero-section-breadcrumbs a:hover{
        color: var(--accent-color1-hover);
    }
    .hero-base .breadcrumb > li > a:after {
        background-image: url(../images/breadcrumb-arrow-black.svg);
    }
    .hero-base + .section{
        padding-top: 0;
    }
}


.hero-section.content-bottom .hero-section-media::after{
    background: linear-gradient(
        0deg,
        rgb(0 0 0 / 70%) 20%,
        rgba(26, 30, 33, 0.2) 80%
    );
    backdrop-filter: blur(5px);
    mask-image: linear-gradient(
        0deg,
        rgba(0,0,0,2) 20%,
        rgba(0,0,0,0) 80%
    );
}
.hero-section.content-bottom .hero-section-media::before{
    display: none;
}
.hero-section-content{
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    padding: 75px 0;
    flex: 1 0 auto;
}
.hero-section.content-bottom .hero-section-content{
    align-items: flex-end;
}
.hero-section-content-row,
.hero-section-content-row2,
.hero-section-content-row3{
    display: flex;
    flex-wrap: wrap;
}
.hero-section-content-row .col1{
    flex: 1 0 180px;
    padding-right: 40px;
}
.hero-section-content-row .col2{
    width: 180px;
}
.hero-section-content-row2 .col1{
    flex: 1 0 400px;
    padding-right: 40px;
}
.hero-section-content-row2 .col2{
    width: 400px;
    max-width: 100%;
}
.star-list li,
.hero-section-content-row2 li{
    font-size: 18px;
    position: relative;
    padding-left: 27px;
}
.star-list li + li,
.hero-section-content-row2 li + li{
    margin-top: 20px;
}
.star-list li::before,
.hero-section-content-row2 li::before{
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
}
.hero-section .hero-section-content-row h1{
    font-size: 48px;
}
.hero-feedback-btn{
    width: 180px;
    height: 180px;
    padding: 20px;
    display: block;
    border-radius: 50%;
    border: 1px solid var(--accent-color1);
    color: var(--accent-font-color);
    font-size: 18px;
    line-height: 1.3;
}
.hero-feedback-btn > span{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color1);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: 3s radial-pulse 1s infinite;
    transition: all ease-out 300ms;
}
.hero-feedback-btn:hover{
    color: var(--accent-font-color);
}
@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color1) 50%, transparent);
    }

    50% {
        box-shadow: 0 0 0 40px color-mix(in srgb, var(--accent-color1) 0%, transparent);
    }

    100% {
        box-shadow: 0 0 0 40px color-mix(in srgb, var(--accent-color1) 0%, transparent);
    }
}
.hero-feedback-btn:hover{
    transform: scale(1.1);
    filter: brightness(115%);
    padding: 15px;
}

.hero-tags{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hero-tag{
    margin-right: 8px;
    margin-bottom: 8px;
    height: 44px;
    padding: 7px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border-radius: 5px;
    font-size: 18px;
    line-height: 1.2;
    cursor: default;
}
.hero-tag .item-icon{
    margin-right: 8px;
}

.hero-section-breadcrumbs{
    position: relative;
    z-index: 10;
    color: #fff;
    margin-top: 30px;
    font-size: 13px;
}

.hero-section-content-row3{
    width: 360px;
    max-width: 100%;
    font-size: 14px;
}
.hero-section-content-row3 .title-h1{
    text-transform: none;
}

.hero-section-content .container + .container{
    margin-top: 50px;
}

/* Breadcrumbs */
.breadcrumb > li {
    display: inline;
    white-space: nowrap;
}
.breadcrumb > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.breadcrumb > li > a:after {
    content: '';
    display: inline-block;
    background: url(../images/breadcrumb-arrow.svg) 0 0 no-repeat;
    margin-left: 10px;
    margin-right: 5px;
    width: 4px;
    height: 7px;
}
.breadcrumb > li > a:hover{
    color: #fff;
}
.breadcrumb span,
.breadcrumb a{
    display: inline-block;
}
.breadcrumb span:first-letter,
.breadcrumb a:first-letter{
    text-transform: capitalize;
}
@media(max-width: 991px){
    .breadcrumb{
        display: flex;
        overflow: auto;
        margin-bottom: 30px;
    }
    .breadcrumb > li > a:after {
        margin-right: 10px;
    }
}
/* /. Breadcrumbs */

@media(max-width: 1099px){
    .hero-section-content-row .col1{
        flex: 1 0 160px;
    }
    .hero-section-content-row .col2{
        width: 160px;
    }
    .hero-section .hero-section-content-row h1{
        font-size: 36px;
    }
    .hero-tag {
        height: 40px;
        padding: 5px 12px;
        font-size: 16px;
    }
    .hero-feedback-btn{
        width: 160px;
        height: 160px;
        padding: 15px;
        font-size: 16px;
    }
}
@media(max-width: 991px){
    .hero-section{
        padding-top: 90px;
    }
    .hero-section.full-height{
        min-height: 100vh;
    }
    .hero-section-content-row{
        align-items: flex-end;
    }
    .hero-section .hero-section-content-row h1 {
        font-size: 32px;
    }
    .hero-section-content-row .col1 {
        flex: 1 0 130px;
    }
    .hero-section-content-row .col2 {
        width: 130px;
    }
    .hero-feedback-btn {
        width: 130px;
        height: 130px;
        padding: 10px;
        font-size: 14px;
    }
    .hero-tag{
        font-size: 12px;
    }
}
@media(max-width: 767px){
    .hero-section.content-bottom .hero-section-media::after{
        background: #000000B2;
        mask-image: none;
        backdrop-filter: blur(0);
    }
    .hero-section.content-bottom .hero-section-media::before {
        display: block;
        content: "";
        pointer-events: none;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: url(../images/noise.gif);
        opacity: 0.1;
    }
    .hero-section-content-row2 .col1{
        width: 100%;
        padding-right: 0;
        flex: 1 0 auto;
    }
}
@media(max-width: 599px){
    .hero-section-content-row .col1{
        flex: 0 0 100%;
        padding-right: 0;
    }
    .hero-section-content-row .col2{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 30px;
    }
}
@media(max-width: 399px){
    .hero-section .hero-section-content-row h1 {
        font-size: 8vw;
    }
}
/* /. hero section */

/* footer */
.footer {
    background: linear-gradient(90deg, #244954 0%, #2A5460 25%, #3D6976 40%, #356674 60%, #477884 75%, #244954 100%);
    position: relative;
    padding: 80px 0;
    color: #fff;
}
.footer::after{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    background: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg'>\
    <filter id='noise'>\
    <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/>\
    </filter>\
    <rect width='100%' height='100%' filter='url(%23noise)'/>\
    </svg>");
}
.footer-top{
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 30px;
}
.footer-bottom{
    padding-top: 30px;
}

.footer-top-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-top-row .col1{
    width: 460px;
    padding-right: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-top-row .col2{
    width: calc(100% - 460px);
}
.footer-logo{
    width: 130px;
}
.footer-address{
    width: calc(100% - 130px);
    padding-left: 40px;
    font-size: 12px;
    line-height: 1.4;
}
.footer-contacts{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.footer-contacts .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-contacts .item + .item{
    margin-left: 40px;
}
.footer-contacts .item-icon{
    width: 22px;
}
.footer-contacts .item-value{
    width: calc(100% - 22px);
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
}
.footer-bottom-row{
    display: flex;
    flex-wrap: wrap;
}
.footer-bottom-row .col2{
    width: 130px;
}
.footer-bottom-row .col1{
    width: calc(100% - 130px);
    padding-right: 40px;
}
.footer-nav{
    padding-top: 5px;
}
.footer-nav > ul{
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
}
.footer-nav > ul > li:not(:last-of-type){
    margin-right: 50px;
    margin-bottom: 10px;
}
.footer-nav a{
    color: #fff;
}
.footer-nav a:hover{
    color: var(--accent-color1);
}
.footer .soc-buttons{
    justify-content: flex-end;
}
.footer-last-row{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.important_links{
    padding-right: 30px;
    margin-top: 20px;
}
.important_links a{
    display: inline-block;
    margin: 0 15px 10px 0;
    color: #fff;
    text-decoration: underline;
}
.important_links a:hover{
    color: #fff;
    text-decoration: none;
}
.copyright{
    margin-top: 20px;
    margin-bottom: 8px;
}
@media(max-width: 1199px){
    .footer{
        padding: 50px 0;
    }
    .footer-contacts{
        justify-content: flex-start;
    }
    .footer-contacts .item + .item{
        margin-left: 0;
        margin-right: 0;
    }
    .footer-contacts .item{
        margin-right: 40px;
        padding: 5px 0;
    }
    .footer-contacts .item-value{
        font-weight: 600;
        font-size: 16px;
    }
}
@media(max-width: 899px){
    .footer-top-row{
        display: block;
    }
    .footer-top-row .col1{
        width: 100%;
        padding-right: 0;
    }
    .footer-top-row .col2{
        width: 100%;
        margin-top: 20px;
    }
    .footer-nav > ul{
        display: block;
    }
    .footer-bottom-row{
        align-items: flex-end;
    }
}
@media(max-width: 767px){
    .footer-address{
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}
@media(max-width: 399px){
    .footer .soc-buttons{
        justify-content: flex-start;
    }
    .footer-bottom-row .col1{
        width: 100%;
        padding-right: 0;
    }
    .footer-bottom-row .col2{
        width: 100%;
        margin-top: 30px;
    }
}
/* /. footer */

/* services */
.services{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.services .col{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    width: 33.3333%;
}
.services .item{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    border-radius: 5px;
    color: #000;
    min-height: 190px;
    position: relative;
    background: #fff;
    transition: all ease-out 300ms;
}
.services .item-content{
    width: 65%;
    font-size: 14px;
    line-height: 1.3;
    padding: 47px 25px 40px;
}
.services .item-img{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
}
.services .item-title{
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 14px;
    line-height: 1.2;
}
.services .item-arrow{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: color-mix(in srgb, var(--accent-color1) 5%, transparent);
    transition: all ease-out 300ms;
}
.services .item:hover,
.services .item.accent-item{
    background: var(--accent-color1);
    border-color: var(--accent-color1);
    color: #fff;
}
.services .item:hover .item-arrow{
    background: color-mix(in srgb, var(--accent-font-color) 50%, transparent);
    transform: rotate(45deg);
}
@media(max-width: 1099px){
    .services .col{
        width: 50%;
    }
}
@media(max-width: 768px){
    .services .item-content{
        font-size: 13px;
        padding: 40px 20px 30px;
    }
    .services .item-title{
        font-size: 18px;
        margin-bottom: 12px;
    }
    .services .item-arrow{
        width: 50px;
        height: 50px;
    }
}
@media(max-width: 629px){
    .services .col{
        width: 100%;
    }
}
@media(max-width: 419px){
    .services .item-content{
        font-size: 12px;
        padding: 30px 30px 30px 15px;
    }
    .services .item-title{
        font-size: 17px;
    }
}
/* /. services */

/* application */
.application-section-columns{
    display: flex;
    flex-wrap: wrap;
}
.application-section-columns .col{
    width: 50%;
}
.application-section-columns .col1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    border-right: none;
    border-radius: 5px 0 0 5px;
}
.application-section-main{
    padding: 70px 140px;
}
.application-section-main h2 + p{
    margin: -10px 0 30px;
    font-size: 18px;
    line-height: 1.5;
}
.application-section-img{
    height: 100%;
    overflow: hidden;
    border-radius: 0 5px 5px 0;
    background-color: color-mix(in srgb, var(--accent-color1) 5%, transparent);
}
.application-section-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity:0;
    transition:opacity .6s ease;
}
.application-section-img img.loaded{
    opacity:1;
}
@media(max-width: 1359px){
    .application-section-main{
        padding: 70px;
    }
}
@media(max-width: 991px){
    .application-section-columns .col1{
        width: 55%;
    }
    .application-section-columns .col2{
        width: 45%;
    }
    .application-section-main{
        padding: 50px;
    }
    .application-section-main h2 + p{
        font-size: 16px;
    }
}
@media(max-width: 699px){
    .application-section-columns .col1{
        width: 100%;
        border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
        order: 2;
    }
    .application-section-columns .col2{
        width: 100%;
        order: 1;
        height: 50vh;
    }
    .application-section-main{
        padding: 60px 40px;
    }
    .application-section-img{
        border-radius: 5px 5px 0 0;
    }
}
@media(max-width: 399px){
    .application-section-columns .col2{
        height: 40vh;
    }
    .application-section-main{
        padding: 50px 30px;
    }
    .application-section-main h2 + p{
        font-size: 14px;
    }
}
/* /. application */

.more{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.more .more-text{
    max-width: calc(100% - 28px);
    padding-right: 10px;
}
.more .more-arrow{
    width: 18px;
    transition: all ease-out 300ms;
}
.more:hover .more-arrow{
    transform: translateX(10px);
}

.swiper{
    visibility: hidden;
}
.swiper.swiper-initialized{
    visibility: visible;
}
.skew-slider{
    padding-left: max(10px, calc((100vw - 1330px) / 2 + 10px));
}
.swiper-scrollbar-horizontal{
    margin-top: 35px;
    height: 3px;
    background: color-mix(in srgb, var(--accent-color1) 30%, transparent);;
}
.swiper-scrollbar-drag{
    background: var(--accent-color1);
}
.skew-slider .swiper-scrollbar-horizontal{
    margin-right: 15px;
}
@media(max-width: 1359px){
    .skew-slider {
        padding-left: 15px;
    }
}

/* news */

.news{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.news .col{
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.news-carousel .swiper-slide{
    height: auto;
}
.news-carousel .item,
.news .item{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 10%, transparent);
    border-radius: 5px;
}
.news-carousel .item-img,
.news .item-img{
    position: relative;
    top: -1px;
    left: -1px;
    right: -1px;
    width: calc(100% + 2px);
    overflow: hidden;
    border-radius: 5px;
}
.news-carousel .item-img img,
.news .item .item-img img{
    width: 100%;
    transition: all ease-out 600ms;
}
.news-carousel .item-body,
.news .item-body{
    padding: 50px 35px 40px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-carousel .item-title,
.news .item-title{
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
    transition: all ease-out 300ms;
}
.news-carousel .item:hover,
.news .item:hover{
    border-color: color-mix(in srgb, var(--accent-color1) 30%, transparent);
}
.news-carousel .item:hover .item-img img,
.news .item:hover .item-img img{
    transform: scale(1.05);
}
.news-carousel .item:hover .item-title,
.news .item:hover .item-title{
    color: var(--accent-color1);
}
@media(max-width: 1099px){
    .news .col{
        width: 50%;
    }
}
@media(max-width: 991px){
    .news-carousel .item-body,
    .news .item-body{
        padding: 30px 25px;
    }
    .news-carousel .item-title,
    .news .item-title{
        font-size: 18px;
    }
}
@media(max-width: 599px){
    .news .col{
        width: 100%;
    }
}
@media(max-width: 399px){
    .news-carousel .item-body,
    .news .item-body{
        padding: 25px 20px;
    }
    .news-carousel .item-title,
    .news .item-title{
        font-size: 16px;
    }
}

@media(min-width: 768px){
    .news-slider-scrollbar{
        display: none;
    }
}
/* /. news */


/* cargo-types-slider */
.cargo-types-slider .swiper-slide{
    height: auto;
}
.cargo-types-slider .item{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 10%, transparent);
    border-radius: 5px;
}
.cargo-types-slider .item-img{
    position: relative;
    top: -1px;
    left: -1px;
    right: -1px;
    width: calc(100% + 2px);
    overflow: hidden;
    border-radius: 5px;
}
.cargo-types-slider .item-img img{
    width: 100%;
    transition: all ease-out 600ms;
}
.cargo-types-slider .item-body{
    padding: 35px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cargo-types-slider .item-title{
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
    transition: all ease-out 300ms;
}
.cargo-types-slider .item:hover{
    border-color: color-mix(in srgb, var(--accent-color1) 30%, transparent);
}
.cargo-types-slider .item:hover .item-img img{
    transform: scale(1.05);
}
.cargo-types-slider .item:hover .item-title{
    color: var(--accent-color1);
}

@media(max-width: 991px){
    .cargo-types-slider .item-body{
        padding: 30px 25px;
    }
    .cargo-types-slider .item-title{
        font-size: 18px;
    }
}
@media(max-width: 399px){
    .cargo-types-slider .item-body{
        padding: 25px 20px;
    }
    .cargo-types-slider .item-title{
        font-size: 16px;
    }
}

@media(min-width: 768px){
    .cargo-types-scrollbar{
        display: none;
    }
}
/* /. cargo-types-slider */


/* about-slider-section */
.about-slider-main .swiper-slide{
    position: relative;
    height: auto;
}
.about-slider-main .slide-bg{
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.about-slider-main .slide-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 18s ease;
}
.about-slider-main .swiper-slide-active .slide-bg img{
    transform: scale(1);
}
.about-slider-main .slide-content{
    color: #fff;
    position: relative;
    z-index: 10;
    opacity:0;
    transition: all 1s ease;
}
.about-slider-main .swiper-slide-active .slide-content{
    opacity:1;
}
.about-slider-main .container{
    padding: 125px 15px 165px;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.about-slider-main .slide-content-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-slider-main .slide-content-header .col1{
    width: 60%;
}
.about-slider-main .slide-content-header .col2{
    width: 35%;
}
.about-slider-main .slide-content-header + .slide-content-body{
    padding-top: 60px;
}
.about-slider-main .slide-content3 .slide-content-header + .slide-content-body{
    padding-top: 0;
}
.about-slider-main .slide-content3 .slide-content-body-row .col1{
    margin-bottom: 60px;
    width: 480px;
    max-width: 100%;
}
.about-slider-main .item-tags{
    margin-bottom: 30px;
}
.about-slider-main .item-tags span{
    display: inline-flex;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-right: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    background: rgba(255,255,255,.05);
}
.about-slider-main .p_last{
    padding-right: 55px;
    display: inline-block;
    position: relative;
}
.about-slider-main .p_last::after{
    content:"";
    height: 1px;
    width: 41px;
    position: absolute;
    right: 0;
    bottom: 7px;
    background: #fff;
}
.line_before p{
    padding-left: 55px;
    position: relative;
}
.line_before p::before{
    content:"";
    height: 1px;
    width: 41px;
    position: absolute;
    left: 0;
    top: 10px;
    background: #fff;
}
.about-slider-main .slide-content-body{
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-slider-main .slide-content-body-row{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.about-slider-main .slide-content-body-row .col1{
    width: 55%;
}
.about-slider-main .slide-content-body-row .col2{
    width: 30%;
}
.about-slider-main .slide-content-body-row .col2 .item-title{
    font-size: 48px;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}
.about-slider-main .slide-content-body-row .col2 .item-title:before{
    content: "*";
    font-size: 48px;
    line-height: 1;
    position: absolute;
    top: 9px;
    left: -45px;
    font-weight: 400;
}
.about-slider-main .slide-content-body-row .col2 .item-description{
    font-size: 14px;
}

.about-slider-main .slide-content-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    font-size: 14px;
}
.about-slider-main .slide-content-footer-inner{
    width: 400px;
    max-width: 100%;
}
.about-slider-main .slide-content-footer-title{
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-nav-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 20;
    color: #fff;
}

.about-nav-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 8px;
}

.about-nav{
    width: calc(100% - 70px);
}

/* стрелки */

.about-nav-wrapper .carousel-nav-btn{
    width: 25px;
    height: 18px;
    opacity: 0.4;
    position: relative;
    top: -8px;
    transition: opacity 300ms ease;
}

.about-nav-wrapper .carousel-nav-btn:not(.swiper-button-disabled){
    cursor: pointer;
    opacity: 1;
}

.about-nav-wrapper .carousel-nav-btn path{
    transition: stroke 300ms ease;
}

.about-nav-wrapper .carousel-nav-btn:not(.swiper-button-disabled):hover path{
    stroke: var(--accent-color1);
}

/* nav item */

.about-nav-wrapper .item-inner{
    padding: 25px 0 0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

/* серая линия */

.about-nav-wrapper .item-inner::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:2px;
    width:100%;
    background:rgba(255,255,255,0.4);
}

/* прогресс */

.about-nav-wrapper .item-inner::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height: 0;
    width:var(--progress-width,0%);
    background:var(--accent-color1);
}
.about-nav-wrapper .swiper-slide-thumb-active .item-inner::after{
    height: 2px;
}
.about-nav-wrapper .about-nav2 .swiper-slide-thumb-active .item-inner::after{
    width: 100%;
}
/* слайды */

.about-nav-wrapper .swiper-slide{
    opacity:0.4;
    padding:0 20px;
    cursor:pointer;
    transition:opacity 300ms ease;
}

.about-nav-wrapper .swiper-slide:hover{
    opacity:0.8;
}

.about-nav-wrapper .swiper-slide.swiper-slide-thumb-active{
    opacity:1;
    color:var(--accent-color1);
}

.about-nav-wrapper .item-inner::after{
    width: var(--progress-width,0%);
}

@media(max-width: 1359px){
    .about-slider-main .container{
        padding-top: 8vw;
    }
}
@media(max-width: 991px){
    .about-slider-main .slide-content-header .col1{
        width: 100%;
    }
    .about-slider-main .slide-content-header .col2{
        width: 100%;
    }
    .about-slider-main .slide-content-body-row .col1{
        width: 50%;
    }
    .about-slider-main .slide-content-body-row .col2{
        width: 50%;
    }
    .about-slider-main .slide-content-body-row .col2 .item-title{
        font-size: 36px;
    }
    .about-slider-main .slide-content3 .slide-content-body-row .col1{
        margin-bottom: 40px;
        width: 100%;
        padding-left: 55px;
    }
    .about-slider-main .slide-content3 .slide-content-footer-inner{
        width: 100%;
        padding-left: 55px;
    }
}
@media(max-width: 767px){
    .about-slider-main .container{
        padding-top: 60px;
    }
    .about-slider-main .slide-content-body-row .col2{
        width: 100%;
    }
    .about-slider-main .slide-content-footer-inner{
        width: 100%;
    }
    .about-slider-main .slide-content-header + .slide-content-body{
        padding-top: 40px;
    }
    .about-slider-main .slide-content-body-row .col1{
        width: 100%;
    }
}
@media(max-width: 499px){
    
    .about-nav-wrapper .item-inner{
        font-size: 14px;
        padding-top: 20px;
    }
}
/* /. about-slider-section */

/* features */
.features{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
}
.features .col{
    width: 33.3333%;
    padding: 25px 50px;
    position: relative;
    z-index: 10;
    transition: all ease-out 300ms;
    cursor: default;
}
.features .item{
    font-size: 14px;
}
.features .item-icon{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color1) 20%, transparent);
    transition: all ease-out 300ms;
}
.features .item-title{
    line-height: 1.16;
    font-size: 24px;
    margin-bottom: 25px;
}
.features::before{
    content: "";
    width: calc(33.3333%);
    left: calc(50% - (33.3333% / 2));
    top: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
    border-left: 1px dashed rgba(255,255,255,.1);
    border-right: 1px dashed rgba(255,255,255,.1);
}
@media(min-width: 600px) and (max-width: 991px){
    .features .col{
        border-bottom: 1px dashed rgba(255,255,255,.1);
    }
    .features .col:nth-last-child(-n+2){
        border: none;
    }
}
@media(min-width: 992px){
    .features .col:hover{
        background: var(--accent-color1);
        transform: scale(1.05) !important;
        border-color: transparent;
        border-radius: 5px;
    }
    .features .col:hover .item-icon{
        background: rgba(255,255,255,.9);
    }
    .features .col{
        border-bottom: 1px dashed rgba(255,255,255,.1);
    }
    .features .col:nth-last-child(-n+3){
        border: none;
    }
}
@media(max-width: 1199px){
    .features{
        margin-top: 10px;
    }
    .features .col{
        padding: 25px;
    }
    .features .item-icon{
        margin-bottom: 20px;
    }
    .features .item-title{
        margin-bottom: 15px;
    }
}

@media(max-width: 991px){
    .features .col{
        width: 50%;
    }
    .features::before{
        width: 1px;
        left: 50%;
        border-right: none;
    }
}
@media(max-width: 599px){
    .features .col{
        width: 100%;
    }
    .features::before{
        display: none;
    }
}
/* /. features */

/* stats-block */
.stats-block{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1 0 auto;
}
.stats-block-header{
    width: 620px;
    max-width: 100%;
}
.stats-block-body{
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding: 60px 0 0;
}
.stats-block-body-row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.stats-block-body-row .col{
    margin-bottom: 40px;
}
.stats-block-body-row .col1{
    padding-right: 50px;
}
.stats-block-body-title{
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 60px;
}
.stats-block-items{
    display: flex;
    flex-wrap: wrap;
}
.stats-block-items .item{
    width: 120px;
    height: 240px;
    margin-right: 10px;
    font-size: 12px;
    text-align: center;
    padding: 10px 0 0;
    background: rgba(255,255,255,.1);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, color-mix(in srgb, var(--bg) 20%, transparent) 0%, color-mix(in srgb, var(--bg) 5%, transparent) 100%);
    margin-bottom: 20px;
}

.stats-block-items .item-value{
    font-weight: bold;
    font-size: 36px;
}
.stats-block-items .item-title{
    line-height: 1.2;
}
.item-stat-column{
    height: 0;
    background: var(--bg);
    margin-top: 15px;
    opacity: 0.7;
    transition: height ease-out 1500ms;
}
.swiper-slide-active .item-stat-column{
    height: calc(var(--h) * 1%);
}

@media(max-width: 768px){
    .stats-block-body-row .col1{
        padding-right: 0;
    }
    .stats-block-items .item{
        width: 90px;
        height: 200px;
        font-size: 10px;
    }

    .stats-block-items .item-value{
        font-size: 26px;
    }
}
/* /. stats-block */

/* cases */
.cases{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding-top: 30px;
}
.case-item{
    position:relative;
    display:block;
    border-radius:5px;
    overflow:hidden;
    color:#fff;
}
.case-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}
.case-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.2) 100%
    );
}
.case-content{
    position:absolute;
    inset:0;
    padding:30px 30px 65px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.case-route{
    display:flex;
    flex-wrap: wrap;
    gap:6px;
    align-items:center;
    font-size:13px;
    font-weight: bold;
    text-transform: uppercase;
}
.case-item .route-item{
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:rgba(255,255,255,0.15);
    padding: 1px 14px 0 8px;
    border-radius:5px;
    color: #fff;
}
.case-item .route-item > svg{
    margin-right: 4px;
}
.case-item .route-item.first{
    background: color-mix(in srgb, var(--accent-color1) 30%, transparent);
    color: var(--accent-color1);
    padding-right: 10px;
}
.case-item .item-arrow{
    margin-left: 5px;
    position: relative;
}
.case-item .item-arrow svg{
    animation:arrowMove 1.6s ease-in-out infinite;
}
.item-arrow svg:nth-child(2){
    position:absolute;
    left:0;
    top: 0;
    animation-delay:.3s;
}
@keyframes arrowMove{

    0%{
        transform:translateX(-6px);
        opacity:0;
    }

    40%{
        opacity:1;
    }

    100%{
        transform:translateX(10px);
        opacity:0;
    }

}
.case-title{
    font-size: 28px;
    font-weight: bold;
    line-height:1.2;
}
.case-item:hover img{
    transform:scale(1.06);
}

@media (max-width:1359px) and (min-width: 992px){
    .case-content {
        padding: 2.5vw 2.5vw 5vw;
    }
    .case-route{
        font-size: 12px;
    }
    .case-title{
        font-size: 2vw;
    }
}
@media (max-width:899px) and (min-width: 640px){
    .case-content {
        padding: 4vw 4vw 6vw;
    }
    .case-route{
        font-size: 12px;
    }
    .case-title{
        font-size: 3vw;
    }
}

@media (max-width:991px){
    .cases{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:639px){
    .cases{
        grid-template-columns:1fr;
    }
}
@media(max-width: 499px){
    .case-content {
        padding: 7vw 7vw 10vw;
    }
    .case-route{
        font-size: 12px;
    }
    .case-title{
        font-size: 6vw;
    }
}
/* /. cases */

.parallax-section{
    background-size:cover;
    background-repeat:no-repeat;
    background-position:50% 0;
    will-change:background-position;
}

/* steps-section */
.steps-section{
    min-height:100vh;
    color: #fff;
    background-color: #333;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.steps-section-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.steps-section-header .col{
    width: 40%;
}
.steps-section-header h2{
    text-transform: uppercase;
}

.steps-nav-wrapper{
    margin-bottom: 80px;
    margin-top: 40px;
}

.steps-nav-slider{
    overflow: visible;
}

.steps-nav-slider .swiper-wrapper{
    flex-wrap: wrap;
    gap: 10px;
}

.steps-nav-slider .swiper-slide{
    width: auto;
}

.step-nav-item{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 12px 18px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}

.step-nav-icon{
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.step-nav-icon img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-nav-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.step-nav-arrow{
    display: inline-flex;
    color: currentColor;
}

.steps-nav-slider .swiper-slide-thumb-active .step-nav-item,
.step-nav-item.active{
    background: color-mix(in srgb, var(--accent-color1) 25%, transparent);
}

.steps-main-wrapper{
    position: relative;
}

.step-main-item{
    position: relative;
    min-height: 440px;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
}
.step-main-image{
    position: absolute;
    inset: 0;
    background: #333;
}
.step-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.step-main-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}


.step-main-content{
    position: absolute;
    left: 70px;
    bottom: 70px;
    z-index: 3;
    top: 70px;
    width: 360px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-main-icon{
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.step-main-icon img{
    max-width: 38px;
    max-width: 100%;
}

.step-main-title{
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 25px;
    font-weight: bold;
    color: #fff;
}

.step-main-text{
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255,255,255,0.95);
}

.step-main-next{
    position: absolute;
    right: 70px;
    bottom: 90px;
    z-index: 3;
}

.steps-main-next-btn{
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.85);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease;
}

.steps-main-next-btn:hover{
    background: rgba(255,255,255,0.08);
    transform: scale(1.05);
}

.steps-main-next-btn.swiper-button-disabled{
    opacity: 0;
    cursor: default;
}

.steps-main-slider .swiper-slide{
    opacity: 0 !important;
    transition: opacity 500ms ease;
}

.steps-main-slider .swiper-slide-active{
    opacity: 1 !important;
}

@media(max-width: 1299px){
    .steps-section-header .col1{
        width: 60%;
        padding-right: 50px;
    }
    .steps-section .section-description{
        font-size: 16px;
    }
}
@media(max-width: 991px){
    .step-main-content {
        left: 50px;
        bottom: 50px;
        top: 50px;
    }
    .steps-main-next-btn {
        width: 70px;
        height: 70px;
    }
    .step-main-next {
        right: 50px;
        bottom: 50px;
    }
    .steps-section-header .col1{
        width: 100%;
        padding-right: 0;
    }
    .steps-section-header .col2{
        width: 100%;
    }
}
@media(max-width: 768px){
    .steps-section .section-description{
        font-size: 14px;
    }
    .steps-nav-wrapper {
        margin-bottom: 40px;
        margin-top: 10px;
    }
    .step-main-content {
        left: 25px;
        bottom: 35px;
        top: 35px;
        right: 25px;
        width: auto;
    }
    .step-main-next {
        right: 25px;
        bottom: auto;
        top: 35px;
        z-index: 10;
    }
    .steps-main-next-btn{
        width: 56px;
        height: 56px;
    }
    .steps-nav-slider .swiper-wrapper{
        gap: 6px;
    }
    .step-nav-title{
        font-size: 11px;
        font-weight: 500;
    }
    .step-nav-item {
        gap: 6px;
        min-height: 36px;
        padding: 4px 4px 4px 6px;
    }
    .swiper-wrapper .swiper-slide:last-child .step-nav-item{
        padding-right: 16px;
    }
}
/* /. steps-section */

/* geo section */
.geo-section-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.geo-section-header .col1{
    width: calc(100% - 350px);
    padding-right: 50px;
}
.geo-section-header .col2{
    width: 350px;
}
.geo-section-body{
    margin-top: 80px;
}

.geo-map{
    position: relative;
    max-width: 1296px;
}

.geo-map img{
    width: 100%;
    display: block;
}

.geo-point{
    position:absolute;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    line-height:1.2;
    white-space:nowrap;

    opacity:0;
    transform:scale(.6);
    transition:.35s ease;
}

.geo-point.active{
    opacity:1;
    transform:scale(1);
}

.geo-dot{
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 50%;
    background: var(--accent-color1);
}
.geo-dot::after{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    border:1px solid var(--accent-color1);
    opacity:.6;
    animation: geoPulse 2s infinite;
}

@keyframes geoPulse{

    0%{
        transform:scale(.6);
        opacity:.8;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

.geo-name{
    font-weight: 600;
}

.geo-point-main{
    gap: 10px;
}

.geo-main-icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.geo-main-icon img{
    width: 40px;
    height: 40px;
    display: block;
}

.geo-main-text{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.geo-main-text span{
    font-size: 16px;
    color: var(--accent-color1);
    font-weight: 600;
}

.geo-main-text strong{
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
    color: #000;
}

/* Порты */
.geo-point.novorossiysk{
    left: 60.6%;
    top: 20%;
}
.geo-point.spb {
    left: 55%;
    top: 13.5%;
}
.geo-point.vladivostok {
    left: 86.7%;
    top: 14.5%;
}
.geo-point.kaliningrad{
    left: 55.5%;
    top: 15%;
}

/* Европа / Ближний Восток */
.geo-point.turkey{
    left: 58.7%;
    top: 30.5%;
}

.geo-point.syria{
    left: 64.7%;
    top: 33.9%;
}

.geo-point.egypt {
    left: 55.6%;
    top: 38.6%;
}

.geo-point.israel{
    left: 59.3%;
    top: 36.4%;
}

.geo-point.saudi{
    left: 62.7%;
    top: 44.6%;
}

.geo-point.oae {
    left: 63.4%;
    top: 39.2%;
}

/* Африка */
.geo-point.africa{
    left: 56%;
    top: 62.5%;
}

/* Южная Америка */
.geo-point.brazil{
    left: 36.2%;
    top: 68.9%;
}

.geo-point.argentina {
    left: 30.3%;
    top: 88%;
}

/* Азия */
.geo-point.pakistan{
    left: 68.6%;
    top: 38.0%;
}

.geo-point.india{
    left: 70.9%;
    top: 47.4%;
}

.geo-point.china{
    left: 79.5%;
    top: 40.0%;
}

.geo-point.vietnam{
    left: 79.2%;
    top: 48.7%;
}

.geo-point.korea{
    left: 85.3%;
    top: 33%;
}

.geo-point.japan {
    left: 89.3%;
    top: 27%;
}
.geo-point.tay {
    left: 77.3%;
    top: 45%;
}
.geo-point.malasia {
    left: 78.5%;
    top: 59.5%;
}

.geo-tabs{
    margin-top:80px;
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.geo-tab{
    position:relative;
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:16px;
    font-weight:600;
    font-size:18px;
    color:#8b8b8b;
    cursor:pointer;
    transition:.3s;
}

.geo-tab::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:2px;
    background:#bdbdbd;
}

.geo-tab.active{
    color:var(--accent-color1);
}

.geo-tab.active::before{
    background:var(--accent-color1);
}

.geo-tab:hover{
    color:var(--accent-color1);
}

.geo-tab-title{
    font-weight:700;
}

.geo-tab-num{
    font-weight:700;
    opacity:.6;
}

@media(max-width: 1399px){
    .geo-main-text strong{
        font-size: 18px;
    }
}
@media(max-width: 1359px){
    .geo-point {
        gap: 0.58vw;
        font-size: 1.03vw;
    }
    .geo-dot {
        width: 1.03vw;
        height: 1.03vw;
        flex: 0 0 1.03vw;
    }

    .geo-main-icon {
        width: 3.235vw;
        height: 3.235vw;
        flex: 0 0 3.235vw;
    }
    .geo-main-icon img {
        width: 2.94vw;
        height: 2.94vw;
    }
    .geo-main-text {
        gap: 0.147vw;
    }
    .geo-main-text span{
        font-size: 1.176vw;
    }
    .geo-main-text strong {
        font-size: 1.323vw;
    }
    .geo-point-main{
        gap: 0.735vw;
    }

    .geo-tabs{
        margin-top:5.88vw;
        gap: 2.2vw;
    }
    .geo-tab{
        padding-top: 1.176vw;
        font-size: 1.3235vw;
    }

}


@media(max-width: 991px){
    .geo-section-header .col1{
        width: 100%;
        padding-right: 0;
    }
    .geo-section-header .col2{
        width: 100%;
    }
}


@media(max-width: 768px){
    .geo-section{
        display: none;
    }
}
/* /. geo section */

.wow{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.wow.show{
    opacity:1;
    transform:none !important;
}
.fadeInUp{
    transform:translateY(40px);
}

.fadeInUp.show{
    transform:translateY(0);
}
.fadeIn{
    opacity:0;
}

.fadeIn.show{
    opacity:1;
}

.fadeInLeft{
    transform:translateX(-40px);
}

.fadeInLeft.show{
    transform:translateX(0);
}

.fadeInRight{
    transform:translateX(40px);
}

.fadeInRight.show{
    transform:translateX(0);
}

/* faq section */
.accordion{
    padding-top: 30px;
}
.accordion .item-body {
    display: none;
    padding-top: 15px;
}
.accordion .item{
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all ease-out 300ms;
}
.accordion .item-head{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.accordion .item-title{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    width: calc(100% - 60px);
}
.accordion .item-icon{
    width: 46px;
    height: 46px;
    background: url(../images/faq-arrow.svg) 0 0 no-repeat;
    transition: all ease-out 300ms;
}

.accordion .item:hover,
.accordion .item.active{
    background: color-mix(in srgb, var(--accent-color1) 8%, transparent);
}
.accordion .item.active .item-icon{
    transform: rotate(-90deg);
}

@media(max-width: 1099px){
    .accordion .item-title{
        font-size: 20px;
    }
    .accordion .item-body{
        padding-top: 10px;
        font-size: 16px;
        line-height: 1.3;
    }
    .accordion{
        padding-top: 10px;
    }
}
@media(max-width: 767px){
    .accordion{
        padding-top: 0;
    }
    .accordion .item{
        padding: 10px;
    }
    .accordion .item-title{
        font-size: 17px;
    }
    .accordion .item-body{
        padding-top: 10px;
        font-size: 16px;
        line-height: 1.3;
    }
}
/* /. faq section */

/* countries-list */
.countries-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
}
.countries-list .item{
    background: color-mix(in srgb, var(--accent-color1) 10%, transparent);
    border-radius: 5px;
    display: flex;
    white-space: nowrap;
    align-items: center;
    padding: 0 35px;
    height: 90px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2%;
}
.countries-list .item-icon{
    width: 50px;
}
.countries-list .item-title{
    width: calc(100% - 50px);
    padding-left: 12px;
}

@media(max-width: 991px){
    .countries-list{
        gap: 15px;
    }
    .countries-list .item{
        padding: 0 25px;
        height: 70px;
        font-size: 20px;
        letter-spacing: 1%;
    }
    .countries-list .item-title{
        padding-left: 10px;
    }
}
@media(max-width: 767px){
    .countries-list{
        gap: 10px;
    }
    .countries-list .item{
        padding: 0 15px;
        height: 50px;
        font-size: 16px;
        letter-spacing: 0;
    }
    .countries-list .item-icon{
        width: 40px;
    }
    .countries-list .item-title{
        width: calc(100% - 40px);
        padding-left: 7px;
    }
}
@media(max-width: 499px){
    .countries-list .item{
        height: 40px;
        font-size: 12px;
    }
    .countries-list .item-icon{
        width: 30px;
    }
    .countries-list .item-title{
        width: calc(100% - 30px);
    }
}
/* /. countries-list */

/* service-intro-section */
.service-intro-grid{
    display:grid;
    grid-template-columns:440px 1fr;
    gap:22px;
}

.service-intro-card{
    background:#fff;
    border-radius:5px;
    overflow:hidden;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    padding: 8px;
    font-size: 14px;
}

.service-intro-image img{
    width:100%;
    display:block;
    border-radius: 5px;
}

.service-intro-body{
    padding:35px 25px 20px;
}

.service-intro-body ul{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0;
}

.service-intro-body li{
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:0 14px;
    background: color-mix(in srgb, var(--accent-color1) 10%, transparent);;
    border-radius:5px;
    font-size:14px;
    font-weight: bold;
    cursor: default;
}

@media(max-width: 1199px){
    .service-intro-grid{
        grid-template-columns: 1.7fr 3fr;
    }
    .service-intro-body {
        padding: 25px 15px 10px;
    }
}
@media(max-width: 991px){
    .service-intro-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media(max-width: 499px){
    .service-intro-body {
        padding: 15px 10px 0;
    }
    .service-intro-body h3{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
/* /. service-intro-section */

/* routes section */
.routes-grid{
    margin-top: 22px;
    display:grid;
    grid-template-columns:1fr 440px;
    gap: 20px;
    margin-bottom: 20px;
}
.routes-map-card{
    background:linear-gradient(135deg, var(--accent-color1), var(--accent-color3), var(--accent-color1));
    border-radius: 5px;
    padding: 40px 40px 0;
    color:#fff;
    font-size: 14px;
}
.routes-text{
    margin-bottom:50px;
}
.routes-map{
    position:relative;
}
.routes-map img{
    width:100%;
    display:block;
}
.routes-partners-card{
    border-radius: 5px;
    padding:40px;
    text-align:center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 20%, transparent);
    position: relative;
}
.routes-partners-card::after{
    content:"";
    height: 50%;
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 0;
    right: 0;
    background: url(../images/circle.png) bottom 0 left 50% / 100% 100% no-repeat;
}
.routes-partners-card::before{
    content:"";
    height: 50%;
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/circle.png) bottom 0 left 50% / 100% 100% no-repeat;
    transform: rotate(180deg);
}
.routes-partners-card .item-img{
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:20px auto;
    position: relative;
    z-index: 10;
}
.routes-partners-card img{
    display:block;
}

.routes-partners-card h3{
    margin: 0;
    position: relative;
    z-index: 10;
}

@media(max-width: 1199px){
    .routes-grid{
        grid-template-columns: 3fr 1.7fr;
    }
    .routes-partners-card h3{
        font-size: 20px;
    }
    .routes-map-card,
    .routes-partners-card{
        padding: 30px 23px;
    }
}
@media(max-width: 991px){
    .routes-grid{
        grid-template-columns: 1fr;
    }
    .routes-partners-card h3{
        font-size: 24px;
    }
    .routes-partners-card{
        background: color-mix(in srgb, var(--accent-color1) 10%, transparent);
    }
    .routes-partners-card::after,
    .routes-partners-card::before{
        display: none;
    }
}
@media(max-width: 499px){
    .routes-map-card,
    .routes-partners-card{
        padding: 25px 18px;
    }
}
/* /. routes-section */

/* about-features-section */
.about-features-section{
    padding-top: 40px;
}
.about-features-section-pt0 .about-features-section{
    padding-top: 0;
}
.about-features{
    padding-top: 30px;
    display: grid;
    gap: 20px;
    grid-template-columns:repeat(2,1fr);
}
.about-features .col{
    display: grid;
    gap: 20px;
}
.about-features .item{
    border: 1px solid color-mix(in srgb, var(--accent-color1) 20%, transparent);
    padding: 60px 70px 40px 90px;
    border-radius: 5px;
}
.about-features .item-title{
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.2;
    font-weight: 500;
}
.about-features .item-title::before{
    content: "*";
    line-height: 1;
    font-size: 44px;
    position: absolute;
    top: 5px;
    left: -38px;
}

@media(max-width: 1199px){
    .about-features-section{
        padding-top: 30px;
    }
    .about-features{
        padding-top: 20px;
        gap: 20px;
    }
    .about-features .col{
        gap: 20px;
    }
    .about-features .item{
        padding: 5vw 5.8vw 3.33vw 7.5vw;
    }
    .about-features .item-title{
        font-size: 2.66vw;
        margin-bottom: 2.5vw;
    }
    .about-features .item-title::before{
        font-size: 3.66vw;
        top: 0.416vw;
        left: -3.166vw;
    }
}
@media(max-width: 767px){
    .about-features{
        grid-template-columns:1fr;
    }
    .about-features .item{
        padding: 25px 20px 10px 35px;
    }
    .about-features .item-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .about-features .item-title::before{
        font-size: 24px;
        top: 4px;
        left: -20px;
    }
}
/* /. about-features-section */

/* banner */
.banner img{
    width: 100%;
    border-radius: 5px;
}
.banner-content{
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    color: #fff;
    font-size: 20px;
}
.banner .item-title{
    width: 500px;
    max-width: 100%;
}

@media(max-width: 1199px){
    .banner-content{
        padding: 5.8vw;
    }
}
@media(max-width: 991px){
    .banner-content{
        padding: 5vw;
        font-size: 2vw;
    }
}
@media(max-width: 699px){
    .banner-content{
        font-size: 4vw;
    }
}
/* /. banner */

/* clients */
.client-item{
    height:190px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border:1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);;
    border-radius:5px;
    background:#fff;
}

.client-item img{
    max-height: 80%;
    max-width: 70%;
}

@media(max-width: 1359px){
    .client-item{
        height: 14vw;
        padding: 1.47vw;
    }
}
@media(max-width: 767px){
    .client-item{
        height: 20vw;
        padding: 2vw;
    }
}
@media(max-width: 499px){
    .client-item{
        height: 30vw;
        padding: 3vw;
    }
}
/* /. clients */

/* team */
.team-wrapper{
    padding-top: 30px;
}
@media(min-width: 500px){
    .team .swiper-wrapper{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.team .item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.team .item-img {
    position: relative;
}
.team .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.team .item-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0) 70%
    );
}

.team .item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    line-height: 1.2;
}

.team .item-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.team .item-post {
    font-size: 14px;
}

.team .item:hover img {
    transform: scale(1.05);
}

.team-section .swiper{
    visibility: visible;
}

@media(max-width: 1359px){
    .team .item-content {
        padding: 3.3vw 2.6vw;
    }

    .team .item-name {
        font-size: 2.1vw;
    }
}
@media(max-width: 991px){
    .team .item-post {
        font-size: 13px;
    }
}

@media(max-width: 767px){
    .team .swiper-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
    .team .item-content {
        padding: 5vw;
    }

    .team .item-name {
        font-size: 3.5vw;
    }
}
@media(max-width: 499px){
    .team .swiper-wrapper {
        display: flex !important;   /* ОБЯЗАТЕЛЬНО */
        flex-wrap: nowrap !important; /* КРИТИЧНО */
    }

    .team .item-content {
        padding: 8vw;
    }
    .team .item-name {
        font-size: 7.5vw;
    }
    .team .item-post {
        font-size: 14px;
    }
}
/* /. team */


/* blockquote */
blockquote {
    border: 1px solid color-mix(in srgb, var(--accent-color1) 20%, transparent);
    padding: 50px 50px 20px 70px;
    border-radius: 5px;
    margin-bottom: 60px;
}

blockquote > strong {
    display: block;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.2;
    font-weight: 500;
}
blockquote > strong::before{
    content: "*";
    line-height: 1;
    font-size: 44px;
    position: absolute;
    top: 5px;
    left: -38px;
}

blockquote p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* table */
.content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 60px;
    font-size: 18px;
}

.content table thead tr{
    background: linear-gradient(90deg, var(--accent-color1), var(--accent-color3));
}
.content table thead th {
    padding: 22px 50px;
    text-align: left;
    font-weight: bold;
    color: #fff;
    background: transparent;
    font-size: 20px;
    white-space: nowrap;
}
.content table thead th:first-child {
    border-radius: 5px 0 0 5px;
}
.content table thead th:last-child {
    border-radius: 0 5px 5px 0;
}
.content table tbody tr {
    background: color-mix(in srgb, var(--accent-color1) 5%, transparent);
}
.content table tbody tr:nth-child(odd){
    background: color-mix(in srgb, var(--accent-color1) 10%, transparent);
}
.content table td {
    padding: 22px 50px;
    white-space: nowrap;
}
.content table tbody td:first-child {
    border-radius: 5px 0 0 5px;
}
.content table tbody td:last-child {
    border-radius: 0 5px 5px 0;
}

@media(max-width: 767px){
    .content table {
        border-spacing: 0 5px;
        font-size: 16px;
    }
    .content table thead th {
        padding: 15px 30px;
        font-size: 16px;
    }
    .content table td {
        padding: 15px 30px;
    }
}
@media(max-width: 499px){
    .content table {
        border-spacing: 0 3px;
        font-size: 14px;
    }
    .content table thead th {
        padding: 10px 20px;
        font-size: 14px;
    }
    .content table td {
        padding: 10px 20px;
    }
}
/* /. table */


/* info-banner */
.info-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 50px 50px;
    margin: 60px 0 80px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-color3), var(--accent-color1));
}
.info-banner__content {
    max-width: calc(100% - 350px);
    padding-right: 50px;
    color: #fff;
    z-index: 2;
    font-size: 20px;
}
.info-banner__content h3 {
    margin: 0 0 12px;
    font-size: 24px;
}
.info-banner__content p {
    margin: 0;
    line-height: 1.6;
}
.info-banner__content p + p{
    margin-top: 20px;
}
.info-banner__image {
    width: 320px;
    position: absolute;
    right: 30px;
    bottom: 0;
    top: -30px;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.info-banner__image img {
    height: 100%;
    object-fit: cover;
}

@media(max-width: 991px){
    .info-banner {
        align-items: flex-end;
        padding: 40px 0 0 40px;
    }
    .info-banner__content {
        max-width: calc(100% - 300px);
        padding-right: 40px;
        padding-bottom: 40px;
        font-size: 18px;
    }
    .info-banner__image {
        width: 300px;
        position: static;
    }
}
@media(max-width: 767px){
    .info-banner {
        padding: 40px 0 0 30px;
    }
    .info-banner__content {
        max-width: calc(100% - 250px);
        padding-right: 30px;
        padding-bottom: 40px;
        font-size: 16px;
    }
    .info-banner__image {
        width: 250px;
    }
}
@media(max-width: 599px){
    .info-banner {
        padding: 6.66vw 0 0 5vw;
    }
    .info-banner__content {
        max-width: calc(100% - 35vw);
        padding-right: 4vw;
        padding-bottom: 6.66vw;
        font-size: 3vw;
    }
    .info-banner__content h3{
        font-size: 4.5vw;
        margin-bottom: 3vw;
    }
    .info-banner__image {
        width: 35vw;
    }
    .info-banner__content p + p{
        margin-top: 3vw;
    }
}
/* /. info-banner */

/* cta section */
.cta-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 18px;
}
.cta-block__left {
    width: 650px;
    max-width: calc(100% - 430px);
    padding-right: 50px;
}
.cta-block__left.width-icon{
    display: flex;
    flex-wrap: wrap;
}
.cta-block__left.width-icon .cta-block__left-icon{
    width: 91px;
}
.cta-block__left-body{
    width: calc(100% - 91px);
    padding-left: 15px;
}

.cta-block__right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 430px;
}
.cta-contacts{
    margin-bottom: 25px;
}
.cta-contacts__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 32px;
    color: var(--accent-color1);
    font-weight: bold;
    margin-bottom: 10px;
}
.cta-contacts__item .icon{
    width: 43px;
    padding-right: 10px;
}
.cta-contacts__item a {
    max-width: calc(100% - 43px);
    color: var(--accent-color1);
    text-decoration: none;
}
.cta-contacts__item a:hover{
    color: var(--accent-color1-hover);
}
.cta-card {
    position: relative;
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    border-radius: 5px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-card::before,
.cta-card::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color1) 5%, transparent);
    top: 50%;
    transform: translateY(-50%);
}

.cta-card::before {
    left: 50%;
}

.cta-card::after {
    right: 50%;
}

.cta-card__logos,
.cta-card__text {
    position: relative;
    z-index: 2;
}

.cta-card__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}

.cta-card__logos img {
    height: 40px;
}
.cta-card__logos img:nth-of-type(2){
    height: 70px;
}

.cta-card__text {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
}

@media(max-width: 991px){
    .cta-block__left {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
}
@media(max-width: 599px){
    .cta-block__right {
        width: 100%;
    }
    .cta-contacts__item {
        font-size: 22px;
    }
    .cta-contacts__item .icon{
        width: 33px;
        padding-right: 8px;
    }
    .cta-contacts__item a {
        max-width: calc(100% - 33px);
    }
}

@media(max-width: 389px){
    .cta-block__left.width-icon .cta-block__left-icon{
        width: 50px;
    }
    .cta-block__left-body{
        width: calc(100% - 50px);
        padding-left: 10px;
    }
}

/* /. cta section */

/* features-num-items */
.features-num-items{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 80px;
    margin-top: 40px;
}
.features-num-items .item{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.features-num-items .item-content{
    padding: 20px 25px 40px;
    color: #fff;
    background: rgba(0,0,0,0.7);
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 190px;
}
.features-num-items .item-num{
    width: 80px;
    font-size: 64px;
    line-height: 1;
    text-align: right;
}
.features-num-items .item-body{
    width: calc(100% - 80px);
    padding-right: 20px;
    padding-top: 20px;
}
.features-num-items .item-title{
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 20px;
}
.features-num-items .item-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.features-num-items .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 1359px) and (min-width: 992px){
    .features-num-items .item-content{
        padding: 1.47vw 1.83vw 3vw;
        font-size: 1vw;
        min-height: 16vw;
    }
    .features-num-items .item-num{
        width: 5.88vw;
        font-size: 4.7vw;
    }
    .features-num-items .item-body{
        width: calc(100% - 5.88vw);
        padding-right: 1.47vw;
        padding-top: 1.47vw;
    }
    .features-num-items .item-title{
        margin-bottom: 0.92vw;
        font-size: 1.47vw;
    }
}
@media(max-width: 991px){
    .features-num-items{
        grid-template-columns: repeat(2, 1fr);
    }
    .features-num-items .item-content{
        padding: 2.5vw 2.5vw 5vw;
        font-size: 1.4vw;
        min-height: 23vw;
    }
    .features-num-items .item-num{
        width: 8vw;
        font-size: 6.4vw;
    }
    .features-num-items .item-body{
        width: calc(100% - 8vw);
        padding-right: 2vw;
        padding-top: 1.5vw;
    }
    .features-num-items .item-title{
        margin-bottom: 1.2vw;
        font-size: 2.2vw;
    }
}
@media(max-width: 629px){
    .features-num-items{
        grid-template-columns: 1fr;
    }
    .features-num-items .item-content{
        padding: 7vw 7vw 10vw;
        font-size: 3.8vw;
        min-height: 52vw;
    }
    .features-num-items .item-num{
        width: 10vw;
        font-size: 8vw;
    }
    .features-num-items .item-body{
        width: calc(100% - 10vw);
        padding-right: 4vw;
        padding-top: 5vw;
    }
    .features-num-items .item-title{
        margin-bottom: 3vw;
        font-size: 4.5vw;
    }
    .features-num-items .item-text{
        width: calc(100% + 14vw);
    }
}
/* /. features-num-items */


/* contacts page */
.map-wrapper{
    height: 40vw;
    max-height: 760px;
    min-height: 400px;
    position: relative;
}
.map-wrapper:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    background-color: color-mix(in srgb, #70ECF0 10%, transparent);;
}
.map-section .map-wrapper [class$="-ground-pane"]{
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}

.contacts-list{
    padding-top: 20px;
    margin-bottom: 15px;
}
.contacts-list-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 24px;
    color: var(--accent-color1);
    font-weight: bold;
    margin-top: 25px;
    line-height: 1.2;
}
.contacts-list-item-icon{
    width: 45px;
    padding-right: 12px;
    line-height: 1;
}
.contacts-list-item-icon svg{
    height: auto;
}
.contacts-list-item-value{
    max-width: calc(100% - 45px);
    white-space: nowrap;
}

@media(max-width: 1359px) and (min-width: 768px){
    .contacts-items .item-text.f20{
        font-size: 1.470588vw;
    }
    .contacts-list-item{
        font-size: 1.7647vw;
        margin-top: 1.84vw;
    }
    .contacts-list-item-icon{
        width: 3.3088vw;
        padding-right: 0.88235vw;
    }
    .contacts-list-item-value{
        max-width: calc(100% - 3.3088vw);
    }
}
@media(max-width: 991px){
    .contacts-items .item-text.f20{
        font-size: 14px;
    }
}
@media(max-width: 767px){
    .contacts-items .item-text.f20{
        font-size: 20px;
    }
    .contacts-items .item{
        padding: 35px 25px 15px 35px;
    }
}
@media(max-width: 599px){
    .contacts-items .item-text.f20{
        font-size: 3.33333vw;
    }
    .contacts-list-item{
        font-size: 4vw;
        margin-top: 4vw;
        align-items: flex-start;
    }
    .contacts-list-item-icon{
        width: 7.5vw;
        padding-right: 2vw;
    }
    .contacts-list-item-value{
        max-width: calc(100% - 7.5vw);
    }
    .contacts-items .item{
        padding: 5.83333vw 4vw 2.5vw 30px;
    }
    .contacts-list{
        padding-top: 3.33333vw;
    }
    .contacts-list-item-value{
        white-space: wrap;
    }
}
/* /. contacts page */


/* news page*/
.news-page-template .main-content{
    overflow: visible;
}
.news-page-columns{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-page-columns .main-column{
    width: calc(100% - 460px);
}
.news-page-columns .sidebar{
    width: 400px;
}
.page-img{
    margin-bottom: 30px;
}
.page-img img{
    width: 100%;
    border-radius: 4px;
}
.page-date{
    color: #777777;
    margin-bottom: 10px;
    font-size: 14px;
}
.sidebar-widget{
    margin-bottom: 40px;
}
.sidebar-widget.last{
    margin-bottom: 0;
}
.sidebar-widget.popular-posts{
    margin-top: -4px;
    position: sticky;
    top: 30px;
}
.sidebar-widget-title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}
.sidebar .popular-posts .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.sidebar .popular-posts .item-img{
    width: 150px;
}
.sidebar .popular-posts .item-img img{
    border-radius: 5px;
}
.sidebar .popular-posts .item-content{
    width: calc(100% - 150px);
    padding-left: 20px;
}
.sidebar .popular-posts .item-date{
    color: #777777;
    margin-bottom: 7px;
    font-size: 13px;
}
.sidebar .popular-posts .item-title{
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    transition: all ease-out 300ms;
}
.sidebar .popular-posts .item:hover .item-title{
    color: var(--accent-color1);
}
.page-share{
    margin-top: 30px;
}
.page-share-title{
    color: #222222;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item{
    margin-top: 0;
}
.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
    height: 36px !important;
    width: 36px !important;
}
.ya-share2__container_shape_round.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(.ya-share2__icon_more):not(.ya-share2__icon_copy) {
    background-size: 24px 24px !important;
    background-repeat: no-repeat;
}
.content img{
    width: auto !important;
    height: auto !important;
}

@media(max-width:1299px){
    .sidebar .popular-posts .item-content {
        width: calc(100% - 170px);
        padding-left: 22px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 16px;
    }
    .sidebar .popular-posts .item{
        margin-bottom: 25px;
    }
    .news-page-columns .sidebar {
        width: 450px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 490px);
    }
    .content:not(.f20) p {
        font-size: 15px;
    }
    .content.f20 p {
        font-size: 18px;
    }
}
@media(max-width:1199px){
    .sidebar .popular-posts .item-img {
        width: 150px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 150px);
        padding-left: 20px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 13px;
    }
    .news-page-columns .sidebar {
        width: 370px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 400px);
    }
    .sidebar-widget-title{
        font-size: 22px;
    }
}
@media(max-width:991px){
    .news-page-columns .main-column{
        width: 100%;
        margin-bottom: 80px;
    }
    .news-page-columns .sidebar{
        width: 100%;
    }
    .sidebar .popular-posts .item-title{
        font-size: 18px;
    }
    .content.f20 p {
        font-size: 16px;
    }
}
@media(max-width:767px){
    .sidebar-widget-title{
        font-size: 18px;
    }
    .sidebar .popular-posts .item-img {
        width: 100px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 100px);
        padding-left: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 12px;
        margin-bottom: 4px;
    }
    .sidebar .popular-posts .item-title {
        font-size: 14px;
    }
} 
/* /. news page*/

.through-section .section{
    padding-top: 0;
    padding-bottom: 0;
}


/* certificates-gallery */
.certificates-gallery{
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
}
.certificates-gallery .col{
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
    width: 25%;
}
.certificates-gallery .item{
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-color1) 30%, transparent);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.certificates-gallery .item img{
    width: 100%;
}
.certificates-gallery .col{
    padding-top: 2px;
    padding-bottom: 2px;
}
.certificates-carousel > div:not(:first-of-type){
    display: none;
}
.certificates-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.certificates-carousel .slick-slide {
    height: inherit;
}
.certificates-gallery .item:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--accent-color1) 30%, transparent);
    opacity: 0;
    transition: all ease 300ms;
}
.certificates-gallery .item:before{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg);
    z-index: 2;
    opacity: 0;
    transition: all ease 300ms;
    transform: scale(0);
}
.certificates-gallery .item:hover:after{
    opacity: 1;
}
.certificates-gallery .item:hover:before{
    opacity: 1;
    transform: scale(1);
}
.certificates-gallery .item:hover{
    border-color: transparent;
}
@media(max-width:991px){
    .certificates-gallery .col{
        width: 33.33333%;
    }
    .certificates-gallery{
        margin-left: -10px;
        margin-right: -10px;
    }
    .certificates-gallery .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width:767px){
    .certificates-gallery .col{
        width: 50%;
    }
    .certificates-gallery .item{
        padding: 5px;
    }
}
@media(max-width:599px){
    .certificates-gallery{
        margin-left: -5px;
        margin-right: -5px;
    }
    .certificates-gallery .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
}
/* /. certificates-gallery */ 


/* docs */
.docs-list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.docs-list .col{
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.docs-list .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 17px 22px;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    border-radius: 10px;
    background: #fff;
}
.docs-list .item .download-icon{
    width: 12px;
}
.docs-list .item .item-inner{
    width: calc(100% - 12px);
    padding-right: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.docs-list .item .item-inner .doc-icon{
    width: 40px;
}
.docs-list .item .item-inner .doc-content{
    width: calc(100% - 40px);
    padding-left: 22px;
}
.doc-content .file{
    color:#000;
    display: inline-block;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all ease-out 300ms;
}
.docs-list .item .doc-size{
    font-size: 13px;
    color: #818181;
}
.docs-list .download-icon path{
	transition: all 200ms ease-out;
}
.doc-icon{
    background-image:url(../images/docs.svg);
    width: 40px;
    height: 40px;
    background-position: 0 -84px;
}
.doc-icon.pdf{
    background-position: 0 0;
}
.doc-icon.docx,
.doc-icon.doc{
    background-position: -42px 0;
}
.doc-icon.xls,
.doc-icon.xl{
    background-position: -84px 0;
}
.doc-icon.rtf{
    background-position: 0 -42px;
}
.doc-icon.tiff{
    background-position: -84px -42px;
}
.doc-icon.txt {
    background-position: -42px -84px;
}
.doc-icon.bmp {
    background-position: -42px -126px;
}
.doc-icon.ppt {
    background-position: -84px -126px;
}

.docs-list .item:hover{
    border-color: var(--accent-color1);
}
.docs-list .item:hover .file{
    color: var(--accent-color1);
}
.docs-list .item:hover .download-icon path{
    fill: var(--accent-color1);
}

@media(max-width: 991px){
    .docs-list .col{
        width: 100%;
    }
}
@media(max-width: 767px){
    .docs-list .item{
        font-size: 14px;
        padding: 15px;
    }
}
@media(max-width: 429px){
    .docs-list .item{
        font-size: 13px;
        padding: 12px;
    }
}
/* /. docs */

/* gallery */
.gallery{
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}
.gallery .col{
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.gallery .item{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}
.gallery .item img{
    width: 100%;
}
.gallery .item:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: ease-out all 300ms;
}
.gallery .item:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.gallery .item:hover:before{
    opacity: 1;
}
.gallery .item:hover:after{
    opacity: 1;
    transform: scale(1);
}

@media(max-width: 699px){
    .gallery .col{
        width: 50%;
    }
}
@media(max-width: 599px){
    .gallery{
        margin-left: -8px;
        margin-right: -8px;
    }
    .gallery .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
}
/* /. gallery */

/* cases page */
.case-page-top-section .columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case-page-top-section .columns .col1{
    width: 420px;
}
.case-page-top-section .columns .col2{
    width: calc(100% - 420px);
    padding-left: 50px;
}
.case-page-top-section .rows{
    display: block;
    padding-top: 0;
}
.case-page-top-section .case-item{
    width: 100%;
}
@media(max-width: 1299px){
    .case-page-top-section .columns .col2{
        padding-left: 40px;
    }
}
@media(max-width: 991px){
    .case-page-top-section .columns .col1{
        width: 33.3333%;
    }
    .case-page-top-section .columns .col2{
        width: 66.6666%;
        padding-left: 30px;
    }
    .case-page-top-section .case-item .route-item{
        width: 100%;
        justify-content: flex-start;
    }
}
@media(max-width: 699px){
    .case-page-top-section .columns .col1{
        width: 100%;
        margin-bottom: 30px;
    }
    .case-page-top-section .columns .col2{
        width: 100%;
        padding-left: 0;
    }
    .case-page-top-section .case-item .route-item{
        width: auto;
        justify-content: center;
    }
}
/* /. cases-page */

.iti--fullscreen-popup.iti--container{
    z-index: 99999;
}








