@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: ##1f4e80;
    --secondary-color: ##151515;
    --white-color: #fff;
    --black-color: #000;
}


body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: transparent;
    transition: 0.5s;
    background: transparent;
}

    .main-header.scroll {
        background: #151515;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header.scroll .upper-list {
            margin-top: -36px;
        }

        .main-header.scroll .logo {
            width: 310px;
            padding: 0;
        }

.upper-list {
    background: #1f4e80;
    padding: 4px 0 0;
    position: relative;
    transition: 0.5s;
}

    .upper-list .align-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 5px;
    }

    .upper-list .box-1 .info-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .upper-list .box-1 .info-list li {
            padding: 0 10px;
        }

            .upper-list .box-1 .info-list li span {
                color: #ffffff;
                font-size: 16px;
                padding-right: 7px;
            }

            .upper-list .box-1 .info-list li a {
                color: #ffffff;
                font-size: 15px;
                font-weight: 600;
            }

    .upper-list .box-2 .social-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .upper-list .box-2 .social-list li span {
            color: #ffffff;
            font-size: 16px;
            padding-right: 7px;
        }

        .upper-list .box-2 .social-list li {
            padding: 0 12px;
        }

            .upper-list .box-2 .social-list li a {
                color: #ffffff;
                font-size: 16px;
                font-weight: 400;
            }

.main-header .logo {
    transition: 0.5s;
    width: 350px;
}

.main-header .nav-item {
    padding: 0 10px;
}

    .main-header .nav-item .nav-link {
        font-size: 17px;
        font-weight: 500 !important;
        color: #ffffff !important;
        transition: 0.5s;
        text-transform: capitalize;
    }

.main-header.scroll .nav-item .nav-link {
    color: #ffffff !important;
}

    .main-header.scroll .nav-item .nav-link:hover {
        color: #1f4e80 !important;
    }

.main-header .nav-item .dropdown-item {
    text-transform: uppercase !important;
}

.main-header .nav-item .nav-link:hover {
    color: #ffffff !important;
}

.nav-btn ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-btn ul li {
        padding: 0 5px;
    }

.nav-btn .book-btn {
    background-color: #008341;
    border: 1px solid #008341;
    border-radius: 25px;
    padding: 12px 25px;
    color: #fff !important;
    transition: 0.5s;
    font-size: 16px;
}

    .nav-btn .book-btn:hover {
        background-color: #2b2c6c;
        border: 1px solid #2a2b69;
        color: #fff !important;
    }

.nav-btn .book-btn-2 {
    background-color: #c96243;
    border: 1px solid #c96243;
    border-radius: 25px;
    padding: 12px 25px;
    color: #fff !important;
    transition: 0.5s;
    font-size: 16px;
}

    .nav-btn .book-btn-2:hover {
        background-color: #292a66;
        border: 1px solid #2a2b69;
        color: #fff !important;
    }

.main-header .book-box {
}

    .main-header .book-box ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .main-header .book-box ul li {
            padding: 0 3px;
        }

            .main-header .book-box ul li .book-btn {
                background-color: #1f4e80;
                border: 1px solid #1f4e80;
                border-radius: 7px;
                padding: 10px 10px;
                color: #ffffff !important;
                transition: 0.5s;
                font-size: 14px;
                font-weight: 600;
            }

                .main-header .book-box ul li .book-btn span {
                    width: 25px;
                    height: 25px;
                    background-color: #fff;
                    border-radius: 50%;
                    color: #1f4e80;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 3px;
                    font-size: 14px;
                }
