:root {
    --main-color: #086ad8;
    --secondary-color: #0052b1;
    --black-color: #0e0e0e;
    --white-color: #ffffff;
    --black-color-2: #1a2b3c;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}


.header-social-icon span {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: #222222;
    color: #fff;
    border-radius: 5px;
}

.header-social-icon span.whatsapp-bg {
    background: #128c7e;
}

.header-social-icon span.mail-bg {
    background: #c71610;
}

.header-social-icon a {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

/*============================================================
    _buttons
==============================================================*/

.btn-theme {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(195deg, #086ad8 0%, #42b9ff 100%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: var(--white-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    height: 56px;
    line-height: 56px;
    padding: 0px 35px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-decoration: none;
}

    .btn-theme.btn-sm {
        font-weight: 500;
        height: 40px;
        line-height: 40px;
        padding: 0px 30px;
    }

    .btn-theme::before {
        content: "";
        background: #0e0e0e;
        height: 50%;
        width: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        z-index: -1;
    }

    .btn-theme::after {
        content: "";
        background: #0e0e0e;
        height: 50%;
        width: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        left: auto;
        transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        z-index: -1;
    }

    .btn-theme:focus,
    .btn-theme:focus:active {
        box-shadow: none;
    }

    .btn-theme:hover {
        color: var(--white-color);
    }

        .btn-theme:hover::before {
            width: 100%;
            right: 0;
            left: auto;
        }

        .btn-theme:hover::after {
            width: 100%;
            left: 0;
            right: auto;
        }



/*========================================================*/
.nav-custom {
    background-color: rgb(237, 245, 255);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.nav-img p {
    margin-bottom: 0;
    color: var(--main-color);
    font-weight: 600;
    font-size: 10px;
}

.nav-img img{
    width: 70px;
}

.nav-custom .navbar-brand a img {
    width: 100px;
}

@media (max-width: 991px) {
    .header-social-icon{
        padding: 20px 0;
    }
    .navbar-toggler-icon i {
        font-size: 26px;
        color: var(--main-color);
    }
}

@media (max-width: 576px) {
    .nav-custom .navbar-brand a img {
        width: 65px;
    }

    .nav-img{
        text-align: center;
    }

    .nav-img img {
        width: 45px;
    }
}
/*=======================================================*/
.hero-area {
    position: relative;
}

.swiper {
    border-radius: 10px;
}

.swiper-slide {
    border-radius: 10px;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        aspect-ratio: 5 / 2;
    }


.form-container {
    max-width: 400px;
    position: absolute;
    top: 65px;
    right: 50px;
    z-index: 100;
    width: 100%;
    float: left;
    clear: both;
}

    .form-container .customForm {
        width: 100%;
        padding: 30px;
        background-color: #fff;
        transition: margin-left 0.18s ease;
        background: linear-gradient( 180deg, hsla(0, 0%, 100%, 0.98), hsla(0, 0%, 100%, 0.92) );
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.11);
        border-radius: 8px;
    }

        .form-container .customForm .title {
            position: relative;
            font-size: 22px;
            font-weight: 600;
            color: var(--main-color);
            margin-bottom: 20px;
        }


.customForm label {
    font-size: 15px;
    margin-bottom: 5px;
}

.customForm .form-control:focus{
    box-shadow: none!important;
    border-color: var(--main-color)!important;
}
/* .form-container .customForm .title span {
  color: var(--light-color);
  font-weight: 800;
} */
.customForm p {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.customForm .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background-color: var(--main-color);
    border-radius: 25px;
}

.customForm .input-field {
    position: relative;
    height: 42px;
    width: 100%;
    margin-top: 10px;
}

    .customForm .input-field input {
        position: absolute;
        height: 100%;
        width: 100%;
        padding: 0 35px;
        border: none;
        outline: none;
        font-size: 16px;
        border-bottom: 2px solid #ccc;
        border-top: 2px solid transparent;
        transition: all 0.2s ease;
        background: transparent;
    }

        .customForm .input-field input:is(:focus, :valid) {
            border-bottom-color: var(--main-color);
        }

    .customForm .input-field i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: var(--main-color);
        font-size: 23px;
        transition: all 0.2s ease;
    }

    .customForm .input-field input:is(:focus, :valid) ~ i {
        color: var(--main-color);
    }

    .customForm .input-field i.icon {
        left: 0;
    }

    .customForm .input-field i.showHidePw {
        right: 0;
        cursor: pointer;
        padding: 10px;
    }

.customForm .checkbox-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

    .customForm .checkbox-text .checkbox-content {
        display: flex;
        align-items: center;
    }

.customForm .checkbox-content input {
    margin-right: 10px;
    accent-color: var(--main-color);
}

.customForm .text {
    color: #333;
    font-size: 14px;
}

.customForm a.text {
    color: var(--main-color);
    text-decoration: none;
}

.customForm a:hover {
    text-decoration: underline;
}

.customForm .button {
    margin-top: 25px;
}

    .customForm .button input {
        border: none;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 6px;
        background-color: var(--light-color);
        cursor: pointer;
        transition: all 0.3s ease;
        background-size: 300% 100%;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

        .customForm .button input:hover {
            background-color: var(--main-color);
        }

.customForm .login-signup {
    margin-top: 15px;
    text-align: center;
}

.signup {
    display: none;
}

    .signup.active {
        display: block;
    }

.login.none {
    display: none;
}

.reset {
    display: none;
}

    .reset.active {
        display: block;
    }

.cancel-link {
    font-size: 18px;
    text-decoration: none;
}

.forgotPass, .login-link, .cancel-link {
    color: var(--main-color) !important;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 991px){
    .form-container {
        max-width: 400px;
        position: relative;
        z-index: 100;
        width: 100%;
        float: none;
        /* clear: both; */
        margin: 0 auto;
        left: 0;
        right: 0;
        margin-top: -170px;
        margin-bottom: 50px;
    }
}
@media (max-width: 576px) {
    .form-container {
        max-width: 310px;
        position: relative;
        z-index: 100;
        width: 100%;
        float: none;
        /* clear: both; */
        margin: 0 auto;
        left: 0;
        right: 0;
        margin-top: -70px;
        margin-bottom: 50px;
    }
}


/*=================================================*/
.section-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 40px;
}

.why-us-description{
    padding: 20px 0;
}

    .why-us-description .title {
        font-size: 24px;
        font-weight: 800;
        color: var(--secondary-color);
    }
    .why-us-description .description {
        color: #4c4949;
        font-size: 16px;
        text-align: center;
        font-weight: 500;
        line-height: 1.3;
    }

    .why-us-description .description {
        color: #4c4949;
        font-size: 16px;
        text-align: center;
        font-weight: 500;
        line-height: 1.3;
    }


.airlines-partner {
    background-color: rgb(237, 245, 255);
}

.single-partner {
    padding: 15px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 25px;
    background: #fff;
}

.single-partner img{
    width: 48px;
    height: 48px;
}

.single-partner p{
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.2;
    margin-bottom: 0!important;
    text-transform: capitalize;
    margin-left: 10px;
}

.top-destination-single {
    position: relative;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

    .top-destination-single .thumb {
        height: 250px;
    }

.top-destination-single .thumb img{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
}

.explot {
    background: linear-gradient( 180deg, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0.8) );
    padding: 20px;
    overflow: hidden;
    border-radius: 5px;
}

.touritem-flexxer {
    position: absolute !important;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 90%;
    bottom: 15px;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
}

/*====*/

/*================================
 FOOTER CSS
=================================*/

.footer {
    background-color: #dcf2ff;
    background-image: url('../img/destination-map.png');
    border-top: 1px solid #eee;
}

.footer-subscribe {
    max-width: 300px;
    position: relative;
}

    .footer-subscribe input {
        border: 0;
        border-bottom: 2px solid #2d2d2d;
        height: 36px;
        line-height: 36px;
        width: 100%;
        padding: 0 50px 0 0;
    }

        .footer-subscribe input::placeholder {
            color: #8d8d8d;
            font-weight: 400;
            font-family: "Jost-Book";
            font-size: 15px;
        }

        .footer-subscribe input:-ms-input-placeholder {
            color: #8d8d8d;
            font-weight: 400;
            font-family: "Jost-Book";
            font-size: 15px;
        }

        .footer-subscribe input::-ms-input-placeholder {
            color: #8d8d8d;
            font-weight: 400;
            font-family: "Jost-Book";
            font-size: 15px;
        }

    .footer-subscribe button {
        background-color: transparent;
        border: none;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .footer-subscribe button i {
            font-size: 24px;
        }

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 32px 0;
}

.footer-top {
    padding: 60px 0;
    padding-bottom: 15px;
}

.footer-top-info .footer-top-info-logo img {
    max-width: 96px;
    margin-bottom: 20px;
}

.footer-top-info .footer-top-info-desc {
    font-size: 16px;
    line-height: 1.44;
    color: var(--black-color);
    margin-bottom: 25px;
    margin-right: 30px;
    text-align: justify;
}

.footer-top-info .footer-top-info-app a {
    display: inline-block;
    margin-right: 8px;
}

.footer-top-info .footer-top-info-app img {
    width: 110px;
}

.footer-top-nav h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-color-2);
}

