@font-face {
	font-family: 'Inter';
	src: url('./fonts/Inter.woff2') format('woff2-variations');
    font-weight: 100 1000;
	font-style: normal;
    font-display: swap;
}
@font-face {
	font-family: 'Helios';
	src: url('./fonts/heliosextblackc.woff2') format('woff2');
    font-weight: 400;
	font-style: normal;
    font-display: swap;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    position: relative;
    color: #090909;
    background: #F7F7F7;
}
a{
	text-decoration: none;
	color: #1B1B1B;
	transition: all 0.3s;
}
svg, path{
    transition: all 0.4s;
}
.container{
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero{
    background: url(/files/hero.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 52px;
    min-height: 600px;
}
.hero._show{
    background: #004F84;
    color: #FFFFFF;
}
.hero._show::after{
    display: none;
}
.hero._show .logotype{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px;
}
.hero._show a img{
    width: 64px;
    height: 64px;
}
.hero._show .header{
    padding: 12px 0;
    align-items: center;
}
.hero._show .link{
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.hero._show .link:hover{
    color: #004F84;
    background: #FFFFFF;
}
.hero._show .language{
    color: #FFFFFF;
}
.hero._show .language._active{
    color: #001827;
}
.hero::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 0;
    background: linear-gradient(90deg, rgba(247, 247, 247, 0.6) 56.25%, rgba(255, 255, 255, 0) 100%);
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 0;
}
.headerRow{
    display: flex;
    align-items: center;
    gap: 32px;
}
.rates{
    font-weight: 700;
    font-size: 14px;
    color: #1B1B1B;
    width: 464px;
}
.nav{
    display: flex;
    gap: 12px;
}
.link{
    padding: 12px 40px;
    border-radius: 6px;
    border: 1px solid #484848;
    font-size: 14px;
}
.link:hover{
    background: #484848;
    color: #FFFFFF;
}
.languageSwap{
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
}
.language._active{
	color: #0071BC;
	pointer-events: none;
}
h1{
	font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
h1 span{
	font-family: 'Helios', sans-serif;
    color: #0071BC;
    font-size: 44px;
    display: block;
    line-height: 120%;
}
.heroWrapper{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 640px;
    padding-bottom: 70px;
}
.countries{
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
}
.countries img{
    width: 22px;
}
.countries p{
    display: flex;
    justify-content: space-between;
}
.btn{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0071BC;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
}
.btn:hover{
    background: #1B1B1B;
    color: #FFFFFF;
}
.section{
    padding: 52px 0;
}
.section .container{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
h2{
    font-size: 16px;
    font-weight: 400;
    color: #484848;
	font-family: 'Inter', sans-serif;
    padding-left: 20px;
    text-transform: uppercase;
    position: relative;
    line-height: 110%;
}
.footer h2{
    color: #FFFFFF;
}
h2::after{
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: #0071BC;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer h2::after{
    background: #FFFFFF;
}
.aboutRow{
    display: flex;
    gap: 16px;
}
.aboutRow > div{
    width: calc((100% - 132px) / 3);
}
.aboutRow .first{
    width: calc(100% - (100% - 132px) / 3 * 2);
    padding-top: 24px;
}
h3{
	font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #090909;
    line-height: 110%;
}
.aboutRow .first h3{
	font-family: 'Helios', sans-serif;
    font-weight: 400;
    font-size: 30px;
}
.aboutRow .first h3 span{
    display: inline-block;
    border-bottom: 2px solid #0071BC;
    color: #0071BC;
    padding-bottom: 12px;
}
strong{
    font-weight: 500;
}
.first strong{
    display: inline-block;
    max-width: 360px;
    font-size: 18px;
}
.first, .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aboutRow .item{
    background: rgba(0, 0, 0, 0.02);
    gap: 12px;
    padding: 32px;
    width: calc((100% - 32px) / 3);
}
.missionRow{
    display: flex;
    gap: 52px;
}
.missionRow .item{
    flex: 1;
}
.missionRow .item:first-child{
    max-width: 520px;
}
.missionRow h3,
.deliveryRow h3{
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
}
.missionImage{
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
    width: 100%;
}
.missionImage img{
    object-fit: cover;
    object-position: center;
}
.serviceRow{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.serviceItem{
    width: calc(50% - 8px);
    border-radius: 6px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    padding: 24px;
    display: flex;
    align-items: center;
    height: 265px;
    color: #FFFFFF;
    position: relative;
}
.serviceItem::after{
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #001827 44.46%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.6;
    width: 70%;
    height: 100%;
    left: 0;
    top: 0;
}
.serviceItem > div{
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 180px;
    position: relative;
    z-index: 1;
}
.serviceItem p{
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    max-width: 300px;
}
.serviceItem h3{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
}
.serviceItem .btn{
    font-weight: 500;
    height: 48px;
    max-width: 300px;
}
.sliderWrapper{
    width: 100%;
    padding-bottom: 52px;
}
.sliderItem{
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
}
.sliderItem .content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    color: #484848;
}
.sliderItem h4{
	font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #090909;
    transition: all 0.4s;
}
.sliderItem:hover h4{
    color: #0071BC;
}
.sliderItem .content > div{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sliderItem .image{
    width: 100%;
    height: 210px;
    display: flex;
}
.sliderItem .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slick-slide{
    padding: 0 8px;
}
.slick-list{
    margin: 0 -8px;
}
.slick-arrow{
    position: absolute;
    right: 0;
    top: -48px;
    width: 32px !important;
    height: 24px !important;
    background: #0071BC;
    border-radius: 6px;
    font-size: 0;
    outline: none;
    border: 2px solid #0071BC;
    cursor: pointer;
    transition: all 0.4s;
}
.slick-prev{
    right: 44px;
}
.slick-arrow:hover{
    background: transparent;
}
.slick-arrow::after{
    position: absolute;
    content: '';
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2216%22%20viewBox%3D%220%200%2015%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.292892%208.70711C-0.0976315%208.31658%20-0.0976305%207.68342%200.292894%207.29289L6.65687%200.928943C7.04739%200.53842%207.68056%200.538421%208.07108%200.928946C8.46161%201.31947%208.4616%201.95264%208.07108%202.34316L2.41421%208L8.07106%2013.6569C8.46158%2014.0474%208.46158%2014.6806%208.07105%2015.0711C7.68053%2015.4616%207.04736%2015.4616%206.65684%2015.0711L0.292892%208.70711ZM15%208.00003L15%209.00003L0.999998%209L1%208L1%207L15%207.00003L15%208.00003Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A);
    width: 16px;
    height: 16px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.slick-arrow:hover::after{
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2216%22%20viewBox%3D%220%200%2015%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.292892%208.70711C-0.0976315%208.31658%20-0.0976305%207.68342%200.292894%207.29289L6.65687%200.928943C7.04739%200.53842%207.68056%200.538421%208.07108%200.928946C8.46161%201.31947%208.4616%201.95264%208.07108%202.34316L2.41421%208L8.07106%2013.6569C8.46158%2014.0474%208.46158%2014.6806%208.07105%2015.0711C7.68053%2015.4616%207.04736%2015.4616%206.65684%2015.0711L0.292892%208.70711ZM15%208.00003L15%209.00003L0.999998%209L1%208L1%207L15%207.00003L15%208.00003Z%22%20fill%3D%22%230071BC%22%2F%3E%0A%3C%2Fsvg%3E%0A);
}
.slick-next::after{
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2216%22%20viewBox%3D%220%200%2015%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M14.7071%208.70711C15.0976%208.31658%2015.0976%207.68342%2014.7071%207.29289L8.34313%200.928943C7.95261%200.53842%207.31944%200.538421%206.92892%200.928946C6.53839%201.31947%206.5384%201.95264%206.92892%202.34316L12.5858%208L6.92894%2013.6569C6.53842%2014.0474%206.53842%2014.6806%206.92895%2015.0711C7.31947%2015.4616%207.95264%2015.4616%208.34316%2015.0711L14.7071%208.70711ZM0%208.00003L1.97547e-06%209.00003L14%209L14%208L14%207L-1.97547e-06%207.00003L0%208.00003Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A);
}
.slick-next:hover::after{
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2216%22%20viewBox%3D%220%200%2015%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M14.7071%208.70711C15.0976%208.31658%2015.0976%207.68342%2014.7071%207.29289L8.34313%200.928943C7.95261%200.53842%207.31944%200.538421%206.92892%200.928946C6.53839%201.31947%206.5384%201.95264%206.92892%202.34316L12.5858%208L6.92894%2013.6569C6.53842%2014.0474%206.53842%2014.6806%206.92895%2015.0711C7.31947%2015.4616%207.95264%2015.4616%208.34316%2015.0711L14.7071%208.70711ZM0%208.00003L1.97547e-06%209.00003L14%209L14%208L14%207L-1.97547e-06%207.00003L0%208.00003Z%22%20fill%3D%22%230071BC%22%2F%3E%0A%3C%2Fsvg%3E%0A);
}
.slick-disabled{
    pointer-events: none;
    opacity: 0.4;
}
.delivery{
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.02);
}
.deliveryRow{
    display: flex;
    align-items: center;
    gap: 36px;
}
.deliveryRow .first{
    width: 50%;
}
.deliveryRow h3{
    color: #0071BC;
}
.deliveryRow .first p{
    font-size: 14px;
    color: #484848;
}
.deliveryRow .item{
    width: calc((50% - 72px) / 2);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
}
.deliveryRow .item > p{
    color: #484848;
    text-transform: uppercase;
}
.deliveryRow .date{
    width: 106px;
    height: 106px;
    min-width: 106px;
    background: #0071BC;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
}
.deliveryRow .date strong{
    font-weight: 800;
    font-size: 48px;
    line-height: 90%;
}
.footer{
    color: #FFFFFF;
}
.footer .section{
    background: #004F84;
}
.footerRow{
    display: flex;
    gap: 48px;
}
.col{
    width: calc(50% - 24px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contacts{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacts p{
    display: flex;
    align-items: center;
    gap: 16px;
}
.socials{
    display: flex;
    gap: 16px;
}
.socials a{
    color: #FFFFFF;
}
.socials a:hover{
    opacity: 0.6;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.formWrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.formWrapper .w50{
    width: calc(50% - 4px);
}
input{
    width: 100%;
    height: 48px;
    font-size: 14px;
	font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 300;
    background: transparent;
    padding-left: 20px;
    border-radius: 6px;
    color: #090909;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.footer input{
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}
input::placeholder,
textarea::placeholder{
    color: rgba(0, 0, 0, 0.7);
}
.footer input::placeholder,
.footer textarea::placeholder{
    color: rgba(255, 255, 255, 0.7);
}
textarea{
    width: 100%;
    font-size: 14px;
	font-family: 'Inter', sans-serif;
    font-weight: 300;
    background: transparent;
    outline: none;
    height: 96px;
    padding: 16px 20px;
    border-radius: 6px;
    resize: none;
    color: #090909;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.footer textarea{
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}
input:focus, textarea:focus{
    border-color: #090909;
}
.footer input:focus, .footer textarea:focus{
    border-color: #FFFFFF;
}
button{
	font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 600;
    border: none;
    height: 48px !important;
    cursor: pointer;
    transition: all 0.4s;
}
.bootomRow{
    display: flex;
    align-items: center;
}
.bootomRow a, .bootomRow p, .bootomRow div{
    flex: 1;
}
.bootomRow div{
    display: flex;
    justify-content: flex-end;
}
.bootomRow p{
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}
.bottom{
    padding: 12px 0;
    background: #00385E;
}
.arrowUp{
    width: 24px;
    max-width: 24px;
    height: 32px;
    color: #FFFFFF;
    background: #0071BC;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrowUp:hover{
    background: #FFFFFF;
    color: #0071BC;
}
.popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: none;
}
.popupBg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}
.popupItem{
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    padding: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    overflow-y: auto;
    display: none;
}
.popupClose {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 20px;
    right: 20px;
    color: #090909;
    cursor: pointer;
    z-index: 1;
}
.popupClose:hover{
    color: #0071BC;
}
.popupItem > div{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.popupItem h2::after{
    width: 14px;
    height: 14px;
    border-radius: 2px;
}
.card p{
    line-height: 120%;
}
.cardCol{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cardName{
    color: #484848;
}
.cardRow{
    display: flex;
    gap: 16px;
    color: #484848;
    opacity: 0.8;
}
.cardRow p{
    display: flex;
    align-items: center;
    gap: 8px;
}
.cardPage{
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.cardImages{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.fotorama{
    width: 100%;
    border-radius: 8px;
}
.fotorama__nav__frame{
    padding:10px !important;
}
.fotorama__nav{
    text-align: left !important;
}
.fotorama__thumb{
    border-radius: 5px;
    overflow: hidden;
}
.fotorama__thumb-border{
    width: 77px !important;
    height: 77px !important;
    border: 3px solid #0071BC !important;
    border-radius: 5px;
    margin-top: 10px !important;
}
.fotorama__nav:before {
    display: none !important;
    opacity: 0 !important;
}
.fotorama__nav:after {
    display: none !important;
    opacity: 0 !important;
}
.fotorama__stage:before{
    background-image: linear-gradient(transparent,rgba(255,255,255,0.2) 25%,rgba(255,255,255,0.3) 75%,transparent),radial-gradient(farthest-side at 0 50%,rgba(255,255,255,0.4),transparent);
    background-position: 0 0,0 0;
    left: -10px;
}
.fotorama__stage:after{
    background-image: linear-gradient(transparent,rgba(255,255,255,0.2) 25%,rgba(255,255,255,0.3) 75%,transparent),radial-gradient(farthest-side at 100% 50%,rgba(255,255,255,0.4),transparent);
    background-position: 100% 0,100% 0;
    right: -10px;
}
.fotorama__stage:before, .fotorama__stage:after, .fotorama__nav:before, .fotorama__nav:after {
    display: block !important;
}
.fotorama__arr {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -16px;
    background: #EAEAEA;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.fotorama__fullscreen-icon, .fotorama__video-play, .fotorama__video-close {
    background: url(../../files/fotorama.webp) no-repeat;
}
.fotorama__fullscreen-icon {
    width: 32px;
    height: 32px;
    top: 2px;
    right: 2px;
    background-position: 0 -32px;
    z-index: 20;
}
.fotorama__arr:after {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    display: inline-block;
}
.fotorama__arr--prev {
    left: 10px;
}
.fotorama__arr--next{
    right: 10px;
}
.fotorama__arr--prev:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14' fill='none'%3E%3Cpath d='M7.34205 1.21002L7.24805 1.29302L2.24805 6.29302C2.22002 6.32078 2.19364 6.35016 2.16905 6.38102L2.24805 6.29302C2.21302 6.32792 2.1806 6.36536 2.15105 6.40502L2.07905 6.51502L2.02905 6.61902L1.99305 6.72602L1.97005 6.82602L1.95605 6.94102L1.95705 7.07502L1.97005 7.17502L1.99705 7.28802L2.03005 7.38102L2.06305 7.45302L2.11005 7.53602L2.17405 7.62602L2.24805 7.70702L7.24805 12.707C7.42801 12.8864 7.66949 12.9905 7.92344 12.9982C8.17739 13.006 8.42477 12.9168 8.61533 12.7488C8.8059 12.5807 8.92536 12.3465 8.94945 12.0935C8.97355 11.8406 8.90047 11.588 8.74505 11.387L8.66206 11.293L5.37005 8.00002H17.9231C18.1779 7.99974 18.4231 7.90214 18.6084 7.72717C18.7938 7.5522 18.9053 7.31307 18.9202 7.05862C18.9352 6.80418 18.8524 6.55364 18.6888 6.35819C18.5252 6.16273 18.2932 6.03712 18.0401 6.00702L17.9221 6.00002H5.36905L8.66206 2.70702C8.83529 2.53481 8.93951 2.30516 8.95504 2.06139C8.97057 1.81762 8.89634 1.57659 8.74636 1.38379C8.59638 1.191 8.38102 1.05976 8.14092 1.01485C7.90082 0.969943 7.65258 1.01447 7.44305 1.14002L7.34205 1.21002Z' fill='%23151515'/%3E%3C/svg%3E") no-repeat;
}
.fotorama__arr--next:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14' fill='none'%3E%3Cpath d='M12.658 1.21002L12.752 1.29302L17.752 6.29302C17.7801 6.32076 17.8064 6.35015 17.831 6.38102L17.752 6.29302C17.788 6.32802 17.82 6.36602 17.849 6.40502L17.921 6.51502L17.971 6.61902L18.007 6.72602L18.03 6.82602L18.044 6.94102L18.042 7.07502L18.03 7.17502L18.003 7.28802L17.97 7.38102L17.937 7.45302L17.89 7.53602L17.826 7.62602L17.752 7.70702L12.752 12.707C12.572 12.8864 12.3306 12.9905 12.0766 12.9982C11.8227 13.006 11.5753 12.9168 11.3847 12.7488C11.1942 12.5807 11.0747 12.3465 11.0506 12.0935C11.0265 11.8406 11.0996 11.588 11.255 11.387L11.338 11.293L14.63 8.00002H2.07701C1.82221 7.99948 1.57723 7.90171 1.39208 7.72666C1.20694 7.55161 1.0956 7.31249 1.08079 7.05813C1.06599 6.80376 1.14884 6.55334 1.31242 6.35799C1.47601 6.16264 1.70799 6.03711 1.96101 6.00702L2.07701 6.00002H14.631L11.338 2.70702C11.1648 2.53481 11.0606 2.30516 11.045 2.06139C11.0295 1.81762 11.1037 1.57659 11.2537 1.38379C11.4037 1.191 11.619 1.05976 11.8591 1.01485C12.0992 0.969943 12.3475 1.01447 12.557 1.14002L12.658 1.21002Z' fill='%23151515'/%3E%3C/svg%3E") no-repeat;
}
.cardDesc{
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: calc(100% - 800px);
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
}
.cardDesc > div{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cardDesc p{
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}
.cardDesc p span{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #484848;
    opacity: 0.8;
    font-size: 14px;
}
.cardDesc p span svg{
    width: 18px;
    height: auto;
}
.price{
    color: #0071BC;
    font-size: 24px;
    font-weight: 600;
}
.sellerInfo{
    border-radius: 8px;
    padding: 24px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.sellerInfo .col{
    gap: 12px;
}
.sellerName{
    font-size: 20px;
    font-weight: 600;
}
.card .btn{
    height: 48px;
    width: auto;
    gap: 12px;
    padding: 12px 32px;
    text-transform: unset;
}
.card .btn svg{
    width: 20px;
    height: 20px;
}
.fotorama__wrap--slide{
    padding: 12px;
    background: #FFFFFF;
    border-radius: 8px;
}
.fotorama__arr--disabled{
    opacity: 0.4 !important;
}
@media screen and (max-width: 1280px) {
    .link{
        padding: 8px 24px;
    }
}
@media screen and (max-width: 1200px) {
    .cardImages{
        max-width: 50%;
        width: 100%;
    }
    .cardDesc{
        width: calc(50% - 36px);
    }
    .deliveryRow,
    .aboutRow{
        flex-wrap: wrap;
        gap: 24px;
    }
    .deliveryRow .first{
        width: 100%;
    }
    .deliveryRow .item{
        width: calc(50% - 12px);
    }
    .aboutRow .first{
        width: 100%;
        padding: 0;
    }
    .aboutRow .item{
        width: calc(50% - 12px);
    }
    .first strong{
        max-width: 100%;
    }
    .headerRow{
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 16px;
    }
    .headerRow > div{
        order: 1;
    }
    .rates{
        width: 100%;
        order: 2;
        text-align: right;
    }
}
@media screen and (max-width: 1160px) {
    .sliderWrapper{
        padding: 0;
    }
    .delivery{
        padding: 52px 0;
    }
    .hero{
        margin-bottom: 24px;
    }
    .btn{
        height: 52px;
        font-weight: 500;
    }
    .deliveryRow .date strong{
        font-size: 36px;
    }
    .deliveryRow .date{
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {

    .card .container{
        gap: 16px;
    }
    .fotorama{
        max-width: 800px;
    }
    .cardImages{
        max-width: 100%;
        justify-content: center;
        background: #FFFFFF;
        border-radius: 8px;
    }
    .cardDesc{
        width: 100%;
    }
    .cardPage{
        flex-wrap: wrap;
    }
    body{
        font-size: 14px;
    }
    .sliderItem h4{
        font-size: 18px;
    }
    .sliderItem .content{
        font-size: 14px;
    }
}
@media screen and (max-width: 800px) {
    .fotorama__thumb-border{
        width: 52px !important;
        height: 52px !important;
        border: 2px solid #0071BC !important;
    }
    .fotorama__nav--thumbs .fotorama__nav__frame{
        width: 54px !important;
        height: 54px !important;
    }
    .cardPage{
        gap: 16px;
    }
    .sellerInfo{
        padding: 16px;
        flex-direction: column;
    }
    .hero::after{
        width: 100%;
    }
    h1 span{
        font-size: 32px;
    }
    h1{
        font-size: 28px;
    }
    .header > a img{
        width: 100px;
        height: 100px;
    }
    .countries{
        font-size: 16px;
    }
    .heroWrapper{
        max-width: 500px;
    }
    .countries img{
        width: 20px;
    }
    .aboutRow .first h3 span{
        padding-bottom: 4px;
    }
    .aboutRow .first h3{
        font-size: 24px;
    }
    .aboutRow .item{
        width: 100%;
        padding: 20px;
    }
    .missionRow{
        flex-direction: column;
        gap: 16px;
    }
    .missionRow .item:first-child{
        max-width: 100%;
    }
    .missionRow h3, .deliveryRow h3{
        font-size: 24px;
    }
    .missionImage{
        height: 200px;
    }
    .serviceItem{
        width: 100%;
        height: unset;
    }
    .serviceItem p{
        max-width: unset;
    }
    .serviceItem > div{
        height: 160px;
    }
    .slick-slide{
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }
    .footerRow{
        flex-direction: column;
        gap: 24px;
    }
    .col{
        width: 100%;
    }
    .btn{
        height: 44px !important;
    }
    input{
        height: 44px;
    }
}
@media screen and (max-width: 700px) {
    .header{
        flex-direction: column;
        padding: 24px 0;
        gap: 24px;
    }
    .headerRow{
        justify-content: space-between;
    }
    .rates{
        text-align: left;
    }
}
@media screen and (max-width: 540px) {
    .rates{
        order: 3;
    }
    .nav{
        order: 2;
        width: 100%;
    }
    .section{
        padding: 44px 0 !important;
    }
    h3,
    .first strong{
        font-size: 16px;
    }
    .missionRow h3, .deliveryRow h3, .aboutRow .first h3{
        font-size: 20px;
    }
    h1{
        font-size: 24px;
    }
    h1 span{
        font-size: 28px;
    }
    .popupItem{
        max-width: unset;
        width: 96vw;
    }
    .nav{
        flex-wrap: wrap;
    }
    .deliveryRow .item{
        width: 100%;
    }
    .formWrapper .w50{
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    body{
        font-size: 12px;
    }
    .rates{
        font-size: 12px;
    }
    .countries{
        font-size: 14px;
    }
    .countries img{
        width: 16px;
    }
    .heroWrapper{
        gap: 24px;
    }
    .link{
        padding: 8px 16px;
    }
    h3, .first strong{
        font-size: 14px;
    }
    .aboutRow .item{
        padding: 16px;
    }
    .container{
        padding: 0 16px;
    }
    .missionRow h3, .deliveryRow h3, .aboutRow .first h3{
        font-size: 18px;
    }
    .section .container{
        gap: 24px;
    }
    .serviceItem > div{
        height: unset;
    }
    .serviceItem .btn{
        max-width: unset;
    }
    .serviceItem::after{
        width: 100%;
    }
    .sliderWrapper{
        padding-top: 44px;
    }
    .slick-arrow{
        right: unset !important;
        left: 0 !important;
        top: 0;
    }
    .slick-next{
        left: 40px !important;
    }
    .popupItem{
        padding: 16px;
    }
}