* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --theme-color1: #2874b4;
    --theme-color2: #51b54a;
    --theme-color3: #e6e348;
}

body {
    overflow-x: hidden;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Poppins", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0 !important;
}

ul li {
    list-style-type: none;
}

ul {
    margin-bottom: 0 !important;
}

ol,
ul {
    padding-left: 0 !important;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0 !important;
    position: relative;
}

img {
    max-width: 100%;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.plr-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.section-title {
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.primary-btn {
    background-image: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
    color: #fff;
    display: block;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 500;
    max-width: max-content;
    text-transform: uppercase;
    border: none;
    text-align: center;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: .8s;
}

.primary-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color2);
    transform: scale(0);
    z-index: -1;
    transition: .8s;
}

.primary-btn:hover::before {
    transform: scale(1);
}

.primary-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    color: #303030;
    position: relative;
    text-transform: capitalize;
}

.owl-dot.active span {
    background: var(--theme-color2) !important;
}

.owl-dot span {
    border: 1px solid var(--theme-color2);
}

.row {
    row-gap: 30px;
    position: relative;
}

/*=================Header Start=============*/
/* ----- Smooth Sticky Navbar Start ---------- */
header {
    background: #0000006a;
}

header.scrolled {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--theme-color1);
}

header.scrolled .top-header {
    display: none;
}

/* ----- Smooth Sticky Navbar End ---------- */

.top-header .row {
    align-items: center;
}

.top-header-contact a {
    color: #fff;
    transition: .5s;
    font-weight: 500;
    font-size: 15px;
}

.top-header-contact a:hover {
    color: var(--theme-color3);
}

.top-header-contact a img {
    max-width: 50px;
}

.top-header-contact a:first-child {
    margin-right: 10px;
}

.top-header-social ul {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: right;
    text-align: center;
    text-transform: capitalize;
}

.top-header-social ul a {
    background-image: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
    color: #fff;
    display: block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
    transition: .5s;
}

.top-header-social ul a:hover {
    background-image: linear-gradient(90deg, var(--theme-color2) 0%, var(--theme-color1) 100%);
}

.navbar-hover {
    border-bottom: 1px solid #ffffff4d;
    border-top: 1px solid #ffffff4d;
    /* background: #fff; */
}

#navbarHover {
    justify-content: center;
}

header.scrolled .navbar-hover {
    border: none;
    margin-top: 0;
}

.navbar-hover .navbar-brand {
    padding: 0;
}

header.scrolled .navbar-hover .primary-btn {
    padding: 10px 20px 5px !important;
    font-size: 15px;
}

.navbar-hover .navbar-brand img {
    max-width: 140px;
}

header.scrolled .navbar-hover .navbar-brand img {
    max-width: 100px;
}

.navbar-hover .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}

header.scrolled .navbar-hover .dropdown-item {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}
.navbar-hover .dropdown-menu {
	text-transform: uppercase;
}
.navbar-hover .dropdown-menu .dropdown-item:hover,
.navbar-hover .dropdown-menu .dropdown-item.active {
    color: #fff;
    background: var(--theme-color2);
}

.navbar-nav {
    column-gap: 40px;
}

.navbar-hover .nav-link:hover,
.navbar-hover .nav-link:focus,
.navbar-hover .nav-link.active, 
.navbar-hover .nav-link.show
{
    color: var(--theme-color3) !important;
}

.navbar-hover .collapse ul li:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 50%;
    right: -20px;
    z-index: 1;
    background-color: #c1c1c1;
    transform: translateY(-50%);
}

.navbar-hover .dropdown-menu li::after {
    display: none;
}

/* <!-- ------------ Mobile Menu Start ---------- --> */
.mobile-menu-icon {
    background-color: var(--theme-color1) !important;
}

.navbar-toggler-icon {
    background-image: url('../images/menu.png') !important;
}

.mobile-menu-icon {
    background-color: var(--theme-color1) !important;
}

