@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --white-color: #ffffff;
    --primary-color: #eb1933;
    --dark-primary-color: #e60723;
    --secondary-color: #ffe9ea;
    --dark-color: #1d1414;
    --fb-color: #1877f2;
    --twitter-color: #3aacf3;
    --toutube-color: #ff0000;
    --whatsapp-color: #075e54;
}

body {
    font-family: "Open Sans", sans-serif;
}

/*  */

.btnAuth {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: var(--primary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    width: 100%;
    padding: 12px;
    transition: all 0.5s ease;
}

    .btnAuth:hover {
        background-color: var(--dark-primary-color);
        color: var(--white-color);
    }

/*  */

.align-title {
    text-align: center;
    margin-bottom: 50px;
}

    .align-title h5 {
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .align-title h3 {
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        color: var(--primary-color);
    }

/*  */

.navBar {
    background-color: var(--white-color) !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.navLogo img {
    width: 120px;
}

.customer-care-icon {
    width: 56px;
    height: 56px;
    font-size: 18px;
    background: var(--dark-primary-color);
    color: var(--white-color);
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
}

.customer-care-content a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--dark-primary-color);
    text-decoration: none;
}

.customer-care-content {
    margin-left: 10px;
}

    .customer-care-content a span {
        display: block;
        font-size: 18px;
        margin-top: 5px;
    }

@media only screen and (max-width: 991px) {
    .customer-care {
        padding-top: 20px;
    }
}

/*  */

.customSlider,
.customSlider .sliderInner,
.customSlider .sliderInner .sliderItem {
    position: relative;
    height: 80vh;
    width: 100%;
}

    .customSlider .sliderInner .sliderItem:before {
        position: absolute;
        content: "";
        /* background-image: linear-gradient(
    rgba(11, 42, 123, 0.55) 100%,
    rgba(166, 83, 161, 0.55) 100%
  ); */
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .customSlider .sliderInner .sliderItem img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

/*  */

.banner-area {
    position: relative;
    height: 80vh;
}

.banner-content h5 {
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.banner-content h2 {
    color: var(--white-color);
    font-size: 35px;
    line-height: 55px;
    font-weight: 700;
    letter-spacing: -1px;
}

.banner-content p {
    width: 80%;
    color: var(--white-color);
    line-height: 1.5;
}

.authArea {
    position: absolute;
    height: 80vh;
    left: 0;
    right: 0;
    top: 0;
}

.registration-form,
.signin-form,
.recovery-form {
    /*text-align: center;*/
    background: linear-gradient( 180deg, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0.8) );
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 20px;
    border-radius: 10px;
    z-index: 99;
}

/*.registration-form label,
    .signin-form label,
    .recovery-form label {
        display: none;
    }*/

.auth-title {
    text-align: center;
}

    .auth-title h3 {
        color: var(--dark-color);
        font-size: 24px;
        font-weight: 600;
    }

    .auth-title p {
        color: var(--dark-color);
        font-size: 14px;
        font-weight: 500;
    }

        .auth-title p span {
            color: var(--dark-primary-color);
            font-weight: 600;
        }

.customInput {
    margin-bottom: 10px;
}

    .customInput input {
        padding: 12px 15px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.2;
    }

        .customInput input:focus {
            outline: none !important;
            box-shadow: none !important;
            border: 1px solid var(--primary-color);
        }

.customCheckbox input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--primary-color);
}

.customCheckbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.customCheckbox label {
    color: var(--dark-primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.authNotice p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

    .authNotice p a {
        color: var(--dark-primary-color);
        text-decoration: none;
        font-size: 16px;
    }

.recover-notice {
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

    .recover-notice a {
        color: var(--dark-primary-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }

        .recover-notice a:hover {
            text-decoration: underline;
        }

/*  */

.registration-form {
    display: none;
}

    .registration-form.active {
        display: block;
    }

.signin-form.none {
    display: none;
}

.recovery-form {
    display: none;
}

    .recovery-form.active {
        display: block;
    }

/* ------------------------------------------------------------------- */

.why-us {
    padding: 75px 0;
    position: relative;
}

    .why-us .choose-content {
        position: relative;
        padding: 140px 34px 60px 34px;
        width: 100%;
        background: #ffffff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10px;
        border: 1px solid transparent;
        transition: 0.3s;
        cursor: pointer;
        margin-bottom: 20px;
    }

        .why-us .choose-content:hover {
            border: 1px solid var(--primary-color);
        }

    .why-us .choose-top-icon {
        position: absolute;
        left: 34px;
        top: 60px;
    }

    .why-us .choose-bottom-icon {
        position: absolute;
        bottom: 20px;
        right: 30px;
    }

    .why-us .choose-content h4 {
        display: inline-block;
        font-weight: 800;
        font-size: 18px;
        line-height: 34px;
        color: var(--primary-color);
        margin: 10px 0;
        transition: 0.3s;
    }

    .why-us .choose-content p {
        color: var(--dark-color);
    }

/* ------------------------------------------------------- */

.partners {
    padding: 110px 0;
    background-color: #fcf3f4;
}

.counter-box img {
    padding: 15px;
    height: 85px;
}

/* ------------------------------------------------------- */

.services {
    padding: 75px 0;
}

    .services .choose-content {
        height: 100%;
        position: relative;
        padding: 140px 15px 60px 34px;
        width: 100%;
        background: #ffffff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10px;
        border: 1px solid transparent;
        transition: 0.3s;
        cursor: pointer;
        margin-bottom: 20px;
    }

        .services .choose-content:hover {
            border: 1px solid var(--primary-color);
        }

    .services .choose-top-icon {
        position: absolute;
        left: 34px;
        top: 60px;
    }

    .services .choose-bottom-icon {
        position: absolute;
        bottom: 20px;
        right: 30px;
    }

    .services .choose-content h4 {
        display: inline-block;
        font-weight: 800;
        font-size: 18px;
        line-height: 34px;
        color: var(--primary-color);
        margin: 10px 0;
        transition: 0.3s;
    }

    .services .choose-content p {
        color: var(--dark-color);
    }

/* ----------------------------------------------------------- */

.package-area {
    padding: 75px 0;
}

.destination-box {
    position: relative;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

    .destination-box .image-box {
        position: relative;
        display: block;
        border-radius: 10px;
        overflow: hidden;
    }

        .destination-box .image-box:before {
            position: absolute;
            top: 0;
            left: -85%;
            z-index: 2;
            display: block;
            content: "";
            width: 50%;
            height: 100%;
            background: -o-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100% );
            background: -webkit-gradient( linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)) );
            background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100% );
            -webkit-transform: skewX(-25deg);
            -ms-transform: skewX(-25deg);
            transform: skewX(-25deg);
            z-index: 1;
        }

    .destination-box .inner-box:hover .image-box::before {
        -webkit-animation: shine 1s;
        animation: shine 1s;
    }

    .destination-box .image-box img {
        position: relative;
        display: block;
        width: 100%;
        border-radius: 10px;
    }

    .destination-box .hvr-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

        .destination-box .hvr-box:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 75%;
            opacity: 0.5;
            background: rgba(0, 0, 0, 0.3);
            background: -webkit-linear-gradient( bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0) );
            background: -ms-linear-gradient( bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0) );
            background: -moz-linear-gradient( bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0) );
            -moz-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            z-index: 1;
            border-radius: 0 0 10px 10px;
        }

    .destination-box:hover .hvr-box:before {
        opacity: 0.8;
    }

    .destination-box .hvr-box .hvr-inner {
        position: absolute;
        left: 30px;
        bottom: 30px;
        right: 30px;
        z-index: 1;
    }

    .destination-box .hvr-box h4 {
        position: relative;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
        line-height: 30px;
    }

        .destination-box .hvr-box h4 a {
            color: var(--white-color);
            text-decoration: none;
        }

            .destination-box .hvr-box h4 a:hover {
                color: var(--primary-color);
            }

    .destination-box .hvr-box .tour-count {
        position: relative;
        line-height: 20px;
        font-weight: 400;
        color: var(--white-color);
    }

/* ----------------------------------------------------- */

/*  */

.footer-block {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #fcf3f4;
}

    .footer-block ul {
        padding: 0;
    }

        .footer-block ul li {
            list-style: none;
            margin-bottom: 10px;
        }

            .footer-block ul li a {
                text-decoration: none;
            }

