@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
}

:root {
    /* --primary: #c316f2; */
    --primary: #113d48;
    --secondary: #1e2938;
    --grey: #f4f4f4;
    --white: #fff;
}

.fs12 {
    font-size: 12px;
}

.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs26 {
    font-size: 26px;
}

.fs28 {
    font-size: 28px;
}

.fs30 {
    font-size: 30px;
}

.fs36 {
    font-size: 36px;
}

.fs50 {
    font-size: 50px;
}

.fs60 {
    font-size: 60px;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

.pointer {
    cursor: pointer;
}

.index {
    z-index: 9;
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.grey {
    color: var(--grey);
}

.white {
    color: var(--white);
}

.p60 {
    padding: 60px 0px;
}

.smooth {
    transition: .67s;
}

.secondary-btn {
    color: var(--white);
    background-color: #1ca8cb;
    border: 1px solid #1ca8cb;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.primary-btn {
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #000;
    border: 1px solid #000;
    color: var(--white);
}

.header .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    transition: .67s;
    padding: 0px 20px;
}

.header .nav-item .nav-link.active {
    color: var(--primary);
}

.header .nav-item .nav-link:hover {
    color: var(--primary);
}

.header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.header .navbar-toggler {
    border: 1px solid var(--primary);
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.header .nav-item:last-child .nav-link {
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 14px;
    margin-left: 20px;
}

.header .nav-item:last-child .nav-link:hover {
    background-color: var(--primary);
}

.banner {
    /* background: linear-gradient(45deg, #f5daf8, #fae6e1); */
    background: linear-gradient(45deg, #f7fdff, #d6f7ff);
    padding: 150px 0px 100px 0px;
}

.banner .banner-img img {
    width: 70%;
}

.banner .img {
    position: absolute;
    right: 0px;
    bottom: 0px;
    opacity: .3;
}

.banner .banner-content {
    width: 70%;
    margin: auto;
}

.destination .price-btn a:hover {
    color: var(--primary);
}

.destination .right-sec img {
    object-fit: cover;
}

.destination .destination-wrapper {
    box-shadow: 0px 0px 5px #c2c2c2;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.destination .left-sec {
    padding: 18px;
}

.deals {
    background-color: var(--secondary);
}

.deals .deals-img img {
    border-radius: 10px;
}

.faq {
    /* background: linear-gradient(0deg, #f5daf8, #fae6e1); */
    background: linear-gradient(45deg, #f7fdff, #d6f7ff);
}

.faq .accordion-item {
    background-color: #ffffff78;
    backdrop-filter: blur(5px);
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;

}

.faq .accordion-item button {
    background-color: transparent;
    border: none;
}

.faq .accordion-item button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--secondary);
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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");
}

.faq .accordion {
    width: 80%;
    margin: auto;
}

.exclusive {
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 10px;
}

.footer {
    background-color: var(--secondary);
}

.footer .f-links ul li a:hover {
    color: var(--primary);
}

.footer .contact-footer .c-wrapper a:hover {
    color: var(--primary);
}

.airlines .airline-wrapper {
    background-image: url('../img/airline.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    min-height: 90px;
}

.airlines .airline-wrapper::after {
    content: '';
    position: absolute;
    top: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #00000085;
}

.offers {
    background-color: var(--secondary);
}

.offers .offer-cloud {
    background-image: url('../img/clouds.png');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    display: block;
    animation: slide 50s linear infinite;
}

.offers::after {
    content: "";
    position: absolute;
    top: 0;
    transform: rotate(180deg);
    background: url('../img/zig-zag-line-up.png');
    width: 100%;
    height: 5px;
}

.offers::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: url('../img/zig-zag-line-up.png');
    width: 100%;
    height: 5px;
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1000px 0;
    }
}

.desti-tickets {
    background-color: var(--white);
    border-radius: 10px;
}

.offers .fly-icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #bff2ff;
}

