@charset "UTF-8";
/* CSS Document */
/*
Theme Name:Сибмастер
Version:1.0
Description:Мотосноуборды
Author:Laika
Author URI:http://laikaweb.ru/
*/

/* fonts start */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&family=Open+Sans:wght@400;600;700&display=swap');

/* fonts end */

input[type="text"],
input[type="tel"],
input[type="e-mail"],
textarea {
    -webkit-appearance:none;
}
* {
    outline:none;
}
input {outline:none;}

body {
    font-family:'Open Sans', sans-serif;
    font-style:normal;
	font-display:swap;
    font-weight:400;
    font-size:18px;
    line-height:150%;
    letter-spacing:0.01em;
    color:#414141;
    background:#FFFFFF;
	width:100%;
	overflow-x:hidden;
} 

/* header start */

header {
    position:fixed;
    /* position:absolute; */
    width:100%;
    z-index:1000;
    top:0;
    background:rgba(255, 255, 255, 0);
    padding:6px 0;
    transition:all .5s ease;
}

.header.inner-page + main{padding-top:100px;}

.header-active {
    background:#0063BC;
    transition:all .5s ease;
}

.header-box {
    max-width:max-content;
    max-height:max-content;
}

.logo-link {
    max-width:fit-content;
}
.logo-link img{max-width:110px;border-radius:50%;}

.header-nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 0;
}

.header-items {
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    padding:0 0px;
    /* gap:0 52px; */
    list-style:none;
    margin-bottom:0;
    margin-left: auto;
    margin-right: auto;
}

.header-item,.header-items > li {
    margin:0 12px;
}

.header-link,.header-items > li > a {
    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:18px;
    line-height:25px;
    color:#FFFFFF;
    text-decoration:none;
    transition:all .5s ease;
    height:fit-content;
    position:relative;
}

.header-link:hover, .header-items > li > a:hover, .header-link:active, .header-items > li > a:active {
    color:#FFFFFF;
}

.header-link.active,.header-items > li > a.active {
    color:#FFFFFF;
}

.header-link::after,.header-items > li > a:after {
    transition:all .5s ease;
}

.header-link.active::after, .header-items > li > a.active:after {
    content:'';
    position:absolute;
    height:1px;
    width:100%;
    border-bottom:1px solid #FFFFFF;
    left:0;
    bottom:-5px;
}

.header-link:hover::after, .header-items > li > a:hover:after {
    content:'';
    position:absolute;
    height:1px;
    width:100%;
    border-bottom:1px solid #FFFFFF;
    left:0;
    bottom:-5px;
    transition:all .5s ease;
}

/* burger meny style start */

.burger-wrapper {
    cursor:pointer;
}

#meny {
    color:#151515;
    width:100%;
    height:100%;
    position:fixed;
    right:0;
    transition-timing-function:cubic-bezier(10,2,3,1);
    transform:translatex(100rem);
    top:0px;
    padding-top:120px;
    background:url(../img/bg-sm.jpg);
    background-repeat:no-repeat;
    background-position:center bottom;
    background-size:cover;
    transition:.8s ease; 
    z-index:-1; 
}


#menyAvPaa {
    display:none;
}

.menu-text {
    display:flex;
    flex-wrap:wrap;
    height:100%;
    padding:0 12px;
    padding-top:0px;
    overflow-y:scroll;
}

.menu-text::-webkit-scrollbar {
    width:0;
}

#meny.active {
    transform:translateX(0rem);
}

header .menu-triger .box-sub-btn {
    width:30px;
    height:20px;
    position:relative;
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -o-transform:rotate(0deg);
    transform:rotate(0deg);
    -webkit-transition:0.5s ease-in-out;
    -moz-transition:0.5s ease-in-out;
    -o-transition:0.5s ease-in-out;
    transition:0.5s ease-in-out;
    cursor:pointer;
    z-index:9999;
}
header .menu-triger .box-sub-btn > span {
    display:block;
    position:absolute;
    height:2px;
    width:100%;
    border-radius:2px;
    background:#fff;
    padding:0;
    opacity:1;
    left:0;
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -o-transform:rotate(0deg);
    transform:rotate(0deg);
    -webkit-transition:0.25s ease-in-out;
    -moz-transition:0.25s ease-in-out;
    -o-transition:0.25s ease-in-out;
    transition:0.25s ease-in-out;
  }
  body:not(.home) header .menu-triger .box-sub-btn > span {
    background:#fff;
  }
  header .menu-triger .box-sub-btn span:nth-child(1) {
    top:0px;
  }
  header .menu-triger .box-sub-btn span:nth-child(2),
  header .menu-triger .box-sub-btn span:nth-child(3) {
    top:8.3px;
  }
  header .menu-triger .box-sub-btn span:nth-child(4) {
    top:16px;
  }
  header .menu-triger .box-sub-btn.rotate > span {
    background:#fff;
  }
  header .menu-triger .box-sub-btn.rotate > span:nth-child(1) {
    top:8.5px;
    width:0%;
    left:50%;
  }
  header .menu-triger .box-sub-btn.rotate > span:nth-child(2) {
    transform:rotate(45deg);
  }
  header .menu-triger .box-sub-btn.rotate > span:nth-child(3) {
    transform:rotate(-45deg);
  }
  header .menu-triger .box-sub-btn.rotate > span:nth-child(4) {
    top:8.5px;
    width:0%;
    left:50%;
  }

#burger {
    cursor:pointer;
    width:28px;
    height:1.1rem;
    right:0rem;
    top:0rem;
    display:flex;
    justify-content:space-between;
    flex-direction:column;
}

#burger > div {
    height:2px;
    background-color:#FFFFFF;
    transition:.5s;
    z-index:1059;
}

#menyAvPaa:checked ~ #burger > div {
    background-color:#FFFFFF;
}

#menyAvPaa:checked ~ #burger > div:nth-child(1) {
    transform:translateY(8px) rotate(45deg);
    width:30px;
    background-color:#FFFFFF;
}

#menyAvPaa:checked ~ #burger > div:nth-child(2) {
    opacity:0;
}

#menyAvPaa:checked ~ #burger > div:nth-child(3) {
    transform:translateY(-8px) rotate(-45deg);
    width:30px;
    background-color:#FFFFFF;
}

.sm-menu {
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    list-style:none;
    gap:20px 0;
}

.sm-menu .header-items{
    display:flex;
    align-items:center;
    flex-direction:column;
    list-style:none;
    padding:0;
    margin-left:0;
    margin-left:0px;
    margin-left: auto;
    margin-right: auto;
    /* gap:20px 0; */
}

.sm-menu .header-item{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.sm-menu .header-link{
    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:20px;
    line-height:160%;
    color:#FFFFFF;
}

.contact-box {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    /* gap:8px 0; */
    margin-top:10vh;
}

.contact-box .header-link {
    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:14px;
    line-height:160%;
    color:#FFFFFF;
    margin-bottom:8px;
}

.sm-media-box {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    /* gap:0 15px; */
    margin:0 -7.5px;
    margin-top:5vh;
    border-top:1px solid #FFFFFF;
    padding-top:10px;
}
.sm-media-box .svg-box {
    display:inline-block;
    margin:0 7.5px;
}

.sm-nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0 0 40px ;
}

.mn-cl #burger > div {
    background-color:#151515;
}

.header_active {
    transition:all .5s ease;
    background-color:#15151581;
}
/* burger meny style end */
/* header end */

/* main start */

.intro {
    height:100vh;
    width:100%;
    position:relative;
    background-repeat:no-repeat;
    background-position:center center;
    min-height:815px;
}


.intro .container, .intro .row {
    height:100vh;
    min-height:815px;
}

:root {
	--index:calc(1vw + 1vh);
	--text:#FFFFFF;
	--transition:transform .75s cubic-bezier(.075, .5, 0, 1);
}

.title {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:700;
    font-size:52px;
    line-height:150%;
    /* identical to box height */
    
    text-align:center;
    
    /* Text/Black */
    
    color:#2D2D2D;
}

.wrapper {
    position:relative !important;
}

.main-header {
	position:relative;
}

.layers {
	height:100vh;
	display:flex;
	align-items:flex-start;
	justify-content:center;
	text-align:center;
	overflow:hidden;
	position:relative;
    min-height:815px;
}
.layer {
	height:100%;
	width:100%;
	position:absolute;
	background-size:cover;
	background-position:center;
	will-change:transform;
	z-index:2;
	transition:var(--transition);
}

.layers__base {
    background:#0063BC;
    z-index:0;
}
.layers__front {
    background-image:url(../img/layer__front-7.png);
    background-position:bottom;
    background-size:cover; 
    background-repeat:no-repeat;
    z-index:4;
    bottom:-2%;
    transform:translate3d(0, calc(var(--scrollTop) / 7), 0);
}

.layer-header {
	z-index:2;
	transform:translate3d(0, calc(var(--scrollTop) / 2), 0);
	transition:var(--transition);
    padding-top:18vh;
	will-change:transform;
	text-transform:uppercase;
}

.layers__btns {
    z-index:10;
    transform:translate3d(0, calc(var(--scrollTop) / 10), 0);
}

.layers__media {
    z-index:10;
}

.media-container {
    width:100%;
    display:flex;
    justify-content:end;
    flex-wrap:wrap;
    position:relative;
    -webkit-box-align:flex-end;
    -ms-flex-align:flex-end;
    align-items:flex-end;
}

.media-box {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:end;
    padding:0px;
    /* gap:15px; */
    /* width:fit-content; */
    width:32px;
    position:absolute;
    /* margin-top:30vh; */
    top:50%;
    right:0;
    transform:translateY(-50%);
}
.media-box .svg-box {
    margin:7.5px 0;
}

.media-box::after {
    content:' ';
    position:absolute;

    right:-30px;
    top:-30%;

    width:92px;
    height:0px;
    
    /* Color/White */
    
    border:1px solid var(--text);
    transform:rotate(90deg);
}

.btns-box {
    width:100%;
    display:flex;
    flex-wrap:wrap;
    /* gap:0 30px; */
    margin-top:15vh;
    margin-bottom:10vh;
}

.btn {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    padding:20px 40px;
    
    width:fit-content;
    height:fit-content;
    
    border-radius:12px;

    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:18px;
    line-height:25px;
}


.main-btn {
    background:#FF6B11;
    color:var(--text);
}

.btn:hover {
    border:1px solid #ffffff00;
}

.second-btn {
    background:var(--text);
    border-radius:12px;
    color:#0063BC;
}

.main-btn:hover, .main-btn:active, .main-btn:focus {
    box-shadow:2px 5px 25px #FF8C46;
    color:var(--text);
    background:#FF6B11;
}

.second-btn:hover, .second-btn:active, .second-btn:focus {
    background:#FFFFFF;
    box-shadow:2px 5px 25px rgba(49, 144, 255, 0.63);
    color:#0063BC;
}

.to-down-btn {
    background:#FF6B11;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    /* height:fit-content;
    width:fit-content; */
    width:62px;
    height:62px;
    padding:15px;
    transition:all .3s ease;
    align-self:flex-end;
    margin-bottom:10vh;
    position:absolute;
    bottom:90px;
    right:0;
}
.ship-and-delivery .to-down-btn {
    position:fixed;
    opacity:0;
    visibility:hidden;
    right:15px;
}
.ship-and-delivery .to-down-btn.opacity-1 {
    opacity:1;
    visibility:visible;
    z-index:600;
}

.to-down-btn:hover {
    box-shadow:2px 5px 25px #FF8C46;
    background:#FF6B11;
}

.intro-title {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:900;
    font-size:147px !important;
    line-height:90% !important;
    letter-spacing:0.02em;
    color:var(--text);
    text-align:start;
    text-transform:lowercase;
}
.intro-title span {
    font-family:'Inter', sans-serif;
    display:block;
    margin:0;
    font-size:22px;
    line-height:10px;
    color:var(--text);
    opacity:.7;
    letter-spacing:1.5px;
}