/************************** Header css end **************************/
.hero-section {
    width: 100%;
    padding: 13% 0 3%;
    background: linear-gradient(rgb(0 0 0 / 45%), rgba(0, 0, 0, 0.2)), url(../images/main-banner.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.main-form {
    width: 100%;
    padding: 20px 30px;
    background: #000000ad;
    border-radius: 15px;
    border: 2px solid #1f4e80;
}

    .main-form h1 {
        color: #ffffff;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.booking {
    width: 100%;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
}

    .booking i {
        position: absolute;
        top: 2px;
        color: #fff;
        right: 2px;
        width: 46px;
        background-color: #1f4e80;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 26px;
    }

    .booking .form-check-label {
        color: #fff;
    }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}

.input-booking {
    width: 100%;
    padding: 10px 40px 10px 10px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    z-index: 99;
    position: relative;
}

    .input-booking option {
        color: var(--black-color);
        font-family: "Poppins", sans-serif;
    }

    .input-booking::placeholder {
        color: #fff;
        font-family: "Poppins", sans-serif;
    }

    .input-booking:focus {
        outline: 2px solid #fff;
        border: 2px solid #fff;
        background: transparent;
        color: #fff;
    }

.hero-content {
    width: 100%;
    padding: 0px;
    text-align: center;
    margin-bottom: 20px;
}

    .hero-content h2 {
        font-size: 51px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 7px;
        line-height: 55px;
    }

    .hero-content p {
        color: var(--white-color);
        font-size: 20px;
        text-transform: uppercase;
        padding-bottom: 20px;
    }

    .hero-content .custom-head-Btn2 {
        border: none;
        padding: 10px 40px !important;
        background: #1f4e80;
        color: var(--white-color);
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        transition: all 0.3s ease-in-out;
        animation: buttonanimation 2s ease infinite;
        border-radius: 7px;
        width: fit-content;
        text-align: center;
    }

.custom-head-Btn2 {
    border: none;
    padding: 10px 40px !important;
    background: #1f4e80;
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border-radius: 7px;
    width: 100%;
    text-align: center;
}

    .custom-head-Btn2:hover {
        background: var(--primary-color);
        color: var(--white-color);
        box-shadow: 0 0 5px #ffffff;
    }

.sec-about {
    padding: 60px 0 60px;
}

    .sec-about .content-box h3 {
        font-size: 24px;
        color: #f8c039;
        padding: 7px 0 7px;
        letter-spacing: 1px;
        line-height: 20px;
        font-weight: 700;
    }

    .sec-about .content-box h2 {
        font-size: 38px;
        color: #1f4e80;
        line-height: 44px;
        padding-bottom: 10px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .sec-about .content-box .para {
        font-size: 16px;
        font-weight: 300;
        color: #000;
        padding-bottom: 10px;
    }

    .sec-about .content-box ul {
        padding-left: 25px;
        list-style: disc;
    }

        .sec-about .content-box ul li {
            font-size: 16px;
            font-weight: 300;
            padding: 3px 0;
        }

            .sec-about .content-box ul li span {
                font-weight: 600;
                color: #000;
                padding-right: 7px;
            }

    .sec-about .content-box h4 {
        font-weight: 600;
        border-bottom: 4px solid #e9b335;
        width: fit-content;
        margin-bottom: 10px;
        font-size: 20px;
        color: #000;
    }

    .sec-about .content-box .read-btn {
        background-color: #1f4e80;
        border: 1px solid #1f4e80;
        padding: 9px 20px;
        color: #ffffff !important;
        transition: 0.5s;
        box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
        border-radius: 7px;
        font-weight: 500;
        font-size: 15px;
    }

    .sec-about .img-box {
        position: relative;
    }

        .sec-about .img-box::before {
            content: '';
            background-color: transparent;
            border: 3px solid #1f4e80;
            border-radius: 20px;
            position: absolute;
            top: -20px;
            right: -20px;
            left: 20px;
            bottom: 20px;
            z-index: 1;
        }

        .sec-about .img-box img {
            border-radius: 15px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            width: 100%;
        }

.sec-tours {
    padding: 60px 0;
}

    .sec-tours .sec-title {
        padding-bottom: 30px;
    }

        .sec-tours .sec-title .box-1 {
        }

            .sec-tours .sec-title .box-1 h3 {
                font-size: 16px;
                font-weight: 600;
                color: #ffffff;
                background-color: #1f4e80;
                width: fit-content;
                padding: 8px 15px;
                border-radius: 7px;
            }

            .sec-tours .sec-title .box-1 h2 {
                font-size: 36px;
                color: #000;
                font-weight: 700;
                line-height: 40px;
                text-transform: uppercase;
                margin-top: 7px;
            }

            .sec-tours .sec-title .box-1 .para {
                color: #6b6b6b;
                padding: 5px 0 10px;
            }

        .sec-tours .sec-title .box-2 {
            text-align: right;
        }

            .sec-tours .sec-title .box-2 .services-btn {
                font-weight: 600;
                background-color: #f8b347;
                border: 1px solid #f8b347;
                border-radius: 7px;
                padding: 11px 26px;
                color: #ffffff !important;
                transition: 0.5s;
                font-size: 16px;
            }

    .sec-tours .industries-box {
        background-color: #fff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 15px;
        padding: 0;
    }

        .sec-tours .industries-box .img-box {
            position: relative;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

            .sec-tours .industries-box .img-box img {
                height: 350px;
                width: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

            .sec-tours .industries-box .img-box::before {
                content: "";
                background-color: #000;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0.5;
                border-radius: 10px;
            }

        .sec-tours .industries-box .icon-box {
            background-color: #ededed;
            width: fit-content;
            margin: 0 auto;
            padding: 18px;
            border-radius: 10px;
        }

        .sec-tours .industries-box .for-abs {
            position: absolute;
            text-align: center;
            padding: 0 0px;
            top: 180px;
            margin: 0 auto;
            left: 0;
            right: 0;
        }

        .sec-tours .industries-box .day-count {
            position: absolute;
            top: 6%;
            right: 3%;
            background-color: #1f4e80;
            padding: 3px 11px;
            border-radius: 7px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
        }

        .sec-tours .industries-box .day-count {
        }

        .sec-tours .industries-box .detail-table table {
            margin-bottom: 0;
        }

        .sec-tours .industries-box .detail-table {
            position: absolute;
            top: 214px;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
            padding: 0 14px;
        }

            .sec-tours .industries-box .detail-table tr {
                border-bottom: 1px solid #fff;
            }

            .sec-tours .industries-box .detail-table td {
                padding: 1px 0px;
                font-weight: 500;
                font-size: 14px;
            }

        .sec-tours .industries-box .for-abs h3 {
            color: #fff;
            font-size: 26px;
            line-height: 30px;
            font-weight: 700;
        }

        .sec-tours .industries-box .for-abs .para {
            color: #fff;
            font-size: 18px;
            line-height: 23px;
        }

.sec-tours-pkg {
    padding: 40px 0;
    position: relative;
}


    .sec-tours-pkg .sec-title {
        text-align: center;
        padding-bottom: 40px;
        position: relative;
    }

        .sec-tours-pkg .sec-title h2 {
            font-size: 36px;
            color: #151515;
            font-weight: 700;
            line-height: 40px;
        }

        .sec-tours-pkg .sec-title h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1f4e80;
            padding-bottom: 5px;
        }

    .sec-tours-pkg .tour-box {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        border: 2px solid #1f4e80;
        margin-bottom: 10px;
    }

        .sec-tours-pkg .tour-box .img-box {
        }

            .sec-tours-pkg .tour-box .img-box img {
                height: 240px;
                width: 100%;
                object-fit: cover;
            }

        .sec-tours-pkg .tour-box .detail-box {
            position: absolute;
            width: 90%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #151515;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px 15px;
            border-radius: 10px;
            margin-top: -28px;
        }

            .sec-tours-pkg .tour-box .detail-box .box-1 {
            }

                .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
                    font-size: 15px;
                    color: #ffffff;
                }

            .sec-tours-pkg .tour-box .detail-box .box-2 {
            }

                .sec-tours-pkg .tour-box .detail-box .box-2 ul {
                    display: flex;
                    align-items: center;
                }

                    .sec-tours-pkg .tour-box .detail-box .box-2 ul li {
                        padding: 0 6px;
                    }

                        .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
                            color: #ffffff;
                            font-size: 15px;
                        }

        .sec-tours-pkg .tour-box .content-box {
            padding: 30px 25px 20px;
        }

            .sec-tours-pkg .tour-box .content-box h4 {
                color: #1c1703;
                font-size: 22px;
                line-height: 30px;
                font-weight: 700;
                padding-bottom: 3px;
            }

            .sec-tours-pkg .tour-box .content-box .location-icon {
                color: #334960;
                font-size: 18px;
                line-height: 17px;
            }

            .sec-tours-pkg .tour-box .content-box .para {
                padding: 12px 0;
                border-top: 1px solid #ccc;
                border-bottom: 1px solid #ccc;
                font-size: 17px;
                line-height: 21px;
                font-weight: 300;
                color: #1c1703;
            }

            .sec-tours-pkg .tour-box .content-box .lower-box {
                padding: 10px 0px 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
                    font-weight: 600;
                    background-color: #1f4e80;
                    border: 1px solid #1f4e80;
                    border-radius: 7px;
                    padding: 8px 22px;
                    color: #ffffff !important;
                    transition: 0.5s;
                    font-size: 16px;
                    width: 100%;
                    text-align: center;
                }

                .sec-tours-pkg .tour-box .content-box .lower-box .rate-box {
                }

                    .sec-tours-pkg .tour-box .content-box .lower-box .rate-box small {
                        font-size: 16px;
                        line-height: 21px;
                        font-weight: 300;
                        color: #959595;
                    }

                    .sec-tours-pkg .tour-box .content-box .lower-box .rate-box h6 {
                        color: #334960;
                        font-size: 22px;
                        line-height: 22px;
                        font-weight: 700;
                    }

.sec-contact-form {
    padding: 60px 0;
}

    .sec-contact-form .contact-info-box {
        background-color: #1f4e80;
        padding: 20px 30px;
    }

        .sec-contact-form .contact-info-box h3 {
            font-size: 30px;
            color: #ffffff;
            padding: 4px 0;
            font-weight: 700;
            text-transform: capitalize;
        }

        .sec-contact-form .contact-info-box h6 {
            font-size: 20px;
            color: #6ab3ff;
            padding: 7px 0;
            font-weight: 600;
            text-transform: capitalize;
        }

        .sec-contact-form .contact-info-box .info-link {
            color: #fff;
        }

        .sec-contact-form .contact-info-box .para {
            color: #fff;
            font-size: 15px;
        }


    .sec-contact-form .contact-box {
        position: relative;
        background-color: #edf2fa;
        padding: 20px 30px;
    }

        .sec-contact-form .contact-box .text-box {
        }

            .sec-contact-form .contact-box .text-box h3 {
                font-size: 36px;
                color: #000000;
                line-height: 40px;
                padding: 0px 0;
                font-weight: 700;
                text-transform: capitalize;
            }

            .sec-contact-form .contact-box .text-box .para {
                color: #000000;
                padding: 6px 0 10px;
                font-size: 14px;
            }

        .sec-contact-form .contact-box .form-box {
        }

            .sec-contact-form .contact-box .form-box .field-box {
                padding: 0px 0;
            }

                .sec-contact-form .contact-box .form-box .field-box .c-input {
                    padding: 10px 20px;
                    background-color: #fff;
                    border: 2px solid #1f4e80;
                    color: #000000;
                    border-radius: 5px;
                    font-size: 15px;
                }

                    .sec-contact-form .contact-box .form-box .field-box .c-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                        color: #000000;
                    }

                    .sec-contact-form .contact-box .form-box .field-box .c-input::-moz-placeholder { /* Firefox 19+ */
                        color: #000000;
                    }

                    .sec-contact-form .contact-box .form-box .field-box .c-input:-ms-input-placeholder { /* IE 10+ */
                        color: #000000;
                    }

                    .sec-contact-form .contact-box .form-box .field-box .c-input:-moz-placeholder { /* Firefox 18- */
                        color: #000000;
                    }

                .sec-contact-form .contact-box .form-box .field-box .submit-btn {
                    background-color: #1f4e80;
                    border: 1px solid #1f4e80;
                    border-radius: 7px;
                    padding: 10px 26px;
                    color: #ffffff !important;
                    transition: 0.5s;
                    font-size: 16px;
                    font-weight: 500;
                }


