@font-face {
    font-family: 'Futura PT';
    src: url('../font/FuturaPT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'charterregular';
    src: url('../font/charter_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'charterbold';
    src: url('../font/charter_bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato Regular'), local('Lato-Regular'),
        url('../font/Lato-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato Medium'), local('Lato-Medium'),
        url('../font/Lato-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato Semibold'), local('Lato-Semibold'),
        url('../font/Lato-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato Bold'), local('Lato-Bold'),
        url('../font/Lato-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cabin';
    src: local('Cabin Regular'), local('Cabin-Regular'),
        url('../font/Cabin-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cabin';
    src: local('Cabin Medium'), local('Cabin-Medium'),
        url('../font/Cabin-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cabin';
    src: local('Cabin SemiBold'), local('Cabin-SemiBold'),
        url('../font/Cabin-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cabin';
    src: local('Cabin Bold'), local('Cabin-Bold'),
        url('../font/Cabin-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



html {
    scroll-behavior: smooth;
    }
body{
    background-color: #fff;
    
    line-height: 23.6px;
    font-size: 16px;
}
*{
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
}
.wrapper{
    width: 1200px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.grid-form{
    display: grid;
    align-items: start;
}
.grid{
    display: grid;
}
.two-columns{
    grid-template-columns: 1fr 1fr;
}
.three-columns{
    grid-template-columns: 1fr 1fr 1fr;
}
.space-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}
.white {
    color:white;
}
a{
    text-decoration: none;
    color: inherit;
}
ul{
    list-style: none;
}
.pointer{
    cursor: pointer;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
h1{
    margin-bottom: 20px;
    font-size: 51px;
    font-weight: 400;
    font-family: 'charterregular', serif;
    line-height: 63px; 
}
h2, h2 span{
    color: #181818;
    font-family: 'charterregular', serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 52.2px;
}
h2 span{
    font-size: inherit;
}
h3, h3 span{
    font-family: 'charterregular', serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 10px;
    color: #181818;;
}
p{
    color: #595566;
    line-height: 23.6px;
    font-size: 16px;
}
.blue-title{
    border-radius: 20px;
    font-size: 14px;
    background-color: #0077E9;
    display: inline-block;
    padding: 5px 20px 3px 20px;
    margin-bottom: 12px;
    letter-spacing:  2.32px;
}
.none{
    display: none !important;
}

/*-------------------------------------------------------------------------ШАПКА САЙТА*/
.header-top{
    background-color: #011933;
    padding: 16px 0;
    font-size: 14px;
}
.icon-clock::before, .icon-map-marker::before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 15px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-clock::before{
    background-image: url('../img/icon-clock.svg');
}
.icon-map-marker::before{
    background-image: url('../img/icon-map-marker.svg');
}
.social-icon{
    margin-right: 25px;
}
.social-icon-list{
    display: inline-flex;
}
.social-icon-list li:hover {
    transform: scale(1.1);
    transition-duration: 0.2s;
}
.social-icon::before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
}
.instagram::before{
    background-image: url('../img/Instagram.webp');
}
.fasebook::before{
    background-image: url('../img/Facebook.webp');
}
.twitter::before{
    background-image: url('../img/Twitter.webp');
}
.linkedin::before{
    background-image: url('../img/Linked-In.webp');
}
.fly{
    position: fixed;
    z-index: 3;
    width: 100%;
    top: 55px;
}
.top{
    top: 0 !important;
    transition-duration: 0.1s;
}
.header-main{
    background-color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid lightgray;
}
.main-nav ul li {
    color: #262626;
    position: relative;
}
.main-nav ul li::before{
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border: 1px solid #515151;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.main-nav ul li a{
    display: inline-block;
    padding: 20px 35px 20px 20px;
    position: relative;
    z-index: 1;
    font-size: 17.728px;
}
.main-nav ul li:last-child a{
    padding-right: 0;
}
.main-nav ul li:hover{
    color: #FA0026;
}
.main-nav ul li:hover::before{
    border-color: #FA0026;
}
.main-nav ul .nav-items-active{
    color: #FA0026;
}
.main-nav ul .nav-items-active::before{
    border-color: #FA0026;
    background-color: #FA0026;
}
.header-phone{
    background-color: #F3F3F3;
    padding: 8px 15px 8px 10px;
    border-radius: 42px;
    font-size: 18px;
    font-weight: 600;
    height: 52px;
    box-sizing: border-box;
}
.header-phone:hover{
    background-color: #FA0026;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    color: #fff;
}
.header-phone:active{
    background-color: #EB0226;;
}
.header-phone::before{
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../img/icon-header-phone.svg');
    background-color: #FA0026;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    margin-right: 12px;
}
.header-phone:hover::before{
    background-image: url('../img/icon-header-phone-hover.svg');
    background-color: #fff;
}
.header-phone span {
    margin-bottom: -3px;
}



.language-selection{
    display: inline-flex;
    justify-content: center;
    margin-right: 65px;
    height: 100%;
    background-color: #0e253d;
    padding: 0 14px;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}
.language-name{
    position: absolute;
    z-index: 2;
    top:50%;
    left:50%;
    transform:translate(-50%, -70%);
    display: inline-flex;
    align-items: center;
}
.language-name::before{
    content:"";
    width: 22px;
    height: 22px;
    display: inline-flex;
    background-image: url('../img/lang.png');
    background-size: contain;
    margin-right: 8px;
}
.language-name::after{
    content: "";
    width: 12px;
    height: 12px;
    display: inline-flex;
    background-image: url(../img/lang-bown.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    margin-left: 5px;
}
.language-selection::after{
    content: "";
    width: 82px;
    height: 57.6px;
    position: absolute;
    color: #fff;
    top: -35px;
    z-index: 1;
}
.language-selection:hover::after{
    background-color: #0e253d;
}


.language-list{
    display: none;
    position: absolute;
    top: 20px;
    color: #595566;
    line-height: 28.365px;
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
.language-list li{
    padding: 9px 24px 9px 33px;   
}
.language-list li:hover .lang-name{
    display: inline-block;
    transform: scale(1.15);
    transition-duration: 0.2s;
}
.language-selection:hover .language-list, .language-list-click{
    display: block;
    z-index: 4;
}
.lang-acrive{
    background-color: #F3F3F3;
    color: #FA0026;
}
/*-------------------------------------------------------------------------БАНЕР*/
#baner{
    background-color: #011933;
    height: 780px;
    position: relative;
    overflow: hidden;
}
#baner::before{
    content:"";
    display:inline-block;
    width:279px;
    height:279px;
    position:absolute;
    transform:rotate(-45deg);
    bottom:251px;
    left:-222px;
    background-image:url('../img/decor.webp');
}
#baner section{
    height: 100%;
}
#baner>section>div {
    width: 545px;
    background-color: #011933;
    position: relative;
    z-index: 1;
    outline:10px solid #011933;
}
#baner>section>div>p{
    font-size: 22px;
    font-weight: 400;
    line-height: 32.45px;
}
.banner-image{
    position: absolute;
    right: 0;
    height: 780px;
    width: 50%;
    object-fit: cover;
}
.button-baner{
    background-color: #fff;
    border-radius: 42px;
    padding: 8px 15px 8px 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    border: none;
    height: 52px;
    box-sizing: border-box;
    color: #353535;
}
.button-baner:hover{
    background-color: #FA0026;
    color: #fff;
}
.button-baner:active{
    background-color: #EB0226;
}
.button-baner::before{
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #FA0026;
    background-image: url('../img/icon-butten-baner.svg');
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-right: 10px;
}
.button-baner:hover::before{
    background-color: #fff;
    background-image: url('../img/icon-butten-baner-hover.svg');
}
.naming{
    color: #fff;
    font-size: 24px !important;
    margin-top: 50px;
    margin-bottom: 5px;
    font-style: italic;
    font-family: "Futura PT";
}
.cite{
    color: #fff;
    font-size: 22px  !important;
    font-style: italic;
    font-family: "Futura PT";
}
/*-------------------------------------------------------------------------ПРЕИМУЩЕСТВА (3 ПЛАШКИ)*/
#advantages ul{
    gap: 35px;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}
#advantages ul li {
    padding: 195px 40px 30px 40px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
#advantages ul li:nth-child(1){
    background-image: url('../img/advantages-li-1.webp');   
}
#advantages ul li:nth-child(2){
    background-image: url('../img/advantages-li-2.webp');
}
#advantages ul li:nth-child(3){
    background-image: url('../img/advantages-li-33.webp');
    background-size: cover;
    background-position: bottom;
}
.advantages-list p{
    font-weight: 400;
    margin-bottom: 15px;
}
.advantages-list button{
    border-radius: 55px;
    background: #F3F3F3;
    padding: 16px 40px;
    color: #353535;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: none;
    height: 52px;
    box-sizing: border-box;
    margin-top: auto;
}
.advantages-list button:hover{
    background-color: #011933;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    color: #fff;
}
.advantages-list button:active{
    box-shadow: 0px 0px 0px 0px;
}
/*-------------------------------------------------------------------------О НАС*/
#about{
    padding-top:100px;
    grid-template-columns: 480px 1fr;
    gap: 100px;
    position: relative;
    margin-bottom: 155px;
}
#aboutimg{
    position:relative;
}
#aboutimg::before{
    content: "";
    display: inline-block;
    width: 324px;
    height: 324px;
    background-image: url('../img/decor.webp');
    position: absolute;
    top: 300px;
    left: -45px;
}
#about p {
    margin-top:20px;
}
#about dl{
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 17px 25px;
    display: inline-block;
    width: 32%;
    margin: 40px 0;
    text-align: center;
}
#about dl:first-child{
    margin-right: 20px;
}
#about dt{
    color: #181818;
    font-family: 'Cabin', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 34.8px;
    text-align: center;
    margin-bottom: 5px;
}
#about dd{
    color: #181818;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 23.6px;
}
#about button{
    padding: 15px 27px;
    background-color: #FA0026;
    border-radius: 55px;
    font-size: 18px;
    font-weight: 400;
    border: none;
    height: 52px;
    box-sizing: border-box;
}
#about button:hover{
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}
#about button:active{
    background-color: #EB0226;;
}
#about img{
    border-radius: 28px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}