.footer-logo {
    margin-bottom: 30px;
}

.footer-content ul.address-area li a {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
}

    .footer-content ul.address-area li a i {
        color: var(--primary-color);
        margin-right: 10px;
    }

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

    .footer-links ul li a {
        font-size: 16px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 15px !important;
    }

        .footer-links ul li a:hover {
            color: var(--dark-primary-color);
        }

.branding {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .branding img {
        width: auto;
        height: 70px;
    }

    .branding h4 {
        margin-bottom: 0 !important;
        margin-left: 10px;
        color: var(--dark-color);
        font-size: 18px;
        font-weight: 500;
    }

.footer-title.social-line-heading {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 25px;
}

    .footer-title.social-line-heading::after {
        content: "";
        position: absolute;
        background-color: var(--dark-primary-color);
        height: 2px;
        width: 25px;
        top: 28px;
        left: 0;
    }

.social-media-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

    .social-media-links li {
        margin-right: 5px;
    }

        .social-media-links li a {
            position: relative;
            display: block;
            width: 42px;
            height: 42px;
            color: var(--white-color);
            background: var(--dark-color);
            text-align: center;
            font-size: 16px;
            line-height: 42px;
            border-radius: 50%;
        }

    .social-media-links ul li a i {
        color: var(--white-color);
        margin: 0 !important;
    }

    .social-media-links .facebook {
        background-color: var(--fb-color);
    }

    .social-media-links .twitter {
        background-color: var(--twitter-color);
    }

    .social-media-links .youtube {
        background-color: var(--toutube-color);
    }

    .social-media-links .whatsapp {
        background-color: var(--whatsapp-color);
    }

.cradit {
    margin-top: 15px;
}

    .cradit p {
        margin-bottom: 0;
    }

    .cradit a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
    }

.cradit-logo {
    width: 50px;
    line-height: 0;
}

.footer-logo .customLogo img {
    width: 120px;
}

@media only screen and (max-width: 767px) {
    .footer-title.social-line-heading::after {
        top: 28px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 991.9px) {
    .registration-form,
    .signin-form,
    .recovery-form {
        width: 75%;
    }
}

@media only screen and (max-width: 575.9px) {
    .registration-form,
    .signin-form,
    .recovery-form {
        width: 95%;
    }
}


.btn-blue {
    background-color: var(--primary-color);
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    margin-top: 15px;
    transition: all;
}

    .btn-blue:hover {
        background-color: var(--dark-primary-color);
        color: var(--white-color);
    }

.slider-top .lined-link {
    color: var(--dark-primary-color);
}

    .slider-top .lined-link:after {
        position: absolute;
        content: '';
        width: 100%;
        left: 0;
        bottom: -2px;
        border: none;
        border-bottom: 1px solid var(--dark-primary-color);
    }

.bg-color, .bg-color #header-wrap {
    background-color: var(--primary-color) !important;
}

.slider-top .form {
    min-width: 300px;
    padding: 0;
}

/*======================================*/

.log-in-banner {
    top: 0;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: #f3f3f3;
}

.login-area {
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: #fff;
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 50px 100px -20px, rgba(255, 255, 255, 0.3) 0px 30px 60px -30px;
}

.log-in-logo {
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    top: -50px;
    left: 0;
    right: 0;
    width: 50%;
    margin: 0 auto;
    padding: 20px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.form-body {
    padding: 15px 15px 15px 45px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 18px;
    border: 1px solid #9ba0a5;
}

    .form-body:focus {
        border: 1px solid var(--bs-primary);
    }

    .form-area {
        position: relative;
    }

    .form-area .single-form-wrapper {
        position: relative;
        text-align: left;
    }

        .form-area .single-form-wrapper label {
            margin-bottom: 5px;
            font-size: 12px;
            text-transform: capitalize;
        }

        .form-area .single-form-wrapper .wrapper-icon {
            position: absolute;
            top: 43px;
            left: 14px;
            font-size: 20px;
        }

.auth-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
}

.forget-show {
    display: none;
}

.form-btn {
    padding: 15px 15px 15px 15px;
    border: none;
    background-color: var(--bs-primary) !important;
    border-radius: 8px;
    color: #fff !important;
}