/* INTRO NEW WITH SLIDER */
.intro-app {
    position:relative
}
.intro-app_media {
    position: absolute;
    top:50%;
    right:calc((100% - 1196px) / 2 + 12px);
    transform: translateY(-50%);
}
.intro-app_media .media-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-app + .adv {
    margin-top: 35px;
}
.intro-slider {
    overflow: hidden;
}
.intro-slider-item {
    height:calc(100vh - 145px);
    width: 100%;
    position: relative;
    min-height: 700px;
}
.intro-slider-item.main {
    background-color: #0063BC;
}
.admin-bar .intro-slider-item {
    height:calc(100vh - 177px);
}
.intro-slider-item_media {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 1;
}
.intro-slider-item_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}
.intro-slider-item_media img.desc {
    display: block;
}
.intro-slider-item_media img.mob {
    display: none;
}
@media(max-width:576px) {
    .intro-slider-item_media img.desc {
        display: none;
    }
    .intro-slider-item_media img.mob {
        display: block;
    }   
}
.intro-slider-item_inner {
    position: relative;
    z-index: 2;
/*     background: rgba(0, 0, 0, 0.15); */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    width: 100%;
    padding-top: calc(102px + 63px);
    padding-bottom: calc(164px + 12px);
}
.intro-slider-item_inner .container {
    height: 100%;
}
.intro-slider-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.intro-slider-item-content .title {
    color: #FFF;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 3px;
    text-align: start;
    margin: 0;
    margin-bottom: 20px;
    position: relative;
}
.intro-slider-item-content .title span {
    display: block;
    position: absolute;
    bottom:100%;
    left:calc(100% - 12px);
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 200;
    line-height: 90%; /* 36px */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.intro-slider-item-content .subtitle {
    color: #FFF;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.78px;
    margin-bottom: 24px;
    line-height: 1.2;min-height:125px;
}
.intro-slider-item-content .main-btn {
    margin-top: 16px;
}
.intro-slider .slick-next::before,
.intro-slider .slick-prev::before {
    display:none;
}
.intro-slider .slick-next {
    top:unset;
    transform: unset;
    right:unset;
    bottom:30px;
    left:calc((100% - 1196px) / 2 + 112px + 12px);
    width: 64px;
    height: 64px;
    transition: .3s;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_b_402_688)'%3E%3Ccircle cx='32' cy='32' r='32' transform='matrix(-1 0 0 1 64 0)' fill='black' fill-opacity='0.05'/%3E%3Ccircle cx='32' cy='32' r='31' transform='matrix(-1 0 0 1 64 0)' stroke='white' stroke-width='2'/%3E%3C/g%3E%3Cpath d='M17 33C16.4477 33 16 32.5523 16 32C16 31.4477 16.4477 31 17 31V33ZM47.7071 31.2929C48.0976 31.6834 48.0976 32.3166 47.7071 32.7071L41.3431 39.0711C40.9526 39.4616 40.3195 39.4616 39.9289 39.0711C39.5384 38.6805 39.5384 38.0474 39.9289 37.6569L45.5858 32L39.9289 26.3431C39.5384 25.9526 39.5384 25.3195 39.9289 24.9289C40.3195 24.5384 40.9526 24.5384 41.3431 24.9289L47.7071 31.2929ZM17 31L47 31V33L17 33V31Z' fill='white'/%3E%3Cdefs%3E%3Cfilter id='filter0_b_402_688' x='-10.1' y='-10.1' width='84.2' height='84.2' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='5.05'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_402_688'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_402_688' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}
.intro-slider .slick-next:hover,
.intro-slider .slick-next:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_b_39_1123)'%3E%3Cg filter='url(%23filter1_b_39_1123)'%3E%3Ccircle cx='32' cy='32' r='32' transform='rotate(-180 32 32)' fill='black' fill-opacity='0.05'/%3E%3Ccircle cx='32' cy='32' r='31' transform='rotate(-180 32 32)' stroke='%23FF6B11' stroke-width='2'/%3E%3C/g%3E%3Cpath d='M17 31H16V33H17V31ZM47.7071 32.7071C48.0976 32.3166 48.0976 31.6834 47.7071 31.2929L41.3431 24.9289C40.9526 24.5384 40.3195 24.5384 39.9289 24.9289C39.5384 25.3195 39.5384 25.9526 39.9289 26.3431L45.5858 32L39.9289 37.6569C39.5384 38.0474 39.5384 38.6805 39.9289 39.0711C40.3195 39.4616 40.9526 39.4616 41.3431 39.0711L47.7071 32.7071ZM17 33H47V31H17V33Z' fill='%23FF6B11'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_b_39_1123' x='-4' y='-4' width='72' height='72' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='2'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_39_1123'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_39_1123' result='shape'/%3E%3C/filter%3E%3Cfilter id='filter1_b_39_1123' x='-12.8' y='-12.8' width='89.6' height='89.6' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='6.4'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_39_1123'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_39_1123' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E ");
}
.intro-slider .slick-prev {
    top:unset;
    transform: unset;
    right:unset;
    bottom:30px;
    left:calc((100% - 1196px) / 2 + 12px);
    width: 64px;
    height: 64px;
    transition: .3s;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_b_39_1120)'%3E%3Ccircle cx='32' cy='32' r='32' transform='matrix(1 0 0 -1 0 64)' fill='black' fill-opacity='0.05'/%3E%3Ccircle cx='32' cy='32' r='31' transform='matrix(1 0 0 -1 0 64)' stroke='white' stroke-width='2'/%3E%3C/g%3E%3Cpath d='M47 31C47.5523 31 48 31.4477 48 32C48 32.5523 47.5523 33 47 33V31ZM16.2929 32.7071C15.9024 32.3166 15.9024 31.6834 16.2929 31.2929L22.6569 24.9289C23.0474 24.5384 23.6805 24.5384 24.0711 24.9289C24.4616 25.3195 24.4616 25.9526 24.0711 26.3431L18.4142 32L24.0711 37.6569C24.4616 38.0474 24.4616 38.6805 24.0711 39.0711C23.6805 39.4616 23.0474 39.4616 22.6569 39.0711L16.2929 32.7071ZM47 33H17V31H47V33Z' fill='white'/%3E%3Cdefs%3E%3Cfilter id='filter0_b_39_1120' x='-10.1' y='-10.1' width='84.2' height='84.2' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='5.05'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_39_1120'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_39_1120' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}
.intro-slider .slick-prev:hover,
.intro-slider .slick-prev:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_b_402_691)'%3E%3Cg filter='url(%23filter1_b_402_691)'%3E%3Ccircle cx='32' cy='32' r='32' fill='black' fill-opacity='0.05'/%3E%3Ccircle cx='32' cy='32' r='31' stroke='%23FF6B11' stroke-width='2'/%3E%3C/g%3E%3Cpath d='M47 33H48V31H47V33ZM16.2929 31.2929C15.9024 31.6834 15.9024 32.3166 16.2929 32.7071L22.6569 39.0711C23.0474 39.4616 23.6805 39.4616 24.0711 39.0711C24.4616 38.6805 24.4616 38.0474 24.0711 37.6569L18.4142 32L24.0711 26.3431C24.4616 25.9526 24.4616 25.3195 24.0711 24.9289C23.6805 24.5384 23.0474 24.5384 22.6569 24.9289L16.2929 31.2929ZM47 31L17 31V33L47 33V31Z' fill='%23FF6B11'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_b_402_691' x='-4' y='-4' width='72' height='72' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='2'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_402_691'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_402_691' result='shape'/%3E%3C/filter%3E%3Cfilter id='filter1_b_402_691' x='-12.8' y='-12.8' width='89.6' height='89.6' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='6.4'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_402_691'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_402_691' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E ");
}
.intro-app .to-down-btn {
    right:calc((100% - 1196px) / 2 + 12px);
    margin-bottom: 0;
}
@media(max-width:1400px) {
    .intro-slider .slick-next {
        left:calc((100% - 1140px) / 2 + 112px + 12px);
    }
    .intro-slider .slick-prev {
        left:calc((100% - 1140px) / 2 + 12px);
    }
    .intro-app_media {
        right:calc((100% - 1140px) / 2 + 12px);
    }
    .intro-app .to-down-btn {
        right:calc((100% - 1140px) / 2 + 12px);
    }
}
@media(max-width:1200px) {
    .intro-slider-item_inner {
        padding-top: calc(122px + 63px);
    }
    .intro-slider-item-content .title {
        font-size: 58px;
    }
    .intro-slider-item-content .subtitle {
        font-size: 32px;
    }
    .intro-slider .slick-next {
        left:calc((100% - 960px) / 2 + 112px + 12px);
    }
    .intro-slider .slick-prev {
        left:calc((100% - 960px) / 2 + 12px);
    }
    .intro-app_media {
        right:calc((100% - 960px) / 2 + 12px);
    }
    .intro-app .to-down-btn {
        right:calc((100% - 960px) / 2 + 12px);
    }
}
@media(max-width:992px) {
    .intro-slider-item-content {
        padding-right: 40px;
    }
    .intro-slider-item-content .title {
        font-size: 64px;
    } 
    .intro-slider-item-content .subtitle {
        font-size: 24px;
    }
    .intro-slider .slick-next {
        left:calc((100% - 720px) / 2 + 112px + 12px);
    }
    .intro-slider .slick-prev {
        left:calc((100% - 720px) / 2 + 12px);
    }
    .intro-app_media {
        right:calc((100% - 720px) / 2 + 12px);
    }
    .intro-slider-item.main .intro-slider-item_media img {
        object-position: 70% bottom;
    }
    .intro-app .to-down-btn {
        right:calc((100% - 720px) / 2 + 12px);
    }
}
@media(max-width:768px) {
    .intro-slider-item-content .main-btn {
        margin-top: 24px;
    }
    .intro-slider-item-content .title {
        font-size: 56px;
    } 
    .intro-slider-item-content .subtitle {
        font-size: 21px;
    }
    .intro-slider-item_media img {
        object-position: right bottom;
    }
    .intro-slider-item-content .main-btn {
        font-size: 16px;
        line-height: 21px;
        padding:12px 30px;
    }
    .intro-slider .slick-next {
        left:calc((100% - 540px) / 2 + 82px + 12px);
        width: 44px;
        height: 44px;
        background-size: contain;
    }
    .intro-slider .slick-prev {
        left:calc((100% - 540px) / 2 + 12px);
        width: 44px;
        height: 44px;
        background-size: contain;
    }
    .intro-app_media {
        right:calc((100% - 540px) / 2 + 12px);
    }
    .intro-app .to-down-btn {
        right:calc((100% - 540px) / 2 + 12px);
    }
}
@media(max-width:576px) {
    .intro-slider-item {
        min-height: 600px;
    }
    .intro-slider-item_inner {
        padding-top: 120px;
    }
    .intro-slider-item-content .title span {
        font-size: 21px;
    }
    .intro-slider .slick-next {
        left:calc(82px + 12px);
		bottom:24px;
    }
    .intro-slider .slick-prev {
        left:12px;
        bottom:24px;
    }
    .intro-slider-item-content .subtitle {
        font-size: 18px;
    }
    .intro-slider-item-content .title {
        font-size: 42px;
    }
    .intro-slider-item_media img {
        object-position: 80% bottom;
    }
	.intro-slider-item.main .intro-slider-item_media img {
/* 		object-position: 85% bottom; */
		object-position:40% 27%;
	}
    .intro-app_media {
        right:12px;
    }
    .intro-app .to-down-btn {
        right:12px;
    }
}
@media(max-width:414px) {
    .intro-slider-item-content .title {
        font-size: 34px;
    }
}
/* END */



