:root {
    /* --primary-color: #2f4670; */
    /* --primary-color: #846c38; */
    --primary-color: #68a144;
    /*--primary-color: #3d69e1;*/
    --primary-text-color: #fff;
    /*--primary-light-color: #343434;*/
    --primary-light-color: #f4f9f1;
    --primary-radius: 12px;
    --primary-light-text-color: #343434;
    /*--secondary-color: #242424;*/
    --secondary-color: #ec7b2d;
    --secondary-light-color: #fff;
    --dark-red: #8b0000;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    overflow-x: hidden;
    word-spacing: 0.2rem;
    color: var(--primary-light-text-color);
    /* width: 100vw; */
    /* overflow-x: hidden; */
    /* line-height: normal; */
    /* background-color: var(--primary-color); */
}

p {
    /* font-size: 95%; */
    line-height: 1.9;
    word-spacing: 0.2rem;
}

p:not(:last-child) {
    margin-bottom: 10px;
}

p:last-child {
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

picture {
    width: 100%;
    display: block;
}

source,
img {
    max-width: 100%;
    display: block;
}

source {
    width: 100%;
}

input,
select,
button,
textarea {
    border: none;
    outline: none;
}

input:focus,
select:focus,
button:focus {
    outline: none;
}

input,
textarea,
select {
    width: 100%;
    padding: 6px 10px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 6px;
    display: block;
    font-size: 0.875rem;
}

label {
    margin: 2px;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list {
    padding-left: 24px;
}

.list,
.list li {
    list-style: disc;
}

.list.numbers,
.list.numbers>li {
    list-style: numbers;
}

.list li {
    margin-bottom: 5px;
    line-height: 1.65;
}

.list li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.tableContainer {
    margin-bottom: 15px;
    overflow-x: auto;
}

.tableContainer table {
    margin: 0;
}

.fullWidth {
    width: 100%;
}

.btn {
    font-size: 14px;
    padding: 7px 36px;
    font-weight: bold;
    /* border-radius: 20px; */
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 1;
}

.btnPrimary {
    color: var(--primary-text-color);
    background-color: var(--primary-color);
}

.btnPrimary:hover {
    color: var(--primary-text-color);
    background-color: var(--secondary-color);
}


.btnDark {
    color: var(--primary-text-color);
    background: var(--primary-light-text-color);
}

.btnDark:hover {
    color: var(--primary-text-color);
    background: var(--primary-color);
}

.btnLight {
    color: var(--primary-text-color);
    background-color: var(--primary-light-text-color);
}

.btnLight:hover {
    color: var(--primary-text-color);
    background-color: var(--primary-color);
}

.btnWhite {
    color: var(--primary-color);
    border-color: var(--primary-text-color);
    border: 1px solid;
    background-color: var(--white);
}

.btnWhite:hover {
    color: var(--primary-text-color);
    background-color: var(--primary-color);
}

.textPrimary {
    color: var(--primary-color);
}

.textSecondary {
    color: var(--secondary-color);
}

.textBlack {
    color: black;
}

.backgroundTheme {
    background-color: white;
    color: var(--primary-color);
}

.backgroundHalf {
    background: linear-gradient(0deg, #f5f5f5 0 50%, white 50% 100%);
}

.backgroundLight {
    background-color: var(--primary-light-text-color);
    color: var(--primary-text-color);
}

.backgroundSecondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.backgroundPrimary {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

.backgroundWhite {
    background-color: #fff;
    color: var(--primary-light-text-color);
}

.backgroundImage {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 92%), rgb(255 255 255)), url(../images/hero.jpg);
    background-size: cover;
}

.backgroundImage2 {
    background-image: linear-gradient(rgb(255 255 255 / 90%), rgb(255 255 255 / 90%)), url(../images/bg-1.jpg);
    background-size: cover;
}

.backgroundImage3 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 49%), rgb(255 255 255 / 83%)), url(../images/bg-3.jpg);
    background-size: cover;
    background-position: center;
}

.backgroundImage.fixed {
    background-attachment: fixed;
    background-position: center;
}


.borderedBox {
    border: 5px solid var(--primary-color);
}

.borderedBox.radius {
    border-radius: 12px;
}

.columnBackground {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fw100 {
    font-weight: 100;
}

.fw200 {
    font-weight: 200;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

.fwBold {
    font-weight: bold;
}

.fwBolder {
    font-weight: bolder;
}


.close {
    color: inherit;
    opacity: 0.7;
    text-shadow: none;
}

.close:hover {
    color: inherit;
    opacity: 1;
}

.height-100 {
    height: 100% !important;
    object-fit: cover;
}

.imageExpandable {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    display: block;
    position: relative;
}

.imageExpandable img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
}

.imageExpandable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgb(0 0 0 / 13%);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: 0.3s;
}

.imageExpandable::after {
    content: '\f002';
    font-weight: bold;
    height: 38px;
    width: 38px;
    font-size: 18px;
    top: 50%;
    left: 50%;
    position: absolute;
    transition: 0.5s ease-in;
    font-family: 'fontAwesome';
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 3;
    opacity: 0;
    box-shadow: 0 0 19px rgba(0, 0, 0, 0.4), inset 2px 2px 5px rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    color: var(--primary-text-color);
    background-color: var(--primary-color);
}

.imageExpandable.video::after {
    content: '\f04b';
    opacity: 1;
    width: 58px;
    height: 40px;
    transition: 0.3s;
    border-radius: 12px;
    background-color: red;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 19px rgba(0, 0, 0, 0.4), inset 2px 2px 5px rgb(255 255 255 / 39%), 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.imageExpandable.video:hover::after {
    background: black;
    transform: translate(-50%, -50%) scale(1.02);
}

.imageExpandable.video img {
    transition: 0.3s;
}

.imageExpandable.video:hover img {
    transform: scale(1.07);
}

.imageExpandable::after:hover {
    background-color: black;
    box-shadow: 0 0 19px rgba(255, 255, 255, 0.2);
}

.imageExpandable:hover::after,
.imageExpandable:hover::before {
    opacity: 1;
}

.main {
    width: auto;
    background-color: #f9f9f9;
    /* padding-right: 300px; */
}

.title {
    text-transform: uppercase;
    line-height: normal;
    font-weight: 500;
    font-size: 38px;
    margin-bottom: 20px;
}

.title span.colorPrimary {
    color: var(--primary-color);
}

.title span.colorSecondary {
    color: var(--secondary-color);
}

.noListStyle,
.noListStyle li {
    list-style: none;
}

.maxWidthTextHeading {
    width: max-content;
    max-width: 100%;
    padding: 5px 7px;
    color: white;
    margin-bottom: 25px;
    font-weight: 500;
    background: var(--primary-color);
}

.text {
    margin-bottom: 25px;
}

.rightPromiseBox {
    border-radius: 7px;
    overflow: hidden;
    font-size: 12px;
    background-color: #f4f4f4;
}

.rightPromiseBox img {
    margin: auto;
    width: 50px;
    margin-bottom: 4px;
}

.promise:not(:last-child) {
    margin-bottom: 10px;
}

.mainLeft {
    width: 100%;
}

.contactInfo {
    display: flex;
}

.contactInfo a {
    color: inherit;
    font-size: 14px;
    text-decoration: none;
    margin: 4px 8px;
    display: block;
}

.socialLinks {
    display: flex;
    justify-content: flex-end;
}

.socialLinks a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    color: inherit;
    text-align: center;
    line-height: 28px;
}

