@font-face {
    font-family: 'DaysOne';
    src: url('../fonts/DaysOne-Regular.woff2') format('woff2'),
         url('../fonts/DaysOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
* {
    -webkit-tap-highlight-color: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

ul {
    list-style:none;
}

input, select {
    vertical-align:middle;
}
*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;   
}
a{
    color: inherit;
    text-decoration: none;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
button {
    display: inline-block;
    cursor: pointer;
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
}  
html,body{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    scroll-behavior: smooth;
    background: #011318;
    color: #C3C3C3;
}
.body{
    min-width: 320px;
}
.body.no-scroll{
    overflow: hidden;
}
sup {font-size:xx-small; vertical-align:super;}
main.main{
    overflow: hidden;
    margin-top: 0;
}
main.main-page{
    margin-top: 136px;
}
@media (max-width: 999px) {
    main.main-page{
        margin-top: 192px;
    }
}
@media (max-width: 620px) {
    main.main-page{
        margin-top: 157px;
    }
}
.container{
    width: 100%;
    max-width: 1308px;
    padding: 0 34px;
    margin: 0 auto;
}
.btn{
    color: #FFF;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 32px;
    background: #1F03C7;
    width: 100%;
    max-width: 283px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .1s ease;
}
.btn:hover{
    background-color: #3800DD;
}
.title{
    color: #FFF;
    font-family: 'DaysOne', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 113.636% */
    text-transform: uppercase;
}
.main-title{
    color: #FFF;
    font-family: 'DaysOne', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 76px; /* 105.556% */
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .title{
        font-size: 32px;
        line-height: 36px;
    }
    .main-title{
        font-size: 50px;
        line-height: 56px;
    }
}
@media (max-width: 540px) {
    .container{
        max-width: 1280px;
        padding: 0 20px;
    }
    .title{
        font-size: 28px;
        line-height: 32px
    }
    .main-title {
        font-size: 36px;
        line-height: 42px;
        text-align: center;
    }
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 100;
    transition: all .2s ease;
}
.header.scrolled{
    background-color: rgba(1, 19, 24);
    padding: 20px 0;
}
.header__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header__menu{
    width: 100%;
    max-width: 557px;
}
.header__menu ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.header__link{
    font-weight: 500;
    line-height: 24px; 
    position: relative;
    transition: all .1s ease;
}
.header__link::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background-color: #1F03C7;
    opacity: 0;
    pointer-events: none;
    transition: all .1s ease;
}
.header__link:hover::after{
    opacity: 1;
}
.header__link:hover{
    color: #fff;
    font-weight: 700;
}
.header__link.active{
    opacity: 1;
    color: #fff;
    font-weight: 700;
}

.header__link.active::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background-color: #1F03C7!important;
    opacity: 1;
    pointer-events: none;
    transition: all .1s ease;
}
.header__end{
    display: flex;
    align-items: center;
    gap: 24px;
}
.header__end-lang{
    position: relative;
}
.header__lang-select{
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFF;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}
.header__lang-content{
    position: absolute;
    top: 30px;
    display: none;
    flex-direction: column;
    gap: 5px;
}
.header__lang-item{
    color: #FFF;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}
.header__end-lang.active .header__lang-select svg{
    transform: rotate(-180deg);
}
.header__end-lang.active .header__lang-content{
    display: flex;
}
.header__end-socials{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
}
.header__socials-tel{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-weight: 500;
    line-height: 24px;
}
.header__socials-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all .1s ease;
}
.header__socials-icon svg{
    transition: all .1s ease;
}
.header__socials-tel:hover .header__socials-icon{
    background-color: #fff;
}
.header__socials-tel:hover .header__socials-icon svg path{
    stroke: #000;
}
.header__socials-tel:nth-of-type(1) .tel-span:nth-of-type(1){
    letter-spacing: 0.64px;
}
.header__socials-tel:nth-of-type(1) .tel-span:nth-of-type(2){
    letter-spacing: 0.48px;
}
.header__socials-tel:nth-of-type(2){
    letter-spacing: -0.16px;
}
.header__socials-tel:nth-of-type(2) .tel-span:nth-of-type(1){
    letter-spacing: -1.28px;
}
.header__socials-tel:nth-of-type(2) .tel-span:nth-of-type(2){
    letter-spacing: -1.12px;
}
.header__socials-block{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 10px;
}
.header__socials-item{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    min-width: 26px;
    transition: all .1s ease;
}
.header__socials-item:hover svg{
    transition: all .1s ease;
}
.header__socials-item:hover {
    background-color: #fff;
}
.header__socials-item:hover svg path{
    stroke: #000;
}

.header__socials-mobile{
    display: none;
    gap: 10px;
}
.header__burger{
    display: none;
}

@media (max-width: 1279px) {
    .header__menu{
        max-width: 500px;
    }
}
@media (max-width: 999px) {
    .header{
        padding: 60px 0 40px;
    }
    .header__inner{
        flex-wrap: wrap;
        gap: 40px 0px;
    }
    .header__menu{
        order: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        gap: 32px;
        align-items: center;
    }
    .header__end-socials{
        display: none;
    }
    .header__socials-mobile{
        display: flex;
        gap: 24px;
        align-items: center;
        justify-content: space-between;
    }
    .header__socials-mobile .header__socials-tel{
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; 
        width: max-content;
    }
    .header__link{
        font-size: 18px;
    }
}
.header__end-line{
    display: none;
}
@media (max-width: 620px) {
    .header{
        padding: 40px 0 20px;
        position: fixed;
        transition: all .2s ease;
    }
    .header__inner{
        transition: all .2s ease;
    }
    .header.scrolled .header__inner{
        gap: 20px;
    }
    .header.scrolled{
        background-color: rgba(1, 19, 24);
        padding: 20px 0;
    }
    .header__socials-mobile{
        width: 100%;
        justify-content: center;
        gap: 22px;
    }
    .header__burger{
        display: flex;
        width: 34px;
        height: 29px;
        z-index: 10;        
        cursor: pointer;
        position: relative;
    }
    .header__burger span{
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 4px;
        border-radius: 6px;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before,
    .header__burger:after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 4px;
        border-radius: 6px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before{
        top: 0;
    }
    .header__burger:after{
        bottom: 0;
    }
    .header__burger.active:before{
        background-color: #fff;
        top: 50%;
        transform: translateY(-50%)  rotate(-44.91deg);
        width: 37px;
        left: 1px;
    }
    .header__burger.active:after{
        background-color: #fff;
        top: 50%;
        transform: translateY(-50%)  rotate(44.91deg);
        width: 37px;
        right: 1px;
    }
    .header__burger.active span{
        transform: scale(0);
    }
    .header__burger{
        transition: all 0.2 ease;
    }
    .header__menu{
        position: fixed;
        inset: 0;
        flex-direction: column;
        z-index: 1;
        background-color: #011318;
        align-items: start;
        gap: 50px;
        height: 100vh;
        overflow: auto;
        padding: 20px 0;
        transform: translateX(100%);
        transition: all .2s ease;
    }
    .header__menu.active{
        transform: translateX(0);
    }
    .header__menu::before{
        content: '';
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background-color: #011318;
        position: fixed;
        z-index: 1;
    }
    .header__menu ul{
        flex-direction: column;
        gap: 20px;
        align-items: start;
        padding: 118px 20px 50px;
        max-width: 680px;
        margin: 0 auto;
    }
    .header__link{
        color: #F3F4F5;
    }
    .header__end{
        align-items: start;
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0px;
        grid-auto-flow: row;
        grid-template-areas:
          "a a a"
          "b c c"
          "d d d";
    }
    .header__end-lang { grid-area: b; }
    .header__socials-block { grid-area: c; }      
    .header__end-socials {
        grid-area: d;
        margin-top: 32px;    
    }      
    .header__end-line{
        margin-bottom: 16px;
        grid-area: a;
        display: block;
        height: 1px;
        width: 100%;
        background-color: #F3F4F5;
    }
    .header__end-socials{
        display: flex;
        gap: 14px;
    }
    .header__lang-select svg{
        display: none;
    }
    .header__lang-content {
        display: block;
        position: relative;
        top: initial;
    }
    .header__lang-content::before{
        content: '';
        position: absolute;
        height: 19px;
        width: 2px;
        background-color: #FFF;
        top: 50%;
        transform: translateY(-50%);
        left: -8px;
    }
    .header__end-lang{
        display: flex;
        gap: 13px;
    }
}
@media (max-width: 540px) {
    .header__socials-mobile {
        justify-content: space-between;
        gap: 10px;
    }
    .header__inner{
        gap: 26px 10px;
    }
    .header__socials-tel{
        gap: 4px;
    }
    .header__socials-icon svg{
        width: 8.895px;
        height: 9.429px;
    }
    .header__socials-icon{
        width: 22px;
        height: 22px;
        min-width: 22px;
    }
}
/* hero */
.hero{
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100vh;
    min-height: 670px;
}
.hero::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 241px;
    background: linear-gradient(3deg, #011318 36.17%, rgba(1, 19, 24, 0.00) 98.01%);
    z-index: -1;
}
.hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background:#011318;
    opacity: 0.2;
    transition: all .3s ease;
}
.hero__bg{
    position: absolute;
    display: flex;
    align-items: center;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}
.hero__bg > *{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    transition: all .5s ease;
}
.hero__bg::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(19, 19, 21, 0.20) 0%, rgba(19, 19, 21, 0.20) 100%);
}
.hero__inner{
    padding: 289px 0 197px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 755px;
}
.hero__name{
    color: #F3F4F5;
    font-size: 14px;
    line-height: 16px; /* 114.286% */
    text-transform: uppercase;
}
.hero__block{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    max-width: 1288px;
    padding: 0 24px;
    margin: 0 auto;
}
.hero__item{
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.hero__item-name{
    text-align: center;
    color: #F3F4F5;
}
.hero__item-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C3C3C3;
    font-family: 'DaysOne', sans-serif;
    font-size: 42px;
    line-height: 44px; /* 104.762% */
    text-transform: uppercase;
}
.hero.animate .hero__bg > * {
    height: 100%;
    object-position: left -110px;
    transition-property: all;
    transition-duration: 1.5s;
    transition-delay: 0.1s;

}
.hero.animate .hero__bg{
    height: 113%;
    transition-property: all;
    transition-duration: 1.5s;
    transition-delay: 0.1s;
}
.hero.animate-end::before{
    opacity: 0;
    pointer-events: none;
}
.main-hero .hero__btn{
    margin-top: 24px;
}
@media (max-width: 1279px) {
    .hero.animate .hero__bg > * {
        object-position: -290px -110px;
    }
}
@media (max-width: 999px) {
    .hero{
        min-height: 789px;
    }
    .hero__block{
        flex-wrap: wrap;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 22px;
    }
    .hero__item{
        max-width: none;
        width: calc(33.33% - 15px);
    }
}
@media (max-width: 767px) {
    .hero.animate .hero__bg > * {
        object-position: -430px -110px;
    }
}
@media (max-width: 540px) {
    .hero__bg > * {
        object-position: 42% -17px;
        height: 70%;
    }
    .hero.animate .hero__bg > * {
        object-position: 31% -17px;
    }
    .hero__block{
        display: none;
    }
    .hero{
        min-height: 509px;
    }
    .hero__inner{
        gap: 20px;
        padding: 252px 0 157px;
    }
    .hero__name{
        order: 1;
        text-align: center;
    }
    .hero__btn{
        margin: 0 auto;
    }
}
.our-services{
    padding: 100px 0 0;
    position: relative;
}
#our-services{
    position: absolute;
    top: -100px;
}
.our-services__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.our-services__title{
    width: 100%;
}
.our-services__top p{
    width: 100%;
    max-width: 550px;
}
.our-services__inner{
    position: relative;
    margin-top: 80px;
}
.our-services__content{
    position: absolute;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    z-index: 1;
    inset: 0;
}
.our-services__content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #011318 17.32%, rgba(1, 19, 24, 0.00) 94.36%);
    height: 507px;
    z-index: 1;
}
.our-services__content::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, #011318 34.86%, rgba(1, 19, 24, 0.00) 92.51%);
    height: 206px;
    z-index: 1;
}