.about {
    background:url(../img/Block_2-bg.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}


.about-info-box {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}

.about-info-text-box {
    margin-bottom:32px;
    position:relative;
}

.about-info-title {
    font-weight:700;
    font-size:22px;
    line-height:160%;
    /* or 35px */
    /* Text/Black */
    color:#2D2D2D;
    margin-bottom:20px;
    z-index:10;
    position:relative;
}

.about-info-title-num {
    position:absolute;
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:900;
    font-size:84px;
    line-height:84px;
    /* identical to box height */
    /* Color/Orange-light */
    color:#ffffff00;
    -webkit-text-stroke:2px #FFBE96;
    z-index:1;
    top:-22%;
    margin-bottom:0;
}

.about-into-text {
    font-weight:400;
    font-size:18px;
    line-height:160%;
    /* or 29px */
    /* Text/Grey-dark */
    color:#7B7B7B;
    margin-bottom:0 !important;
}

.about-info-pic {
    display:flex;
    justify-content:end;
}

.about-info-pic:nth-child(1) {
    display:flex;
    justify-content:start;
}

.about-info-slider {
    /* padding-left: calc((100% - 1196px) / 2 + 12px);
    padding-right: calc((100% - 1196px) / 2 + 12px); */
    display:flex;
    gap:24px;
}
.about-info-slider.slick-dotted {
    margin-bottom: 0;
}
.about-info-slider .slick-list {
    margin:0 -12px;
    padding-left: calc((100% - 1196px) / 2 + 12px);
    padding-right: calc((100% - 1196px) / 2 + 12px);
}
.about-info-slider .slick-slide {
    margin:0 12px;
    opacity: 1;
    transition: .3s;
}
.about-info-slider .slick-slide:not(.slick-active) {
    opacity: .5;
}
.about-info-slider-item {
    position:relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1;
}
.about-info-slider-item img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
    z-index: 1;
}
.about-info-slider-item_filter {
    position: relative;
    z-index: 2;
    padding: 99px 23px 31px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 66.35%);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.about-info-slider-item-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    color:#fff;
    margin: 0;
    margin-bottom: 20px;
}
.about-info-slider-item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color:#fff;
    margin: 0;
}
.about-info-slider-navbar {
    max-width: 1196px;
    width: 100%;
    padding:0 12px;
    margin: auto;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px;
}
.about-info-slider-navbar .slick-prev {
	display:none!important;
    position:unset;
    order: 1;
    transform: unset;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='48' y='48' width='48' height='48' rx='24' transform='rotate(-180 48 48)' fill='%23FF6B11'/%3E%3Cpath d='M27 31L22 24L27 17' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about-info-slider-navbar .slick-prev::after,
.about-info-slider-navbar .slick-prev::before {
    display: none;
}
.about-info-slider-navbar .slick-next {
    position:unset;
    order:3;
    transform: unset;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='48' height='48' rx='24' fill='%23FF6B11'/%3E%3Cpath d='M21 17L26 24L21 31' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about-info-slider-navbar .slick-next::after,
.about-info-slider-navbar .slick-next::before {
    display: none;
}

.about-info-slider-navbar .slick-dots {
    position:unset;
    order:2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 100px;
    background-color: #FF6B11;
    width: 120px;
    gap:10px;
    margin: 0;
    padding: 0;
}
.about-info-slider-navbar .slick-dots li {
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
}
.about-info-slider-navbar .slick-dots li button {
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    margin: 0;
    padding: 0;
    border:0;
    transform: unset;
}
.about-info-slider-navbar .slick-dots li button:hover {
    transform: unset;
}
.about-info-slider-navbar .slick-dots li.slick-active button {
    width: 22px;
}
.about-info-slider-navbar .slick-dots li.slick-active button::before {
    display: none;
}
@media(max-width:1400px) {
    .about-info-slider .slick-list {        
        padding-left: calc((100% - 1140px) / 2 + 12px);
        padding-right: calc((100% - 1140px) / 2 + 12px);
    }
}
@media(max-width:1200px) {
    .about-info-slider .slick-list {        
        padding-left: calc((100% - 960px) / 2 + 12px);
        padding-right: calc((100% - 960px) / 2 + 12px);
    }
}
@media(max-width:992px) {
    .about-info-slider .slick-list {        
        padding-left: calc((100% - 720px) / 2 + 12px);
        padding-right: calc((100% - 720px) / 2 + 12px);
    }
    .about-info-slider-item {
        height:500px;
		aspect-ratio: unset;
    }
    .about-info-slider-item_filter {
        padding:103px 24px 24px;
    }
    .about-info-slider-item-title {
        font-size: 20px;
    }
    .about-info-slider-item-text {
        font-size: 14px;
    }
    .about-info-slider-navbar {
        margin-top: 20px;
    }
    .about-info-slider-navbar .slick-next {
        width: 42px;
        height: 42px;
    }
    .about-info-slider-navbar .slick-prev {
        width: 42px;
        height: 42px;
    }
    .about-info-slider-navbar .slick-dots {
        height: 42px;
    }
}
@media(max-width:768px) {
    .about-info-slider .slick-list {        
        padding-left: calc((100% - 540px) / 2 + 12px);
        padding-right: calc((100% - 540px) / 2 + 12px);
    }
}
@media(max-width:576px) {
    .about-info-slider .slick-list {
        margin:0 -6px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .about-info-slider .slick-slide {
        margin:0 6px;
        opacity: 1;
        transition: .3s;
    }
}

.slider-container {
    background:url(../img/catalog-bg-2.jpg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:100% 100%;
}

.catalog-item {
    background:#FFFFFF;
    border-radius:28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    align-content:center;
    transform:scale(0.7);
    opacity:.7;
}

.catalog .btn {
    padding:16px 20px;
}

.slick-center .img-box {
    border:2px solid #FFA167;
    border-radius:28px;
    position:relative;
    background:url(../img/catalog-card-bg.png);
    background-repeat:no-repeat;
    background-position:center 0% bottom 0%;
    background-size:100%;
    overflow:visible;
}

.slick-center .img-box::after {
    content:' ';
    position:absolute;
    width:101%;
    height:101%;
    top:0;
    left:0;
    border:5px solid #FF7E2F;
    filter:blur(4.5px);
    border-radius:28px;
    z-index:8;
}

.catalog-item img {
    min-height:254px;
}

.slick-center .img-box img {
    position:relative;
    z-index:10;
}

.img-box img {
    transition:all .2s ease;
}

.slick-center .img-box img {
    transform:rotate(-25deg) scale(1.3);
    position:relative;
    left:-15%;
    bottom:40px;
    z-index:10;
    transition:all .5s ease;
}

.slick-center .catalog-item {
    background:#0063BC;
    box-shadow:3px 18px 60px rgba(0, 128, 242, 0.73);
    border-radius:40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    align-content:center;
    transition:all 1s ease;
    transform:scale(1);
    opacity:1;
}

.card {
    padding:0;
    padding:20px;
    transition:all .5s ease;
}

.slick-center .card {
    padding:0;
    padding:50px;
}

.card-text-box, .card-title, .card .btn {
    display:none;
    transition:all 1s ease;
}

.slick-center .card-text-box {
    display:block;
    padding-bottom:10px;
    border-bottom:2px solid #FFB88C;
    margin:32px 0 24px 0;
    transition:all 1s ease;
}

.slick-center .btn {
    display:flex;
    transition:all 1s ease;
}

.catalog .slick-track {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.slick-center .card-title {
    display:block;
    font-weight:600;
    font-size:18px;
    line-height:140%;
    text-align:center;
    color:var(--text);
}

.slider-item-box {
    padding:60px 0;
}

.slider-control {
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    justify-content:center;
    padding:0;
}

.slider-control-btn:first-child {
    margin-right:80px;
}

.slider-control-btn {
    cursor:pointer;
    transition:all .5s ease;
}

.slider-control-btn path {
    transition:all .5s ease;
}

.slider-control-btn:hover path,.slider-control-btn:active path {
    fill:#FF6B11;
}

.catalog .main-btn {
    margin-bottom:24px;
}

.catalog .btn {
    width:90%;
}

.table thead {
    border-bottom:1px solid #FF6B11;;
}

.table th {
    font-weight:600;
    font-size:18px;
    line-height:25px;
    color:#2D2D2D;
}

.table td {
    font-weight:400;
    font-size:18px;
    line-height:160%;
    color:#2D2D2D;
}

.no-fill-btn {
    border:1px solid #0063BC;
    border-radius:12px;
    font-weight:600;
    font-size:18px;
    line-height:25px;
    color:#0063BC;
}

.no-fill-btn:hover, .no-fill-btn:active, .no-fill-btn:focus {
    background:#0063BC;
    border:1px solid #0063BC;
    color:#FFFFFF;
}

.text {
    font-weight:400;
    font-size:16px;
    line-height:160%;
    color:#2D2D2D;
    margin-bottom:5px;
}

.text-disable {
    color:#B5B5B5;
}

.galary {
    background:url(../img/bg-galary.jpg);
    background-repeat:no-repeat;
    background-position:center 0% bottom 0%;
    background-size:100% 100%;
}

.galary-slider .slider-item{
    /* height:60%; */
    transition:all .5s ease;
    /* width:100%; */
    /* transform:scale(1); */
    height:500px;
}

.galary-slider .slider-item img {
    height:100%;
    width:auto;
    /* object-fit:cover; */
    transition:all .5s ease;
    border-radius: 28px;
}
/* .galary-slider .slick-center .slider-item {
    height:100%;
    width:100%;
} */

/* .galary-slider .slick-list::after {
    content:'';
    display:block;
    width:430px;
    height:100%;
    position:absolute;
    z-index:99;
    top:0;
    bottom:0;
    right:0;
    background:linear-gradient(270deg, rgba(255, 255, 255, 0.8) 21.62%, rgba(255, 255, 255, 0.16) 100%);
}
.galary-slider .slick-list::before {
    content:'';
    display:block;
    width:430px;
    height:100%;
    position:absolute;
    z-index:99;
    top:0;
    bottom:0;
    left:0;
    background:linear-gradient(90deg, rgba(255, 255, 255, 0.8) 18.67%, rgba(255, 255, 255, 0.16) 100%);
} */

.galary-item-box {
    padding:20px;
    /* height:630px;
    width:630px; */
    display:flex !important;
    align-items:center;
}

.move-box {
    margin-top:20px;
}


.choose-items {
    /* display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr 1fr;
    gap:36px 24px;
    grid-auto-flow:row;
    grid-template-areas:
      ". ."
      ". ."
      ". ."; */
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    margin:0 -12px;
}

.choose-item {
    width:calc(100% / 2 - 24px);
    margin:0 12px 36px;
    display:flex;
    flex-direction:row;
    align-items:center;
    padding:44px 24px;
    border:2px solid #0063BC;
    filter:drop-shadow(0px 4px 68px rgba(36, 126, 233, 0.15));
    border-radius:28px;
}

.num-box {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#FFFFFF;
    margin:0;
    padding:0;
    width:100px;
    height:100px;
    /* Shadows/Cards/Blue-Secondary */
    
    box-shadow:0px 4px 28px rgba(98, 170, 255, 0.24);
    border-radius:12px;
}

.num-box-second {
    margin-right:28px;
}

.num-item {
    font-weight:700;
    font-size:52px;
    line-height:63px;
    color:#ffffff00;
    -webkit-text-stroke:1px #0063BC;
}

.choose-title {
    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:700;
    font-size:22px;
    line-height:160%;
    margin-bottom:8px;
    color:#2D2D2D;
}

.choose-item:nth-child(2), .choose-item:nth-child(3), .choose-item:nth-child(6) {
    border:2px solid #FF6B11;
    filter:drop-shadow(0px 4px 68px rgba(36, 126, 233, 0.15));
}

.choose-item:nth-child(2) .num-box, .choose-item:nth-child(3) .num-box, .choose-item:nth-child(6) .num-box {
    box-shadow:0px 4px 28px rgba(255, 107, 17, 0.24);
}

.choose-item:nth-child(2) .num-item, .choose-item:nth-child(3) .num-item, .choose-item:nth-child(6) .num-item {
    -webkit-text-stroke:1px #FF6B11;
}


.callback {
    background:url(../img/bg-callback.png);
    background-repeat:no-repeat;
    background-position:center bottom;
    background-size:100% ;
}

.form-box {
    display:flex;
    justify-content:end;
}

.form-card {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:72px 56px 80px;
    position:relative;
    background:#0063BC;
    border-radius:40px;
    z-index:4;
}

.form-line {
    position:relative;
}

.form-line::before {
    content:' ';
    position:absolute;
    height:100%;
    width:100%;
    border:2px solid #FF6B11;
    border-radius:40px;
    top:-24px;
    left:-37px;
    z-index:1;
}

.form-text-box {
    margin-bottom:32px;
}

.form-title {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:32px;
    line-height:39px;
    color:#FFFFFF;
    margin-bottom:16px;
}

.form-text {
    font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:16px;
    color:#FFFFFF;
}

.form-input-box label {
    width:100%;
}

.date-input {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    margin-bottom:40px;
}

.date-input input {
    display:flex;
    flex-direction:row;
    align-items:center;
    padding:24px 28px;
    border-radius:12px;
    border:0px solid #ffffff00;
    gap:4px;
    margin-right:24px;
    /* -webkit-appearance:none; */
}

.date-input input::placeholder {
    color:#FFFFFF;
}
.acceptance-wrapper {
    display:flex;
    align-items: flex-start;
    gap:8px;
    margin-bottom: 24px;
}
.acceptance-wrapper .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.acceptance-wrapper .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item input {
    width: 14px;
    height: auto;
}
.acceptance-wrapper > .text {
    font-size: 13px;
    color:#000000af;
    margin: 0;
}


.main-input {
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    padding:24px 28px;
    
    width:100%;
    border:0px solid #ffffff00;
    background:#FFFFFF;
    border-radius:12px;
    transition:all .5s ease;
    margin-bottom:25px;
}

.main-input:focus, .main-input:active {
    caret-color:#FF6B11;
    color:#FF6B11;
}

.main-input::placeholder {
    font-weight:400;
    font-size:18px;
    line-height:160%;
    color:#B5B5B5;
}

.travel {
    background:url(../img/bg-travel.jpg);
    background-repeat:no-repeat;
    background-position:center 0% bottom 0%;
    background-size:100% 100%;
}

.travel-slider-box {
    position:relative;
}

.travel-line {
    border:2px solid #FF6B11;
    border-radius:40px;
    padding:54px;
}

.travel-pic-box {
    position:absolute;
    top:40px;
    right:0;
}

.travel-pic-slider {
    position:relative;
}

.travel-pic-item {
    width:571px;
    height:659px;
}

.travel-pic-item img {
    object-fit:cover;
    height:100%;
    width:100%;
    border-radius:40px;
}

.travel-slider-text {
    font-weight:400;
    font-size:18px;
    line-height:160%;
    color:#2D2D2D;
    margin-bottom:16px;
    max-height:500px;
    overflow:auto;
    padding-right:24px;
}
.travel-slider-text::-webkit-scrollbar {
    height:0;
    width:3px;
}
.travel-slider-text::-webkit-scrollbar-track {
    background:#eee;
}
.travel-slider-text::-webkit-scrollbar-thumb {
    background-color:#FF8C46;
}

.travel-slider-text:last-child {
    margin-bottom:0;
}



.travel-slider-title {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:32px;
    line-height:39px;
    color:#2D2D2D;
    margin-bottom:24px;
}

.feeds-item {
    padding:0 12px;
    width:540px;
}

.feeds-item-box {
    display:flex;
    flex-direction:column;
    justify-content:start;
    align-items:flex-start;
    padding:28px;
    border:2px solid #0063BC;
    border-radius:40px;
    min-height:340px;
}

.feeds-item-header {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    margin-bottom:20px;
}
.feeds-item-header img {
    width:72px;
    height:72px;
    display:block;
    object-fit:cover;
    object-position:center;
    filter:drop-shadow(0px 4px 28px rgba(255, 107, 17, 0.24));
    border-radius:12px;
}

.feed-subtext {
    margin:0;
}

.text-box {
    margin-left:20px;
}

.ship-and-delivery {
    background:url(../img/bg-ship.jpg);
    background-repeat:no-repeat;
    background-position:center 0% bottom 0%;
    background-size:cover;
    padding-bottom:1px;
}

.sad {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
}

.sad-item {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:44px 32px 56px;
    gap:10px;
    
    min-height:295px;
    background:#FFFFFF;
    box-shadow:0px 4px 28px rgba(98, 170, 255, 0.24);
    border-radius:28px;
}

.sad-item-size:first-child {
    padding-right:12px;
}

.sad-item-size:last-child {
    padding-left:12px;
}

.sad-title {
    font-weight:700;
    font-size:22px;
    line-height:160%;
}

.ship-and-delivery .to-down-btn {
    margin-top:20vh;
    margin-left:auto!important;
    transform:rotate(180deg);
}

/*
.benefits {
    background:url(../img/benefit-bg.png);
    background-repeat:no-repeat;
    background-position:center 0% bottom 0%;
    background-size:100% 100%;
}
*/

.benefit-img-box {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.benefits .card-img-overlay {
    display:flex;
    justify-content:center;
    align-items:center;
}

.benefits .card-img-overlay svg{
    padding-bottom:40px;
}

.ben-num {
    position:relative;
}

.ben-pic {
    height:100vh;
    width:100%;
    object-fit:cover;
}
@media(max-width:460px) {
    .ben-pic {
        height: 80vh;
    }
}

.ben-text-box {
    display:none;
    flex-direction:row;
    align-items:flex-start;
    padding:36px 32px 36px;
    position:absolute;
    background:#FFFFFF;
    width:509px;    
    border:1px solid #FF6B11;
    border-radius:28px;
    transition:all .3s ease;
}

.ben-text-box.active {
    display:block;
    transition:all .3s ease;
}

#ben-text-1 {
    top:6%;
    right:13%;
}
#ben-text-2 {
    bottom:11%;
}
#ben-text-3 {
    top:9%;
}
#ben-text-4 {
    top:18%;
    left:15%;
}
#ben-text-5 {
    top:13%;
    left:30%;
}
#ben-text-6 {
    top:3%;
}