.mobile-menu .nav-item a {
    color: #464646;
    max-width: max-content;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-toggler-icon {
    background-image: url('../images/menu.png') !important;
}

.website-logo img {
    max-width: 160px;
    margin: auto;
    display: block;
}

.top-header {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* <!-- ------------ Mobile Menu End ---------- --> */
/*=================Header End =============*/
/*================= Body Section Start=============*/
/* ------ Banner Section --------- */
.home-banner {
    height: 750px;
    overflow: hidden;
}

.owl-banner .owl-dots {
    margin-top: -80px !important;
    position: relative;
}

.owl-banner,
.owl-banner .owl-stage-outer,
.owl-banner .owl-stage,
.owl-banner .owl-item,
.owl-banner .items,
.owl-banner .items img {
    height: 100%;
    object-fit: cover;
}

.banner-contents {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 1;
    text-align: center;
}

.banner-contents h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px !important;
    letter-spacing: 1px;
}

.banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.owl-banner .items {
    position: relative;
}

.owl-banner .items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00000087;
}

/* ---------- Banner End ------------- */
/* <!-- ------- About Section Start ---- --> */

.about {
    position: relative;
}

.about .row {
    align-items: center;
}

.about-img img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.about-content .primary-title br {
    display: none;
}

.about-form {
    position: relative;
    width: 95%;
    margin-left: auto;
    padding: 40px;
}

.enquiry-form {
    background: #fff;
    padding: 30px 30px 40px 30px;
    border-radius: 2px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-form::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/enquiry-form-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-form::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0000008e;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.enquiry-form .row {
    row-gap: normal;
}

.enquiry-form .primary-btn {
    margin: auto;
    padding: 12px 100px !important;
    border-radius: 2px;
}

.enquiry-form input.form-control,
.enquiry-form .form-select {
    height: 45px;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    border-radius: 2px;
}

.enquiry-form .form-control::placeholder,
.enquiry-form .form-control:focus,
.enquiry-form .form-control[type="text"],
.enquiry-form .form-control[type="email"],
.enquiry-form select,
.enquiry-form select:focus,
.enquiry-form .form-control {
    color: var(--theme-third);
    border-color: var(--theme-third) !important;
}

.enquiry-form .form-control[type="date"] {
    padding-left: 10px;
}

.form-heading h2 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    color: var(--theme-color1);
}

.form-heading p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 30px;
}

.enquiry-form-col {
    position: relative;
}

.enquiry-form-col i,
.enquiry-form-col svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--theme-color1);
    fill: var(--theme-color1);
}

.enquiry-form-col-textarea i,
.enquiry-form-col-textarea svg {
    top: 25%;
}

/* <!-- ------- About Section Start ---- --> */
/* <!-- ------- why Section Start ---- --> */
.why {
    position: relative;
}

.why .row {
    justify-content: center;
}

.why-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    flex-direction: column;
    transition: .6s;
}

.why-box:hover {
    background: #e9e9e9;
}

.why-box img {
    height: 100px;
    width: 100px;
    transition: .6s;
}

.why-box-content h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding-top: 50px;
    padding-bottom: 20px;
}

.why-box-content span {
    text-transform: capitalize;
    font-weight: 500 !important;
    color: #fff;
}

/* <!-- ------- why Section End ---- --> */
/* <!-- ------- package Section Start ---- --> */
.home .package {
    position: relative;
    background-color: #f4f4f4;
}

.package-box {
    background: #fff;
    position: relative;
    transition: .5s;
    padding: 10px;
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.19);
    overflow: hidden;
    border-radius: 4px;
}

.package-box-img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 4px;
    display: flex;
}

.package-box-img img {
    object-fit: cover;
    transition: .5s;
}

.package-box-img img {
    width: 100%;
    height: 100%;
    margin-left: auto;
}

.package-box:hover img {
    transform: scale(1.1);
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 10px 10px;
    border-top: 1px solid #d6d6d6;
}

.package-content .package-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7em;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 20px 0;
    text-align: center;
    color: #252525;
}

.package-content .primary-btn {
    font-size: 14px;
    padding: 12px 15px !important;
    border-radius: 4px;
}

.package .package-primary-btn {
    margin: 100px auto 0 auto;
}

.package-content p {
    font-size: 15px;
}

.package-content p span {
    display: block;
    font-weight: 600;
    color: var(--theme-color2);
    font-size: 20px;
}

/* <!-- ------- package Section End ---- --> */
/* <!-- ------- our-mission Section End ---- --> */
.our-mission {
    position: relative;
    width: 95%;
    margin: auto;
}

.our-mission .row {
    align-items: center;
}

.our-mission-content {
    padding-right: 40px;
}
.our-mission-img img {
    width: 95%;
}
/* <!-- ------- our-mission Section End ---- --> */
/* <!-- ------- Services Section Start ---- --> */
.Services p {
    text-align: center;
}

