:root {
    --font-size: 16px;
    --line-height: 1.3;
    --font-family: "Montserrat", sans-serif;
  
    --gutter: 1.25rem;
    --container: 1400px;
  
    --border-radius: 40px;
    --color-accent: #004AAD;
    --color-yellow: #FF751F;

    --body-bg: #fcfcfc;

    --box-shadow: 1px 2px 20px 0px var(--color-accent);
    
  }

a:hover{
    cursor: pointer !important;
}

html {
    font-size: var(--font-size);
}

main{
    margin-top: 120px;
}


::-webkit-scrollbar {
    width: 4px;
}
  
::-webkit-scrollbar-track {
    background: #7A7878; 
}
   
::-webkit-scrollbar-thumb {
    background: #192536;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #7A7878; 
}
  
body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    background-color: var(--body-bg);
    color: var(--body-color);
    position: relative;
    overflow-x: hidden !important;
    margin: 0;
    /* padding: 0 15px; */
    min-width: 320px;
    color: #192536;
    font-family: var(--font-family);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0px 15px !important;
}

.accent-color{
    color: var(--color-accent);
}
.ttu{
    text-transform: uppercase;
}

.wrap-btn{
    text-align: center;
    margin: 25px 0;
}

.button{
    line-height: 150%;
    background-color: var(--color-yellow);
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
}
.button:hover{
    cursor: pointer;
}
.button:hover{
    background-color: var(--color-accent);
    color: #fff;
    transition: 0.4s all ease;
}



.visible-mobile{
    display: none;
}

h2.heading{
    text-transform: uppercase;
    font-family: 'Druk';
    line-height: 1.1;
    font-size: 90px;
}

.overlay{
    background: #000;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    opacity: 0.19;
    display: none;
}
.overlay.active{
    display: block;
}

/* header */

.wrapp{
    position: relative;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 15px;
    width: 100%;
    max-width: var(--container);
    background: transparent;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 0px 20px 0 10px;
}

.header img{
    transition: all 0.5s ease;
    width: 85px;
}
.header img:hover{
    opacity: 0.8;
}