/* .ben-text-box .active{
    display:flex;
} */

.ben-num line{
    opacity:0;
    transition:all .3s ease;
}

.ben-num .ben-circle {
    transition:all .3s ease;
}

.ben-num path {
    transition:all .3s ease;
}

.ben-num:hover .ben-circle {
    fill:#0063BC;
}

.ben-num:hover path {
    fill:#FFFFFF;
}

.ben-num:hover line {
    opacity:1;
    transition:all .3s ease;
}

.ben-num.active .ben-circle {
    fill:#0063BC;
}

.ben-num.active path {
    fill:#FFFFFF;
}

.ben-num.active line {
    opacity:1;
    transition:all .3s ease;
}


/* main end*/ 

/* footer start */

.footer {
    padding:60px 0;
}

.footer-info-text-box {
    margin-top:32px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
}
.footer-info-text-box a.text {
	cursor:pointer;
	text-decoration-color:transparent;
	transition:.3s;
}
.footer-info-text-box a.text:hover {
	color:#2D2D2D;
	text-decoration-color:#2D2D2D;
}
.footer-info {
    display:flex;
    flex-direction:column;
    gap:0px;
}

.footer .header-link, .footer-nav-box .header-items.footer-items > li > a {
    font-weight:400;
    font-size:18px;
    line-height:160%;
    color:#2D2D2D !important;
    width:fit-content;
}
.footer-nav-box .header-items.footer-items > li {margin:0 12px 1rem;}

.footer-items {
    flex-direction:column;
    width:fit-content;
}

.footer-items .header-link {
    width:fit-content;
}

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

.footer .sm-media-box {
    margin-top:25px;
    padding:0;
}

.mail-link {
    margin-top:16px;
}

.footer-media {
    display:flex;
    justify-content:end;
}

.footer-nav-box {
    display:flex;
    justify-content:space-between;
}

.footer-media .sm-media-box {
    position:relative;
}

.footer-media .sm-media-box::after {
    content:' ';
    position:absolute;

    bottom:50%;
    left:-70%;

    width:92px;
    height:0px;
    
    /* Color/White */
    
    border:1px solid #0063BC;
}

.footer-media ul{
    align-items:flex-end;
}

/* footer end */


/* main media start */


.admin-bar header{
    top:32px;
}

.feeds-item:nth-child(2n) .feeds-item-box {
    border:2px solid #FF6B11;
}

.modal h3, .modal p {
    color:#151515;
}

.modal-content {
    display:flex;
    flex-direction:column;
    padding:70px 50px;
    
    position:relative;
    
    /* Color/White */
    
    background:#FFFFFF;
    border-radius:40px;
}

.modal input {
    border:1px solid #FF6B11;
}

.modal .form-title {
    font-size:30px;
}

.table-more {
    display:none;
    transition:all .5s ease;
}

.table-more.active {
    display:table-row;
}

#more-btn.disable, #more-btn:active .disable, #more-btn:hover .disable, #more-btn:focus .disable {
    background:#B5B5B5;
    border:1px solid #B5B5B5;
    color:#FFFFFF;
}
.logo-title-liquid {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:900;
    /* opacity:0; */
    transition:.3s;
    color:var(--text);
    font-size:18px;
    line-height:21px;
    text-transform:uppercase;
    /* visibility:hidden; */
    margin-left: 8px;
}
.header-active .logo-title-liquid {
    opacity:1;
    visibility:visible;
}
.logo-title-liquid span {
    font-size:12px;
    line-height:21px;
    color:var(--text);
    opacity:.7;
}
@media(max-width:414px) {
	.logo-link {
		max-width: 60px;
		display: block;
	}
	.logo-link svg {
		width:100%;
		height: auto;
	}
	.logo-title-liquid {
		font-size: 14px;
    	line-height: 17px;
	}
	.logo-title-liquid span {
		font-size: 10px;
		line-height: 14px;
	}
}

.map .title {
    font-family:'inter';
    text-align:start;
    /* font-size:32px;
    line-height:140%; */
}

.map .sub-title {
    font-size:20px;
    font-weight:500;
    line-height:140%;
    margin-bottom:0;
    text-align:start;
}

.map__content {
    /* display:grid;
    grid-template-columns:70% 30%; */
    display:flex;
    width:100%;
    gap:24px;
    align-items:start;
    justify-content:space-between;
}
.map__svg {
    width:100%;
    max-width:840px;
}
.map__svg svg {
    width:100%;
    height:auto;
}
.map__svg g.map__title {
    cursor:pointer;
}
.map__svg g.map__title path {
    transition:.3s;
}
.map__svg g.map__title:hover path {
    fill:#b1b1b1;
}
.map__svg g.map__title.active path {
    fill:#FF6B11;
}

.map__list {
    width:calc(100% - 840px);
   overflow:hidden;
    /* padding:24px 12px; */
    background-color:#FFFFFF;
    border:1px solid #0063BC;
    transition:all .5s ease;
    border-radius:28px;
}


.map__list:hover {
    border:1px solid #FF6B11;
}

.map__list__items {
    padding:0;
    list-style:none;
    display:grid;
    grid-template-columns:1fr;
    gap:6px;
    padding:24px 12px;
    height:500px;
    overflow:auto;
}
.map__list__items::-webkit-scrollbar {
    height:0;
    width:3px;
}
.map__list__items::-webkit-scrollbar-track {
    background-color:#B5B5B5;
    border-radius:3px;
}
.map__list__items::-webkit-scrollbar-thumb {
    background-color:#FF6B11;
    border-radius:3px;
}

.list__item {
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    padding:5px 15px;
    width:100%;
    gap:10px;
    border-radius:20px;
    background-color:#FFFFFF;
    transition:all .3s ease;
    cursor:pointer;
}

.list__item:hover, .list__item.active {
    background:#FF6B11;
    color:#FFFFFF;
/*     box-shadow:0px 2px 4px #494949 ; */
}

/* bussines page start */

.b_intro {
    height:100vh;
    width:100%;
    /* background-image:url(../img/b-intro.jpg); */
    background-image: url(../img/2b2-bg-pc.jpg);
    background-position:center;
    background-size:cover; 
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position: relative;
    z-index: 22;
    min-height: 720px;
}
@media(max-width:576px) {
    .b_intro {
        background-image: url(../img/b2b-bg-mob-2.jpg);
        height: 640px;
        min-height: unset;
    }
    .b_intro .btn {
        font-weight: 600;
        font-size: 16px;
        line-height: 21px;
    }
}
.b_intro::after {
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: #0000001e;
}
@media(max-width:576px) {
    .b_intro::after {
        background-color: #00000031;
    }
}
.b_intro .container {
    position: relative;
    z-index: 2;
}

.b_intro__content {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
}

.b_intro__content svg {
    height:170px;
    width:auto;
    opacity: 0;
    visibility: hidden;
}

.b_intro .title {
    text-transform:uppercase;
    text-align:start;
    font-size: 36px;
    line-height: 150%;
}

.b_intro .subtitle {
    font-size:22px;
}
@media(max-width:992px) {
    .b_intro .subtitle {
        font-size:18px;
    }      
}
@media(max-width:576px) {
    .b_intro .title {
        font-size: 24px;
        line-height: 130%;
    }
}

.b_intro .title, .b_intro .subtitle {
    color:#FFFFFF;
}

.b_intro .text__box {
    display:flex;
    flex-direction:column;
    align-items:start;
    justify-content:start;
    margin-left:24px;
}
@media(max-width:576px) {
    .b_intro .text__box {
        margin-left: 0;
    }
}
.b_intro ul {
    color:#fff;
    font-size:22px;
    padding-left: 23px;
}
.b_intro ul li::marker {
    color:#fff;
}
@media(max-width:992px) {
    .b_intro ul {
        font-size:18px;
    }
}

.leading__content {
    display:flex;
    gap:24px;
    /* align-items:start; */
    justify-content:space-between;
}

.leading__info {
    /* height:100%; */
    height: auto;
    width: calc(50% - 12px);
    display:flex;
    flex-direction:column;
    align-items:start;
    justify-content:center;
    padding:30px 0 75px;
}

.sm__title {
    font-family:'Inter', sans-serif;
    font-style:normal;
    font-weight:700;
    font-size:29px;
    line-height:120%;
    /* identical to box height */
    
    text-align:start;
    text-transform:uppercase;
    
    /* Text/Black */
    
    color:#2D2D2D;
}

.leading__info .info__text {
    font-weight:500;
    font-size:22px;
    color:#000;
    margin-top:30px;
}

.bl__orange {
    border-left:3px solid #FF6B11;
    padding-left:15px;
}

.leading__pic {
    /* height:700px; */
    width: calc(50% - 12px);
    border-radius:40px;
}

.img-hover-zoom {
    height:100%;
    width:100%;
    overflow:hidden;
    border-radius:40px;
}

.img-hover-zoom img {
    transition:var(--transition);
    height:100%;
    width:100%;
    object-fit:cover;
}

.img-hover-zoom:hover img {
    transform:scale(1.1);
}

.second__info {
    display:flex;
    position:relative;
    width:100%;
    z-index:500;
}

.second__info .info__text{
    margin:0;
}