/*-------------------------------------------------------------------------УСЛУГИ*/
#services{
    background-color: #011933;
    padding: 100px 0;
    text-align: center;
}
.servic-list{
    gap: 20px;
    margin-top: 38px;
}
.servic-list li{
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 45px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.servic-list li::before{
    content: "";
    display: inline-block;
    width: 98px;
    height: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    margin-bottom: 20px;
    position: relative;
    left: -13px;
}
.servic-list li:nth-child(1):before{
    background-image: url('../img/secvic-icon-1.svg');
}
.servic-list li:nth-child(2):before{
    background-image: url('../img/secvic-icon-2.svg');
}
.servic-list li:nth-child(3):before{
    background-image: url('../img/secvic-icon-3.svg');
}
.servic-list li:nth-child(4):before{
    background-image: url('../img/secvic-icon-4.svg');
}
.servic-list li:nth-child(5):before{
    background-image: url('../img/secvic-icon-5.svg');
}
.servic-list li:nth-child(6):before{
    background-image: url('../img/secvic-icon-6.svg');
}
#services h3{
    font-family: 'charterregular', serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.translate.service-description {
    margin-bottom: 20px;
}
.more{
    background-color: #fff;
    font-size: 18px;
    font-weight: 600;
    color:#353535;
    padding: 16px 40px 16px 40px;
    border-radius: 55px;
    display: inline-block;
    margin-top: auto;
}
.more:hover{
    background-color: #FA0026;
    color:#fff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}
.more:active {
    background-color: #EB0226;
}
/*-------------------------------------------------------------------------РАБОТА (2 секции)*/
#worck{
    grid-template-columns: 510px 590px;
    gap: 100px;
    padding-top: 100px;
}
.proccess-description{
    margin-top: 16px;
}
#proccess h3 {
    font-size: 20px;
    line-height: 23.2px;
    margin-bottom: 10px;
    font-weight: 600;
}
.proccess-list{
    margin-top: 40px;
    width: 90%;
}
.proccess-list li{
    padding: 28px 0 40px 0;
    border-top: 1px solid #C1C1C1;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
}
.proccess-list li::before{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    margin-right: 16px;
    background-color: #011933;
    border-radius: 50%;
    color: #FFF;
    font-family: 'Cabin', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 30.16px;
}
.proccess-list li:nth-child(1)::before{
    content: "1";
}
.proccess-list li:nth-child(2)::before{
    content: "2";
}
.proccess-list li:nth-child(3)::before{
    content: "3";
}
#growing div:last-of-type{
    padding: 17px 0px;
}
#growing>div>p:first-of-type{
    margin-bottom: 25px;
}
.growing-list {
    gap: 16px;
}
.growing-list li{
    background-color: #f5f5f5;
    padding: 33px 23px;
    border-radius: 20px;
    border: 1px solid #EAEAEA;
}
.growing-list h3 {
    font-size: 20px;
    line-height: 23.2px;
    margin-bottom: 10px; 
    font-weight: 600;
}
.growing-list li::before{
    content: "";
    width: 52px;
    height: 52px;
    display: inline-block;
    background-color: #FA0026;
    border-radius: 50%;
    margin-bottom: 22px;
}
.growing-list li:nth-child(1):before{
    background-image: url('../img/growing-icon-1.svg');
}
.growing-list li:nth-child(2):before{
    background-image: url('../img/growing-icon-2.svg');
}
.growing-list li:nth-child(3):before{
    background-image: url('../img/growing-icon-3.svg');
}
.growing-list li:nth-child(4):before{
    background-image: url('../img/growing-icon-4.svg');
}
/*-------------------------------------------------------------------------ПРОГРЕМ БАР*/
.experiance-progress dl dt{
    background-position: center;
    background-size: contain;
}
.experiance-progress dl:nth-child(1) dt{
    background-image: url('../img/circle-1.png');
}
.experiance-progress dl:nth-child(2) dt{
    background-image: url('../img/circle-2.png');
}
.experiance-progress dl:nth-child(3) dt{
    background-image: url('../img/circle-2.png');
}
#experiance dt{
    font-family: 'Cabin', sans-serif;
    font-size: 42px;
    font-weight: 7500;
    line-height: 48.72px;
    width: 185px;
    height: 185px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    align-items: center;
}
#experiance dd {
    font-family: 'Cabin', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 29px;
    margin-top: 10px;
    text-align: center;
}
.experiance-progress{
    gap: 26px;
}
#experiance>section>div>p{
    font-size: 22px;
    font-weight: 400;
    line-height: 32.45px;
    margin-top: 20px;
}
.experiance-block{
    grid-template-columns: 375px 1fr;
    gap: 89px;
}
#experiance {
    background-color: #011933;
    padding: 120px 0;
    margin-top:100px;
    position:relative;
    overflow:hidden;
}
#experiance section{
    position:relative;
    z-index:2;
    background-color:#011933;
    outline:10px solid #011933;
}
#experiance::before{
    content:"";
    display:inline-block;
    width:279px;
    height:279px;
    position:absolute;
    bottom:26px;
    left:-206px;
    background-image:url('../img/decor.webp');
}
#experiance::after{
    content:"";
    display:inline-block;
    width:279px;
    height:279px;
    position:absolute;
    top:74px;
    right:-210px;
    background-image:url('../img/decor.webp');
}
/*-------------------------------------------------------------------------ОТЗЫВЫ*/
#reviews blockquote{
    padding: 28px 30px;
    border-radius: 20px;
    background: #FDFDFD;
    flex-grow: 1;
    position: relative;
}
#reviews blockquote::after{
    content: '"';
    display: grid;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #011933;
    background-image: url(../img/reviws-icon.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    top: -20px;
    right: 30px;
}
.author-reviews::before{
    content: "";
    display: inline-block;
    width: 81px;
    height: 81px;
    margin-right: 13px;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
}
.r1.author-reviews::before{
    background-image: url('../img/reviews-00.webp');
}
.r2.author-reviews::before{
    background-image: url('../img/reviews-2.webp');
}
.r3.author-reviews::before{
    background-image: url('../img/reviews-3.webp');
}
.r4.author-reviews::before {
    background-image: url(../img/reviews-99.webp);
}
.author-reviews p {
    padding: 1px 9px;
    border-radius: 20px;
    background: #FFF;
    color: #181818;
    margin-top: 7px;
    width: max-content;
}
.author-reviews cite{
    font-family: 'charterregular', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 23.2px;
    font-style: normal; 
}
.author-reviews{
    margin-bottom: 22px;
}
#reviews article{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reviews-list li{
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 43px 29px;
    box-sizing: border-box;
    height: 470px;
}
#reviews h2 {
    margin-bottom: 24px;
}
#reviews{
    padding-top:100px;
}
.wslider {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 80px;
}
.wslider-inner {
    display: flex;
    gap:42px;
    height: 100%;
    transition: transform 0.5s;
}
.wslide {
    flex: 0 0 372px; /* Ширина слайдов */
    height: 100%;
}
.wslider-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.wslider-nav-button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}
.wslider-nav-button.wactive {
    background-color: #333;
}
.wslider-arrow {
    position: absolute;
    border-radius: 42px;
    background-color: #F3F3F3;;
    color: #353535;
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
    bottom: 0px;
    width: auto;
    height: 52px;
    display: flex;
    align-items: center;
    padding:8px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
}
.wslider-arrow:hover{
    background-color:#FA0026;
    color:#fff;
}
.wslider-arrow:active{
    background-color:#EB0226;
}
.wslider-arrow.prev {
    right: 0px;
    justify-content: right;
    padding-left: 20px;
}
.wslider-arrow.prev::after{
    content: "";
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 38px;
    font-weight: 900;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 13px;
    background-color: #FA0026;
    border: none;
    background-image: url('../img/arrow-active.svg');
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    color: #fff;
    transition: background-color 0.3s;
}
.wslider-arrow:hover.prev::after {
    background-color: #fff;
    color:#FA0026;
    background-image: url('../img/arrow.svg');
    transform: rotate(180deg);
}
.wslider-arrow.next {
    left: 0px;
    justify-content: left;
    padding-right: 20px;
}
.wslider-arrow.next::before{
    content: "";
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 38px;
    width: 40px;
    font-weight: 900;
    height: 40px;
    border-radius: 50%;
    margin-right: 13px;
    background-color: #FA0026;
    background-image: url('../img/arrow-active.svg');
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    border: none;
    color: #fff;
    transition: background-color 0.3s;
}
.wslider-arrow:hover.next::before {
    background-color: #fff;
    color: #FA0026;
    transform: rotate(0deg);
    background-image: url('../img/arrow.svg');
}
@media (max-width: 1027px) { /* Стили для экранов менше 1027px */
    .wslide {
        flex: 0 0 25%; /* Ширина слайдов */
    }
    .info-firma {
        align-items: flex-start;
        flex-direction: column;
    }
    .info-firma>p:first-of-type {
        margin-left: 0px;
    }
    .info-firma>p:last-of-type {
        margin-left: 0px;
    }
}
@media (max-width: 768px) {/* Стили для экранов менше 768px */
    .wslide {
        flex: 0 0 50%; /* Ширина слайдов */
    }
}