.Services .row {
    row-gap: 30px;
}

.Services .Services-box {
    overflow: hidden;
    height: 550px;
    display: block;
    position: relative;
}

.Services .Services-box img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
    width: 100%;
}

.Services .Services-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: .5s;
    background: #00000000;
}

.Services .Services-box::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5%;
    height: 80%;
    width: 90%;
    border: 1px solid #ffffff80;
    z-index: 1;
}

.Services .Services-box:hover img {
    transform: scale(1.1);
}

.Services-contents {
    position: absolute;
    left: 50%;
    top: 100%;
    transition: .8s;
    transform: translate(-50%, -80%);
    width: 100%;
    text-align: center;
    padding: 15px;
    z-index: 1;
    background: #000000bf;
}

.Services-contents h5 a {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* <!-- ------- Services Section End ---- --> */
/* ---- Testimonial section Start ---- */
.testimonial {
    position: relative;
    padding-bottom: 170px;
}

.testimonial-box {
    transition: .4s;
    margin: 10px;
    position: relative;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.client-details {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client-details img {
    width: 100px !important;
    height: 100px;
    object-fit: contain;
    border-radius: 100%;
    background: #fff;
}

.client-details h5 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--theme-color1);
}

.client-details span {
    font-size: 14px;
    font-weight: 600;
}

.client-comments {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-align: center;
}

.client-comments i {
    font-size: 30px;
    margin-right: 10px;
}

.ratings i {
    color: var(--theme-color1);
    font-size: 14px;
}

.ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.owl-testimonial button.owl-prev {
    position: absolute;
    bottom: -80px;
    left: 45%;
    color: var(--theme-color1) !important;
}

.owl-testimonial button.owl-next {
    position: absolute;
    bottom: -80px;
    left: 50%;
    color: var(--theme-color1) !important;
}

.owl-testimonial button.owl-prev:hover,
.owl-testimonial button.owl-next:hover {
    background-color: transparent !important;
}

.owl-testimonial button.owl-prev i,
.owl-testimonial button.owl-next i {
    border: 2px solid var(--theme-color1);
    height: 40px;
    width: 40px;
    line-height: 40px;
    transition: .4s;
    font-size: 20px;
}

.owl-testimonial button.owl-prev i:hover,
.owl-testimonial button.owl-next i:hover {
    background-color: var(--theme-color1);
    border-color: var(--theme-color1);
    transition: .4s;
    color: #fff;
}

/* ---- Testimonial section End ---- */
/*================= Body Section End=============*/
/*================= Footer Start =============*/
.call-to-action {
    margin-bottom: 80px;
    position: relative;
}
.call-to-action-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}
.call-to-action-text {
    height: 100%;
    padding: 60px;
    background-color: #FCFCFC;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #DEDEDE;
    border-radius: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-content {
    background: url(../images/footer-bg.png), linear-gradient(180deg, #1d231f 0%, #1d231f 100%);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    background-color: var(--theme-color1);
}

.footer-content a {
    color: #ffffffd4;
    transition: .5s;
    display: inline-flex;
    justify-content: center;
    max-width: max-content;
    font-size: 16px;
    font-weight: 500;
}

.footer-logo .website-logo img {
    max-width: 160px;
    margin: auto;
    display: block;
}

.footer-logo img {
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a svg,
.footer-contact a svg path {
    margin-right: 10px;
    margin-top: 4px;
    transition: .5s;
}

.footer-contact a:hover {
    color: var(--theme-color3);
}

.footer-contact a:hover svg,
.footer-contact a:hover svg path {
    margin-right: 20px;
    color: var(--theme-color3);
}

.footer-newsletter form {
    padding-top: 30px;
    position: relative;
    width: 70%;
}

.footer-newsletter form button {
    position: absolute;
    right: 5%;
    top: 68%;
    transform: translateY(-50%);
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--theme-color3);
}

.footer-newsletter input.form-control {
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    border-color: #ffffff12 !important;
    border-radius: 0;
    background-color: #ffffff12;
}

.footer-newsletter .form-control::placeholder,
.footer-newsletter .form-control:focus {
    border-color: #ffffff12 !important;
    color: #ffffffaf;
}

.quick-links a {
    text-transform: capitalize;
}

.quick-links a:hover {
    color: var(--theme-color3);
}

.footer-title {
    color: #ffffffd4;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 500;
    position: relative;
}

footer ul {
    margin-top: 30px;
}

.quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    padding-bottom: 50px;
}

.footer-img {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
}

.footer-img a {
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline !important;
}

.footer-copyright {
    position: relative;
    padding: 10px 0;
    border-top: 1px solid #ffffff1a;
}

.footer-copyright p {
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.footer-copyright p a {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
}

.footer-copyright p a:hover {
    text-decoration: underline !important;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    background: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
    color: #fff;
    display: block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
    transition: .5s;
    max-width: 100%;
}

.footer-social a:hover {
    background-image: linear-gradient(90deg, var(--theme-color2) 0%, var(--theme-color1) 100%);
}

.subscribe-follow p {
    color: #ffffffd4;
    padding-top: 20px;
}

.footer-follow-facebook img {
    margin-top: 30px;
    max-width: 120px;
}
.call-to-action {
	
}
/*================= Footer End =============*/
/*<!-- ----------------- Bottom to Top Scroll Button Start ------------------>*/
#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    border: none !important;
    background: var(--theme-color1);
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 2px;
    font-size: 20px;
    z-index: 9;
    box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.4);
}