.leading__pic-slider {

}
.leading__pic-slider .slick-slide {
    outline: none;
    text-decoration: none;
    border-radius: 40px;
    overflow: hidden;
    height: 700px;
}
.leading__pic-slider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.leading__pic-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}
.leading__pic-nav-wrap .slick-next {
    position: unset;
    transform: unset;
    order:2;
}
.leading__pic-nav-wrap .slick-next::before {
    display: none
}
.leading__pic-nav-wrap .slick-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #FF6B11;
    background-image: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    outline: none;
    text-decoration: none;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='14' viewBox='0 0 6 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 13L5 7L0.999999 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-size: 13px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.leading__pic-nav-wrap .slick-prev {
    display: none!important;
    position: unset;
    transform: unset;
}
.leading__pic-nav-wrap .slick-dots {
    order:1;
    bottom:unset;
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    left:unset;
    transform: unset;
    width: auto;
    background: #FF6B11;
    padding: 16px;
    border-radius: 24px;
}
.leading__pic-nav-wrap .slick-dots li button:before {
    display: none;
}
.leading__pic-nav-wrap .slick-dots li {
    width: auto;
    height: auto;
    padding: 0;
    margin:0 6px;
}
.leading__pic-nav-wrap .slick-dots li button {
    border: 0;
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 12px;
    background-color: #fff;
    transition: .3s;
}
.leading__pic-nav-wrap .slick-dots li.slick-active button {
    width: 32px;
}


/* .second__info::after {
    content:'';
    background-image:url("data:image/svg+xml,%3Csvg width='40' height='94' viewBox='0 0 40 94' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.5 47.5L0.5 0V14.5L27.5 47.5L0.5 79.5V94L39.5 47.5Z' fill='%23FF6C12'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    width:40px;
    height:94px;
    position:absolute;
} */

.our__team {
    height:100vh;
    width:100%;
    background-image:url(../img/Block_1.jpg);
    background-position:bottom;
    background-size:cover; 
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#FFFFFF;
}

.ot__title__box {
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.ot__title__box img {
    position:relative;
    width:80%;
    height:230px;
}

.ot__title__box .title {
    font-size:42px;
    color:#FFFFFF;
    margin-bottom:0;
    margin-top:20px;
}

.ot__title__box .card-img-overlay {
    height:200px;
}

/* photogallary section */
.photogallary {

}
.pg-slider {
    margin-bottom: 0!important;
    padding-bottom: 24px;
}
.pg-slider .slick-track {
    display: flex;
}
.pg-slider .slick-list {
    margin:0 -12px;
}
.pg-slider .slick-slide {
    margin:0 12px;
    height: 560px;
}
.pg-slider .slick-slide > * {
    height: 100%;
}
.pg-slider-item {
    display: block;
    text-decoration: none;
    outline: none;
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.pg-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pg-title-wrapper {
    background-color: #0063BC;
    padding:32px 0;
}
.pg-title-wrapper .title {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.pg-title-wrapper .title br:last-of-type {
    display: none;
}
.pg-slider-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.pg-slider-nav-wrap .slick-next {
    position: unset;
    transform: unset;
    order:2;
}
.pg-slider-nav-wrap .slick-next::before {
    display: none
}
.pg-slider-nav-wrap .slick-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #FF6B11;
    background-image: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    outline: none;
    text-decoration: none;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='14' viewBox='0 0 6 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 13L5 7L0.999999 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-size: 13px 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.pg-slider-nav-wrap .slick-prev {
    display: none!important;
    position: unset;
    transform: unset;
}
.pg-slider-nav-wrap .slick-dots {
    order:1;
    bottom:unset;
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    left:unset;
    transform: unset;
    width: auto;
    background: #FF6B11;
    padding: 16px;
    border-radius: 24px;
}
.pg-slider-nav-wrap .slick-dots li button:before {
    display: none;
}
.pg-slider-nav-wrap .slick-dots li {
    width: auto;
    height: auto;
    padding: 0;
    margin:0 6px;
}
.pg-slider-nav-wrap .slick-dots li button {
    border: 0;
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 12px;
    background-color: #fff;
    transition: .3s;
}
.pg-slider-nav-wrap .slick-dots li.slick-active button {
    width: 32px;
}
@media(max-width:992px) {
    .pg-slider .slick-slide {
        height: 460px;
    }
    .pg-title-wrapper .title {
        font-size: 32px;
    }
}
@media(max-width:576px) {
    .pg-title-wrapper .title br:first-of-type {
        display: block;
    }
    .pg-title-wrapper .title br:last-of-type {
        display: none;
    }
    .pg-title-wrapper {
        padding: 24px 0;
    }
    .pg-title-wrapper .title {
        font-size: 24px;
        line-height: 130%;
    }
    .pg-slider .slick-slide {
        height: 360px;
        border-radius: 24px;
    }
}
/* end */

.why_choose__content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:start;
    justify-content:space-between;
}

.why_choose__info {
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:start;
    justify-content:space-between;
    padding:30px 0 75px;
}

.why_choose__info .info__text {
    font-weight:500;
    font-size:22px;
    color:#000;
    margin-top:30px;
}


.why__items {
    background-position:left 4px;
    padding:0;
    padding-left:0px;
    margin-top:30px;
}

.why__item {
    font-size:24px;
    list-style-type:none;
    margin-bottom:1rem;
    background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00004 20.42L2.79004 14.21L5.62004 11.38L9.00004 14.77L18.88 4.88L21.71 7.71L9.00004 20.42Z' fill='%23FF6B11'/%3E%3C/svg%3E");
    padding:0px 0 3px 24px;
    background-repeat:no-repeat;
}

.why__item p {
    margin-bottom:0;
    margin-left:10px;
    font-weight:500;
    font-size:22px;
    color:#000;
}

.payday__content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:40px;
}

.payday__item {
    position:relative;
}

.payday__item .info__num {
    position:absolute;
    color:#7B7B7B;
    font-size:140px;
    font-weight:900;
    top:-60px;
    left:0;
    z-index:-1;
    opacity:0.2;
}

.payday__item .item__title {
    font-weight:700;
    display:flex;
    flex-direction:column;
    align-items:start;
}

.payday__item .item__title::after {
    content:'';
    position:relative;
    width:50px;
    height:2px;
    border-bottom:4px solid #FF6B11;
    margin-top:10px;
}

.payday__item .info__text {
    font-size:18px;
}


.hts__content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:start;
    justify-content:space-between;
}

.hts__info__block {
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:start;
    /* justify-content:space-between; */
    justify-content: center;
    /* padding:30px 0 75px; */
    padding:24px 0 24px;
}

.hts__info__block .info__text {
    font-weight:500;
    font-size:22px;
    color:#000;
    margin-top:30px;
}

.hts__img {
    height:100%;
}
.hts__img .img-hover-zoom {
    height: auto;
}
.hts__img p span {
    font-size: 16px;
}
.hts__info__items {
    display:flex;
    flex-direction:column;
    align-items:start;
    justify-content:start;
}

.hts__item {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:start;
    margin-bottom:12px;
}

.hts__item .num__box {
    width:40px !important;
    height:40px !important;
    border:2px solid #FF6B11;
    border-radius:50%;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-right:12px;
}

.hts__item .num__box div {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:20px;
    color:#FF6B11;
}

.hts__info p {
    width:100%;
    margin-bottom:0;
    font-size:16px;
    font-weight:500;
    color:#000;
    text-decoration:none;
}

.hts__info a {
    width:100%;
    margin-bottom:0;
    font-size:16px;
    font-weight:500;
    color:#000;
    text-decoration:none;
}

.suitable__content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:center;
    justify-content:space-between;
}

.suitable__content .sm__title{
    margin-bottom:40px;
}

.suitable__items {
    background-position:left 4px;
    padding:0;
    padding-left:0px;
    margin-top:30px;
}

.suitable__pic {
    height:700px;
}

.suitable__item {
    font-size:24px;
    list-style-type:none;
    margin-bottom:1rem;
    background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00004 20.42L2.79004 14.21L5.62004 11.38L9.00004 14.77L18.88 4.88L21.71 7.71L9.00004 20.42Z' fill='%23FF6B11'/%3E%3C/svg%3E");
    padding:0px 0 3px 24px;
    background-repeat:no-repeat;
}

.suitable__item p {
    margin-bottom:0;
    margin-left:10px;
    font-weight:500;
    font-size:22px;
    color:#000;
}

.start__now {
    height:100vh;
    width:100%;
    background-image:url(../img/b-intro.jpg);
    background-position:bottom;
    background-size:cover; 
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-top:120px;
}

.start__now__content .sm__title {
    color:#FFFFFF;
    width:fit-content;
    margin:0 auto;
}

.start__now__items {
    background-position:left 4px;
    padding:0;
    padding-left:0px;
    margin-top:30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.start__now__item {
    font-size:24px;
    list-style-type:none;
    margin-bottom:1rem;
    background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00004 20.42L2.79004 14.21L5.62004 11.38L9.00004 14.77L18.88 4.88L21.71 7.71L9.00004 20.42Z' fill='%23FF6B11'/%3E%3C/svg%3E");
    padding:0px 0 3px 24px;
    background-repeat:no-repeat;
    min-width:70%;
    width:fit-content;
}

.start__now__item p {
    margin-bottom:0;
    margin-left:10px;
    font-weight:500;
    font-size:22px;
    color:#FFFFFF;
    width:fit-content;
}

.last__slide {
    height:100vh;
    width:100%;
    background-image:url(../img/b-intro.jpg);
    background-position:bottom;
    background-size:cover; 
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-top:120px;
}

.last__slide__content {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
}

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

.last__slide__logo .title {
    width:80%;
    color:#FFFFFF;
    margin-bottom:50px;
}

.last__slide__logo svg {
    height:170px;
    width:auto;
    margin-bottom:40px;
}

.last__slide__info {
    display:flex;
    flex-direction:column;
    align-items:start;
    justify-content:start;
}

.ls__item {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:start;
    margin-bottom:12px;
}

.ls__link {
    color:#FFFFFF;
    text-decoration:none;
    transition:var(--transition);
}

.ls__link:hover {
    color:#FF6B11;
}

.form-title-bg {
    font-size:24px;
    font-weight:600;
    line-height:120%;
}

/* bussines page end */


@media(max-width:1400px) {
    .layer-header {
        padding-top:14vh;
    }
}
@media (min-width:1200px) { 
    #ben-text-1 {
        top:8%;
        right:13%;
    }
    #ben-text-2 {
        bottom:13%;
    }
    #ben-text-3 {
        top:11%;
    }
    #ben-text-4 {
        top:18%;
        left:15%;
    }
    #ben-text-5 {
        top:14%;
        left:30%;
    }
    #ben-text-6 {
        top:5%;
    }
}

@media (max-width:1200px) {
    .map__list {
        width:calc(100% - 640px);
    }
    .map__svg {
        width:100%;
        max-width:640px;
    }
    /* .header-items {
        gap:0 20px;
    } */
    .header-item {
        margin:0 10px;
    }
    .logo-link img{
        width:150px;
        height:auto;
    }
    .catalog .py-100 {
        padding:30px 0 80px 0;
    }
    .slick-center .card {
        padding:0;
        padding:20px;
    }
    .slick-center .catalog-item {
        box-shadow:3px 18px 60px rgba(0, 128, 242, 0.43);
    }
    .slick-center .img-box img {
        transform:rotate(-25deg) scale(1.3);
        bottom:10px;
    }
    .slider-item-box {
        padding:40px 0 60px 0;
    }
    .catalog-item {
        transform:scale(.65);
    }
    .slick-center .card-text-box {
        margin:25px 0;
    }
    .ben-svg{
        height:500px;
        width:480px;
        margin-bottom:0px;
        padding-bottom:50px !important;
    }
    .layer-header {
        padding-top:100px;
    }
    .intro-title {
        font-size:130px!important;
    }
    .start__now__item {
        min-width:80%;
        width:fit-content;
    }
    .ot__title__box img {
        position:relative;
        width:100%;
        height:230px;
    }
}