.footer-bg {
    background-color: #151515;
    padding: 20px 0 0;
}

    .footer-bg .upper-text h5 {
        font-size: 17px;
        font-weight: 500;
        color: #fff;
        line-height: 28px;
    }

    .footer-bg .search-fleid .search-input {
        background-color: #fff;
        border: none;
        border-radius: 8px;
        padding: 15px;
    }

    .footer-bg .search-fleid .input-group-text {
        background-color: #1967d3;
        color: #fff;
        padding: 15px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
    }

    .footer-bg .search-fleid .search-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input::-moz-placeholder {
        /* Firefox 19+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-ms-input-placeholder {
        /* IE 10+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-moz-placeholder {
        /* Firefox 18- */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .footer-upper {
        border-bottom: 2px solid #c4cdde;
        padding: 0 0 30px 0;
    }

    .footer-bg .footer-middle {
        border-bottom: 1px solid #6ab3ff;
        padding: 30px 0 10px;
    }

        .footer-bg .footer-middle .para {
            font-weight: 500;
            font-size: 14px;
            color: #ffffff;
            margin-top: 10px;
            padding: 0 7px 7px 0;
            line-height: 22px;
        }

        .footer-bg .footer-middle .para-2 {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
        }

        .footer-bg .footer-middle h4 {
            font-weight: 700;
            font-size: 18px;
            color: #6ab3ff;
            text-transform: uppercase;
        }

        .footer-bg .footer-middle .footer-list {
            margin-top: 10px;
            margin-bottom: 20px;
        }

            .footer-bg .footer-middle .footer-list li {
                margin-bottom: 5px;
            }

                .footer-bg .footer-middle .footer-list li a {
                    font-weight: 500;
                    font-size: 14px;
                    color: #fff;
                    transition: 0.5s;
                }

                    .footer-bg .footer-middle .footer-list li a i {
                        font-weight: 700;
                        margin-right: 6px;
                        font-size: 15px;
                    }

                    .footer-bg .footer-middle .footer-list li a:hover {
                        transform: translateY(-5px);
                    }

    .footer-bg .footer-lower {
        text-align: center;
        padding: 20px 0;
    }

        .footer-bg .footer-lower .para {
            font-weight: 500;
            font-size: 13px;
            color: #ffffff;
        }

    .footer-bg .footer-middle .email-field .email-input {
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 0;
        padding: 12px 15px;
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }

    .footer-bg .footer-middle .email-field .email-btn {
        background-color: #ffffff;
        border-radius: 0;
        padding: 10px 32px;
        border: 2px solid #ffffff;
        color: #322081;
        font-size: 14px;
        font-weight: 600;
        transition: 0.5s;
        width: 100%;
        margin-top: 8px;
    }

        .footer-bg .footer-middle .email-field .email-btn:hover {
            background-color: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
        }

.footer-logo {
}

.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 570px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    padding-bottom: 8%;
}

    .inner-banner::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.5;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .inner-banner .content-box h2 {
            color: #ffffff;
            font-size: 44px;
            font-weight: 700;
        }

        .inner-banner .content-box ul {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
        }

            .inner-banner .content-box ul li {
                padding: 0 5px;
            }

                .inner-banner .content-box ul li a {
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 18px;
                }