#scrollTopBtn.show {
    display: block;
}

/*<!-- ----------------- Bottom to Top Scroll Button End ------------------>*/
/*<!-- ----------------- Whatsapp Chat Start ------------------>*/
.whatsapp-chat {
    position: fixed;
    bottom: 50px;
    right: 20px;
    color: #fff;
    width: 35px;
    z-index: 9;
    filter: drop-shadow(2px 4px 6px black);
}

.icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #11ff00;
    transform: translate(-50%, -50%);
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/*<!-- ----------------- Whatsapp Chat End ------------------>*/
/*===================================Responsive Start==========================*/
@media only screen and (max-width: 1199.5px) {
    .navbar-hover .navbar-nav {
        column-gap: 5px;
    }

    .plr-70 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .navbar-hover .navbar-nav {
        column-gap: 10px;
    }
}

@media only screen and (min-width: 1199px) {
    .navbar-hover .collapse ul li {
        position: relative;
    }

    .navbar-hover .collapse ul li:hover>ul {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        top: 100%;
        background: var(--theme-color1);
        border-radius: 0;
    }

    .navbar-hover .collapse ul li a {
        color: #fff;
    }

    .navbar-hover .collapse ul ul {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 250px;
    }
}

@media only screen and (max-width: 991.5px) {
    .about-content .primary-btn {
        margin: auto;
    }

    /* hover dropdown menus */
    .navbar-hover .show>.dropdown-toggle::after {
        transform: rotate(-90deg);
    }

    .mobile-menu .navbar-nav {
        row-gap: 10px;
    }

    .mobile-menu {
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .top-header {
        display: none;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .owl-banner .owl-dots {
        margin-top: -40px !important;
    }

    .banner-contents h1 {
        font-size: 70px;
        line-height: 80px;
    }

    .primary-title {
        line-height: 50px;
        font-size: 35px;
    }

    .footer-copyright {
        row-gap: normal;
    }

    .footer-copyright p {
        justify-content: center;
        text-align: center;
        margin: 0;
        padding-top: 5px;
        padding-bottom: 5px;
        justify-content: center;
    }

    .footer-bottom-right p {
        justify-content: center;
    }

    .Services .row {
        row-gap: 30px;
    }

    .website-logo img {
        margin: unset;
    }

    .section-title {
        padding-bottom: 40px;
    }

    .footer-logo p,
    .footer-logo em {
        text-align: center;
    }

    .footer-newsletter form {
        width: 95%;
    }

    header.scrolled {
        background-color: #000;
    }

    header.scrolled .website-logo img {
        max-width: 90px;
    }

    .our-mission-content {
        padding-right: 0;
        text-align: center;
    }

    .our-mission-content .primary-btn {
        margin: auto;
    }

    .owl-testimonial button.owl-prev {
        left: 42%;
    }
	.our-mission-img img {
    width: 100%;
	}
	.call-to-action-img img {
		height: 400px;
		border-radius: 30px 30px 0 0;
	}
	.call-to-action-text {
		padding: 40px;
		border-width: 0 1px 1px 1px;
		border-radius: 0 0 30px 30px;
	}
	.call-to-action .row {
		row-gap: 0;
	}
	.call-to-action {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 767.5px) {
    .plr-70 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .top-header {
        display: none;
    }

    .row {
        margin: 0 !important;
        --bs-gutter: unset !important;
    }

    .banner-contents p {
        width: 80%;
        font-size: 22px;
    }

    .banner-contents p::before,
    .banner-contents p::after {
        display: none;
    }

    .quick-links {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-copyright.row {
        row-gap: 0;
    }

    footer ul {
        margin-top: 25px;
    }

    .footer-copyright-right p {
        justify-content: start;
    }

    .quick-links.ps-5 {
        padding-left: 0 !important;
    }

    .package {
        margin-top: 0;
        padding-bottom: 40px;
    }

    .package-box-content h5 a {
        text-align: center;
    }
}

@media only screen and (max-width: 425.5px) {
    .primary-title {
        font-size: 30px;
        line-height: 40px;
    }

    .offcanvas.offcanvas-start {
        width: 100% !important;
    }
.website-logo img {
    max-width: 110px;
}
    .banner-btns {
        flex-direction: column;
    }

    .banner-contents {
        text-align: center;
        width: 95%;
    }

    .banner-btns {
        flex-direction: column;
    }

    .banner-contents h1 {
		line-height: 45px;
		font-size: 31px;
	}

    .about {
        padding-bottom: 50px;
    }

    .Services {
        padding-bottom: 50px;
    }

    .footer-copyright p {
        flex-direction: column;
    }

    .home-banner {
        height: 600px;
    }
	.about .col-md-12 {
		padding: 0 !important;
	}
    .banner-contents p {
        width: 100%;
        font-size: 22px;
    }
	.home .enquiry-form {
		margin-top: 0 !important;
	}
    .owl-banner .owl-dots {
        margin-top: -60px !important;
    }

    .about-content .primary-title br {
        display: block;
    }

    .footer-content {
        padding-top: 40px;
    }

    .about-form {
        width: 100%;
        padding: 5px;
    }
	.home input.form-control {
		border: 1px solid #000 !important;
	}
    .enquiry-form .primary-btn {
        padding: 12px 50px !important;
    }

    .enquiry-form {
        padding: 30px 10px 40px 10px;
    }

    .package .package-primary-btn {
        margin: 50px auto 0 auto;
    }

    .owl-testimonial button.owl-prev {
        left: 35%;
    }

    .testimonial {
        padding-bottom: 120px;
    }
	.call-to-action-img img {
		height: 230px;
		border-radius: 20px 20px 0 0;
	}
	.call-to-action-text {
		padding: 30px 15px;
	}
	.our-mission {
		width: 100%;
	}
	.our-mission-img img {
		height: 260px;
		object-fit: cover;
	}
}

/*===================================Responsive End==========================*/

.inner-page .primary-btn {
    background: linear-gradient(90deg, #2874b4 0%, #51b54a 100%);
    color: #fff;
    display: block;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 500;
    max-width: max-content;
    text-transform: uppercase;
    border: none;
    text-align: center;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: .8s;
    margin: auto;
}

.inner-page .primary-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #51b54a;
    transform: scale(0);
    z-index: -1;
    transition: .8s;
}

.inner-page .primary-btn:hover::before {
    transform: scale(1);
}

/* ======== Bread Crumb Start ======= */
.bread-crumb {
    text-align: center;
    padding: 250px 0;
    position: relative;
    overflow: hidden;
}

.bread-crumb-banner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.bread-crumb::before {
    position: absolute;
    content: '';
    background: #0000007e;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.bread-crumb::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -40px;
    height: 120px;
    width: 1600px;
    z-index: 1;
    background-image: url(https://duencyitservices.in/wordpress/infinitetravel/wp-content/uploads/2025/04/bread-crumb-footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bread-crumb-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 95%;
    color: #fff;
    margin: auto !important;
}

/* ======== Bread Crumb End ======= */
/* ======================= Inner Page Start ========================== */
.inner-page-content {
    padding: 70px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tab-buttons button {
    flex: 1;
    padding: 15px 24px;
    cursor: pointer;
    border: 1px solid #51b54a;
    background: #fff;
    outline: none;
    transition: 0.6s;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
}

.tab-buttons button:hover {
    background: linear-gradient(90deg, #2874b4 0%, #51b54a 100%);
    color: #fff;
}

.tab-buttons button.active {
    background: linear-gradient(90deg, #2874b4 0%, #51b54a 100%);
    color: #fff;
    display: block;
}

.tab-content {
    display: none;
    padding-top: 60px;
    margin-bottom: 80px;
}

.tab-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 600px) {
    .tab-buttons button {
        flex: 100%;
        text-align: left;
    }
}

.destination-details .accordion {
    width: 80%;
    margin: auto;
}

.accordion img {
    width: 100%;
}

.accordion-item {
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background: #f8f8f8;
    color: #000;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    width: 100%;
    position: relative;
}

.accordion-header::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.accordion-item.active .accordion-header::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
}

.accordion-item.active .accordion-header {
    background: linear-gradient(90deg, #2874b4 0%, #51b54a 100%);
    color: #fff;
}

.accordion-content {
    padding-left: 30px;
    padding-right: 30px;
    background: #fff;
    border-top: 1px solid #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-content p {
    margin-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: max-content !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.destination-details-content .row {
    align-items: center;
    row-gap: 30px;
    justify-content: center;
}

.safari-footer-tour-packages {
    background: url(../images/lion-5681692_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.safari-footer-tour-packages::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #00000099;
}

/* <!-- ------- package Section Start ---- --> */

.package .row {
    row-gap: 30px;
}

.package-box {
    background: #fff;
    position: relative;
    transition: .5s;
    padding: 10px;
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.19);
    overflow: hidden;
    border-radius: 4px;
}

.package-box-img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 4px;
    display: flex;
}

.package-box-img img {
    object-fit: cover;
    transition: .5s;
}

.package-box-img img {
    width: 100%;
    height: 100%;
    margin-left: auto;
}

.package-box:hover img {
    transform: scale(1.04);
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 10px 10px;
    border-top: 1px solid #d6d6d6;
}

.package-content .package-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7em;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 20px 0;
    text-align: center;
    color: #252525;
}

.package-content .primary-btn {
    padding: 12px 15px !important;
    border-radius: 4px;
    margin-right: unset !important;
}

.package-content p {
    font-size: 15px;
}

.package-content p span {
    display: block;
    font-weight: 700;
    color: #2874b4;
    font-size: 20px;
}

/* <!-- ------- package Section End ---- --> */

.owl-safari-footer-tour-packages .owl-dots {
    display: block !important;
}

.owl-safari-footer-tour-packages .owl-dot.active span {
    background: #fff !important;
}

.owl-safari-footer-tour-packages .owl-nav {
    display: block !important;
    margin-top: 50px !important;
}

.owl-safari-footer-tour-packages .owl-nav button {
    color: #fff !important;
}

.safari-row-col-img {
    position: relative;
}

.safari-row-col-large-img {
    width: 95%;
    height: 600px;
    object-fit: cover;
    object-position: center center;
    border-style: solid;
    border-width: 5px;
    border-color: #FFFFFF;
    box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, 0.19);
}

.scenery-habitats {
    background: url(../images/pexels-pixabay-357209-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.scenery-habitats::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #ffffffc9;
}

.destination-listing li {
    position: relative;
    padding-left: 15px;
    margin-top: 30px;
}

.destination-listing li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #000;
    font-size: 14px;
}

.destination-col-slider-text ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.destination-tripple-col .destination-listing li::before {
    color: #fff;
}

.destination-col-slider-text ul li {
    color: #fff;
}

.owl-destination-slider button.owl-prev {
    position: absolute;
    top: 50%;
    left: 5%;
    color: #000 !important;
}

.owl-destination-slider button.owl-next {
    position: absolute;
    top: 50%;
    right: 5%;
    color: #000 !important;
}

.owl-destination-slider button.owl-prev:hover,
.owl-destination-slider button.owl-next:hover {
    background-color: transparent !important;
}

.owl-destination-slider button.owl-prev i,
.owl-destination-slider button.owl-next i {
    border: 1px solid #fff;
    background-color: #fff;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50%;
    opacity: 0.6;
    transition: .6s;
    font-size: 20px;
}

.owl-destination-slider button.owl-prev i:hover,
.owl-destination-slider button.owl-next i:hover {
    background-color: #fff;
    border-color: #fff;
    transition: .4s;
    opacity: 1;
}

.owl-destination-slider .items img {
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.page-footer-references-box {
    background: url(../images/pexels-aditya-aiyar-615049-1407305.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 40px;
    box-shadow: 10px 12px 15px 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.page-footer-references-box::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #000000ca;
}

.package-details-page-content .row {
    justify-content: space-between;
}
.about-package-content-sec {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-package-right {
    width: 90%;
    margin-left: auto;
    padding-top: 60px;
}

.package-details-page-primary-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin: 50px 0 30px 0 !important;
    color: #222;
    text-transform: capitalize;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.itinerary-include-exclude {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-include-exclude .package-details-page-primary-title {
    border-color: #000;
}

.about-package-content h3 {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}
.about-package-primary-img img {
    height: 520px;
    width: 100%;
    object-fit: cover;
}
.itinerary-include-exclude-content {
    padding: 1px 20px 30px 20px;
    border-radius: 2px;
    position: relative;
    background: #fff;
}

.itinerary-include-exclude-content ul li {
    position: relative;
    padding-left: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.itinerary-include-exclude-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.itinerary-include-exclude-content ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
}

.include-content ul li::before {
    content: '\f058';
    color: #51b54a;
}

.exclude-content ul li::before {
    content: '\f057';
    color: #dd3e3e;
}

.package-details-page-content.inner-page-content {
    width: 90%;
    margin: auto;
}

.package-details-page .enquiry-form {
    background: #004d8e;
    padding: 60px;
    margin-top: 100px;
}

.package-page-listings ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-page-listings li {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.package-page-listings i {
    color: #2874b4;
    margin-right: 10px;
    font-size: 15px;
}

.package-page-listings ul li:not(:last-child) {
    margin-bottom: 10px;
}

.inner-page .enquiry-form {
    background: var(--theme-color1);
    padding: 30px 30px 40px 30px;
    border-radius: 5px;
    margin-top: 60px;
}

.inner-page .package-details-page-form-title {
    color: #fff;
    padding-bottom: 40px;
    text-align: center;
    text-transform: capitalize;
    font-size: 35px;
}

.inner-page .enquiry-form .row {
    row-gap: 20px;
}

.inner-page .enquiry-form .primary-btn {
    border-radius: 10px;
    padding: 15px 100px !important;
    margin-top: 30px;
    border: 1px solid #51b54a;
}

.inner-page .enquiry-form input.form-control,
.inner-page .enquiry-form .form-select {
    height: 60px;
}

.inner-page .enquiry-form .form-control,
.inner-page .enquiry-form .form-select {
    font-size: 14px;
    font-weight: 500;
    padding-left: 50px;
    border-radius: 10px;
}

.inner-page .enquiry-form .form-control[type="date"] {
    padding-left: 10px;
}

.inner-page .enquiry-form-title {
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.inner-page .enquiry-form-col {
    position: relative;
}

.inner-page .enquiry-form-col i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    color: #383838;
}
.inner-page .enquiry-form-col-textarea textarea {
    padding-top: 30px;
}
.inner-page .enquiry-form-col-textarea i {
    top: 30%;
}
.inner-page .enquiry-form-col-textarea i, .inner-page .enquiry-form-col-textarea svg {
    top: 30%;
}
.inner-page .enquiry-form-col i, .inner-page .enquiry-form-col svg {
    left: 30px;
}
.inner-page .enquiry-form .form-label {
    font-size: 13px;
    color: #000;
    font-weight: 700;
}

.more-destination {
    padding-top: 70px;
}

.more-destination-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    color: #303030;
    position: relative;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 50px;
}

.more-destination-box {
    overflow: hidden;
    height: 320px;
    box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.4);
    display: block;
    position: relative;
    margin: auto;
}

.more-destination-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.more-destination-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: .5s;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.734) 90%,
            rgb(0, 0, 0) 100%);
    z-index: 2;
}

.more-destination-box:hover h5 a {
    color: var(--theme-secondary);
}

.more-destination-contents {
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: .8s;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 15px;
    z-index: 3;
}

.more-destination-contents h5 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.more-destination-contents h5 a {
    color: #fff;
}

.more-destination-box:hover img {
    transform: scale(1.03);
}

.about-package {
    margin-bottom: 60px;
}
.about-package-other-contents {
    padding-top: 80px;
}
.about-package-price {
    background: linear-gradient(180deg, #2874b4 0%, #51b54a 100%);
    padding: 40px;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.about-package-price h2 {
    font-size: 32px;
    text-transform: capitalize;
}

.about-package-price-starts {
    margin-top: 30px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.about-package-price-starts h3 {
    font-size: 50px;
    padding-top: 20px;
}

/* ======================= Inner Page End ========================== */
/*===================================Responsive Start==========================*/
@media only screen and (max-width: 1199.5px) {
    .plr-100 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .ptb-100 {
        padding-top: 40px !important;
        padding-bottom: 50px !important;
    }
}

@media only screen and (max-width: 991.5px) {
    .primary-title {
        margin-bottom: 20px !important;
    }

    .package-details-page-primary-title {
        margin: 30px 0 30px 0 !important;
    }

    .enquiry-form {
        padding: 15px;
    }

    .primary-title {
        font-size: 35px;
    }

    .inner-page-content {
        padding: 40px;
    }
}

@media only screen and (max-width: 767.5px) {
    .plr-100 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .enquiry-form .form-control,
    .enquiry-form .form-select {
        padding-left: 45px;
    }

    .enquiry-form {
        padding: 15px 15px 30px 15px;
    }
}

@media only screen and (max-width: 425.5px) {
    .primary-title {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }

    .bread-crumb {
        padding: 150px 0 60px;
    }

    .bread-crumb-title {
        font-size: 35px;
        line-height: 40px;
        padding-bottom: 80px;
    }

    .safari-row-col-large-img {
        width: 100%;
        height: 300px;
    }

    .owl-destination-slider button.owl-prev {
        top: 40%;
    }

    .owl-destination-slider button.owl-next {
        top: 40%;
    }

    .inner-page-content {
        padding: 20px;
        margin-bottom: 20px;
    }

    .tab-content {
        padding-top: 30px;
        margin-bottom: 45px;
    }

    .more-destination {
        padding-top: 45px;
    }

    .more-destination-title {
        font-size: 35px;
        line-height: 40px;
        padding-bottom: 40px;
    }

    .accordion-header {
        text-align: left;
    }

    .accordion-header::after {
        right: 8px;
    }
	.wpo-breadcumb-area {
		padding: 200px 10px 120px 10px !important;
	}
	.wpo-breadcumb-wrap h2 {
    	font-size: 35px !important;
	}
	.wpo-breadcumb-area::after {
		height: 55px !important;
	}
	.package-details-page-content.inner-page-content {
		width: 100% !important;
		padding-bottom: 50px;
	}
	.about-package .col-md-12 {
		padding: 0 !important;
	}
	.about-package-primary-img img {
		height: 260px !important;
	}
	.about-package-right {
		width: 100% !important;
		padding-top: 0 !important;
	}
	.about-package-price {
		padding: 40px 10px !important;
	}
	.about-package {
		margin-bottom: 30px !important;
	}
	.about-package-other-contents {
		padding-top: 30px !important;
	}
	.itinerary-include-exclude {
		padding-top: 0 !important;
	}
	.itinerary-include-exclude-content {
		padding: 0 !important;
	}
	.itinerary-include-exclude .col-md-12 {
		padding: 0 !important;
	}
	.accordion-header {
		font-size: 15px !important;
	}
	.package-details-page-content .row {
		row-gap: 0 !important;
	}
	.package-details-page .enquiry-form {
    	padding: 30px 0;
		margin-top: 30px;
	}
	.package-details-page-form-title {
		padding-bottom: 30px;
	}
}

/*===================================Responsive End==========================*/
.wpo-breadcumb-area {
    background-image: url(https://duencyitservices.in/wordpress/infinitetravel/wp-content/uploads/2025/04/296429.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
	padding: 250px 20px;
}
.wpo-breadcumb-area::before {
	content: '';
	position: absolute;
	left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
}
.wpo-breadcumb-area::after {
	content: '';
	position: absolute;
	left: 0;
    bottom: 0;
    height: 140px;
    width: 100%;
    background-image: url(https://duencyitservices.in/wordpress/infinitetravel/wp-content/uploads/2025/04/bread-crumb-footer.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.wpo-breadcumb-wrap h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 60px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 50px;
    color: #FFFFFF;
    text-align: center;
}
.package-page-listings svg {
		margin-right: 5px !important;
	}
.contact-page-contents .elementor-icon {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
}