@media (max-width:992px) {
    .map__content {
        flex-wrap:wrap-reverse;
    }
    .map__list {
        width:100%;
        margin-bottom:34px;
    }
    .map__svg {
        width:100%;
        max-width:100%;
    }
    .map__list__items {
        grid-template-columns:1fr 1fr 1fr;
        height:200px;
        padding:14px 12px;
    }
    .map-list .list__item {
        font-size:14px;
    }
    .about-info-box {
        align-items:flex-start;
    }
    #aitn-2 {
        top:-15%;
    }
    .catalog-item {
        transform:scale(1);
    }
    .slick-center .catalog-item {
        transform:scale(.8);
        box-shadow:3px 18px 60px rgba(0, 128, 242, 0.43);
    }
    .slick-center .img-box img {
        object-fit:contain;
        transform:rotate(-25deg) scale(1.1);
        bottom:10px;
    }
    .slider-item-box {
        padding:0px 0;
    }
    .catalog .py-100 {
        padding:0px 0 80px 0;
    }
    .catalog .title {
        margin-bottom:-20px;
    }
    .title {
        font-size:32px;
        line-height:39px;
    }
    .intro-title {
        font-size:100px !important;
    }
    .intro,
    .layers,
    .intro .container, .intro .row {
        min-height:615px;
    }
    .catalog-slider, .slider-container {
        padding:0;
    }
    .footer-nav-box {
        display:flex;
        justify-content:start;
        margin-top:32px;
    }
    .footer-nav-box ul {
        margin-right:50px;
    }
    .footer-nav-box ul:last-child {
        margin:0;
    }
    .footer-nav-box {
        margin:32px 0;
    }
    .footer-media {
        justify-content:start;
    }
    .footer-media ul {
        align-items:flex-start;
    }
    .footer-media .sm-media-box {
        position:relative;
        margin-left:120px;
    }
    .slider-control-btn:first-child {
        margin-right:60px;
    }
    .form-card {
        padding:36px 28px 44px;
    }
    .travel-pic-box {
        position:relative;
        top:50px;
        right:0;
        z-index:2;
    }
    .travel-line {
        background-color:#FFFFFF;
        z-index:6;
    }
    .travel-pic-slider {
        position:relative;
    }
    .travel-slider-box {
        display:flex;
        flex-direction:column-reverse;
    }
    .feeds-item {
        width:430px;
    }
    .sad-item {
        padding:44px 20px 56px;
    }
    .ship-and-delivery .to-down-btn {
        margin-top:5vh;
    }
    .ben-svg{
        height:517px;
        width:566px;
        margin-bottom:0px;
        padding-bottom:80px !important;
    }
    #ben-text-1 {
        top:5%;
        right:9%;
    }
    #ben-text-2 {
        bottom:14%;
    }
    #ben-text-3 {
        top:7%;
    }
    #ben-text-4 {
        top:15%;
        left:8%;
    }
    #ben-text-5 {
        top:10%;
        left:20%;
    }
    #ben-text-6 {
        top:1%;
    }
    .layers__front {
        bottom:-10%;
    }
    .layer-header {
        padding-top:120px;
        min-height:615px;
    }
    .sm-menu {
        justify-content:flex-start;
    }
    .choose-items {
        /* display:grid;
        grid-template-columns:1fr;
        grid-template-rows:1fr 1fr 1fr 1fr 1fr 1fr;
        gap:36px 24px;
        grid-auto-flow:row;
        grid-template-areas:
          "."
          "."
          "."
          "."
          "."
          "."; */
        margin:0;
    }
    .choose-item {
        width:100%;
        margin:0 0 36px;
    }
    .choose-title {
        font-family:'Open Sans', sans-serif;
        font-style:normal;
        font-weight:700;
        font-size:18px;
        line-height:140%;
        color:#2D2D2D;
        margin-bottom:10px;
    }
    .num-box {
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        background:#FFFFFF;
        margin:0;
        padding:0;
        width:80px;
        height:80px;
        /* Shadows/Cards/Blue-Secondary */
        
        box-shadow:0px 4px 28px rgba(98, 170, 255, 0.24);
        border-radius:12px;
    }
    .choose-text {
        font-size:14px;
    }
    .choose-item {
        padding:32px 24px;
    }
    .choose-item:nth-child(2), .choose-item:nth-child(3), .choose-item:nth-child(6) {
        border:2px solid #0063BC;
        filter:drop-shadow(0px 4px 68px rgba(36, 126, 233, 0.15));
    }
    
    .choose-item:nth-child(2) .num-box, .choose-item:nth-child(3) .num-box, .choose-item:nth-child(6) .num-box {
        box-shadow:0px 4px 28px rgba(98, 170, 255, 0.24);
    }
    
    .choose-item:nth-child(2) .num-item, .choose-item:nth-child(3) .num-item, .choose-item:nth-child(6) .num-item {
        -webkit-text-stroke:1px #0063BC;
    }
    .choose-item:nth-child(2n) {
        border:2px solid #FF6B11;
        filter:drop-shadow(0px 4px 68px rgba(36, 126, 233, 0.15));
    }
    
    .choose-item:nth-child(2n) .num-box {
        box-shadow:0px 4px 28px rgba(255, 107, 17, 0.24);
    }
    
    .choose-item:nth-child(2n) .num-item{
        -webkit-text-stroke:1px #FF6B11;
    }
    #travel-mb {
        padding:130px 0 0 0;
    }    
    .choose {
        padding-bottom:30px !important;
    }
    .start__now__item {
        min-width:100%;
        width:fit-content;
    }
    .leading__content {
        display:flex;
        /* grid-template-columns:1fr; */
        flex-direction: column;
        align-items:start;
        justify-content:space-between;
        gap: 0;
    }
    .why_choose__content {
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
        align-items:start;
        justify-content:space-between;
    }
    .hts__content {
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
        align-items:start;
        justify-content:space-between;
    }
    .suitable__content {
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
        align-items:center;
        justify-content:space-between;
    }
    .leading__info {
        padding:30px 0 0px;
        order:1;
        width: 100%;
    }
    .leading__pic {
        /* order:0; */
        /* height:450px; */
        width: 100%;
        border-radius:40px;
    }
    .leading__pic-slider .slick-slide {
        height: 450px;
    }
    .leading__pic-nav-wrap {
        margin-bottom: 0;
    }
    .why_choose__pic {
        height:450px;
        order:0;
    }
    .why_choose__info {
        order:1;
    }
    .hts__info__block {
        padding:0px 0 0px;
        order:1;
    }
    .hts__img {
        /* height:450px; */
        height: auto;
        order:0;
    }
    .suitable__pic {
        height:450px;
        order:0;
    }
    .payday .sm__title {
        margin-bottom:30px;
    }
    .suitable__info {
        margin-top:30px;
    }
    .ot__title__box .title {
        font-size:32px;
        color:#FFFFFF;
        margin-bottom:0;
        margin-top:20px;
    }
    .ot__title__box img {
        position:relative;
        width:100%;
        height:170px;
    }
    body.page-id-122 .logo-title-liquid {
        margin-right: auto;
        margin-left: 16px;
    }
}
@media(max-width:768px) {
    .intro-title {
        font-size:60px !important;
    }
    .intro, .layers, .intro .container, .intro .row {
        min-height:670px;
        height:100%;
    }
    .callback .title {
        margin-bottom: 24px;
    }
    .callback-direction {
        gap:24px;
        margin-bottom: 32px;
    }
    .callback-direction .img {
        width: 140px;
        height: 140px;
        border-radius: 16px;
        overflow: hidden;
    }
    .callback-direction .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transform: scale(1.1);
    }
    .callback-direction .text {
        width: calc(100% - 140px - 24px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .callback-direction .text .name {
        font-size: 18px;
        font-weight: 700;
    }
    .callback .form-box {
        padding-top: 0;
    }
    .callback .form-box::before {
        display: none;
    }
}
@media (max-width:576px) {
    .list__item {
        font-size:14px;
    }
    .map__svg {
        width:100%;
        max-width:100%;
        overflow:auto;
        padding-bottom:40px;
    }
    .map__svg::-webkit-scrollbar {
        width:0;
        height:3px;
    }
    .map__svg::-webkit-scrollbar-track {
        background-color:#B5B5B5;
        border-radius:3px;
    }
    .map__svg::-webkit-scrollbar-thumb {
        background-color:#FF6B11;
        border-radius:3px;
    }
    .map__svg svg {
        width:600px;
        height:auto;
    }
    .intro-title {
        font-weight:900;
        font-size:45px !important;
        line-height:90% !important;
        letter-spacing:0.02em;
    }
    .intro-title span {
        font-size:18px;
    }
    .intro .btn {
        width:100%;
    }
    .btns-box {
        gap:10px 0;
        /* margin-bottom:-30px; */
        margin-bottom:30px;
    }
    .to-down-btn {
        margin-bottom:4vh;
    }
    .about .py-120 {
        padding-top:50px;
        padding-bottom:80px;
    }
    .media-box {
        display:none;
    }
    .media-container {
        align-items:center;
        width:100%;
        display:flex;
        justify-content:flex-end;
        flex-wrap:wrap;
        align-items:end;
        flex-direction:column;
        align-content:center;
    }
    .layers__front {
        background-size:cover;
    }
    .footer-nav-box ul {
        margin-right:20px;
    }
    .footer .header-link, .footer .text {
        font-size:14px;
        line-height:160%;
    }
    .btn {
        font-weight:600;
        font-size:20px;
        line-height:24px;
    }
    .about-info-title {
        font-size:20px;
        line-height:160%;
    }
    .about-into-text {
        font-weight:400;
        font-size:14px;
        line-height:160%;
    }
    .slick-center .catalog-item {
        transform:scale(.85);
        box-shadow:3px 18px 60px rgb(0 128 242 / 33%);
    }
    .table td, .table th {
        font-size:14px;
        line-height:160%;
    }
    .spec .mb-80 {
        margin-bottom:40px;
    }
    /* .galary-slider .slick-center .slider-item {
        height:260px;
    } */
    /* .galary-item-box {
        height:300px;
    } */
    .galary-slider .slider-item{
        height:300px;
    }
    .form-line::before {
        content:none;
    }
    .form-text {
        font-size:14px;
        line-height:140%;
        color:#FFFFFF;
    }
    .callback {
        background:url(../img/bg-callback.jpg);
        background-repeat:no-repeat;
        background-position:left 100% bottom 0%;
        background-size:cover !important;
        /* background-size:100%; */
    }
    
    .form-box {
        padding-top:100px;
        position:relative;
    }
    .form-box::before {
        content:" ";
        position:absolute;
        height:112px;
        width:120px;
        background:url(../img/callback-sm.png);
        top:0px;
        left:23px;
        z-index:10;
    }
    .date-input {
        flex-direction:column-reverse;
        align-items:flex-start;
    }
    .date-input p {
        margin-bottom:14px;
    }
    .form-card {
        border-radius:28px;
    }
    .form-card .wpcf7 {
        width: 100%;
    }
    .callback .btn {
        width:100%;
        padding: 20px;
        font-size: 16px;
    }
    .travel-line {
        padding:40px 20px;
    }
    .travel-slider-text {
        font-size:16px;
    }
    .feed-subtext {
        font-size:16px;
    }
    .sad-item-size:first-child {
        padding-right:0px;
    }
    
    .sad-item-size:last-child {
        padding-left:0px;
    }
    .ben-text-box {
        display:none;
        flex-direction:row;
        align-items:flex-start;
        padding:16px 12px 16px;
        position:absolute;
        background:#FFFFFF;
        width:96%;    
        border:1px solid #FF6B11;
        border-radius:28px;
        transition:all .3s ease;
        left:0 !important;
        right:0 !important;
        left:2% !important;
    }
	.ben-text-box .text {
		font-size:14px;
	}
    #ben-text-1 {
        top:0%;
        right:9%;
    }
    #ben-text-2 {
        bottom:16%;
    }
    #ben-text-3 {
        top:1%;
    }
    #ben-text-4 {
        top:10%;
        left:8%;
    }
    #ben-text-5 {
        top:6%;
        left:20%;
    }
    #ben-text-6 {
        top:0%;
    }
    .modal-content {
        padding:40px 20px;
    }
    .about-info-title-num {
        display:none;
    }
    .intro {
        height:110vh;
    }
    .layers {
        height:110vh;
    }
    .to-down-btn {
        display:none; 
    }
    #about-info-pic-1 {
        margin-bottom:-10%;
    }
    .about-info-box {
        position:relative;
    }
    #about-info-pic-2 {
        position:absolute;
        height:auto;
        width:70%;
        right:-20%;
        top:-30%;
        z-index:0;
    }
    #about-info-pic-2 img {
        position:absolute;
    }
    #about-info-box-1 {
        z-index:15;
    }
    .about {
        overflow:hidden;
    }
    .layers__front {
        background-image:url(../img/bg-sm-intro-6.png);
        background-position:bottom;
        background-size:cover; 
        background-repeat:no-repeat;
        z-index:4;
        bottom:-2%;
        transform:translate3d(0, calc(var(--scrollTop) / 7), 0);
    }
    .payday__content {
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
        margin-top:40px;
    }
    .b_intro__content {
        flex-direction:column;
    }
    .b_intro__content svg {
        height:170px;
        width:auto;
        margin-bottom:24px;
        opacity: 0;
        visibility: hidden;
    }
    .ot__title__box img {
        display:none;
    }
    .our__team {
        background-image:url(../img/Block_1.jpg);
        background-position:70% 0%;
    }
}
@media(max-width:414px) {
    .map__list__items {
        grid-template-columns:1fr 1fr;
    }
}
@media (max-width:360px) {
    .intro-title {
        font-size:36px !important;
    }
}
/* main media end*/






/* custom style start*/
.pos-fix {
    position:fixed;
}
.pos-abs {
    position:absolute;
}
.pos-rel {
    position:relative;
}
/*
.disp-xl-none {
    display:none;
}
.disp-xl-flex {
    display:flex; 
}
.disp-lg-none {
    display:none;
}
.disp-lg-flex {
    display:flex; 
}
.disp-md-none {
    display:none;
}
.disp-md-flex {
    display:flex;
}
.disp-sm-flex {
    display:flex;
}
.disp-sm-none {
    display:none;
}
*/