.sec-inner-services-box {
    padding: 60px 0;
}

    .sec-inner-services-box .cart-box {
        padding: 10px;
        border: 3px solid #1f4d7f;
        border-radius: 20px;
        margin-bottom: 15px;
    }

        .sec-inner-services-box .cart-box .img-box {
        }

            .sec-inner-services-box .cart-box .img-box img {
                border-radius: 20px;
                box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
                width: 100%;
                height: 220px;
                object-fit: cover;
            }

        .sec-inner-services-box .cart-box .content-box {
            background-color: #1f4e80;
            padding: 20px;
            margin-top: 10px;
            border-radius: 20px;
        }

            .sec-inner-services-box .cart-box .content-box h6 {
                font-size: 20px;
                color: #ffffff;
                line-height: 24px;
                padding-bottom: 10px;
                font-weight: 700;
                text-transform: uppercase;
            }

            .sec-inner-services-box .cart-box .content-box .para {
                font-size: 15px;
                color: #fff;
            }

.sec-services-content {
    padding: 20px 0 40px;
}

    .sec-services-content .img-box {
    }

        .sec-services-content .img-box img {
            border-radius: 20px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            width: 100%;
            object-fit: cover;
        }

    .sec-services-content .content-box {
    }

        .sec-services-content .content-box h6 {
            font-size: 30px;
            color: #1f4e80;
            line-height: 34px;
            padding-bottom: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .sec-services-content .content-box .para {
            padding: 7px 0;
        }

    .sec-services-content .content-box-2 {
        background-color: #1f4e80;
        padding: 20px;
        border-radius: 20px;
    }

        .sec-services-content .content-box-2 h6 {
            font-size: 30px;
            color: #fff;
            line-height: 34px;
            padding-bottom: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .sec-services-content .content-box-2 .para {
            padding: 7px 0;
            color: #fff;
        }

#lkbtn_lgout {
    color: #fff;
}

.sec-privacy {
    padding: 40px 0 40px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #ffffff;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: #1f4e80;
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #000;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-privacy .content-box h3 {
            text-transform: capitalize;
            position: relative;
            padding-bottom: 0px;
            color: #1f4e80;
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .sec-privacy .content-box ul {
            padding-left: 30px;
            padding-bottom: 10px;
            list-style: none;
        }

            .sec-privacy .content-box ul li {
                padding: 3px 0;
                font-size: 16px;
            }

                .sec-privacy .content-box ul li i {
                    color: #000000;
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: #000000;
            padding: 5px 0;
            font-weight: 600;
            margin: 0;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: #0089bf;
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: #000;
            padding-right: 5px;
        }

/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }

    .main-header .logo {
        width: 280px;
    }

    .main-header.scroll .logo {
        width: 270px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .main-header .logo {
        width: 220px;
    }

    .main-header .nav-item {
        padding: 0 3px;
    }

    .main-header.scroll .logo {
        width: 220px;
    }

    .hero-section {
        padding: 6% 0 3%;
        margin-top: 70px;
    }

    .hero-content h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .sec-about {
        padding: 30px 0 30px;
    }

        .sec-about .img-box::before {
            display: none;
        }

        .sec-about .img-box {
            margin-top: 20px;
        }

    .sec-tours {
        padding: 30px 0;
    }

        .sec-tours .sec-title .box-1 h2 {
            font-size: 30px;
            line-height: 37px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h2 {
            font-size: 30px;
            line-height: 35px;
        }

    .sec-contact-form {
        padding: 20px 0;
    }

    .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
        font-size: 14px;
    }

        .sec-tours-pkg .tour-box .detail-box .box-2 ul li a i {
            padding-right: 2px;
        }

    .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
        font-size: 14px;
    }

    .sec-tours-pkg .tour-box .img-box img {
        height: 170px;
    }

    .sec-tours-pkg .tour-box .detail-box {
        padding: 10px 4px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }


    .main-header .logo {
        width: 270px;
    }

    .main-header {
        background: #151516;
    }

        .main-header.scroll .logo {
            width: 250px;
        }


    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(106%) contrast(104%);
    }

    .hero-section {
        padding: 6% 0 3%;
        margin-top: 70px;
    }

    .hero-content h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .sec-about {
        padding: 30px 0 30px;
    }

        .sec-about .img-box::before {
            display: none;
        }

        .sec-about .img-box {
            margin-top: 20px;
        }

    .sec-tours {
        padding: 30px 0;
    }

        .sec-tours .sec-title .box-1 h2 {
            font-size: 30px;
            line-height: 37px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h2 {
            font-size: 30px;
            line-height: 35px;
        }

    .sec-contact-form {
        padding: 20px 0;
    }

    .footer-bg {
        padding: 0px 0 0;
        overflow-x: hidden;
    }

        .footer-bg .footer-middle {
            padding: 30px 15px 10px;
        }

    .inner-banner {
        height: 300px;
        align-items: center;
        margin-top: 70px;
        padding-bottom: 0;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

    .sec-about .content-box h2 {
        font-size: 24px;
        line-height: 25px;
    }

    .sec-inner-services-box {
        padding: 20px 0;
    }

    .sec-services-content {
        padding: 0px 0 20px;
    }

        .sec-services-content .content-box h6 {
            font-size: 30px;
            margin-top: 7px;
        }

    .sec-tours .industries-box .for-abs {
        top: 150px;
    }

    .sec-tours .industries-box .detail-table {
        top: 185px;
    }

    .sec-tours-pkg .tour-box .detail-box {
        padding: 10px 4px;
    }

        .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
            font-size: 14px;
        }

            .sec-tours-pkg .tour-box .detail-box .box-2 ul li a i {
                padding-right: 2px;
            }

        .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
            font-size: 14px;
        }

    .sec-tours-pkg .tour-box .img-box img {
        height: 170px;
    }

    .footer-logo {
        width: 300px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }



    .main-header .logo {
        width: 270px;
    }

    .main-header {
        background: #151516;
    }

        .main-header.scroll .logo {
            width: 250px;
        }

    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(106%) contrast(104%);
    }

    .hero-section {
        padding: 6% 0 3%;
        margin-top: 70px;
    }

    .hero-content h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .sec-about {
        padding: 30px 0 30px;
    }

        .sec-about .img-box::before {
            display: none;
        }

        .sec-about .img-box {
            margin-top: 20px;
        }

    .sec-tours {
        padding: 30px 0;
    }

        .sec-tours .sec-title .box-1 h2 {
            font-size: 30px;
            line-height: 37px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h2 {
            font-size: 30px;
            line-height: 35px;
        }

    .sec-contact-form {
        padding: 20px 0;
    }

    .footer-bg {
        padding: 0px 0 0;
        overflow-x: hidden;
    }

        .footer-bg .footer-middle {
            padding: 30px 15px 10px;
        }

    .inner-banner {
        height: 300px;
        align-items: center;
        margin-top: 90px;
        padding-bottom: 0;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

    .sec-about .content-box h2 {
        font-size: 24px;
        line-height: 25px;
    }

    .sec-inner-services-box {
        padding: 20px 0;
    }

    .sec-services-content {
        padding: 0px 0 20px;
    }

        .sec-services-content .content-box h6 {
            font-size: 30px;
            margin-top: 7px;
        }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .main-header .logo {
        width: 240px;
    }

    .main-header {
        background: #151516;
    }

        .main-header.scroll .logo {
            width: 220px;
        }

        .main-header.scroll .upper-list {
            margin-top: -56px;
        }

    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(106%) contrast(104%);
    }

    .hero-section {
        padding: 6% 0 3%;
        margin-top: 90px;
    }

    .hero-content h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .sec-about {
        padding: 30px 0 30px;
    }

        .sec-about .img-box::before {
            display: none;
        }

        .sec-about .img-box {
            margin-top: 20px;
        }

    .sec-tours {
        padding: 30px 0;
    }

        .sec-tours .sec-title .box-1 h2 {
            font-size: 30px;
            line-height: 37px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h2 {
            font-size: 30px;
            line-height: 35px;
        }

    .sec-contact-form {
        padding: 20px 0;
    }

    .footer-bg {
        padding: 0px 0 0;
        overflow-x: hidden;
    }

        .footer-bg .footer-middle {
            padding: 30px 15px 10px;
        }

    .inner-banner {
        height: 300px;
        align-items: center;
        margin-top: 90px;
        padding-bottom: 0;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

    .sec-about .content-box h2 {
        font-size: 24px;
        line-height: 25px;
    }

    .sec-inner-services-box {
        padding: 20px 0;
    }

    .sec-services-content {
        padding: 0px 0 20px;
    }

        .sec-services-content .content-box h6 {
            font-size: 30px;
            margin-top: 7px;
        }

    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 234px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }
}