.footer-top-info-app {
    display: inline-flex;
    align-items: center;
    justify-content: start;
}

    .footer-top-info-app h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0px;
        margin-right: 10px;
        color: var(--black-color-2);
    }

.footer-top-nav ul {
    padding: 0;
}

.footer-top-nav li {
    list-style: none;
    margin-bottom: 10px;
}

    .footer-top-nav li:last-child {
        margin-bottom: 0;
    }

    .footer-top-nav li a {
        color: var(--black-color-2);
        line-height: 1.53;
        font-weight: 500;
        font-family: "Jost";
        text-decoration: none;
    }

        .footer-top-nav li a:hover {
            color: var(--main-color);
        }

    .footer-top-nav li i {
        font-size: 18px;
        line-height: 36px;
    }

.footer-top-nav-contact p {
    font-weight: 500;
    font-family: Jost;
    line-height: 1.53;
    color: var(--black-color);
    margin-bottom: 10px;
}

.footer-top-nav-contact ul {
    margin-top: 30px;
    padding: 0;
}

.footer-top-nav-contact li {
    display: inline-block;
    margin-right: 5px;
}

    .footer-top-nav-contact li:last-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-top-nav-contact li svg:hover > * {
        fill: #23d3d3;
    }

    .footer-top-nav-contact li a {
        display: block;
        width: 36px;
        height: 36px;
        text-align: center;
        line-height: 36px;
        border-radius: 5px;
        color: #fff;
    }

        .footer-top-nav-contact li a:hover {
            color: #fff;
            opacity: 0.7;
        }

    .footer-top-nav-contact li.facebook a {
        background-color: #3b5998;
    }

    .footer-top-nav-contact li.twitter a {
        background-color: #1da1f2;
    }

    .footer-top-nav-contact li.youtube a {
        background-color: #cd201f;
    }

    .footer-top-nav-contact li.instagram a {
        background-color: #262626;
    }

    .footer-top-nav-contact li.whatsapp a {
        background-color: #128c7e;
    }

.footer-bottom-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--black-color);
    margin-bottom: 0 !important;
}

    .footer-bottom-copyright a {
        color: var(--main-color);
        text-decoration: none;
    }


.footer-top-nav ul li {
    display: block;
}

.footer-top-nav .social-link {
    display: flex;
}

.footer-top-nav {
    margin-top: 60px;
}

.cradit-logo {
    width: 50px;
    line-height: 0;
}

.whatsapp-btn a {
    background-color: #128c7e;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    position: fixed;
    bottom: 100px;
    right: 36px;
    z-index: 8;
}

@media (max-width: 991px) {
    .footer-top-info {
        text-align: center;
    }

        .footer-top-info .footer-top-info-desc {
            margin-right: 0px;
            text-align: center;
        }

    .footer-top-nav {
        margin-top: 60px;
        text-align: center;
    }

        .footer-top-nav .social-link {
            display: flex;
            justify-content: center;
        }
}


.tap-top{
    background-color: var(--secondary-color);
}