.blockquote {
    font-size: 93%;
    font-style: italic;
    padding: 16px 20px;
    background: white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.09);
}

.blockquote::after,
.blockquote::before {
    font-family: 'fontAwesome';
    font-weight: bold;
    font-size: 124%;
    margin: -12px 3px;
    vertical-align: super;
    color: var(--primary-color);
    display: inline-block;
}

.blockquote::after {
    content: '\f10e';
}

.blockquote::before {
    content: '\f10d';
}

/*header {*/
/*    width: 100%;*/
/*    display: block;*/
/*    z-index: 1000;*/
/*    top: 0;*/
/*    left: 0;*/
/*    position: sticky;*/
/* padding: 5px 0 7px; */
/*    box-shadow: 0 0 5px rgba(0,0,0,0.24);*/
/*    backdrop-filter: blur(5px);*/
/*    background-color: white;*/
/*    background-image: linear-gradient(101deg, transparent 0 175px, #f5f5f5 175px 100%);*/
/*}*/
/*header .logo img {*/
/*    width: 180px;*/
/*    min-width: 86px;*/
/*}*/
/*@media (min-width: 992px){*/
/*.navbar-expand-lg .navbar-nav .nav-link {*/
/*    padding-right: 0.75rem;*/
/*    padding-left: 0.75rem;*/
/*}*/
/*}*/
/*header .nav-item*/
/*{*/
/*	list-style: none;*/
/*}*/
/*headre .nav-link,*/
/*.nav-link-Number*/
/*{*/
/*	padding: 0;*/
/*	font-weight: 600;*/
/*	font-size: 14px;*/
/*	display: block;*/
/*	transition: 0.5s;*/
/*	text-transform: capitalize;*/
/*	color: #222;*/
/*}*/
/*.nav-link-Number*/
/*{*/
/*	padding: 0 0.5rem;*/
/*}*/
/*header .nav-link:hover,*/
/*.nav-link-Number:hover*/
/*{*/
/*	text-decoration: none;*/
/*	color: var(--primary-color);*/
/*}*/
/*header .nav-link i*/
/*{*/
/*	font-size: 10px;*/
/*}*/
/*header .navbar-toggler {*/
/*    color: var(--primary-color);*/
/*}*/


/* Head Start */
.header {
    top: 0;
    color: black;
    position: sticky;
    z-index: 101;
    width: auto;
    font-size: 14px;
    background-color: #fff;
    color: #565656;
    transition: 0.3s;
    background-image: url('../images/h-bg-1.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.24);
}

.header div[class*="col"] {
    position: initial;
}

.header .row.align-items-stretch {
    display: flex;
    align-items: stretch;
}

.header.sticky {
    color: black;
    background-color: white;
}

.logoContainer {
    padding: 11px 0;
    width: 2000px;
    max-width: 100%;
}

.logoContainer img {
    width: 100%;
    display: block;
}

.navigationLeft {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
}

.linksContainer {
    height: 100%;
    width: 100%;
    transition: 0.3s;
}

.navigationLinks {
    list-style: none;
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    /* line-height: 1; */
    justify-content: flex-end;
}

.navigationLinkContainer {
    /* flex: 1; */
    padding: 5px 0px;
    display: flex;
    align-items: baseline;
}

.navigationLinkContainer a {
    /*color: inherit;*/
    /*font-weight: 600;*/
    /*text-decoration: none;*/
    /*transition: 0.5s;*/
    font-size: inherit;
    position: relative;
}

.navigationLinkContainer>a {
    /* text-transform: uppercase; */
    color: inherit;
    /* font-family: "Open Sans", Helvetica, sans-serif; */
    padding: 7px 10px;
    /*margin-top: 12px;*/
    font-weight: bold;
}

/* .navigationLinkContainer > a:not(.noLineBelow)::before
{
    content: '';
    position: absolute;
    bottom: 7px;
    left: 10px;
    height: 2px;
    width: 0;
    background-color: #206c6d;
    transition: width 0.33s linear;
    transform-origin: right;
}
.navigationLinkContainer:hover > a::before
{
    width: calc(100% - 20px);
    
} */
.navigationMenuOpen {
    display: none;
}

.haveDropDown,
.haveSubDropDown {
    position: relative;
}



.dropDown {
    font-weight: 400;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    color: black;
    background-color: white;
    transform: translateY(20px);
    /* border-radius: 4px; */
    /* padding: 5px 0; */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.headerAdditionalList {
    display: flex;
    width: max-content;
    max-width: 100%;
    gap: 4px;
    color: white;
    border-radius: 32px 0 0 32px;
    padding: 4px 4px;
    position: relative;
}

.headerAdditionalList::before {
    content: '';
    height: 100%;
    width: 15px;
    top: 0;
    left: 100%;
    position: absolute;
    /*background-color: var(--primary-color);*/
}

.headerAdditionalLink {
    padding: 5px 14px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 85%;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
    background: var(--primary-color);
    box-shadow: inset 1px 1px 6px #ffffff91, inset -1px -1px 5px rgba(0, 0, 0, 0.4);
}

.headerAdditionalLink i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background: white;
    border-radius: 20px;
}

.headerAdditionalLink:hover {
    background: black;
}

@media only screen and (max-width: 768px) {
    .headerAdditionalLinks {
        display: none;
    }
}

@media screen and (min-width: 991px) {

    .haveSubDropDown .dropDown {
        top: 0;
        left: 100%;
        transform: translateX(20px);
    }

    .haveSubDropDown>a::after,
    .haveDropDown>a::after {
        content: '\f107';
        margin-left: 2px;
        transition: 0.3s;
        font-family: 'fontAwesome';
        font-weight: bold;
        font-size: 80%;
        width: 12px;
        aspect-ratio: 1;
        line-height: 1;
        color: var(--secondary-color);
        display: inline-block;
        transform-origin: center;
        text-align: center;
    }

    .haveSubDropDown>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .haveSubDropDown:hover>a::after {
        color: white;
    }

    .haveSubDropDown>a::after {
        content: '\f105';
    }

    .navigationLinkContainer.haveDropDown:hover>a::after {
        transform: rotate(180deg);
    }

}

li.dropDownLinkBox:not(:last-child) {
    border-bottom: 1px solid #f8f8f8;
}

.haveSubDropDown .dropDown.left {
    right: 100%;
    left: unset;
    transform: translateX(-20px);
}

.haveDropDown:hover>.dropDown,
.haveSubDropDown:hover>.dropDown {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
}

.dropDown a {
    font: inherit;
    color: inherit;
    transition: 0.3s;
}

.haveSubDropDown:hover>a,
.dropDown a:hover {
    color: white;
    background-color: var(--primary-color);
}

.megaMenuRow {
    border-top: 2px solid #206c6d;
    background-color: white;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16), 2px 2px 7px rgba(0, 0, 0, 0.2);
}