.cancel-btn {
    padding: 15px 15px 15px 15px;
    font-size: 18px;
    border-radius: 8px;
}

.form-btn-outline {
    padding: 15px 15px 15px 15px;
    border: 1px solid var(--bs-primary);
    border-radius: 8px;
    color: var(--bs-primary);
    background-color: #ffffff;
    width: 100%;
    display: block;
}

.btn-outline-danger {
    padding: 15px 15px 15px 15px;
}

.form-btn-outline:hover {
    color: #ffffff;
    background-color: var(--bs-primary);
}


/*=============================================================================================*/


.register-page {
    position: relative;
    padding: 50px 0;
}

.register-area {
    max-width: 992px;
    margin: 0 auto;
}

    .register-area .title {
        margin-bottom: 30px;
    }

        .register-area .title h2 {
            font-size: 34px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .register-area .title p {
            font-size: 14px;
            margin-bottom: 0px;
            color: #666;
        }

    

    .register-area .btn.btn-registration {
        width: 100%;
        padding: 12px 10px;
        margin: 10px 0;
        display: inline-block;
        position: relative;
        background: var(--primary-color);
        color: var(--color-white);
        font-size: 15px;
        font-weight: 500;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        white-space: nowrap;
        width: 304px;
    }

    .register-area .form-check-label {
        font-weight: 500;
        font-size: 14px;
    }

    .register-area .btn-signin {
        color: #08274b;
        font-size: 17px;
        white-space: nowrap;
    }



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #202020;
    transition: background-color 5000s ease-in-out 0s;
    font-size: 18px;
}

@media (max-width: 576px) {
    .register-area .btn.btn-registration {
        width: 100%;
    }

    .register-area .title h2 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .register-area .title p {
        font-size: 12px;
        margin-bottom: 0px;
        color: #666;
    }
}

.btn.btn-nav-reg {
    background: var(--primary-color);
    color: white;
}

.navContent .nav-link {
    position: relative;
    display: flex;
    align-items: center;
}

    .navContent .nav-link svg {
        margin-right: 5px;
        height: 15px;
        width: 15px;
    }

        .navContent .nav-link svg path,
        .navContent .nav-link svg circle {
            fill: var(--primary-color);
        }

    .navContent .nav-link:first-child::after {
        content: '|';
        color: var(--primary-color);
        position: absolute;
        right: -5px;
    }


.register-area .file input {
    height: 49px;
    border-radius: .25rem;
}

.register-area .file-label {
    background: var(--primary-color);
    height: 49px;
    line-height: 49px;
    border-radius: .25rem;
}


@media (max-width: 767px){
    .login-area {
        max-width: 570px;
        width: 95%;
        margin: 0 auto;
        text-align: center;
        padding: 60px 30px 30px;
        background: #fff;
        z-index: 999;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        box-shadow: rgba(255, 255, 255, 0.25) 0px 50px 100px -20px, rgba(255, 255, 255, 0.3) 0px 30px 60px -30px;
    }

    .to-recover-link{
        font-size: 14px;
    }


    .form-body {
        padding: 8px 8px 8px 45px;
        margin-bottom: 15px;
        border-radius: 8px;
        font-size: 15px;
        border: 1px solid #9ba0a5;
        font-weight: 600;
    }

    .form-area .single-form-wrapper .wrapper-icon {
        position: absolute;
        top: 36px;
        left: 16px;
        font-size: 16px;
    }

    .auth-icon {
        position: absolute;
        right: 15px;
        top: 36px;
        cursor: pointer;
    }

    .form-btn {
        padding: 8px 15px 8px 15px;
        font-size: 14px;
        font-weight: 600;
    }

    .form-btn-outline {
        padding: 8px 15px 8px 15px;
        font-size: 14px;
        font-weight: 600;
    }
    .cancel-btn {
        padding: 8px 15px 8px 15px;
        font-size: 14px;
        border-radius: 8px;
    }

    .btn-outline-danger {
        padding: 8px 15px 8px 15px;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-background-clip: text;
        -webkit-text-fill-color: #202020;
        transition: background-color 5000s ease-in-out 0s;
        font-size: 14px;
        font-weight: 600;
    }
}