@media (max-width: 480px) { /* Стили для экранов менше 480px */
    .wslide {
        flex: 0 0 99.5%; /* Ширина слайдов */
    }
}
/*-------------------------------------------------------------------------АКЦЕНТНЫЙ БЛОК*/
#book>div>img{
    border-radius: 30px 30px 0px 0px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}
#book>div {
    height: 452px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
#book>div::before{
    content: "";
    width: 330px;
    height: 330px;
    display: inline-block;
    background-image: url('../img/decor.webp');
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
#book section a {
    border-radius: 42px;
    background: #ffffff;
    color: #353535;
    padding: 15px 20px 15px 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 21px;
    display: inline-flex;
    align-items: center;
    height: 52px;
    box-sizing: border-box;
}
#book section a:hover{
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    color: #fff;
    background-color: #FA0026;
}
#book section a:active{
    background-color: #EB0226;
    box-shadow: 0px 0px 0px 0px;
}
#book section a::before{
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(../img/icon-header-phone.svg);
    background-color: #fa0026;
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    margin-right: 10px;
}
#book section a:hover::before{
    background-color: #fff;
    background-image: url('../img/icon-header-phone-hover.svg');
}
#book .grey{
    color: #727272;
    font-family: inherit;
}
#book section p {
    margin-top: 15px;
}
#book{
    background-color: #011933;
    border-radius: 30px;
    padding: 38px 90px;
    box-sizing: border-box;
    margin-top: 100px;
    margin-bottom: 100px;
    gap: 73px;
}
/*-------------------------------------------------------------------------БЛОГ*/
.article-link{
    border-radius: 42px;
    background: #f5f5f5;
    border:1px solid #C1C1C1;
    padding: 13px 40px 16px 40px;
    color:#181818;
    font-size: 18px;
    font-weight: 600;
    height: 52px;
    box-sizing: border-box;
    margin-left: auto;
}
.article-link:hover, .blog-link:hover{
    background: #FA0026;
    border:1px solid #FA0026;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    color:#fff;
}
.article-link:active, .blog-link:active{
    box-shadow: 0px 0px 0px 0px;
}
.author-name{
    margin-left: 8px;
    font-style: normal;
    padding-right: 22px;
    border-right: 1px solid #595566;
    margin-right:22px;

}
.author-photo{
    border-radius: 50%;
}
.article-info{
    padding: 15px 0;
    border-top: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
    margin-top: 10px;
}
#blog h3 {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 34.8px;
}
.blog-list li article>img{
    margin:38px 0 28px 0;
    border-radius: 20px;
    order: -1;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-list{
    gap: 36px;
}
.blog-link{
    padding: 15px 37px 16px 37px;
    border-radius: 42px;
    border: 1px solid #C1C1C1;
    color: #353535;
    font-size: 18px;
    font-weight: 600;
    height: 52px;
    box-sizing: border-box;
    margin-top: 10px;
}

#blog header{
    justify-content: space-between;
    align-items: flex-start;
}
#blog{
    background-color: #f5f5f5;
    padding: 100px 0;
}
/*-------------------------------------------------------------------------КОНТАКТЫ*/
#contacts{
    padding-top: 100px;
    grid-template-columns: 420px 690px;
    gap: 90px;
}
#contacts>section{
    width: 420px;
}
#contacts section>p{
    margin:13px 0 38px 0;
}
.contact-list li:not(:last-child){
    margin-bottom: 56px;
}
.contact-list li::before{
    content: "";
    display: inline-block;
    width: 52px;
    height: 52px;
    background-color: #F5F5F5;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 16px;
    border-radius: 50%;
}
.contact-list li:nth-child(1):before{
    background-image: url('../img/icon-phone.svg');
    background-size: 30px;
}
.contact-list li:nth-child(2):before{
    background-image: url('../img/icon-clock.svg');
    background-size: 25px;
}
.contact-list li:nth-child(3):before{
    background-image: url('../img/icon-map-marker.svg');
    background-size: 25px;
}
.contact-info{
    color: #181818;
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 23.2px;
    margin-top:4px;
}
label{
    display: inline-block;
    margin-bottom: 4px;
}
form{
    row-gap: 28px;
    column-gap: 24px;
}
input, textarea, select{
    width: 100%;
    padding: 22px 33px;
    box-sizing: border-box;
    border-radius: 54px;
    border: 1px solid #C1C1C1;
    background: #FFF;
    font-weight: 400;
    color: #181818;
}
input:hover, textarea:hover{
    border: 1px solid #011933;
}
.form_box .req:invalid {
    border: 2px solid red;
}
textarea{
    border-radius: 22px;
}
input::placeholder, textarea::placeholder{
    color: #A9A9A9;
    font-weight: 400;
}
.area{
    
    grid-column: span 2;
}
textarea{
    width: 100%;
    height: 157px;
}
form button{
    border-radius: 42px;
    background: #FA0026;
    padding: 16px 27px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    border: none;
    width: max-content;
}
form button:hover{
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}
form button:active{
    background-color: #EB0226;
    box-shadow: 0px 0px 0px 0px;
}
/*-------------------------------------------------------------------------ФУТЕР*/
footer{
    background-color: #011933;
    margin-top: 100px;
}
footer>section{
    padding: 60px 0;
}
footer h3{
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 23.2px;
}
footer h3::after{
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background-color: #FA0026;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
}
footer>p{
    text-align: center;
    border-top: 1px solid #707070;
    padding: 20px 0;
}
.footer-logo-block{
    width: 311px;
    padding-right: 41px;
    border-right: 1px solid #707070;;
}
.footer-logo-block p {
    margin-top: 31px;
}
.footer-nav-block{
    margin-left: 158px;
}
.footer-nav-list{
    list-style-type: disc;
    font-size: 18px;
    font-weight: 400;
    line-height: 26.55px;
    margin-left: 20px;
}
.footer-nav-list li{
    margin-bottom: 4px;
}
.footer-nav-list li:hover{
    color: #FA0026;
}
.footer-adres-block{
    margin-left: 180px;
}
.footer-adres-block button{
    background-color: #FA0026;
    padding: 15px 23px;
    border-radius: 42px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    border:none;
    height: 52px;
    box-sizing: border-box;
}
.footer-adres-block button:hover{
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}
.footer-adres-block button:active{
    background-color: #EB0226;
    box-shadow: 0px 0px 0px 0px;
}
.footer-adres-list{
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
}
.footer-adres-list li {
    margin-bottom: 16px;
}
.footer-adres-list li::before{
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer-adres-list li:nth-child(1)::before{
    background-image: url('../img/icon-map-marker.svg');
    width: 15px;
}
.footer-adres-list li:nth-child(2)::before{
    background-image: url('../img/icon-clock.svg');
    width: 14px;
}
.footer-adres-list li:nth-child(3)::before{
    background-image: url('../img/icon-phone.svg');
    width: 18px;
}






/*МОДАЛЬНОЕ ОКНО В ШАПКЕ САЙТА*/
.modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    background-color: rgb(1 25 51  / 60%);
    transition-duration: 0.2s;
    transition-property: opacity;
    overflow-y: hidden;
    pointer-events: none;
}
.modal-open{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.modal-box{
    position: relative;
    width: 760px;
    background-color: #fff;
    border-radius: 16px; 
    overscroll-behavior: contain;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}
.modal-close-button{
    position: absolute;
    top: 25px;
    right: 25px;
    border-radius: 0 16px;
    font-size: 30px;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #595566;
    border: none;
    cursor: pointer;
}
.modal-close-button:hover{
    background-color: #fff;
    transition-duration: 0.2s;
}
.modal-box h2, .modal-box h2 span{
    font-family: 'charterregular', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
}
.modal-one-row{
    gap: 30px;
    margin-top: 30px;
}
.modal-form {
    text-align: left;
}
.modal-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #C1C1C1;
    border-radius: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 7px;
}
.modal-form textarea{
    font-size: 16px;
    margin-top: 7px;
}

.modal-form input::placeholder, .modal-form textarea::placeholder{
    color: #A9A9A9;
    font-weight: 400;
    font-size: 16px;
}

.modal-form input:hover, 
.modal-form input:active,
.modal-form input:focus,
.modal-form input:target{
    border: 1px solid #011933;
    color: #011933;
}

.modal-form label {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.modal-button-submit{
    color: #fff;
    background-color: #FA0026;
    height: 52px;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-top: 20px;
}
.modal-button-submit:hover{
    background-color: #EB0226;
}
.modal-politic{
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}
.modal-politic u{
    color: inherit;
}





/*JS стили при переключении языка*/
.br-ru-none,.br-en-none, .area-ru-none, .area-en-none{
    display: none;
}

.js-title-baner{
    font-size: 51px;
}
.js-descript{
    font-size: 15px;
}
.js-title{
    font-size: 40px;
    line-height: 45px;
}
.js-service-sub-title{
    font-size: 22px;
}
.js-descH1{
    width: 430px;
}