.our-services__content-image{
    display: flex;
    align-items: center;
    width: 100%;
}
.our-services__content-image img{
    width: 100%;
}
.our-services__item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    position: relative;
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 109.091% */
    text-transform: uppercase;
    background: rgba(19, 19, 21, 0.45);
    backdrop-filter: blur(1px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}
.our-services__item span:first-of-type{
    width: 26px;
    height: 26px;
}
.our-services__item-image{
    position: absolute;
    z-index: -1;
    width: 33.33%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
.our-services__item-image:nth-of-type(1){
    left: 0;
}
.our-services__item-image:nth-of-type(2){
    left: 33.33%;
}
.our-services__item-image:nth-of-type(3){
    right: 0;
}
.our-services__item:hover{
    background: rgba(19, 19, 21, 0.15);
}
.our-services__item:hover + .our-services__item-image{
    opacity: 1;
}
@media (max-width: 768px) {
    .our-services__content-image{
        height: 700px;
        background-image: url('../img/our-services/our-services-bg-2.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .our-services__content-image img{
        display: none;
    }
    .our-services__item-image{
        display: none;
    }
    .our-services__top p{
        font-size: 14px;
        line-height: 16px;
    }
    .our-services__item{
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
        padding: 10px;
    }
    .our-services__title {
        max-width: 254px;
    }
}
@media (max-width: 540px) {
    .our-services{
        padding-top: 60px;
    }
    .our-services__content{
        flex-direction: column;
    }
    .our-services__content-image{
        height: 550px;
        background-position: right;
        background-repeat: no-repeat;
        background-size: 680px;
    }
    .our-services__item{
        flex: 1;
        font-size: 20px;
        line-height: 24px;
        text-decoration: underline!important;

        border: 1px solid #8E8E8EFF;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
    .our-services__item span:last-of-type{
        max-width: 220px;
    }
    .our-services__inner{
        padding: 0 20px;
    }
    .our-services__content::before{
        background: linear-gradient(180deg, #011318 6.71%, rgba(168, 168, 168, 0.12) 83.43%);
        height: 95px;
    }
    .our-services__content::after{
        background: linear-gradient(359deg, rgba(1, 19, 24, 0.85) 24.62%, rgba(1, 19, 24, 0.00) 89.84%);
        height: 74px;
    }
    .our-services__top{
        flex-direction: column;
        gap: 32px;
    }
    .our-services__title{
        text-align: center;
        max-width: 100%;
    }
    .our-services__title br{
        display: none;
    }
    .our-services__top p{
        text-align: center;
    }
}
.about{
    padding: 100px 0 40px;
}
.about__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.about__box{
    display: flex;
    gap: 26px;
    width: 100%;
    max-width: 586px;
}
.about-brokerage .about__box{
    max-width: 450px;
}
.about-brokerage .about__image{
    min-height: 550px;
}
.about-brokerage .about__content{
    max-width: 660px;
}
.about__image{
    display: flex;
    align-items: center;
    height: 432px;
    width: 100%;
    position: relative;
}
.about__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__image:not(:first-of-type){
    margin-top: 50px;
}
.about__content{
    width: 100%;
    max-width: 554px;
}
.about__content p{
    margin-top: 20px;
}
.about__content p + .about__content p{
    margin-top: 14px;
}
.about__content p mark{
    color: #FFF;
    font-weight: 700;
}
.about__block{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px 16px;
}
.about__item{
    display: flex;
    align-items: center;
    gap: 12px;
}
.about__item-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__item h3{
    color: #F3F4F5;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 6px;
}
.about__item p{
    margin-top: 0;
}

@media (max-width: 767px) {
    .about {
        padding: 80px 0 40px;
    }
    .about__inner{
        flex-direction: column-reverse;
        gap: 60px;
    }
    .main-about .about__inner{
        gap: 100px;
    }
    .about__box,
    .about__content{
        max-width: 100%;
    }
    .main-about .about__box{
        gap: 31px;
    }
    .about__content h2 {
        text-align: center;
    }
    .about__content p{
        text-align: center;
        margin-top: 20px;
    }
    .about-brokerage .about__inner{
        align-items: start;
    }
    .about-brokerage .about__content p,
    .about-brokerage .about__content h2{
        text-align: left;
    }
    .about__block{
        max-width: 570px;
    }
    .about-brokerage .about__box{
        max-width: 100%;
    }
    .about-brokerage .about__content{
        max-width: 100%;
    }
}
@media (max-width: 540px) {
    .about-brokerage .about__image{
        min-height: auto;
    }
    .main-about .about__box{
        display: none;
    }
    .main-about .about__image {
        margin-top: 32px;
        display: flex !important;
    }
    .main-about .about__image:not(:last-of-type){
        margin-bottom: 60px;
    }
    .about__image:not(:first-of-type){
        display: none;
    }
    .about__block.mobile-senter .about__item{
        flex-direction: column;
    }
    .about__block.mobile-senter .about__item h3,
    .about__block.mobile-senter .about__item p{
        text-align: center;
    }
    .about-brokerage .about__content p, .about-brokerage .about__content h2{
        text-align: center;
    }
    .about__content p{
        margin-top: 32px;
    }
    .about__block-row-mobile .about__item{
        align-items: start;
    }
    .about__block-row-mobile .about__item-icon{
        max-width: 28px;
        min-width: 28px;
        max-height: 28px;
    }
    .about__block-row-mobile .about__item p{
        margin-left: -40px;
    }
    .about__block-row-mobile .about__item h3{
        margin-bottom: 8px;
    }
}
.types{
    padding: 100px 0 40px;
}
.types h2{
    text-align: center;
}
.types__block{
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(3, 295px);
    gap: 20px;
    grid-auto-flow: row;
    grid-template-areas:
      "a b c c"
      "d d e f"
      "g h i i";
}
.types__item:nth-of-type(1) {
    grid-area: a;
}
.types__item:nth-of-type(2) {
    grid-area: b;
}
.types__item:nth-of-type(3) {
    grid-area: c;
}
.types__item:nth-of-type(4) {
    grid-area: d;
}
.types__item:nth-of-type(5) {
    grid-area: e;
}
.types__item:nth-of-type(6) {
    grid-area: f;
}
.types__item:nth-of-type(7) {
    grid-area: g;
}
.types__item:nth-of-type(8) {
    grid-area: h;
}
.types__item:nth-of-type(8) .types__item-image{
    justify-content: center;
}
.types__item:nth-of-type(9) {
    grid-area: i;
}
.types__item{
    overflow: hidden;
    position: relative;
}
.types__item-image{
    display: flex;
    align-items: start;
    height: 100%;
}
.types__item-image img{
    transition: all .1s ease;
}
.types__item-image:hover img{
    transform: scale(1.05);
}
.types__item p{
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    max-width: 276px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .types {
        padding: 80px 0 60px;
    }
    .types__item-image{
        justify-content: center;
    }
    .types__block {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "a b"
            "c c"
            "e f"
            "d d "
            "g h"
            "i i";
    }
    .types__item-image img {
        width: 123%;
        height: 127%;
        object-fit: cover;
    }
    .types__item:nth-of-type(9) .types__item-image img {
        width: 123%;
        height: 100%;
    }
}
@media (max-width: 540px) {
    .types__block {
        margin-top: 60px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 295px);
        grid-template-areas:
        "a"
        "b"
        "c"
        "d"
        "e"
        "f"
        "g"
        "h"
        "i";
    }
    .types__item-image img {
        width: 100%;
        height: 149%;
        object-fit: cover;
        object-position: left;
    }

    .types__item:nth-of-type(2) .types__item-image img {
        height: 135%;
    }
    .types__item:nth-of-type(3) .types__item-image img {
        width: 100%;
        height: 100%;
    }
    .types__item:nth-of-type(4) .types__item-image img {
        width: 113%;
        height: 104%;
    }
    .types__item:nth-of-type(5) .types__item-image img {
        width: 115%;
        height: 118%;
    }
    .types__item:nth-of-type(6) .types__item-image img {
        width: 100%;
        height: 145%;
    }
    .types__item:nth-of-type(7) .types__item-image img {
        width: 100%;
        height: 100%;
    }
    .types__item:nth-of-type(8) .types__item-image img {
        width: 155%;
        height: 130%;
        margin-top: -44px;
    }
    .types__item:nth-of-type(9) .types__item-image img {
        width: 136%;
        height: 104%;
    }
}
.advantages{
    padding: 100px 0;
}
.advantages__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.advantages__top h2{
    width: 100%;
}
.advantages__top p{
    width: 100%;
    max-width: 540px;
}
.advantages__block{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.advantages__item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 32px;
    width: 100%;
    border: 1px solid rgba(195, 195, 195, 0.10);
    transition: all .1s ease;
}
.advantages__item-main{
    display: flex;
    align-items: center;
    grid-column: span 2;
}
.advantages__item-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantages__item-icon{
    display: flex;
    align-items: center;
    justify-content: start;
}
.advantages__item h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; 
}
.advantages__item:hover{
    border-color: rgba(195, 195, 195, 0.50);
}
.advantages-fleet .advantages__item h3 {
    font-size: 18px;
    line-height: 20px;
}
@media (max-width: 1080px) {
    .advantages__item{
        padding: 50px 20px;
    }
}
@media (max-width: 999px) {
    .advantages__block{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .advantages {
        padding: 80px 0;
    }
    .advantages__item{
        padding: 50px 24px;
    }
    .advantages__top p {
        font-size: 16px;
        line-height: 20px;
    }
    .main-advantages .advantages__top p{
        font-size: 14px;
        line-height: 14px;
    }
    .main-advantages .advantages__top{
        flex-direction: row;
    }
    .main-advantages .advantages__top h2{
        max-width: 231px;
    }
    .main-advantages .advantages__top p{
        max-width: 359px;
    }
    .advantages__top p{
        max-width: 100%;
    }
    .advantages__top{
        flex-direction: column;
    }
    .advantages-transportation .advantages__top h2{
        max-width: 507px;
        margin: 0 auto;
    }
    .advantages-transportation .advantages__top h2,
    .advantages-transportation .advantages__top p{
        text-align: center;
    }
    .advantages-center .advantages__top h2,
    .advantages-center .advantages__top p{
        text-align: center;
    }
}
@media (max-width: 660px) {
    .advantages__block{
        margin-top: 60px;
        grid-template-columns: 1fr;
    }
    .advantages__item-main{
        grid-column: auto;
    }
}
@media (max-width: 540px) {
    .advantages {
        padding: 60px 0;
    }
    .advantages__block{
        margin-top: 50px;
    }
    .advantages__item-main{
        height: 280px;
    }
    .main-advantages .advantages__top{
        flex-direction: column;
    }
    .advantages__item{
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 40px 12px;
    }
    .advantages__item h3{
        text-align: center;
        font-size: 18px;
        line-height: 20px;
    }
    .advantages__item p{
        text-align: center;
        display: none;
    }
    .advantages__top{
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .advantages__top h2{
        text-align: center;
    }
    .advantages__top p{
        text-align: center;
    }
    .advantages__item.active p{
        display: block;
    }
    .advantages__item-icon svg{
        max-width: 40px;
        max-height: 40px;
    }
    .advantages-fleet .advantages__top h2 br{
        display: none;
    }
}
.blockSlider{
    padding: 40px 0;
    margin-bottom: 40px;
}
.blockSlider__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    animation: blockSliderScroll 20s linear infinite;
}
.blockSlider__inner:nth-of-type(2){
    display: none;
    animation: blockSliderScrollLast 20s linear infinite;
}
.blockSlider__item{
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes blockSliderScroll {
    0% {
      transform: translateX(1000px);
    }
    100% {
      transform: translateX(-520px);
    }
}
@keyframes blockSliderScrollLast {
    0% {
        transform: translateX(-520px);
    }
    100% {
        transform: translateX(1000px);
    }
}
@media (max-width: 540px) {
    .blockSlider__inner:nth-of-type(2){
        display: flex;
        margin-top: 20px;
    }
    .blockSlider {
        padding: 30px 0 11px;
        margin-bottom: 60px;
    }
}
.feedback{
    padding: 100px 0 60px;
    background-image: url('../img/feedback.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.feedback::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #011318 4.53%, rgba(101, 101, 101, 0.00) 97.63%);
    height: 241px;
    z-index: -1;
}
.feedback::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #011318 4.53%, rgba(101, 101, 101, 0.00) 97.63%);
    height: 330px;
    z-index: -1;
}
.feedback__title{
    text-align: center;
}
.feedback__form{
    margin: 50px auto 0;
    padding: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feedback__form-input::placeholder,
.feedback__form-textarea::placeholder,
.popup__form-input::placeholder,
.popup__form-textarea::placeholder{
    color: #C3C3C3;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}
.feedback__form-input,
.feedback__form-textarea,
.popup__form-input,
.popup__form-textarea{
    color: #011318;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    border: none;
    outline: none;
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 12px 16px;
    width: 100%;
}
.feedback__form-textarea,
.popup__form-textarea{
    resize: none;
    height: 160px;
}
.feedback__form-btn,
.popup__form-btn{
    text-transform: none;
    padding: 22px;
    max-width: 100%;
    font-size: 18px;
    line-height: 20px;
}
@media (max-width: 540px) {
    .feedback{
        padding: 60px 0;
    }
    .feedback__form{
        padding: 32px 20px;
    }
}
.popup{
    position: fixed;
    inset: 0;
    height: 100vh;
    overflow: auto;
    background: rgba(1, 19, 24, 0.2);
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    transition: all .1s ease;
}
.popup.active{
    opacity: 1;
    pointer-events: all;
}
.popup__inner{
    width: 100%;
    max-width: 550px;
    padding: 60px 80px;
    border-radius: 16px;
    background: #FFF;
    backdrop-filter: blur(4px);
    position: relative;
    margin: 205px auto 50px;
}
.popup__close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}
.popup__form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.popup__form-btn{
    font-weight: 700;
}
@media (max-width: 540px) {
    .popup__inner {
        padding: 60px 24px 40px;
        position: relative;
        margin: 85px auto 50px;
    }
    .popup__close {
        top: 18px;
        right: 18px;
    }
}
.footer{
    padding: 40px 0;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
}
.footer__left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.footer__logo{
    display: flex;
    align-items: center;
}
.footer__socials{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 10px;
}
.footer__socials-item{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    min-width: 26px;
    transition: all .1s ease;
}
.footer__socials-item:hover svg{
    transition: all .1s ease;
}
.footer__socials-item:hover {
    background-color: #fff;
}
.footer__socials-item:hover svg path{
    stroke: #000;
}
.footer__about{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__about-item{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__about-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__about-content{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__about-descr{
    color: #fff;
    font-weight: 500;
    line-height: 24px;
}
@media (max-width: 540px) {
    .footer__inner{
        flex-direction: column;
        gap: 40px;
    }
    .footer__left{
        flex-direction: row;
    }
}


/* contacts */
.contacts{
    padding: 100px 0;
}
.contacts__inner{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.contacts__box{
    display: flex;
    gap: 26px;
    width: 100%;
    max-width: 586px;
}
.about__image{
    display: flex;
    align-items: center;
    height: 432px;
    width: 100%;
    position: relative;
}
.contacts__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contacts__image:first-of-type{
    margin-bottom: 50px;
}
.contacts__image:last-of-type{
    margin-top: 50px;
}
.contacts__content{
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 534px;
}
.contacts__title{
    color: #FFF;
    font-family: 'DaysOne', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 113.636% */
    text-transform: uppercase;
}
.contacts__block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.contacts__block-feedback{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}
.contacts__block-item{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}
.contacts__block-socials{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.contacts__socials-item{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    min-width: 26px;
    transition: all .1s ease;
}
.contacts__socials-item:hover svg{
    transition: all .1s ease;
}
.contacts__socials-item:hover {
    background-color: #fff;
}
.contacts__socials-item:hover svg path{
    stroke: #000;
}
.contacts__block-item--mobile{
    display: none;
}
.contacts__block-item svg{
    min-width: 24px;
}
@media (max-width: 767px) {
    .contacts {
        padding: 80px 0;
    }
    .contacts__inner{
        flex-direction: column-reverse;
        gap: 60px;
    }
    .contacts__title{
        font-size: 32px;
        line-height: 36px;
    }
    .contacts__box,
    .contacts__content{
        max-width: 100%;
    }
    .contacts__content{
        margin-top: 0;
        gap: 32px;
    }
    .contacts__block-socials{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 10px;
    }
    .contacts__image:first-of-type,
    .contacts__image:last-of-type{
        margin: 0;
    }
    .contacts__box{
        gap: 10px;
    }
    .contacts__image{
        width: 100%;
    }
    .contacts__socials-item{
        transform: scale(1.3077);
    }
}
@media (max-width: 540px) {
    .contacts {
        padding: 60px 0;
    }
    .contacts__title{
        text-align: center;
        font-size: 28px;
        line-height: 32px;
    }
    .contacts__image:last-of-type{
        display: none;
    }
    .contacts__block-feedback {
        gap: 12px;
        width: 100%;
    }
    .contacts__block-item{
        font-size: 16px;
    }
    .contacts__block{
        flex-direction: column;
        gap: 19px;
    }
    .contacts__block-socials {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    .header__socials-mobile--hide{
        display: none;
    }
    main.main-contacts {
        margin-top: 109px;
    }
    .contacts__block-item:nth-child(2){
        display: none;
    }
    .contacts__block-item--mobile{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
/* news */
.news{
    padding: 100px 0;
}
.news__title{
    color: #FFF;
    text-align: center;
    font-family: 'DaysOne';
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 113.636% */
    text-transform: uppercase;
}
.news__content{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.news__item{
    border-radius: 16px;
    background: #F3F4F5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 366px;
}
.news__item-content{
    padding: 24px 18px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news__item-image{
    display: flex;
    align-items: center;
    height: 160px;
}
.news__item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news__item h3{
    margin-bottom: 12px;
    color: #011318;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px; /* 111.111% */
    text-transform: uppercase;
}
.news__item p{
    color: #ADADAD;
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    margin-bottom: 18px;
}
.news__item-more{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    color: #1F03C7;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}
.news__pages{
    padding-top: 20px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px   ;
}
.news__pages-prev,
.news__pages-next{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
}
.news__pages-block{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.news__pages-item{
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news__pages-item.active{
    background: #1F03C7;
}
.news__pages-item:hover{
    background-color: #3800DD;
}
@media (max-width: 999px) {
    .news__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .news {
        padding: 80px 0;
    }
    .news__title{
        font-size: 32px;
        line-height: 36px;
    }
    .news__pages-prev, .news__pages-next{
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 540px) {
    .news {
        padding: 60px 0;
    }
    .news__content {
        grid-template-columns: 1fr;
    }
    .news__title{
        font-size: 28px;
        line-height: 32px;
    }
    .news__pages-block{
        order: -1;
    }
    .news__pages{
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .news__pages-block{
        width: 100%;
    }
}


.breadcrumbs{
    display: flex;
    align-items: center;
    gap: 25px;
    overflow: auto;
    margin: 0 -20px;
    padding: 0 20px;
}
.breadcrumbs__item{
    position: relative;
    color: #C3C3C3;
    text-wrap: nowrap;
}
.breadcrumbs__item.active{
    color: #fff;
    font-weight: 700;
    line-height: 24px;
}
.breadcrumbs li:not(:first-of-type) .breadcrumbs__item::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.article{
    padding: 60px 0 100px;
}
.article__top{
    position: relative;
    margin-top: 24px;
}
.article__image{
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
}
.article__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}
.article__share{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 17px;
    gap: 10px;
}
.article__share-item{
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    transition: all .1s ease;
    border-radius: 50%;
}
.article__share-item:hover svg{
    transition: all .1s ease;
}
.article__share-item:hover {
    background-color: #fff;
}
.article__share-item:hover svg path{
    stroke: #000;
}
.article__share::before {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='191' height='99' viewBox='0 0 191 99' fill='none'%3E%3Cpath d='M0.5 0.360107L2.714 2.76894C7.72123 8.21681 10.5 15.3464 10.5 22.7459V22.7459C10.5 39.0498 23.717 52.2668 40.0209 52.2668H58H125.5H171C182.046 52.2668 191 61.2211 191 72.2668V99V0.360107H88.5H0.5Z' fill='%23011318'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    top: -1px;
    right: 0;
    width: 191px;
    height: 108px;
    z-index: -1;
    pointer-events: none;
}
.article__content{
    margin-top: 50px;
}
.article__content h1{
    color: #fff;
    text-align: center;
    margin-bottom: 42px;
}
.article__content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
}
.article__content h2{
    margin-top: 32px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px; /* 121.429% */
}
.article__content h3{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}
.article__content-image{
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    margin: 32px 0;
}
.article__content-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.article__content p + p{
    margin-top: 24px;
}
.text-underline{
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-decoration: underline;
    -webkit-text-decoration-style: underline;
    text-decoration-style: underline;
    text-underline-position: under;
}
@media (max-width: 767px) {
    .article{
        padding: 40px 0 80px;
    }
    .article__share{
        padding: 7px 0;
    }
    .article__share::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='205' height='113' viewBox='0 0 205 113' fill='none'%3E%3Cpath d='M0.5 0H13.5C23.9934 0 32.5 8.50659 32.5 19V19V19C32.5 37.925 47.8417 53.2667 66.7667 53.2667H132.065H169.081H185C196.046 53.2667 205 62.221 205 73.2667V112.5V0H0.5Z' fill='%23011318'/%3E%3C/svg%3E");
    }
}
@media (max-width: 540px) {
    .article {
        padding: 40px 0 60px;
    }
    .article__share{
        position: initial;
        padding: 0;
        margin-top: 24px;
        margin-left: 5px;
        align-items: start;
        justify-content: start;
        gap: 25px;
    }
    .article__share::before{
        content: none;
    }
    .article__share-item{
        transform: scale(1.2666);
    }
    .article__image{
        height: 250px;
    }
    .article__content h2{
        text-align: center;
    }
}
.will-like{
    padding: 100px 0;
}
.will-like__title{
    text-align: center;
}
@media (max-width: 767px) {
    .will-like {
        padding: 80px 0;
    }
}
@media (max-width: 540px) {
    .will-like {
        padding: 60px 0;
    }
}


/* price */
.price::after{
    background: linear-gradient(2deg, #011318 36.53%, rgba(1, 19, 24, 0.00) 94.26%);
    height: 292px;
}
.price .hero__bg > *{
    /*height: 88%;*/
    object-position: top;
    /*width: 90%;*/
}
.price .hero__bg{
    height: 100%;
}   
.price.hero.animate .hero__bg {
    height: 100%;
}
.price.hero.animate .hero__bg > * {
    height: 100%;
    width: 100%;
    object-position: top;
}
.price .hero__inner{
    gap: 32px;
}
@media (max-width: 767px) {
    .price .hero__bg > * {
        /*height: 70%;*/
        /*width: 80%;*/
        object-position: 90%;
    }
    .price.hero.animate .hero__bg > * {
        height: 100%;
        width: 100%;
        object-position: 60%;
    }
}
@media (max-width: 540px) {
    .price.hero.animate .hero__bg > *{
        object-position: 75%;
    }
}

.depend{
    padding: 100px 0;
}
.depend__inner{
    display: flex;
    align-items: stretch;
    gap: 50px;
    justify-content: space-between;
}
.depend__content{
    width: 100%;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto 0;
}
.depend__content p{
    max-width: 467px;
}
.depend__block{
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}
.depend__item{
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    gap: 12px;
}
.depend__item p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    color: #F3F4F5;
}
.depend__content p:nth-of-type(2){
    max-width: 511px;
}
.depend__image{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: auto;
}
.depend__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767px) {
    .depend{
        padding: 80px 0;
    }
    .depend__inner{
        flex-direction: column;
        gap: 60px;
    }
    .depend__content h2,
    .depend__content p{
        text-align: center;
    }
    .depend__content p,
    .depend__content p:nth-of-type(2){
        max-width: 100%;
    }
    .depend__image,
    .depend__content{
        max-width: 100%;
    }
    .depend__block{
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }
    .depend__item {
        width: 100%;
        flex-direction: column;
        width: max-content;
        max-width: 207px;
    }
    .depend__item p{
        text-align: center;
    }
    .depend__item:last-of-type{
        max-width: 156px;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(1){
        order: 1;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(2){
        order: 3;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(3){
        order: 4;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(4){
        order: 2;
    }
}
@media (max-width: 540px) {
    .depend{
        padding: 60px 0;
    }
    .depend__image{
        height: 432px;
    }
    .depend__content{
        gap: 32px;
    }
    .depend__block{
        flex-direction: column;
        gap: 16px;
    }
    .depend__item{
        flex-direction: row;
        align-items: center;
        justify-content: start;
        width: 100%;
        max-width: 100% !important;
    }
    .depend__item p {
        text-align: left;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(3) {
        order: 2;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(4) {
        order: 3;
    }
    .depend__block:nth-of-type(1) .depend__item:nth-of-type(2) {
        order: 4;
    }
    
}

.calculation{
    padding: 100px 0;
}
.calculation__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.calculation__title{
    width: 100%;
    max-width: 550px;
}
.calculation__descr{
    width: 100%;
    max-width: 607px;
}
.calculation__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-4px, 2px);
}
.calculation__box{
    margin-top: 50px;
    display: flex;
    width: 100%;
}
.calculation__left{
    width: 100%;
    max-width: 295px;
}
.calculation__content{
    width: 100%;
    display: flex;
}
.calculation__item{
    padding: 15px;
    flex: 1;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculation__item p:last-of-type{
    text-align: center;
    color: #fff;
}
.calculation__left .calculation__item p:last-of-type{
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    text-transform: uppercase;
}
.calculation__block{
    display: flex;
    flex-direction: column;
}
.calculation__left{
    display: flex;
    flex-direction: column;
}
.calculation__item:not(:last-of-type){
    border-bottom: 1px solid #F3F4F5;
}
.calculation__box{
    border: 1px solid #F3F4F5;
    border-radius: 16px;
}
.calculation__item:nth-of-type(2){
    min-height: 112px;
}
.calculation__left .calculation__item{
    justify-content: start;
    padding-left: 23px;
}
.calculation__content .calculation__item{
    border-left: 1px solid #F3F4F5;
}
.calculation__item p:last-of-type span{
    display: none;
}
@media (max-width: 1200px) {
    .calculation__box{
        flex-direction: column;
    }
    .calculation__left{
        flex-direction: row;
        max-width: 100%;
        min-height: 72px;
    }
    .calculation__left .calculation__item{
        padding-left: 11px;
    }
    .calculation__left .calculation__item:not(:first-of-type){
        width: 100%;
    }
    .calculation__left .calculation__item:not(:first-of-type) .calculation__item p:last-of-type{
        width: calc(100% - 11px);
        max-width: calc(100% - 11px);
        text-align: center;
    }
    .calculation__item:nth-of-type(2){
        min-height: auto;
    }
    .calculation__content{
        flex-direction: column;
    }
    .calculation__block{
        flex-direction: row;
    }
    .calculation__item {
        border-bottom: 1px solid #F3F4F5;
        padding: 0;
        min-height: 52px;
    }
    .calculation__content .calculation__item{
        border-left: none;
    }
    .calculation__left .calculation__item p:last-of-type span:first-of-type{
        display: inline-block;
    }
    .calculation__item:not(:first-of-type){
        border-left: 1px solid #F3F4F5;
    }
    .calculation__item p:last-of-type{
        max-width: 118px;
    }
    .calculation__block:nth-of-type(1){
        min-height: 92px;
    }
    .calculation__block:nth-of-type(2){
        min-height: 92px;
    }
    .calculation__block:nth-of-type(3),
    .calculation__block:nth-of-type(6){
        min-height: 112px;
    }
    .calculation__block:nth-of-type(5){
        min-height: 72px;
    }
}
@media (max-width: 767px) {
    .calculation {
        padding: 80px 0;
    }
    .calculation .container{
        padding: 0 32px;
    }
    .calculation__top{
        flex-direction: column;
        gap: 20px;
    }
    .calculation__title,
    .calculation__descr{
        max-width: 100%;
        text-align: center;
    }
    .calculation__descr br{
        display: none;
    }
}
.calculation__item-about,
.calculation__item-select{
    display: none;
}
@media (max-width: 728px) {
    .calculation__left .calculation__item:not(:first-of-type){
        display: none;
    }
    .calculation__block .calculation__item:first-of-type{
        display: none;
    }
    .calculation__block{
        flex-direction: column;
        display: none;
    }
    .calculation__block.active{
        display: flex;
    }
    .calculation__item{
        min-height: auto !important;
        padding: 11px;
        flex-direction: column;
        gap: 12px;
        justify-content: start;
        align-items: start;
    }
    .calculation__item p:last-of-type span{
        display: inline-block;
    }
    .calculation__item-about{
        display: block;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 125% */
        text-transform: uppercase;
    }
    .calculation__item p:last-of-type{
        display: flex;
        max-width: none;
    }
    .calculation__item p:last-of-type span{
        margin-right: 3px;
    }
    .calculation__left .calculation__item{
        justify-content: center;
    }
    .calculation__left .calculation__item p:last-of-type span:first-of-type{
        display: none;
    }
    .calculation__left .calculation__item p:last-of-type span:last-of-type{
        display: inline-block;
    }
    .calculation__item:nth-of-type(n+4){
        border-radius: 0 0 16px 16px;
    }
    .calculation__item p:last-of-type{
        font-size: 14px;
        line-height: 16px;
    }
    .calculation__left .calculation__item:first-of-type{
        gap: 8px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .calculation__box {
        flex-direction: column;
        width: auto;
        margin: 60px -2px 0;
    }
    .calculation__left .calculation__item{
        padding: 11px;
    }
    .calculation__item-select{
        position: relative;
        display: block;
    }
    .calculation__select-selected{
        border-radius: 8px;
        border: 1px solid #F3F4F5;
        background: #fff;
        height: 32px;
        width: 100px;
        display: flex;
        align-items: center;
        padding: 8px;
        color: #011318;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 114.286% */
        /*text-transform: uppercase;*/
        cursor: pointer;
        position: relative;
    }
    .calculation__select-selected::before{
        content: '';
        position: absolute;
        background-position: center;
        background-repeat: no-repeat;
        width: 12px;
        height: 12px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6' fill='none'%3E%3Cpath d='M1 0.5L6 5.5L11 0.5' stroke='%23011318' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
    }
    .calculation__select-content{
        position: absolute;
        padding: 8px 0;
        border-radius: 8px;
        border: 1px solid #F3F4F5;
        background: #FFF;
        box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
        left: 0;
        right: 0;
        top: 40px;
        display: none;
    }
    .calculation__select-item{
        padding: 8px;
        color: #011318;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 114.286% */
        text-transform: uppercase;
        cursor: pointer;
        position: relative;
    }
    .calculation__select-item::after{
        position: absolute;
        content: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.3346 4L6.0013 11.3333L2.66797 8' stroke='%231F03C7' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-position: center;
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
        top: 50%;
        transform: translateY(-50%);
        right: 8px;    
    }
    .calculation__select-item.active{
        background-color: #F3F4F5;
    }
    .calculation__select-item.active::after{
        content: '';
    }
    .calculation__item-select.active .calculation__select-selected::before {
        transform: translateY(-54%) rotate(-180deg);
    }
    .calculation__item-select.active .calculation__select-content{
        display: block;
    }
}
@media (max-width: 540px) {
    .calculation {
        padding: 60px 0;
    }
}
.transportation{
    padding: 100px 0;
    position: relative;
}
.transportation__inner{
    position: relative;
    z-index: 1;
}
.transportation__inner::before {
    content: '';
    position: absolute;
    background-image: url('../img/price/transportation.svg');
    background-position: center;
    background-size: 100%;
    width: 1589.419px;
    height: 628.531px;
    top: 177px;
    left: -105px;
    z-index: -1;
}
.transportation__top{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.transportation__top h2{
    width: 100%;
    max-width: 647px;
}
.transportation__top p{
    width: 100%;
    max-width: 491px;
}
.transportation__content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1140px;
    margin: 131px auto 0;
}
.transportation__block{
    width: 100%;
    max-width: 538px;
    border-radius: 15.84px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3.9600002765655518px);
    padding: 31px;
    height: max-content;
}
.transportation__block p{
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 111.111% */
    text-transform: uppercase;
}
.transportation__block-content{
    display: flex;
    flex-direction: column;
}
.transportation__item{
    padding: 13px 0 13px 25px;
    border-bottom: 1px solid #ADADAD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    position: relative;
}
.transportation__item span{
    position: relative;
}
.transportation__item span::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    top: 10px;
    left: -15px;
}
.transportation__item:first-of-type{
    border-top: 1px solid #ADADAD;
}
.transportation__more{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 3.438px 7.737px 3.438px;
    cursor: pointer;
    width: max-content;
    margin: 19px auto 0;
}
.transportation__item:nth-child(n+8) {
    display: none;
}
.transportation__block.show .transportation__item:nth-child(n+8) {
    display: flex;
}
.transportation__block.show .transportation__more{
    transform: rotate(-180deg);
}
@media (max-width: 767px) {
    .transportation {
        padding: 80px 0;
    }
    .transportation__inner::before {
        top: 251px;
        left: -295px;
    }
    .transportation__top{
        flex-direction: column;
    }
    .transportation__top h2,
    .transportation__top p {
        max-width: 100%;
        text-align: center;
    }
    .transportation__content{
        gap: 10px;
        margin-top: 98px;
    }
    .transportation__item{
        gap: 24px;
    }
    .transportation__item svg{
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
}
@media (max-width: 590px) {
    .transportation {
        padding: 60px 0;
    }
    .transportation__top{
        gap: 16px;
    }
    .transportation__content {
        gap: 16px;
        margin-top: 112px;
        flex-direction: column;
    }
    .transportation__inner::before{
        content: none;
    }
    .transportation__item{
        font-size: 14px;
        line-height: 16px;
        padding: 10px 0 10px 25px;
        justify-content: center;
    }
    .transportation__item svg{
        display: none;
    }
    .transportation__block{
        padding: 26px 14px;
    }
    .transportation__item span::before{
        top: 6px;
    }
    .transportation__block p{
        font-size: 16px;
        margin-bottom: 14px;
    }
    .transportation__more{
        margin-top: 14px;
    }
}


/*  */
.services::after{
    background: linear-gradient(2deg, #011318 36.53%, rgba(1, 19, 24, 0.00) 94.26%);
    height: 450.33px;
}
.services .hero__bg > *{
    height: 100%;
    object-position: top;
    width: 100%;
}
.services .hero__bg{
    height: 100%;
}   
.services.hero.animate .hero__bg {
    height: 100%;
}
.services.hero.animate .hero__bg > * {
    height: 100%;
    width: 100%;
    object-position: 18%;
}
.services .hero__inner{
    gap: 32px;
}
@media (max-width: 767px) {
    .about-services .about__content h2,
    .about-services .about__content p{
        text-align: left;
    }
    .about-services .about__inner{
        gap: 60px;
    }
    .about-services .about__box{
        gap: 25px;
    }
    .about-transportation .about__content h2,
    .about-transportation .about__content p{
        text-align: center;
    }
    .about-transportation .about__inner{
        gap: 60px;
    }
    .about-transportation .about__box{
        gap: 30px;
    }
}
@media (max-width: 540px) {
    .about-services .about__box{
        display: block;
    }
    .about-services .about__content h2, .about-services .about__content p{
        text-align: center;
    }
    .about-services {
        padding: 60px 0;
    }
}


.routes{
    padding: 100px 0;
}
.routes__inner{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px 40px;
}
.routes__image{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
}
.routes__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.routes__content{
    width: 100%;
    max-width: 640px;
}
.routes__block{
    margin-top: 20px;
}
.routes__block{
    display: flex;
    flex-direction: column;
}
.routes__item{
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #ADADAD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    position: relative;
}
.routes__item span{
    position: relative;
}
.routes__item span::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    top: 10px;
    left: -15px;
}
.routes__item:first-of-type{
    border-top: 1px solid #ADADAD;
}
.routes__more{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 3.438px 7.737px 3.438px;
    cursor: pointer;
    width: max-content;
    margin: 0 auto;
}
.routes__item:nth-child(n+8) {
    display: none;
}
.routes__content.show .routes__item:nth-child(n+8) {
    display: flex;
}
.routes__content.show .routes__more svg{
    transform: rotate(-180deg);
}
@media (max-width: 767px) {
    .routes {
        padding: 80px 0;
    }
    .routes__inner{
        flex-direction: column-reverse;
    }
    .routes__image {
        height: 700px;
        max-width: 100%;
    }
    .routes__content{
        max-width: 100%;
    }
    .routes-transportation .routes__content h2{
        text-align: center;
    }
}
@media (max-width: 540px) {
    .routes {
        padding: 60px 0;
    }
    .routes__content h2{
        text-align: center;
    }
    .routes__image{
        height: 432px;
    }
}

/* transportation in ukraine */
.transportation-ukraine::after{
    background: linear-gradient(2deg, #011318 36.53%, rgba(1, 19, 24, 0.00) 94.26%);
    height: 347.205px;
}
.transportation-ukraine .hero__bg > *{
    /*height: 88%;*/
    object-position: top;
    /*width: 90%;*/
}
.transportation-ukraine .hero__bg{
    height: 100%;
}   
.transportation-ukraine.hero.animate .hero__bg {
    height: 108%;
}
.transportation-ukraine.hero.animate .hero__bg > * {
    height: 100%;
    width: 100%;
    object-position: left;
}
.transportation-ukraine .hero__inner{
    gap: 32px;
}
@media (max-width: 767px) {
    .transportation-ukraine .hero__bg > * {
        /*height: 70%;*/
        /*width: 80%;*/
        object-position: 90%;
    }
    .transportation-ukraine.hero.animate .hero__bg > * {
        height: 100%;
        width: 100%;
        object-position: 60%;
    }
}


.brokerage::after{
    background: linear-gradient(2deg, #011318 36.53%, rgba(1, 19, 24, 0.00) 94.26%);
    height: 292px;
}
.brokerage .hero__bg > *{
    /*height: 88%;*/
    object-position: top;
    /*width: 90%;*/
}
.brokerage .hero__bg{
    height: 100%;
}   
.brokerage.hero.animate .hero__bg {
    height: 108%;
}
.brokerage.hero.animate .hero__bg > * {
    height: 100%;
    width: 100%;
    object-position: left;
}
.brokerage .hero__inner{
    gap: 32px;
    max-width: 976px;
}
@media (max-width: 767px) {
    .brokerage .hero__bg > * {
        /*height: 70%;*/
        /*width: 80%;*/
        object-position: 90%;
    }
    .brokerage.hero.animate .hero__bg > * {
        height: 100%;
        width: 100%;
        object-position: center;
    }
}



.our-fleet::after{
    background: linear-gradient(2deg, #011318 36.53%, rgba(1, 19, 24, 0.00) 94.26%);
    height: 292px;
}
.our-fleet .hero__bg > * {
    /*height: 78%;*/
    object-position: bottom;
    /*width: 79%;*/
}
.our-fleet .hero__bg{
    height: 100%;
}   
.our-fleet.hero.animate .hero__bg {
    height: 100%;
}
.our-fleet.hero.animate .hero__bg > * {
    height: 100%;
    width: 100%;
    object-position: left -180px;
}
.our-fleet .hero__inner{
    gap: 8px;
    max-width: 696px;
}
.our-fleet .hero__btn{
    margin-top: 24px;
}
@media (max-width: 767px) {
    .our-fleet .hero__bg > * {
        /*height: 70%;*/
        /*width: 80%;*/
        object-position: 90%;
    }
    .our-fleet.hero.animate .hero__bg > * {
        height: 100%;
        width: 100%;
        object-position: center;
    }
}

/*  */
.about-fleet{
    padding: 100px 0;
}
.about-fleet .about__content{
    max-width: 640px;
}
.about-fleet .about__box{
    max-width: 500px;
}
.about-fleet .about__image{
    min-height: 550px;
}
@media (max-width: 767px) {
    .about-fleet{
        padding: 80px 0 100px;
    }
    .about-fleet .about__inner{
        flex-direction: column-reverse;
        gap: 60px;
    }
    .about-fleet .about__box{
        max-width: 100%;
    }
}
@media (max-width: 540px) {
    .about-fleet{
        padding: 60px 0;
    }
    .about-fleet .about__image{
        min-height: auto;
    }
    .about-fleet .about__item{
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }
}
.fleet{
    padding: 100px 0;
}
.fleet__block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 56px;
}
.fleet__item{
    padding: 50px 0;
    border-radius: 16px;
    border: 0.3px solid rgba(195, 195, 195, 0.30);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}
.fleet__item-image{
    display: flex;
    align-items: center;
    height: 270px;
    position: relative;
}
.fleet__item-image img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -37px;
    width: 118.3%;
}
.fleet__item:nth-of-type(2) .fleet__item-image img{
    width: 132.7%;
    left: -51px;
}
.fleet__item:nth-of-type(3) .fleet__item-image img{
    width: 120.3%;
}

.fleet__item-content{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    flex: 1;
}
.fleet__item-about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F3F4F5;
}
.fleet__item-about p:first-of-type{
    color: #F3F4F5;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}
.fleet__item-about p:first-of-type span{
    color: #FFF;
    font-size: clamp(17px, 1.6vw, 28px);
    font-weight: 700;
    line-height: 34px; /* 121.429% */
}
.fleet__item-ul{
    flex: 1;
}
.fleet__item-ul li{
    position: relative;
    padding-left: 28px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.fleet__item-ul li::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM13.7071 8.70711C14.0976 8.31658 14.0976 7.68342 13.7071 7.29289C13.3166 6.90237 12.6834 6.90237 12.2929 7.29289L9 10.5858L7.70711 9.29289C7.31658 8.90237 6.68342 8.90237 6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071L8.29289 12.7071C8.68342 13.0976 9.31658 13.0976 9.70711 12.7071L13.7071 8.70711Z' fill='%231F03C7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}
.fleet__item-ul li + li{
    margin-top: 20px;
}
.fleet__item-btn{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 100%;
    padding: 10px;
    height: 52px;
    margin-top: 20px;
}
.fleet__item-about p:last-of-type{
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px; /* 109.091% */
    /*text-transform: uppercase;*/
    text-wrap: nowrap;
}

@media (max-width: 1024px) {
    .fleet__block {
        grid-template-columns: repeat(2, 1fr);
    }
    .fleet__item-image img {
        left: -15px;
        width: 108.3%;
    }
    .fleet__item:nth-of-type(3) .fleet__item-image img{
        top: -60px;
        transform: none;
    }
}
@media (max-width: 767px) {
    .fleet{
        padding-top: 80px;
    }
    .fleet__item{
        padding: 40px 0;
    }
    .fleet__item:nth-of-type(3) .fleet__item-image img{
        top: 40%;
        transform: translateY(-50%);
    }
    .fleet__item-about p:first-of-type span {
        color: #FFF;
        font-size: clamp(17px, 3.1vw, 23px);
        font-weight: 700;
        line-height: clamp(17px, 3.1vw, 23px);
    }
    .fleet__item-about p:last-of-type{
        font-size: 18px;
        line-height: 19px;
    }
    .fleet__item-ul li + li {
        margin-top: 16px;
    }
    .fleet__item-about {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    .fleet__item-btn{
        margin-top: 16px;
        font-size: 14.884px;
        line-height: 19.845px;
    }
    .fleet__item-image img {
        left: -38px;
        width: 120.1%;
    }
}
@media (max-width: 700px) {
    .fleet__block{
        grid-template-columns: 1fr;
    }
    .fleet__item-image img {
        left: 50%;
        width: 111%;
        transform: translate(-50%, -50%);
        max-width: 420px;
    }
    .fleet__item:nth-of-type(2) .fleet__item-image img{
        left: 50%;
    }
    .fleet__item:nth-of-type(3) .fleet__item-image img{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 450px;
    }
    .fleet__item-about p:first-of-type span{
        font-size: 23.152px;
        line-height: 28.114px;
    }
}
@media (max-width: 540px) {
    .fleet{
        padding: 60px 0;
    }
    .fleet__item{
        padding-top: 20px;
    }
    .fleet__item-image{
        height: 230px;
    }
    .fleet__item-image img,
    .fleet__item:nth-of-type(3) .fleet__item-image img{
        max-width: 420px;
    }
}
input::placeholder, textarea::placeholder {
    font-size: 14px!important;
    color: #0A0A0A!important;
}
.cooperate{
    font-size: 12px;
    margin-top: 20px;
    color: #000!important;
}