.offers .flights-desti {
    padding: 20px;
    background-color: #e8faff;
    border-right: 1px solid #b8f0ff;
    min-width: 174px;
}

.offers .airline-logo {
    padding: 20px;
}

.check-wrapper a {
    font-size: 14px;
    padding: 6px 10px;
}

.banner.inner-banner {
    padding: 110px 0px 70px 0px;
}

.contact-details .details-wrapper {
    background-color: #ececec;
    border-radius: 10px;
    padding: 30px;
}

.contact-form .fields input {
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    height: 40px;
    width: 100%;
    padding: 0px 20px;
    font-size: 14px;
}

.contact-form .fields textarea {
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    height: 150px;
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
}

.contact-form .fields label {
    font-size: 14px;
    font-size: 500;
    color: #000;
    margin-bottom: 10px;
}

.contact-form .form {
    background-color: #ececec;
    padding: 50px;
    border-radius: 10px;
    width: 60%;
    margin: auto;
}

.contact-form {
    padding-bottom: 60px;
}

.med-content .content-wrapper ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.med-content .content-wrapper ul {
    margin-top: 16px;
    list-style-type: disclosure-closed;
}

.faq-tabs .nav-link {
    margin-bottom: 10px;
    background-color: #f4f4f4;
    border-radius: 7px;
    color: #1e2938;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.faq-tabs .nav-link.active {
    background-color: #1980a1;
}

.faq-content-wrapper {
    background: linear-gradient(0deg, #f7fdff, #d6f7ff);
    border-radius: 10px;
    padding: 30px;
}

.blog .blog-wrapper {
    box-shadow: 0px 0px 10px #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.blog .about-blog {
    padding: 0px 20px 20px 20px;
}

.blog-banner .banner-content {
    width: 100%;
    margin: auto;
    background-color: #ffffffcf;
    padding: 20px 40px;
    border-radius: 100px;
}

.blog-banner .banner-content p {
    background-color: #1ca8cb;
    border-radius: 70px;
    color: #fff;
    padding: 10px 40px;
    font-size: 14px;
    display: inline-block;
}

.med-content .content-wrapper ul ul {
    list-style-type: disc;
}



@media only screen and (max-width: 991px) {
    .banner .banner-content {
        width: 100%;
        margin: auto;
        border-radius: 10px;
    }

    .header .navbar-nav li {
        margin-bottom: 10px;
    }

    .banner-content .img {
        display: none;
    }

    .banner-content h1,
    .banner-content p,
    .banner-content a {
        position: unset !important;
    }

    .header .navbar-nav {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        position: relative;
        z-index: 999999;
        align-items: self-start !important;
    }
}

@media only screen and (max-width: 767px) {
    .fs60 {
        font-size: 50px;
    }

    .banner {
        padding: 100px 0px 50px 0px;
    }

    .fs50 {
        font-size: 30px;
    }

    .faq .accordion {
        width: 100%;
    }

    .fs36 {
        font-size: 30px;
    }

    .exclusive {
        flex-direction: column;
        gap: 10px;
        align-items: self-start !important;
    }

    .banner.inner-banner {
        padding: 80px 0px 30px 0px;
    }

    .p60 {
        padding: 40px 0px;
    }

    .blog-banner {
        padding: 80px 0px 40px 0px !important;
    }

    .blog-banner h1 {
        font-size: 24px;
    }

    .contact-form .form {
        width: 100%;
    }
}

@media only screen and (max-width: 475px) {
    .fs60 {
        font-size: 36px;
    }

    .desti-tickets {
        flex-direction: column;
    }

    .offers .flights-desti {
        min-width: 100%;
        border-right: none;
        border-top: 1px solid #b8f0ff;
    }

    .check-wrapper {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .fs26 {
        font-size: 24px;
    }

    .contact-form .form {
        padding: 20px;
    }

    .blog-banner .banner-content {
        padding: 20px;
    }
}