/* .dropDownContainer
{
    margin-bottom: 15px;
}
.dropDownContainer .dropDownLinkBox
{
    border-bottom: 1px solid #dfdfdf;
} */
.dropDownContainer .dropDownLinkBox.hasSubMegaMenu>a {
    font-weight: bold;
}


.dropDownContainer .dropDownLinkBox:last-child {
    border: none;
}

.dropDownLinkBox a {
    display: flex;
    font-size: 90%;
    padding: 6px 10px;
}

.mobileNav {
    display: none;
}

.contactInfo {
    width: 100%;
    position: relative;
}

.mobileNav .contactInfo a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
}

.mobileNav .contactInfo a i {
    margin-right: 5px;
}

.mobileNav .social-icons {
    padding: 7px 12px;
    display: flex !important;
}

.goBackBtn {
    display: none;
    background-color: #efefef;
}

.navigationProfile {
    display: none;
}

.navigationProfile img {
    width: 70px;
    height: 70px;
    border-radius: 45px;
}

.profileContainer {
    display: flex;
    align-items: center;
    padding: 20px 12px;
    background-color: #efefef;
}

.profileDetails {
    width: calc(100% - 70px);
    padding-left: 12px;
}

.profileName {
    width: 100%;
    font-size: 17px;
    line-height: normal;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixedNavigationPhoneText {
    display: none;
}

.blog-wrapper .row {
    display: flex;
    flex-wrap: wrap;
}

a.viewMoreBtn {
    justify-content: flex-end;
    text-align: right;
    color: #206c6d;
}


/* 

    Form Style

*/
.searchBarForm {
    width: 100%;
    position: relative;
    padding: 5px 0;
}

.searchBarForm .form-control {
    border-radius: 40px;
    outline: none;
}

.searchBarForm .form-control:focus {
    outline: none;
    box-shadow: none;
}

.formContainerDiv {
    display: flex;
    align-items: stretch;
    position: relative;
}

.searchBarForm .form-control[type="text"] {
    padding-right: 60px;
}

.searchBarForm .form-control[type="text"]:focus {
    border: 1px solid var(--primary-color);
}

.searchBarForm button.form-control[type="submit"] {
    width: 60px;
    top: 0;
    right: 0;
    text-align: center;
    position: absolute;
}

@media screen and (max-width: 991px) {
    .header {
        color: black;
    }

    .navigationMenuOpen {
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        font-size: 17px;
        justify-content: center;
        color: var(--primary-color);
        cursor: pointer;
        border-radius: 3px;
        margin: 12px 0;
        background-color: white;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

    .linksContainer {
        height: 100vh;
        top: 0;
        left: 0;
        width: 100%;
        position: fixed;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.16);
    }

    .linksContainer.active {
        pointer-events: initial;
        opacity: 1;
    }

    .linksContainer div[class*="col"] {
        padding: 0;
    }

    .navigationLinkContainer a {
        transition: 0.3s;
        position: relative;
    }

    .navigationLinkContainer:hover>a {
        color: white;
        background-color: var(--primary-color);
    }

    .navigationLinkContainer>a:active {
        background: var(--secondary-color);
    }

    .navigationLinks {
        /* padding-top: 30px; */
        width: 80%;
        font-size: 12px;
        max-width: 280px;
        position: relative;
        justify-content: flex-start;
        flex-direction: column;
        background-color: white;
        transition: 0.5s;
        height: 100%;
        /* padding-top: 20px; */
        overflow-y: auto;
        transform: translateX(-100%);
    }

    .linksContainer.active .navigationLinks {
        transform: translateX(0);
        display: block;
    }

    .navigationProfile {
        display: block;
    }

    .mobileNav {
        display: block;
    }

    .dropDownContainer {
        margin-bottom: 0px;
    }

    .goBackBtn {
        height: 39px;
        width: 100%;
        top: 0;
        left: 0;
        transition: 0.3s;
        align-items: center;
        cursor: pointer;
        z-index: 1;
        background-color: #efefef;
        display: none;
        position: fixed;
        font-size: 16px;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: hidden;
    }

    .hasSubMegaMenu .goBackBtn {
        z-index: 1;
    }

    .goBackBtn i {
        font-size: 13px;
        margin: 0 7px 0 10px;
    }

    .mobileNav .closeBtn {
        height: 39px;
        width: 32px;
        top: 0;
        right: 0;
        display: flex;
        transition: 0.3s;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        z-index: 100;
        background-color: transparent;
    }

    .fixedNavigationPhoneText {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        max-width: 280px;
        z-index: 1;
        display: block;
        line-height: 1.5;
        padding: 7px 12px;
        font-weight: 500;
        background-color: white;
    }

    .fixedPhoneLink {
        font-size: 1.3em;
        font-weight: bold;
    }

    .haveDropDown.active .goBackBtn,
    .haveSubDropDown.active .goBackBtn {
        display: flex;
    }

    .goBackBtn i {
        pointer-events: none;
    }

    .mobileNav .closeBtn:hover {
        color: white;
        background-color: #f00;
    }

    .navigationLinkContainer {
        padding: 0;
        position: relative;
        flex: initial;
    }

    .navigationLinkContainer a {
        padding: 9px 16px;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    navigationLinkContainer .navigationLinkContainer:hover>a {
        color: white;
        background-color: var(--primary-color);
    }

    .navigationLinkContainer a.viewMoreBtn {
        margin: 7px auto;
        text-align: center;
        width: calc(100% - 24px);
        color: #206c6d;
        padding: 7px 12px;
        border-radius: 6px;
        transition: 0.33s linear;
        border: 1px solid #206c6d;
    }

    .navigationLinkContainer a.viewMoreBtn:hover {
        background-color: #206c6d;
        color: white;
    }

    .navigationLinkContainer .haveDropDown a

    /* .navigationLinkContainer .haveSubDropDown a */
        {
        padding: 7px 35px 7px 12px;
        display: block;
        width: 100%;
    }

    .navigationLinkContainer>a::before {
        display: none;
    }

    .dropDownLinkBox {
        position: relative;
    }

    .dropDownLinkBox:hover>a {
        color: white;
        background-color: var(--primary-color);
    }

    .dropDownLinkBox.haveSubDropDown::before,
    .navigationLinkContainer.haveDropDown::before {
        content: "\f105";
        right: 0;
        padding-right: 15px;
        height: 100%;
        width: 50px;
        display: flex;
        position: absolute;
        font-family: 'fontAwesome';
        justify-content: flex-end;
        align-items: center;
        z-index: 1;
        font-size: 14px;
        color: var(--primary-color);
        font-weight: bold;
        cursor: pointer;
    }

    .dropDownLinkBox.haveSubDropDown:hover::before,
    .navigationLinkContainer.haveDropDown:hover::before {
        color: white;
    }

    .dropDown {
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        color: #000;
        font-weight: 400;
        position: fixed;
        transition: 0.5s;
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        padding-top: 39px;
        transform: translateY(0) translateX(-107%);
    }

    .dropDown .container {
        width: 100%;
    }

    .haveDropDown:hover>.dropDown,
    .haveSubDropDown:hover>.dropDown {
        transform: translateY(0) translateX(-107%);
    }

    .subMegaMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 2;
        transition: 0.5s;
        padding-top: 50px;
        transform: translateY(0) translateX(-107%);
    }

    .hasSubMegaMenu.active .subMegaMenu {
        transform: translateY(0) translateX(0%);
    }

    .subMegaMenu .dropDownLinkBox {
        border: none;
    }

    .haveDropDown.active>.dropDown,
    .haveSubDropDown.active>.dropDown {
        transform: translateX(0);
    }

    .dropDown>div:first-child {
        height: 100vh;
        overflow-y: auto;
    }

    .dropDown>div::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #fff;
    }

    .dropDown>div::-webkit-scrollbar-thumb {
        background-color: #dfdfdf;
    }

    .megaMenuRow {
        padding: 0;
        padding-top: 50px;
        border: none;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        align-content: flex-start;
    }

    .dropDownContainer .dropDownLinkBox.hasSubMegaMenu>a {
        font-weight: normal;
    }

    .modalBtn {
        display: none;
    }
}