.disp-xl-flex {
    display:none; 
}
.disp-lg-flex {
    display:none; 
}
.disp-md-flex {
    display:none;
}
.disp-sm-flex {
    display:none;
}
.py-130 {
    padding:130px 0;
}
.py-120 {
    padding-top:120px;
    padding-bottom:120px;
}
.pb-120 {
    padding-bottom:120px;
}
.py-100 {
    padding:100px 0;
}
.py-80 {
    padding:80px 0;
}
.py-50{
	padding:50px 0;	
}
.py-30{
	padding:30px 0;	
}
.pt-130 {
    padding-top:130px;
}
.pt-120 {
    padding-top:120px;
}
.pt-110 {
    padding-top:110px;
}
.pt-100 {
    padding-top:100px;
}
.pt-80 {
    padding-top:80px;
}
.pt-50 {
    padding-top:50px;
}
.pb-130 {
    padding-bottom:130px;
}
.pb-100 {
    padding-bottom:100px;
}
.pb-80 {
    padding-bottom:80px;
}
.pb-50 {
    padding-bottom:50px;
}
.pe-40 {
    padding-right:45px;
}
.px-12 {
    padding:0 12px;
}
.ps-12 {
    padding:0 0 0 12px;
}
.pe-12 {
    padding:0 12px 0 0;
}
.mb-80 {
    margin-bottom:80px;
}
.mb-60 {
    margin-bottom:60px;
}
.mb-50 {
    margin-bottom:50px;
}
.mb-40 {
    margin-bottom:40px;
}
.mb-30 {
    margin-bottom:30px;
}
.mb-20 {
    margin-bottom:20px;
}
.mb-15 {
    margin-bottom:15px;
}
.mt-100 {
    margin-top:100px;
}
.mt-120 {
    margin-top:120px;
}
.mt-40 {
    margin-top:40px;
}
.mt-30 {
    margin-top:30px;
}
.mt-20 {
    margin-top:20px;
}
.mx-12 {
    margin:0 12px;
}
/* project colors start */ 

/* text colors */
.cl-gray {
    color:#414141;
}
.cl-dark{
    color:#151515
}
.cl-dark a:active, a:focus {
    color:#151515;
}
.cl-white {
    color:#FFFFFF;
}

/* background colors*/
.bg-gray {
    background-color:#414141;
}
.bg-white {
    background-color:#FFFFFF;
}
/* project colors end */ 

@media (max-width:1400px) {
    .disp-xl-none {
        display:flex; 
    }
}

@media (max-width:1200px) {
    .disp-lg-none {
        display:none; 
    }
}

@media (max-width:992px) {
    .disp-md-none {
        display:none;
    }
    .disp-md-flex {
        display:flex;
    }
}

@media (max-width:769px) {
    .pb-100 {
        padding-bottom:75px;
    }
    .py-100 {
        padding:75px 0;
    }
    .pt-100 {
        padding-top:75px;
    }
    .px-100 {
        padding:0 75px;
    }
    .pt-50 {
        padding-top:35px;
    }
    .pb-50 {
        padding-bottom:35px;
    }
    .mb-50 {
        margin-bottom:35px;
    }
    .mx-sm-auto {
        margin-right:auto!important;
        margin-left:auto!important;
    }
    .pb-130 {
        padding-bottom:64px;
    }
    .py-130 {
        padding:64px 0;
    }
    .pt-130 {
        padding-top:64px;
    }
}
@media (max-width:576px) {
    .py-100 {
        padding:50px 0;
    }
    .py-120 {
        padding-top:70px;
        padding-bottom:70px;
    }
    .pb-120 {
        padding-bottom:70px;
    }
    .pt-120 {
        padding-top:70px;
    }
    .pt-100 {
        padding-top:80px;
    }
    .px-100 {
        padding:0 50px;
    }
    .pt-180 {
        padding-top:100px;
    }
    .pt-50 {
        padding-top:25px;
    }
    .pb-50 {
        padding-bottom:25px;
    }
    .mb-50 {
        margin-bottom:25px;
    }
    .m-sm-12 {
        margin:0 12px;
    }
    .px-sm-12 {
        padding:0 12px;
    }
    .disp-sm-none {
        display:none;
    }
    .disp-sm-flex {
        display:flex;
    }
    #burger {
        right:0rem;
        top:0rem;
    }
    .mb-60 {
        margin-bottom:40px;
    }
}
/* custom style end */

@media(max-width:992px){
    .header-container {
        --bs-gutter-x:1.5rem;
        --bs-gutter-y:0;
        width:100%;
        padding-right:calc(var(--bs-gutter-x) * .5);
        padding-left:calc(var(--bs-gutter-x) * .5);
        margin-right:auto;
        margin-left:auto;
    }

}

@media(min-width:576px){
    .container-right {
        padding-left:calc((100% - 540px) / 2 + 12px);
    }
    .header-container {
        max-width:540px;
    }
}
@media(min-width:768px){
    .container-right {
        padding-left:calc((100% - 720px) / 2 + 12px);
    }
    .header-container {
        max-width:720px;
    }
    
}
@media(min-width:992px){
    .container-right {
        padding-left:calc((100% - 960px) / 2 + 12px);
    }
    .header-container {
        max-width:960px;
    }
}
@media(min-width:1200px){
    .container-right {
        padding-left:calc((100% - 1140px) / 2 + 12px);
    }
    .header-container {
        max-width:95%;
    }
}
@media(min-width:1400px){
    .container-right{
        padding-left:calc((100% - 1196px) / 2 + 12px);
        padding-right:0;
        
    }
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width:1196px;
    }
    .header-container {
        max-width:95%;
    }
    .layers__front {
        bottom:-10%;
    }
}
@media(min-width:1920px){
    
}

.header-container {
    margin-right:auto;
    margin-left:auto;
}

/*устанавливаем неактивными все слайды в слайдере кроме первого*/
.intro-slider .slider-item:not(:first-child) {
    display:none;
}

/*устанавливаем все слайды в слайдере активными после инициализации slick-slider*/
.intro-slider.slick-initialized .slider-item:not(:first-child) {
    display:block;
}


.wpcf7-form.invalid .wpcf7-response-output {
    color:#fff;
    font-size:14px;
    line-height:16px;
    padding:10px 20px;
}
.modal .wpcf7-form.invalid .wpcf7-response-output {
    color:#000;
}

.wpcf7-not-valid-tip {
    color:#fff;
    font-size:14px;
    font-weight:normal;
    display:block;
    transform:translateY(-20px);
}
.modal .wpcf7-not-valid-tip {
    color:#000;
}

.wpcf7-form.sent > *:not(.wpcf7-response-output) {
    display:none!important;
}
.wpcf7-form.sent .wpcf7-response-output {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:none;
    padding:0;
    margin:0;
    text-align:center;
    color:#fff;
    font-weight:bold;
}
.modal .wpcf7-form.sent .wpcf7-response-output {
    color:#000;
}
.wpcf7-form.sent .wpcf7-response-output::before {
    content:'';
    display:block;
    width:70px;
    height:70px;
    background-image:url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_302_125)'%3E%3Ccircle cx='35' cy='35' r='35' fill='%23FF6B11'/%3E%3Cline x1='16.1213' y1='34.8787' x2='32.1213' y2='50.8787' stroke='white' stroke-width='6'/%3E%3Cline x1='54.416' y1='24.0934' x2='28.1488' y2='51.057' stroke='white' stroke-width='6'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_302_125'%3E%3Crect width='70' height='70' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    margin-bottom:16px;
}
.modal .btn-close {
    position:absolute;
    top:30px;
    right:30px;
    width:25px;
    height:25px;
    cursor:pointer;
}
.catalog-slider .slick-slide,
.galary-slider .slick-slide {
    outline:none;
}
@media(max-width:576px) {
    .catalog-slider .slick-list {
        margin:0 -12px;
        padding-top:20px!important;
        padding-bottom:20px!important;
    }
}


input.btn {
    padding:20px 70px;
}

.date-span {
    display:flex;
    flex-direction:row;
    align-items:center;
    margin-bottom:20px;
}

.grecaptcha-badge {
	right:-256px !important;
}
.form-input-box {
	display:flex;
	flex-wrap:wrap;
}
.form-input-box .date-input p.text {
	font-size:14px;
	line-height:18px;
}
.wpcf7-spinner {
	margin:auto 24px;
}

input[type="date"]{
    background-color:#fff;
    padding:15px;
    /* position:absolute;
    transform:translate(-50%,-50%); */
    top:50%;
    left:50%;
    font-family:"Roboto Mono",monospace;
    color:#000;
    font-size:18px;
    border:1px solid #FF6B11;
    outline:none;
    border-radius:12px;

}
::-webkit-calendar-picker-indicator{
    background-color:#ffffff;
    padding:5px;
    cursor:pointer;
    border-radius:12px;
}

@media(max-width:414px) {
    #about-info-pic-2 {
        height:320px;
        width:100%;
        position:unset;
    }
    .about-info-box {
        padding-top:24px;
    }
}

.added-text {
    font-weight:700;
    font-size:16px;
    line-height:160%;
    /* identical to box height, or 26px */
    
    text-align:center;
    margin-bottom:0px;
    color:#FFB88C;
}

.fixed-btn-order-callback {
	position:fixed;
   	bottom:190px;
    right:15px;
    /* display:flex; */
    display:none;
	cursor:pointer;
    z-index:120;
    width:60px;
    height:60px;
    justify-content:center;
    align-items:center;
    background:#FF6B11;
    border-radius:50%;
    box-shadow:0 0 20px 0 rgb(0 0 0 / 30%);
    overflow:hidden;
	transition:.3s;
}
.fixed-btn-order-callback:hover {
	box-shadow:2px 5px 25px #ff8c46;
}
.wrap-select-city .selected-city {
	font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:16px;
    line-height:25px;
    color:#feb890;
    text-decoration:none;
    transition:all .5s ease;
    height:fit-content;
    position:relative;
	display:flex;
	align-items:center;
}
.wrap-select-city .selected-city::after {
    content:"";
    display:block;
    width:13px;
    height:17px;
    background-image:url("data:image/svg+xml,%3Csvg width='10' height='13' viewBox='0 0 10 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99979 0C2.24304 0 0 2.14706 0 4.78613C0 5.4745 0.147192 6.13173 0.437266 6.73975C1.68735 9.35819 4.08412 12.1227 4.78908 12.9075C4.8419 12.9662 4.9189 13 4.99993 13C5.08096 13 5.15796 12.9662 5.21078 12.9075C5.91547 12.1228 8.31223 9.35845 9.56273 6.73975C9.85295 6.13173 10 5.4745 10 4.78613C9.99972 2.14706 7.75668 0 4.99979 0ZM4.99979 7.27205C3.56777 7.27205 2.4026 6.15675 2.4026 4.78599C2.4026 3.41511 3.56777 2.2998 4.99979 2.2998C6.43182 2.2998 7.59698 3.41511 7.59698 4.78599C7.59712 6.15675 6.43196 7.27205 4.99979 7.27205Z' fill='%23feb890'/%3E%3C/svg%3E%0A");
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    margin-left:12px;
}
@media(max-width:1200px) {
	.wrap-select-city {
		margin-left:auto;
		margin-top:-10px;
	}
	.wrap-select-city .selected-city {
		font-size:14px;
		line-height:21px;
	}
	.header-link {
		font-size:16px;
	}
}
@media(max-width:992px) {
	.header-nav .wrap-select-city {
		display:none;
	}
	.header-item .wrap-select-city {
		display:block;
		margin:0;
		margin-bottom:-40px;
		margin-top:40px;
	}
	.sm-menu .header-item {
		flex-direction:column;
	}
}
/* ADVANTAGES */
.adv {
	margin-top:68px;
	margin-bottom:35px;
}
.adv-list {
	display:flex;
	flex-direction:row;
	align-items:flex-start;
	justify-content:space-between;
	margin:0 -7.5px;
}
.adv-item {
	display:flex;
	flex-direction:row;
	align-items:center;
	width:calc(100% / 4);
	padding:0 7.5px 15px;
	max-width:271px;
}
.adv-item-icon {
	display:block;
	width:60px;
	height:60px;
}
.adv-item-text {
	padding:8px 0 8px 24px;
	width:calc(100% - 60px);
	font-weight:700;
	font-size:18px;
	line-height:120%;
	color:#2D2D2D;
}
@media(max-width:992px) {
	.adv-list {
		flex-wrap:wrap;
		justify-content:space-evenly;
	}
	.adv-item {
		width:calc(100% / 2);
	}
}
@media(max-width:576px) {
	.catalog .slider-container.pt-80 {
		padding-top:0px;
	} 
	.adv-item {
		flex-direction:column;
	}
	.adv-item-icon {
		margin-bottom:12px;
	}
	.adv {
		margin-top:48px;
		margin-bottom:0px;
	}
	.adv-list {
		margin:0;
	}
	.adv-item-text {
		width:100%;
		padding:8px 0;
		text-align:center;
	}
}
/* END */