.header .nav ul{
    display: flex;
    gap: 40px;
    align-items: center;
}
.header .nav a{
    color: #192536;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}
.header .nav a:hover{
    color: var(--color-yellow);
    transition: all 0.5s ease;
}

.button-header{
    background-color: var(--color-yellow);
    color: #fff !important;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
    border-radius: 40px;
}
.button-header:hover{
    background-color: var(--color-accent);
    transition: all 0.5s ease;
}

.mob{
    display: none;
}

.burger{
    position: relative;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    display: none;
}
.burger:hover{
   cursor: pointer;
}


.popup-overlay {
    display: none;
}

/* hero */

.hero {
    position: relative;
    padding-bottom: 40px;
}
.hero h1{
    font-size: 70px;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    padding-top: 60px;
    margin-bottom: 30px;
}
.sub-hero{
    text-align: center;
    font-weight: 300;
    font-size: 22px;
}
.hero-features{
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-top: 100px;
}
.hero-features>div{
    border-radius: 20px 20px 20px 20px;
    background-color: #ffffff;
    background-position: center center;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    width: 31%;
    font-size: 22px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    transition: 0.4s all ease;
}
.hero-features>div:hover{
    background-color: var(--color-yellow);
    color: #fff;
    transition: 0.4s all ease;
}
.hero-features .hero-features-center{
    transform: rotate(356deg);
    background-color: #004aad;
    color: #fff;
    position: relative;
}
.hero-features .hero-features-center span{
    position: absolute;
    font-size: 56px !important;
    top: -30px;
    right: -7px;
}
.usa{
    position: absolute;
    width: 282px;
    bottom: 78px;
    right: 0;
    z-index: -1;
}
.air{
    position: absolute;
    bottom: 51px;
    z-index: -1;
    width: 219px;
}
.photo-slider {
    margin-top: 60px;
    margin-bottom: 60px;
}
.photo-slider .swiper-slide {
    width: auto; 
}

.photo-slider img {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper {
    overflow: visible !important;
}

.photo-slider .swiper-slide:nth-child(2n + 1) {
    transform: rotate(10deg);
}

.photo-slider .swiper-slide:nth-child(2n + 2) {
    transform: rotate(-10deg);
}

.section-pad{
    padding: 100px 0 40px 0;
}

h2{
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.feat-item{
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: calc(50% - 25px);
    padding: 25px 20px;
}

.feat{
    display: flex;
    gap: 37px;
    flex-wrap: wrap;
}

.feat-item-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    font-weight: 500;
}

.feat-item .num{
    color: var(--color-yellow);
    font-size: 21px;
    font-weight: 500;
}
.feat-item .text{
    font-size: 21px;
    font-weight: 500;
}
.feat-item img{
    width: 100px;
}
.feat-item:nth-child(5){
    background-color: var(--color-yellow);
    color: #fff;
    width: 100%;
}
.feat-item:nth-child(5) .num{
    color: #fff;
}

.about{
    display: flex;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.about img{
    max-width: 94%;
    border-radius: 20px;
    margin: 0 auto 0 auto;
    z-index: 1;
}
.about-descr{
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    margin-top: -40px;
    z-index: 2;
    background-color: #fff;
}
.about-descr .position{
    color: #192536;
    opacity: 0.5;
    font-weight: 600;
}
.about-descr .name{
    font-size: 22px;
    font-weight: 700;
}
.about-descr .text{
    line-height: 1.5;
    font-size: 18px;
}

.why{
    display: flex;
    gap: 37px;
    flex-wrap: wrap;
}
.why>div{
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: calc(50% - 25px);
    padding: 25px 30px; 
    font-size: 21px;
    font-weight: 500;
    background: var(--color-accent);
    color: #fff;
}
.why>div:nth-child(5){
    width: 100%;
}

.serv {
    display: flex;
    gap: 50px;
}
.serv .col{
    width: calc(33% - 5px);
    border-radius: 24px 24px 24px 24px;
    background-color: #ffffff;
    box-shadow: 0px 4px 14px 0px rgba(122, 147, 165, 0.1);
    padding: 30px 40px;
    text-align: center;
}
.serv-counry{
    font-size: 48px;
}
.serv-name{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.serv-price{
    font-weight: 800;
    color: var(--color-yellow);
    font-size: 29px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #cccccc2e;
}
.serv-descr{
    opacity: 0.8;
    font-weight: 300;
    font-size: 17px;
    margin-bottom: 10px;    
}
.serv-text{
    font-size: 15px;
}
.serv a{
    border-radius: 40px;
    background-color: #ebebeb;
    padding: 15px 20px;
    color: inherit;
    width: 100%;
    display: block;
    margin-top: 30px;
}
.serv .col.us{
    background-color: #1a2536;
    color: #fff; 
}
.serv .us a{
    background-color: #fff;
    color: #192536 !important;
}
.serv a:hover{
    background-color: var(--color-accent);
    color: #fff !important;
}














/* footer */

footer{
    border-radius: 20px 20px 20px 20px;
    background-color: #192536;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
}
footer>svg{
    width: auto;
    right: 0px;
    top: 0;
    bottom: 0;
    zoom: 2;
    position: absolute;
    height: 100%;
    z-index: 1;
}

.footer {
    display: flex;
    gap: 40px;
    z-index: 2;
    position: relative;
    color: #fff;
}

.footer .col{
    width: 25%;
}

.footer .col:nth-child(3){
    width: 40%;
}

.footer h3{
   text-transform: uppercase;
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 20px;
}

.footer a img{
    width: 25px;
    margin-top: 0px;
}
.footer a:hover img{
    opacity: 0.7;
}

.footer .opacity{
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer ul a{
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}
.footer ul a:hover{
    color: var(--color-yellow);
}
footer>svg {
    width: auto;
    right: -132px;
}

.test{
    background-color: var(--color-accent);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.test-heading{
    font-weight: 700;
    max-width: 800px;
    font-size: 25px;
    margin-bottom: 15px;
    color: #fff;
}
.test-sub-heading{
    font-size: 20px;
    margin-bottom: 60px;
    color: #fff;
}
.test a{
    background-color: #fff;
    padding: 16px 20px;
    font-size: 18px;
    color: #000;
    border-radius: 40px;
    font-weight: 600;
    width: 226px;
    display: block;
    transition: 0.2s all ease;
    text-align: center;
}
.test a:hover{
    background-color: var(--color-yellow);
    color: #fff;
    transition: 0.2s all ease;
}
.test img{
    position: absolute;
    width: 300px;
    top:20px;
    right: 50px;
     opacity: 0.8;
}

.gal img{
    border-radius: 20px;
}

/* Вікно попапу */





.popup-overlay .d{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.open-p{
    display: flex;
    transition: all 2s ease;
}
.popup {
    border-radius: 10px;
    max-width: 428px;
    text-align: center;
    position: relative;
    transition: all 2sease;
    background: #fff;
    padding: 55px 30px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.popup h2{
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
    z-index: 2;
     position: relative;
}

.popup input {
    width: 100%;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px 22px;
    height: 48px;
    font-size: 14px;
    z-index: 2;
    position: relative;
    background-color: #fff;
}

.popup-close {
    position: absolute;
    top: -11px;
    right: 7px;
    cursor: pointer;
    font-size: 41px;
    z-index: 2;
}

.popup button {
    background: var(--color-yellow);
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
    height: 47px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 6px;
    font-size: 14px;
        z-index: 2;
        position: relative;
}

.popup  img{
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 1;
}


/* Помилка */
.error {
    color: red;
    font-size: 14px;
}

input::placeholder {
    opacity: 0.8;
    
    /* color:#fff; */
  }
  

.descr p{
    font-size: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;

}