/*Header End*/

/* Breadcrumb Start */

.breadCrumbContainer {
    background: linear-gradient(var(--primary-color) 0 50%, white 50% 100%);
    padding: 20px 0;
}

.breadCrumb {
    background-color: white;
    background-image: linear-gradient(0deg, white, #ffffffbc), url(../images/bg-1.jpg);
    background-size: cover;
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.breadCrumbTitleBox {
    text-align: center;
    font-size: 140%;
    /* margin-bottom: 12px; */
    font-weight: 600;
}

.breadCrumbList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
}

.breadCrumbItem {
    font-size: 85%;
    font-weight: 500;
    opacity: 0.7;
}

.breadCrumbItem:hover {
    /*opacity: 1;*/
}

.breadCrumbItem .breadCrumbLink {
    transition: 0.3s;
}

.breadCrumbItem:hover .breadCrumbLink {
    color: var(--primary-color);
}

.breadCrumbList .breadCrumbItem:not(:last-child)::after {
    content: '|';
    margin-left: 4px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Breadcrumb End */


.headerOffer {
    display: block;
    padding: 2px 0 3px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.homeBannerImage {
    position: relative;
}

.bannerForm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.bannerForm form {
    padding: 30px 15px;
    width: 450px;
    max-width: 75%;
    color: black;
    margin: auto;
    background: linear-gradient(45deg, #ffffffed, #ffffff);
    border-radius: 9px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
}

.bannerForm form label {
    font-size: 13px;
    font-weight: 600;
}

.bannerForm .heading {
    color: var(--primary-text-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.bannerForm input[type="submit"] {
    margin: 7px 0 0;
}

.bannerImageContainer {
    position: relative;
}

.bannerImage {
    aspect-ratio: 8/3;
    width: 100%;
    position: relative;
}

.bannerImageSlide:first-child .bannerImage img {
    display: block;
}

.bannerImage img {
    display: none;
}

.slick-slide img {
    display: block;
}

.bannerImage::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    /* background-color: rgba(0, 0, 0, 0.8); */
    opacity: 0;
    background-color: var(--primary-color);
}

.bannerImage img,
.bannerImage picture {
    height: 100%;
    width: 100%;
    /*min-height: 600px;*/
    object-fit: cover;
}

.bannerContent {
    position: absolute;
    top: 50%;
    left: 20px;
    color: white;
    width: calc(100% - 400px);
    transform: translateY(-50%);
}

.bannerTitle {
    font-size: 35px;
    font-weight: 700;
    /* text-shadow: 1px 1px 5px rgba(255,255,255,0.4); */
    text-align: center;
    margin: auto;
    margin-bottom: 12px;
    width: max-content;
    max-width: 100%;
    background: linear-gradient(45deg, red, #ffad00, red, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 4px 6px black);
}

.bannerContent img {
    width: 200px;
    margin: auto;
}

.iconsContainer {
    transform: translateY(-45px);
}

.iconContainer {
    padding: 7px 12px;
    display: flex;
    border-radius: 0;
    align-items: center;
    background-color: white;
    margin: 6px 0;
    height: 100%;
    box-shadow: 4px 4px var(--primary-color), 0 0 5px rgba(0, 0, 0, 0.14);
}

.iconBox {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    /* padding-bottom: 1px; */
    border-radius: 40px;
    color: var(--primary-text-color);
    background-color: var(--primary-color);
}

.iconContent {
    width: calc(100% - 45px);
    padding: 5px 12px;
}

.iconTitle {
    font-size: 14px;
    font-weight: 700;
}

.iconData {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}



/* BannerSticky Buttons */

/* .bannerLeft,
.bannerRight {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
}

.bannerLeft a,
.bannerRight a{
    transition: 0.3s;
}

.bannerLeft {
    left: 0;
}
.bannerRight {
    right: 0;
}

a.stickyBottomLeft {
    position: absolute;
    bottom: 0;
    left: 0;
    width: max-content;
    text-align: center;
    padding: 4px 12px;
    color: white;
    transform-origin: top;
    background: var(--primary-color);
    transform: rotate(90deg) translate(-26%, 107%); 
    border-radius: 6px;
}

a.stickyBottomLeft:hover {
    background-color: var(--secondary-color);
} */


.bannerLinks {
    max-width: calc(100% - 32px);
    width: max-content;
    bottom: 12px;
    bottom: 0;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
    gap: 7px;
    margin: 0 auto;
    padding: 10px;
    flex-wrap: wrap;
    border-radius: 25px;
    border-radius: 25px 25px 0 0;
    background-color: white;
    border: 2px dashed var(--secondary-color);
    border: none;
}

.bannerLinks a {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

.bannerLinks a {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    padding: 4px 22px;
    border-radius: 30px;
    box-shadow:
        0 0 5px rgba(0, 0, 0, 0.2),
        /* 1px 1px 7px rgba(0,0,0,0.1), */
        inset 2px 2px 5px rgba(255, 255, 255, 0.3),
        inset -1px -1px 7px rgba(0, 0, 0, 0.13);
    font-weight: 600;
}

.bannerLinks a:nth-child(even) {
    /* background: var(--secondary-color); */
}

.bannerLinks a:hover {
    background: black;
}

.bannerLinks a:active {
    background: var(--secondary-color);
}

@media only screen and (max-width: 575px) {}

/* BannerSticky Buttons End*/


/* About Section */

.customIconCardContainer {
    padding: 12px 0;
}

.customIconCardBox {
    height: 100%;
    padding-bottom: 12px;
}

.customIconCard {
    height: 100%;
    background: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.customIconCard.customIconCardBordered {
    border: 1px solid var(--primary-color);
}

.customIconCardInline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customIconContentList {
    text-align: left;
}

@media only screen and (max-width: 575px) {
    .customIconCardInline {
        flex-direction: column;
    }

    .customIconContentList {
        width: 100%;
    }
}

.customIconImageBox {
    width: 90px;
    display: flex;
    align-items: flex-end;
    padding: 8px 8px 0;
    /*border-radius: 50%;*/
    overflow: hidden;
    position: relative;
    max-width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 12px;
    /* border: 2px solid var(--primary-color); */
}

.customIconImageBox::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.04;
    border-radius: 50%;
    transform: translateY(35%);
    background: var(--primary-color);
}

.customIconImageBox img {
    z-index: 1;
    transition: 0.3s;
    position: relative;
    transform-origin: bottom;
}

.customIconCard:hover img {
    transform: scale(1.2);
}

.customIconTitle {
    font-size: 110%;
    font-weight: 600;
    margin-bottom: 7px;
}

.customIconContentBox {
    max-height: 87px;
    overflow-y: auto;
}

.customIconContent {
    font-size: 80%;
}

/* About End */


/* Curriculum Start */

.curriculumSlider {
    padding: 14px 45px;
}

.curriculumSlider .slick-track {
    /*padding: 12px 0;*/
}

.curriculumSlide {
    padding: 12px 8px;
}

.curriculumBox {
    height: 100%;
    padding: 16px 0;
}

.curriculumCard {
    background: white;
    border-radius: 12px;
    padding: 12px;
    height: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.curriculumInfo {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    gap: 12px;
}

.curriculumImageBox {
    width: 55px;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 7px;
    border-radius: 50%;
}

.curriculumImageBox::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    border-radius: 50%;
    transform: translateY(35%);
    background: var(--primary-color);
}

.curriculumTitle {
    font-weight: 600;
    font-size: 120%;
}

.curriculumImage {
    height: 100%;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    transform-origin: bottom;
}

.curriculumBox:hover .curriculumImage {
    transform: scale(1.1);
}

.curriculumBox a {
    color: var(--secondary-color);
}

.curriculumTitleBox {
    width: calc(100% - 67px);
}

.curriculumContent {
    font-size: 75%;
    aspect-ratio: 6/2;
    overflow-y: auto;
}

@media only screen and (max-width: 575px) {
    .curriculumContent {
        font-size: 75%;
        aspect-ratio: unset;
        overflow-y: auto;
        min-height: 180px;
    }
}


/* Curriculum End */


/* Toppers Sections Start */

.topperSectionTitleBox {
    text-align: center;
    position: relative;
}

.topperSectionTitle {
    font-size: 200%;
    font-weight: 600;
}

.topperSectionBox {
    padding-bottom: 16px;
    height: 100%;
}

.topperSectionSlider {
    padding: 0px 45px;
}

.topperSectionSlide {
    padding: 12px 8px;
}

.topperSectionCard {
    padding: 10px;
    height: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.topperSectionSlider .topperSectionCard::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 28px;
    top: 0;
    left: 0;
    transform: rotate(-45deg) translate(-18px, 1px);
    background-image: url('../images/stars.png');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.topperSectionImageBox {
    aspect-ratio: 0.94;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    margin-bottom: 8px;
    position: relative;
}

.topperSectionImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #dbdbdb;
    border-radius: inherit;
}

.topperSectionName {
    font-size: 110%;
    font-weight: 600;
}

.topperSectionMarks {
    font-size: 90%;
}

.topperSliderRTL .topperSectionMarks {
    direction: ltr;
}

@media only screen and (max-width: 768px) {
    .topperSectionTitleBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}



/* Toppers Sections End */

/* News Section Start */
.newsSlider.slick-slider {
    padding: 12px 45px;
}

.newsSlideBox {
    padding-bottom: 12px;
    height: 100%;
}

.newsSlideCard {
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    position: relative;
}

.newsTitle {
    text-align: center;
    font-weight: 600;
    font-size: 120%;
}

.newsContent {
    min-height: 80px;
    margin-bottom: 4px;
}

.newsDateBox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsDateIcon {
    width: 26px;
}

.newsDate {
    font-size: 85%;
    font-weight: 600;
    opacity: 0.75;
}

/* News Section End */


/* Review Section Start */


.reviewSlider {
    width: 100%;
    margin: 0;
    font-size: 12px;
    padding: 20px 30px;
    position: relative;
}

.reviewSlider::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.reviewSlider::-webkit-scrollbar-track {
    background: white;
}

.reviewSlider::-webkit-scrollbar-thumb {
    background: #dfdfdf;
}

.reviewSliderCard {
    padding: 7px;
}

.reviewSlideBox {
    height: 100%;
    position: relative;
    border-radius: 12px;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.14);
}

.reviewSlider .navPrev {
    left: 0;
}

.reviewSlider .navNext {
    right: 0;
}

.reviewSliderProfile {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviewImage {
    width: 38px;
}

.reviewProfileDetailBox {
    display: flex;
    gap: 12px;
    width: calc(100% - 46px);
    justify-content: space-between;
}

.reviewProfileName {
    font-size: 140%;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}

.reviewProfileDays {
    margin-bottom: 4px;
    opacity: 0.8;
}

.reviewStar {
    width: 50px;
}

.reviewGoogleIcon {
    width: 24px;
}

.reviewSliderContentBox {
    position: relative;
    margin-top: 7px;
    height: 124px;
    overflow-y: auto;
}

/* Review Section End */





/* Counter Start */

.counterCardBox {
    padding: 20px 0;
}

.counterCard {
    text-align: center;
    position: relative;
    background: white;
    color: var(--primary-light-text-color);
    padding: 8px 7px 16px;
    border-radius: 12px;
    margin-top: 20px;
}

.counterCardImageBox {
    width: 80px;
    padding: 16px;
    margin: auto;
    background: white;
    margin-bottom: 12px;
    border-radius: 50%;
    aspect-ratio: 1;
    margin-top: -50px;
    border: 4px solid var(--primary-color);
    box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.1), 2px 2px 9px rgba(0, 0, 0, 0.1);
}

.counterCardImage {
    transition: 0.3s;
    transform-origin: bottom;
    filter: drop-shadow(0px 0px rgba(0, 0, 0, 0.15));
}

.counterCard:hover .counterCardImage {
    transform: scale(1.1);
}

.counterCardCount {
    font-size: 140%;
    font-weight: 500;
}

/* Counter End */


/* Events Start */

.eventBox {
    padding-bottom: 12px;
}

.eventCard {
    background: white;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 0 5px #f2f2f2;
}

.eventImageBox {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 5px #ededed;
    margin-bottom: 12px;
}

.eventImage {
    height: 100%;
    width: 100%;
    transition: 0.3s;
    object-fit: cover;
}

.eventImageBox:hover .eventImage {
    transform: scale(1.2);
}

.eventDate {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px 4px;
    background: white;
    border-radius: 14px 14px 0 0;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
}

.eventTitle {
    font-weight: 600;
    font-size: 17px;
    margin: 16px 0 7px;
}

.eventDetail {
    opacity: 0.75;
    min-height: 84px;
}

@media only screen and (min-width: 991px) {
    .eventsSlider {
        padding: 12px 45px;
    }
}

@media only screen and (max-width: 575px) {}

/* Events End */

.highlightContainer {
    /*border-radius: 7px;*/
    /*box-shadow: 3px 3px 5px rgb(0 0 0 / 12%);*/
}

.landMarkCardContainer li,
.clubBox li,
.highlightBox li {
    border-bottom: 1px solid #0000000f;
    padding: 7px 0;
    font-size: 88%;
}

.highlightBox li {
    border-color: var(--primary-color);
    border: none;
    padding: 4px;
}

.landMarkCardContainer li:last-child,
.clubBox li:last-child,
.highlightBox li:last-child {
    border: none;
}

.landMarkCardContainer ul {
    margin-left: 16px;
}

.landMarkCardContainer ul,
.landMarkCardContainer li {
    font-size: 89%;
}

.highlightSectionImage img {
    box-shadow: 7px 7px var(--primary-color);
}

.customHeading {
    font-size: calc((2 - 1) * 1.2vw + 1rem);
}

.slickNav {
    top: 50%;
    width: 45px;
    height: 45px;
    z-index: 3;
    opacity: 0.9;
    font-size: 1rem;
    display: flex;
    cursor: pointer;
    position: absolute;
    border-radius: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transform: translateY(-50%);
    color: var(--secondary-light-color);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.5), inset -2px -2px 13px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 0, 0, 0.14);
    background-color: var(--primary-light-text-color);
}

.slickNav:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.slickNav i {
    user-select: none;
}

.navNext {
    right: 12px;
}

.navPrev {
    left: 12px;
}


.paddedContainer {
    position: relative;
}

.boxedSection {
    position: relative;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.05);*/
}

/* .boxedSection .row
{
	margin: 0; 
}
*/


/* 
FAQ Sections
*/
.faqCard {
    position: relative;
    border-top: 1px solid var(--primary-color);
}

.faqCard:last-child {
    border-bottom: 1px solid;
}

.faqCard.open {
    margin-bottom: 12px;
}

.faqQuestion {
    padding: 12px 7px;
    position: relative;
}

.faqQuestion::before,
.faqQuestion::after {
    content: '';
    width: 15px;
    height: 0.6px;
    top: 50%;
    right: 25px;
    transition: 0.3s;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    position: absolute;
}

.faqQuestion::after {
    transform: translateY(-50%) rotate(90deg);
}

.faqCard.open .faqQuestion::after {
    transform: translateY(-50%) rotate(0deg);
}

.faqAnswer {
    display: none;
    padding: 7px 12px 7px 25px;
}

.faqCard.open .faqAnswer {
    display: block;
}

.faqLight .faqCard {
    border-color: var(--primary-text-color);
}

.faqLight .faqQuestion::before,
.faqLight .faqQuestion::after {
    background-color: var(--primary-text-color);
}

.overviewImage {
    height: 100%;
    margin: 0 0 20px;
    border-radius: 4px;
    object-fit: cover;
}



/* Gallery Start */

.galleryImages .slick-track {
    padding: 62px 0;
}

.galleryBox {
    padding-bottom: 34px;
}

.galleryCard {
    padding: 12px 12px 0;
    border-radius: 12px;
    background: white;
    transition: 0.3s;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
}

.slick-current .galleryCard {
    z-index: 2;
    transform: scale(1.25);
    filter: drop-shadow(0 0 13px rgba(0, 0, 0, 0.1));
}


.galleryCard:hover {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.galleryImageCard {
    aspect-ratio: 7/6.2;
    margin-bottom: 7px;
}

.galleryTitle {
    display: block;
    font-weight: 500;
    font-size: 120%;
    width: 100%;
}

.galleryBtnBox {
    position: relative;
}

.galleryBtnBox {
    width: max-content;
    display: block;
    margin: -8px auto 0;
    transform: translateY(50%);
    position: relative;
    border-radius: 70px;
}

.galleryBtn {
    border-radius: inherit;
    padding: 6px 20px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    color: white;
    font-weight: 500;
    background: var(--primary-color);
}

.galleryBtn:hover {
    color: white;
    background: var(--secondary-color);
}

.galleryBtnBox::before {
    content: '';
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    z-index: 1;
    background: white;
    position: absolute;
    border-radius: inherit;
}

.galleryData {
    font-size: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px 12px;
    flex-wrap: wrap;
    font-weight: 500;
}

.galleryDate,
.galleryPhotoCount {
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery End */



.leadForm {
    width: 100%;
    position: relative;
}

.leadForm .para {
    padding-top: 4px;
    font-size: 80%;
}

.ourPromise {
    text-align: center;
    margin-top: 16px;
    justify-content: center;
    border-top: 1px solid #dfdfdf;
}

.ourPromise .heading {
    margin: 10px 0;
    text-transform: uppercase;
}

.promiseContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.promiseContainer img {
    width: 50px;
    margin: 0 auto 5px;
}

.promiseContainer .promise {
    padding: 10px;
    font-size: 12px;
    margin: 0;
}

.promiseContainer .promise p {
    margin-bottom: 5px;
}

.adsPopup a {
    font-size: 20px;
    color: #000;
}

.adsPopup a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.sl-wrapper .sl-close {
    color: #dfdfdf;
    outline: none;
}

.sl-wrapper .sl-navigation button {
    color: #dfdfdf;
    outline: none;
}

.sl-overlay {
    background-color: #000000;
}

.sl-wrapper .sl-counter {
    color: white;
}

iframe {
    width: 100%;
    display: block;
    max-width: 100%;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.14);
}

.videoWrapper iframe {
    width: 100%;
    min-height: 300px;
}

.mapSection iframe {
    width: 100%;
    min-height: 300px;
}

.contactForm input[type="submit"] {
    margin: 0;
}

.contactForm {
    padding: 10px 0;
}

.contactFormInput {
    width: 100%;
}

.contactFormInput input,
.contactFormInput select,
.contactFormInput textarea {
    padding: 7px 10px;
    width: 100%;
    display: block;
    border-radius: 3px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
}


/* Pop Up */

button.close,
.close {
    text-shadow: none;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
    float: unset;
    height: 35px;
    width: 35px;
    background: red;
    display: flex;
    opacity: 1;
    color: white;
    transition: 0.4s;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--primary-radius) 0 100%;
    z-index: 100;
}

.close i {
    opacity: 0;
    transition: inherit;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    border-radius: 0 var(--primary-radius) 0 var(--primary-radius);
    opacity: 1;
    background: #000;
}

.close:not(:disabled):not(.disabled):focus i,
.close:not(:disabled):not(.disabled):hover i {
    opacity: 1;
    color: white;
}

.popUpContainer {
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    overflow-y: auto;
    z-index: 102;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    /* display: none; */
    background-color: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
}

.popUpContainer.open {
    /* display: block; */
    opacity: 1;
    pointer-events: initial;
}

.popUpMain {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    padding: 30px 12px;
    align-items: center;
    justify-content: center;
}

.popUpContent {
    max-width: 100%;
}

.popUpBody {
    width: auto;
    position: relative;
    max-width: 650px;
}

.popUpSlider {
    width: 100%;
}

.popUpSlideItem {
    /* aspect-ratio: 1; */
    width: 100%;
    display: block;
    border-radius: var(--primary-radius);
    overflow: hidden;
    background-color: #fff;
}

.popUpTitle {
    text-align: center;
    min-height: 35px;
    font-size: 20px;
    font-weight: 600;
    background: white;
    padding: 7px 35px 7px 15px;
}

.popUpSlideImgBox {
    padding: 0 12px 12px;
}

.popUpBody .popUpSlideImg {
    border-radius: var(--primary-radius);
}

/* Pop Up End */



/* Footer Start */


footer.footerConatiner {
    background-color: white;
    padding: 40px 0 60px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(rgba(255, 255, 255, 9), rgba(255, 255, 255, 0.9)), url('../images/bg-f-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    background-position: bottom left;
    /* background: linear-gradient(180deg, var(--primary-color) 0 20%, white 20% 100%); */
}

.footer a {
    transition: 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer a:active {
    color: var(--secondary-color);
}

.footerLogoBox {
    margin-bottom: 12px;
}

.footerInfoData {
    margin-top: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footerInfoData i {
    color: var(--primary-color);
    margin-right: 7px;
}

.footerInfoData a {}

.footerLinksTitle {
    font-weight: 600;
    font-size: 120%;
    margin-bottom: 12px;
}

.footerLinkItem {
    margin-bottom: 4px;
}

.footerLinkItem::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 65%;
    vertical-align: middle;
    margin-left: 6px;
    margin-right: 4px;
    color: var(--primary-color);
}

.footerLinksTitle:first-letter {
    color: var(--primary-color);
}

.footerPara {
    font-size: 80%;
    text-align: center;
}

.copyRight {
    font-size: 10px;
    text-align: center;
}



.switchWebsiteContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 7px;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.switchWebsiteBox {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px;
}

.switchWebsiteImg {
    width: 45px;
    padding: 7px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

.switchWebsiteContainer:hover .switchWebsiteImg {
    border-color: var(--secondary-color);
}

.switchWebsiteText {
    padding: 0 7px 0 0;
    position: relative;
    font-weight: 600;
    color: white;
}

.switchWebsiteText::before {
    content: "";
    position: absolute;
    height: 100%;
    width: calc(100% + 25px);
    background: var(--primary-color);
    z-index: -1;
    right: -7px;
    top: 0;
    transition: 0.3s;
    border-radius: 0 100px 100px 0;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.switchWebsiteContainer:hover .switchWebsiteText::before {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 991px) {
    .switchWebsiteContainer {
        display: none;
    }
}

/* Footer End */




/* Inner Page Start */

.innerPageContainer {
    padding-bottom: 32px;
    background: white;
    min-height: calc(100vh - 540px);
}

.innerPageContainer p a {
    color: var(--secondary-color);
}

.calendar {
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 0 20px #f9f9f9, 0 0 5px rgba(0, 0, 0, 0.13);
}

.pageTopFilterContainer {
    width: 100%;
    padding: 7px 14px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.pageTopFilterContainer::before {
    content: '';
    background: radial-gradient(at bottom right, var(--primary-color) 0 35%, transparent 38% 100%);
    background: radial-gradient(at bottom right, var(--primary-color) 0 35%, #66a04b 38% 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.1;
    opacity: unset;
    top: 0;
    left: 0;
    border-radius: inherit;
}

.pageTopFilterText {
    color: #fff;
    font-weight: 600;
}

.pageTopFilter {
    padding: 6px 0;
}

.pageTopFilterText span {
    font-size: 125%;
    color: #ffffff;
    font-weight: 500;
    vertical-align: text-top;
    line-height: 1;
}

.contactUsMap {
    transition: 0.5s;
    box-shadow: none;
    border-radius: 0;
    filter: grayscale(0.4);
}

.contactUsMap:hover {
    filter: grayscale(0);
}


/* Inner Page End */





.preloader {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: #fff;
}

.preloader::before {
    content: "";
    height: 30px;
    width: 30px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 50%;
    animation: pulse 1s ease infinite;
    background-color: var(--primary-color);
}

.preloader::after {
    content: "Loading";
    color: var(--primary-color);
}

.thankYouBox {
    padding: 20px;
    display: flex;
    background-position: center;
    background-size: cover;
    background-image: url("../images/hero.jpg");
    min-height: calc(100vh - 102px);
    align-items: center;
    justify-content: center;
}

.thankYouContent {
    width: 100%;
    max-width: 650px;
    background-color: #ffffffe6;
    padding: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}

.thankYouText {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}

.callIcon,
.whatsappIcon {
    height: 65px;
    width: 65px;
    bottom: 25px;
    right: 25px;
    z-index: 100;
    position: fixed;
    background-color: white;
    border-radius: 100px;
    cursor: pointer;
}

.callIcon {
    /* bottom: 106px; */
}

.callIcon img,
.whatsappIcon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    cursor: pointer;
}


.enquiryBtn {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 101;
    border-radius: 0;
    transform: rotate(-90deg) translate(50%, -50%);
    transform-origin: right;
}


.mobileFixedFooter {
    display: none;
}





.banbg {
    background-color: rgb(255 255 255 / 54%);
    padding: 20px 20px 25px 20px;
    margin-top: 0%;
    margin-left: 10%;
    width: 83%;
    color: var(--primary-light-text-color);
    border-radius: 12px;
    backdrop-filter: blur(7px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.txt4 {

    font-size: 13px;
    line-height: 1.6;
    margin-top: 25px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}

.btnWhite {
    background: #222;
    border: 0;
    color: #fff;
}

.copyRight {
    font-size: 13px;
    text-align: center;
    padding-bottom: 8px;
}

.bantxt1 {

    font-size: 13px;
    color: #fff;
    text-align: left;
    letter-spacing: 2px;
}

.bantxt3 {
    margin: 8px 0;
    font-size: 20px;
    text-align: left;
    letter-spacing: 1px;
}

.bantxt4 {

    font-size: 16px;
    margin-top: -14px;
    color: #b18f27 !important;
    text-align: left;
    letter-spacing: 1px;
}

.bantxt5 {

    margin-top: 0px;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    letter-spacing: 1px;
}

.bantxt5 span {
    color: #b18f27 !important;
    font-size: 16px;
}

.slide .box {
    background-color: #fff;

    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);

    padding: 30px 35px;
    margin-bottom: 20px;
    width: 100%;
    /* max-height: 240px; */
}

.slide .box ul {
    margin: 0;
    padding: 0;
}

.box ul li {
    color: #ba8f4d;
    text-align: center;
    font-size: 16px;
    padding: 0 0 5px;
    width: 100%;
    margin-right: 5px;
    list-style: none;
}

.slide .box ul li span {
    color: #000;
    display: block;
    font-family: "DIN-Medium";
    font-size: 16px;
    padding: 7px 0 0;
}

.slide .box ul li:last-child {
    border: 1px solid #ba8f4d;
    padding: 10px 15px;
    margin: 10px auto;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid;
}

.copy {
    padding: 20px 0 0px 0px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
}

.highlightBox .noListStyle li {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 1px;

}


@media only screen and (max-width: 1200px) {

    .nav-link,
    .nav-link-Number {
        padding: 7px 15px;
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    .main {
        padding: 0;
    }

    .mainRight {
        display: none;
    }

    .title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .bannerContent {
        /*display: none;*/
        width: calc(100% - 32px);
    }

    .bannerImage>img {
        min-height: 590px;
    }

    .mapSection {
        margin-bottom: 16px;
    }

    .mapSection iframe {
        max-height: 250px;
    }

    .headerTop div[class*="col"] {
        display: flex;
        justify-content: center;
    }

    .bannerForm {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 350px;
        max-width: 95%;
        transform: translate(-50%, -50%);
    }

    .bannerForm form {
        width: 100%;
        max-width: unset;
    }

    .mobileFixedFooter {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        display: block;
        background: white;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.14);
    }

    a.fixedFooterBtn {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        line-height: 1.5;
        padding: 6px 12px;
        justify-content: center;
        font-size: 130%;
        transition: 0.3s;
    }

    a.fixedFooterBtn:hover {
        color: white;
        background-color: black;
    }

    .fixedFooterIcon {
        height: 35px;
        width: 35px;
        display: flex;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        background-color: white;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.14);
    }

    .fixedFooterIcon i {
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform-origin: bottom;
        background-image: linear-gradient(45deg, #01abd8, #00dfa6);
    }

    a.fixedFooterBtn:hover .fixedFooterIcon {
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.14);
    }

    .fixedFooterText {
        font-size: 80%;
        font-weight: 700;
    }

    .callIcon {
        bottom: 72px;
    }

}

@media only screen and (max-width: 576px) {
    header .logo img {
        width: 90px;
        min-width: 86px;
    }

    .hideInMobile {
        display: none;
    }

    div#myNavMenu {
        padding: 0;
    }

    .downloadBtn {
        flex-wrap: wrap;
        min-width: unset;
        max-width: 100%;
    }

    .whatsappIcon {
        height: 50px;
        width: 50px;
        bottom: 10px;
        right: 10px;
    }

    .enquiryBtn {
        line-height: 1;
    }

    .aminityCardBox {
        flex-direction: column;
        border-radius: 7px;
        text-align: center;
        padding: 12px 4px;
    }

    .aminityTitle {
        width: 100%;
        font-size: 60%;
    }

    .bannerImage picture img {
        min-height: 80vh;
    }

    .iconsContainer {
        transform: translateY(0);
        padding: 25px 0 16px;
    }

    .bannerForm {
        top: unset;
        left: unset;
        right: 10px;
        bottom: 30px;
        display: block;
        transform: none;
        width: 100%;
    }

    .bannerForm form {
        display: none;
    }

    .banbg {
        background-color: rgb(255 255 255 / 54%);
        padding: 20px 20px 25px 20px;
        margin-top: 0%;
        margin-left: 10%;
        width: 100%;
        text-align: center;
        color: var(--primary-light-text-color);
        border-radius: 0;
        backdrop-filter: blur(7px);
        margin: 0;
    }

    .bantxt3 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 4px;
    }

    .bantxt5 {
        color: var(--primary-color);
        text-align: center;
    }
}

@keyframes pulse {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1.0);
    }
}


/* Addition Pages Start */

.memberBox {
    padding: 35px 0 14px;
    /*filter: drop-shadow(0 0 20px #ececec);*/
}

.memberCard {
    background: white;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
}

.memberCount {
    font-size: 160%;
    background: var(--primary-color);
    color: var(--primary-text-color);
    width: 60px;
    height: 60px;
    margin: -44px auto 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    font-weight: 600;
    border: 4px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.4);
}

.memberName {
    font-size: 120%;
    font-weight: 600;
}

.memberDesig {
    color: var(--primary-color);
    font-weight: 500;
}

.memberCard:hover {
    border: 1px solid var(--primary-color);
}

/* Addition Pages End */


/* Bootstrap override */



@media (min-width: 991px) {
    .col-lg-2-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media only screen and (min-width: 350px) and (max-width: 768px) {
    .col-xs-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 350px) {
    .col-xs-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




.nav-tabs {
    border: none;
    gap: 10px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-tabs .nav-link {
    background: white;
    border: none !important;
    border-radius: 50px;
    padding: 4px 22px;
    font-weight: 500;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--primary-text-color);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.12), inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.2);
}

.card {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    width: 100%;
    border-radius: 7px;
    box-shadow: 0 0 3px #0000001a;
}

.card-bordered {
    border: 1px solid var(--primary-color);
}

.card-body {
    padding: 12px 0 0;
}

.card-title {
    font-size: 110%;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-text {
    opacity: 0.8;
    font-size: 90%;
}

.table {
    margin: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

.table td,
.table th {
    padding: 4px 10px;
    vertical-align: middle;
}

.table thead th,
.table tbody th {
    vertical-align: middle;
    padding: 8px 14px;
    text-align: center;
    background: var(--primary-light-color);
    border-bottom: 1px solid #dee2e6;
    background: #000000;
    color: #fff;
    line-height: 20px;
}

.table-responsive:has(.table-bordered) {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.table-responsive .table-bordered thead th,
.table-responsive .table-bordered tbody th,
.table-responsive .table-bordered tbody td {
    border-top: none;
}

.table-responsive .table-bordered thead th:first-child,
.table-responsive .table-bordered tbody th:first-child,
.table-responsive .table-bordered tbody tr td:first-child {
    border-left: none;
}

.table-responsive .table-bordered thead th:last-child,
.table-responsive .table-bordered tbody th:last-child,
.table-responsive .table-bordered tbody td:last-child {
    border-right: none;
}

.table-responsive .table-bordered tbody tr:last-child th,
.table-responsive .table-bordered tbody tr:last-child td {
    border-bottom: none;
}

.table .btn {
    font-size: 14px;
    padding: 4px 18px;
    font-weight: bold;
    /* border-radius: 20px; */
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 1;
}


.table tr td:first-child {
    text-align: center;
}

.table a:not(.btn) {
    color: var(--secondary-color);
}


.form-control {
    font-size: inherit;
    height: unset;
    line-height: 1.4;
    margin-bottom: 0;
    border-radius: 50px;
    /*cursor: pointer;*/
}

.form-control:hover,
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--primary-color);
}