.telephone {
	font-family:'Open Sans', sans-serif;
    font-style:normal;
    font-weight:600;
    font-size:18px;
    line-height:25px;
    color:#FFFFFF;
    text-decoration-color:transparent;
    transition:all .5s ease;
    height:fit-content;
    position:relative;
}
.telephone:hover {
	color:#fff;
	text-decoration-color:#fff;
}
.modal a,
.form-card a{
	color:inherit;
}
.intro-subtitle{
	text-transform:initial;
	font-size:40px;
	padding-top:15px;
	line-height:1.2;
}
@media(max-width:991.98px){
	.intro-subtitle{
		font-size:27px;
	}
}
@media(max-width:767.98px){
	.intro-subtitle{
		font-size:16px;
	}
}
.reviews-logo{
    height:35px;
    width:auto;
}
.reviews-more-link{
    color:#0063BC;
    font-size:14px;
}
.ben-svg {
	width:566px;
	height:517px;
	padding-bottom:40px;
	position:relative;
}
.ben-num {
	width:54px;
	height:54px;
	border-radius:50%;
	background:#fff;
	border:1px solid #FF6B11;
	position:absolute;
	display:flex;
	align-items:center;
	justify-content:center;
}
.ben-num.active {
	background:#0063BC;
}
.ben-num .ben-number {
	font-size:16px;
	color:#FF6B11;
}
.ben-num.active .ben-number {
	color:#fff;
}
.ben-num .ben-circle {
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	width:62px;
	height:62px;
	border-radius:50%;
	border:0.5px solid #FF6B11;
	transform:translate(-50%,-50%) scale(1);
	animation:change_fill 1.5s infinite linear;
}
.ben-num.active::after {
	content:'';
	display:block;
	width:1px;
	height:10px;
	background-color:#FF6B11;
	position:absolute;
}
.ben-num#ben-num-1 {
	top:68px;
	right:80px;
}
.ben-num#ben-num-2 {
	bottom:145px;
    right:30px;
}
.ben-num#ben-num-3 {
	left:350px;
    top:257px;
}
.ben-num#ben-num-4 {
	left:233px;
    top:340px;
}
.ben-num#ben-num-5 {
	left:0;
    top:295px;
}
.ben-num#ben-num-6 {
	left:200px;
    top:171px;
}
.ben-num#ben-num-1::after {
	top:-50px;
    right:-20px;
    height:70px;
    transform:rotate(45deg);
}
.ben-num#ben-num-2::after {
	bottom:-157px;
    right:120px;
    height:200px;
    transform:rotate(45deg);
}
.ben-num#ben-num-3::after {
	left:-8px;
    top:-217px;
    height:220px;
    transform:rotate(-15deg);
}
.ben-num#ben-num-4::after {
	left:-35px;
    top:-237px;
    height:250px;
    transform:rotate(-25deg);
}
.ben-num#ben-num-5::after {
	left:60px;
    top:-247px;
    height:250px;
    transform:rotate(15deg);
}
.ben-num#ben-num-6::after {
	left:26px;
    top:-171px;
    height:171px;
}
/* .ben-circle::after {
	content:'';
	display:block;
	width:40px;
	height:40px;
	background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_403_76)'%3E%3Ccircle cx='20' cy='20' r='19.5' stroke='%23FF6B11'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_403_76'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-repeat:no-repeat;
	background-size:40px;
	background-position:center;
} */
.ben-num > a {
	position:relative;
}
.ben-num > a .impuls {
	display:block;
	width:64px;
	height:64px;
	background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_403_76)'%3E%3Ccircle cx='20' cy='20' r='19.5' stroke='%23FF6B11'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_403_76'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-repeat:no-repeat;
	background-size:64px;
	background-position:center;
}

.ben-circle + circle {
	position:absolute;
	top:50%;
	left:50%;
	display:none;
	transform:scale(1) translate(-50%, -50%);
/* 	animation:change_fill 1.5s infinite linear; */
}
@keyframes change_fill {
    0% {
		transform:translate(-50%,-50%) scale(1);
	}
    75% {
		transform:translate(-50%,-50%) scale(1.3);
	}
    100% {
		transform:translate(-50%,-50%) scale(1);
	}
}
@media(max-width:1200px) {
	.ben-num#ben-num-1::after {
		top:-67px;
		right:12px;
		height:70px;
		transform:rotate(25deg);
	}
	.ben-num#ben-num-2::after {
		bottom:-157px;
		right:120px;
		height:200px;
		transform:rotate(45deg);
	}
	.ben-num#ben-num-3::after {
		left:-8px;
		top:-217px;
		height:220px;
		transform:rotate(-15deg);
	}
	.ben-num#ben-num-4::after {
		left:-35px;
		top:-237px;
		height:250px;
		transform:rotate(-25deg);
	}
	.ben-num#ben-num-5::after {
		left:60px;
		top:-247px;
		height:250px;
		transform:rotate(15deg);
	}
	.ben-num#ben-num-6::after {
		left:26px;
		top:-171px;
		height:171px;
	}
}
@media(max-width:576px) {
	.ben-num::after {
		display:none!important;
	}
	.ben-num {
		width:40px;
		height:40px;
	}
	.ben-num .ben-number {
    	font-size:14px;
	}
	.ben-num .ben-circle {
		width:46px;
		height:46px;
	}
	.ben-num#ben-num-1 {
		top:23%;
		right:80px;
	}
	.ben-num#ben-num-2 {
		bottom:35%;
		right:30px;
	}
	.ben-num#ben-num-3 {
		left:65%;
		top:48%;
	}
	.ben-num#ben-num-4 {
		left:40%;
		top:60%;
	}
	.ben-num#ben-num-5 {
		left:24px;
		top:55%;
	}
	.ben-num#ben-num-6 {
		left:40%;
		top:40%;
	}
}
/*  */
.catalog-item.card{
	position:relative;
}
.slider-item-box__new{
	text-transform:uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    background-color:red;
    color:#fff;
    border-radius:50%;
    position:absolute;
    top:-20px;
    right:-20px;
    font-size:16px;
    font-weight:700;
    z-index:1;
}
.about .title.py-120{
	padding-top:60px;
	padding-bottom:60px;
}
/*
.mission {
    position:relative;
} 
.mission:before {
    content:'';
    display:block;
    position:absolute;
    height:50px;
    width:50px;
    background:#fafafa;
    left:0;
    top:0;
}
*/
@media(max-width:767.98px){
	.mission{
		width: 100%!important;
	}
	.about .title.py-120{
		padding-bottom: 10px;
	}
}


.amo-button-holder.amo-vertical {
    z-index: 1000!important;
}

.main-btn-border{
	color: #FF6B11;
	background: #fff;
}
.callback .acceptance-wrapper > .text{
	color: #fff;
}
.acceptance-wrapper{
	align-items: center;
}
.wpcf7 .wpcf7-submit:disabled{
    opacity: 1;
    color: #fff;
    filter: brightness(0.8);
}
.responsive-video{
	border-radius: 12px;
}
#video .responsive-video{
	object-fit: cover;
}


/* SMI SECTION */
.smi .title {
    text-align: left;
}
.smi-list {
    display: flex;
    flex-wrap: wrap;
    gap:12px;
}
.smi-list-item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 4 - 9px);
    background-color: #e9e9e9;
    border-radius: 12px;
    /* overflow: hidden; */
    padding: 16px;
    position: relative;
    text-decoration: none;
    outline: none;
}
.smi-list-item .thumbnail {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}
.smi-list-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.smi-list-item:hover .thumbnail img {
    transform: scale(1.1);
}
.smi-list-item .name {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px;
    color:#151515;
    transition: .3s;
}
.smi-list-item:hover .name {
    color:#0063BC;
}
.smi-list-item .text {
    display: block;
    font-size: 15px;
    line-height: 130%;
    color:#151515b0;
}
.smi-list-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -6px;
    top:-12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    z-index: 11;
}
.smi-list-item .icon img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    display: block;
}
@media(max-width:992px) {
    .smi-list-item {
        width: calc(100% / 2 - 6px);
    }
}
@media(max-width:768px) {
    .amo-button-holder.amo-vertical {
        bottom: 60px!important;
    }
}
@media(max-width:576px) {
    .smi-list-item {
        padding: 12px;
    }
    .smi-list-item .thumbnail {
        height: 130px;
    }
    .smi-list-item .name {
        font-size: 16px;
    }
    .smi-list-item .text {
        font-size: 13px;
    }
}
/* END */
.accordion{
    --bs-accordion-active-color: inherit;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-btn-focus-border-color: #dee2e6;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed),
.accordion-button:focus{
    box-shadow: none;
}
@media(max-width:767.98px){
    .faq .accordion-button{
        font-size: 18px!important;
    }
    .faq .accordion-body{
        font-size: 16px!important;
    }
    .subtitle-2{
        font-size: 14px;
        line-height: 1.5;
    }
    .intro-slider-item{
        min-height: 650px;
    }
}
@media(min-width:768px) and (max-width:992px){
    .intro-slider-item-content .btn{
        padding: 20px;
    }
}
.wp-content p:last-child{
    margin-bottom: 0;
}
.feedback-info__img{
    max-width: 260px;
}
:root{
    --bs-primary-rgb: 0, 99, 188;
    --bs-primary: #0063BC;
    --bs-secondary: #FAFAFA;
    --bs-secondary-rgb: 250, 250, 250;
}
.feedback-info-card__title{
    font-size: 22px;
    line-height: 1.3;
}
.feedback-info-card__img{
    height: 40px;
    object-fit: contain;
    object-position: center;
}
.feedback-info-card__content{
    opacity: .8;
    font-size: 16px;
}
.accordion-body a{
    color: inherit;
}
/*  */
.video-item{
    padding-top: 50px;
    padding-bottom: 50px;
}
.video-item__description{
    margin-bottom: 40px;
    max-width: 640px;
}
.video-item__signature{
    opacity: .7;
}
.video-item__text{
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
}
.video-item__title{
    font-size: 36px;
}
.section-video{
    padding-top: 100px;
    padding-bottom: 100px;
    font-size: 18px;
}
.section-video__description{
    line-height: 1.4;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.video-item__video{
    border-radius: 24px;
}
.about-info-slider-2 .about-info-slider-item{
    border-radius: 24px;
    height: auto;
    aspect-ratio: inherit;
}
.about-info-slider-2 .about-info-slider-item img{
    position: static;
}
.about-info-slider.about-info-slider-2 .slick-slide:not(.slick-active){
    opacity: 1;
}
.section-video-slider__title{
    font-size: 36px;
}
.section-video-slider__subtitle{
    font-size: 18px;
}
.intro-thanks{
    min-height: 600px;
    height: 95vh;
}
.intro-thanks::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:#00000033;
    z-index: -1;
}
.intro-thanks__img{
    z-index: -1;
    object-fit: cover;
    object-position: top;
}
.intro-thanks__title{
    font-size: 52px;
    margin-bottom: 12px;
}
.intro-thanks__arrow{
    margin-top: 70px;
}
.intro-thanks__description{
    font-size: 16px;
    line-height: 1.45;
}

.responsive-video {
    width: 100%;
    height: 700px;
    max-height: 100%;
    min-height: 405px;
}
.tech-block table td{padding:5px 20px;}
.tech-block table tr td:first-child{background:#cecece;min-width:30%;font-size:0.8rem;}
.tech-block table td{border-bottom:1px solid #aaaaaa;}

@media(max-width:1200px) {
    .responsive-video {
        height: 500px;
    }
}
@media(max-width:768px) {
    .responsive-video {
        height: 400px;
        min-height: 200px;
    }
}
@media(max-width:576px) {
    .responsive-video {
        height: 320px;
        min-height: 300px;
    }
}


@media(max-width:767.98px){
    .section-video{
        font-size: 16px;
    }
    .video-item__title,
    .section-video-slider__title{
        font-size: 28px;
    }
    .video-item__signature,
    .section-video-slider__subtitle{
        font-size: 14px;
    }
    .video-item__text{
        font-size: 16px;
    }
    .video-item {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .video-item__description{
        margin-bottom: 24px;
    }
    .video-player-wrapper{
        max-width: 350px;
    }
    .about-info-slider.about-info-slider-2 .slick-list{
        padding-right: 12%!important;
    }
    .section-video-slider__title{
        font-size: 32px;
    }
    .section-video-slider__subtitle{
        font-size: 16px;
    }
    .intro-thanks__title{
        font-size: 32px;
        margin-bottom: 12px;
    }
    .intro-thanks__arrow{
        margin-top: -60px;
        transform: scaleX(-1);
        margin-left: auto;
        width: 18px;
    }
    .intro-thanks__description{
        padding-right: 20px;
    }
    .intro-thanks__description br{
        display: none;
    }
    .intro-thanks {
        min-height: 480px;
    }
    .section-video {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    #meny.active{background:#cecece;}
}