@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    width: 100vw;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7c7c7c;
    --themeColor: #d3ac82;
    --themeColor2: #f1e1d8;
    --headingColor: #161a1d;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Edensor';
    src: url(../fonts/Edensor-FREE.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    margin: 0 0 0px;
    font-weight: 500;
    font-size: 105px;
    color: var(--black);
    font-family: 'Edensor';
    text-transform: uppercase;
}

h2 {
    line-height: 1;
    margin: 0 0 0px;
    font-size: 75px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Edensor';
    text-transform: uppercase;
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Edensor';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Edensor';
}

h5 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Edensor';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.theme-btn-1 {
    gap: 15px;
    border: none;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    width: fit-content;
    border-radius: 50px;
    color: var(--white);
    align-items: center;
    font-family: 'Edensor';
    padding: 20px 30px 14px;
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.theme-btn-1 img {
    top: -3px;
    width: 23px;
    height: 17px;
    position: relative;
    object-fit: contain;
}

.theme-btn-1:hover {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 20px;
    position: relative;
    color: var(--black);
    text-decoration: none;
    display: inline-block;
}

.menuSec ul li a::before {
    bottom: 0;
    left: 20px;
    content: '';
    width: 0px;
    height: 2px;
    border-radius: 3px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 50px;
    transition: ease-in;
    transition-duration: 0.5s;
}


.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--black);
}

.menuSection {
    padding: 25px 4%;
    position: relative;
}

.menuSection .row {
    align-items: center;
}

.menuSection::before {
    right: 0;
    top: -30px;
    content: "";
    width: 90px;
    height: 130px;
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/haeder-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-logo {
    height: 55px;
    width: fit-content;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*header css start */


/* Loader CSS */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 0 auto;
}

.loader:before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: var(--themeColor);
    animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 7px;
    width: 45px;
    border-radius: 4px;
    box-shadow: 0 5px 0 var(--white), -35px 50px 0 var(--white), -70px 95px 0 var(--white);
    animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
    0% {
        transform: scale(1, 0.7);
    }

    40% {
        transform: scale(0.8, 1.2);
    }

    60% {
        transform: scale(1, 1);
    }

    100% {
        bottom: 140px;
    }
}

@keyframes loading-step {
    0% {
        box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
            0 10px 0 #080808,
            -35px 50px 0 #1f1f1f,
            -70px 90px 0 #1f1f1f;
    }

    100% {
        box-shadow: 0 10px 0 #1f1f1f,
            -35px 50px 0 #1f1f1f,
            -70px 90px 0 #1f1f1f,
            -70px 90px 0 rgba(0, 0, 0, 0);
    }
}

/* loader */


/*banner css start */

.main_slider {
    margin: 0px auto;
    max-width: 2000px;
    position: relative;
    padding: 50px 4% 100px;
}

.main_slider::before {
    left: -3%;
    bottom: 17px;
    width: 280px;
    content: '';
    height: 38%;
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/banner-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner_img {
    width: 100%;
    height: 650px;
}

.banner_img img {
    right: 0;
    width: 63.5%;
    height: 650px;
    max-width: 100vw;
    object-fit: cover;
    position: absolute;
}

.banner_text {
    z-index: 1;
    position: relative;
}

.banner_text p {
    max-width: 400px;
    margin-bottom: 25px;
}

/*banner css end*/

/* banner-bottom-sec */

.banner-bottom-sec {
    padding: 50px 4% 0px;
}

.banner-bottom-box {
    gap: 15px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.banner-bottom-box h3 {
    text-transform: uppercase;
}

.banner-bottom-box img {
    width: 100%;
    height: 55px;
    object-fit: contain;
}

/* banner-bottom-sec */

@keyframes floatRotateLeft {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }

    50% {
        transform: translate(0, -25px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, -15px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes floatRotateRight {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-12px, 12px) rotate(-6deg);
    }

    50% {
        transform: translate(0, 22px) rotate(0deg);
    }

    75% {
        transform: translate(12px, 12px) rotate(6deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* about-sec */

.about-sec {
    padding: 100px 4%;
    position: relative;
}

.about-sec::before {
    left: -3%;
    bottom: -8px;
    width: 179px;
    content: '';
    height: 190px;
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/banner-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.about-sec::after {
    right: 0;
    top: -30px;
    content: "";
    width: 130px;
    height: 170px;
    position: absolute;
    animation: floatRotateRight 10s ease-in-out infinite;
    background-image: url(../images/haeder-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-img.wow.fadeInUp {
    display: inline-flex;
    gap: 17px;
}

img.about-main-img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    min-height: 575px;
}

.about-img-small {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-small-img-1 {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.about-small-img-2 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-text {
    gap: 15px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.more-about-text {
    margin-top: 50px;
}

.more-about-text p {
    margin-bottom: 20px;
}


/* about-sec */



/* detail-servies */

.detail-servies img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.detail-servies h2 {
    font-weight: 500;
    margin-top: 45px;
    margin-bottom: 5px;
}

.detail-servies p {
    margin-bottom: 25px;
    text-align: justify;
}

section.detail-ser {
    padding-top: 100px;
    position: relative;
    padding-bottom: 100px;
}

/* detail-servies */



/* programs-sec */

.programs-sec {
    position: relative;
    padding: 0px 4% 100px;
}

.programs-sec::before {
    right: 0;
    top: 170px;
    content: "";
    width: 150px;
    height: 210px;
    position: absolute;
    animation: floatRotateRight 10s ease-in-out infinite;
    background-image: url(../images/programs-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.programs-heading {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.programs-heading>div {
    max-width: 920px;
}

.programs-heading p {
    max-width: 650px;
}

.programs-slider-btn button {
    width: 80px;
    height: 55px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #eddecd;
    background-color: #eddecd;
}

.programs-slider-btn button:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.programs-slider-btn {
    gap: 15px;
    display: flex;
    margin-right: 20px;
    align-items: center;
    justify-content: center;
}

.programs-slider-btn button.programs-slider-btn-left {
    transform: rotate(180deg);
}

.programSlider .slick-slide {
    opacity: 1;
}

.programSlider .slick-slide .program-box a,
.programSlider .slick-slide .program-box p,
.programSlider .slick-slide .program-box h3 {
    opacity: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.program-box>img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    margin-bottom: 20px;
}

.programSlider .slick-slide.slick-current.slick-active.slick-center .program-box>img {
    height: 550px;
}

.programSlider .slick-slide.slick-current.slick-active.slick-center .program-box a,
.programSlider .slick-slide.slick-current.slick-active.slick-center .program-box p,
.programSlider .slick-slide.slick-current.slick-active.slick-center .program-box h3 {
    opacity: 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.program-box {
    padding: 10px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.program-box::before {
    left: 0;
    bottom: 0;
    height: 0%;
    content: '';
    z-index: -1;
    width: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.inner-programs-sec .program-box:hover::before {
    height: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.programSlider .slick-slide .program-box {
    margin-top: 220px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.programs-sec.inner-programs-sec {
    padding: 100px 4%;
}

.programSlider .slick-slide.slick-current.slick-active.slick-center .program-box {
    margin-top: 0px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.program-box .theme-btn-1 {
    margin: 20px auto;
}

.program-box h3 {
    margin-bottom: 10px;
}

.program-box p {
    width: 90%;
    margin: 0 auto 10px;
}

/* programs-sec */


/* video-sec */

.video-sec {
    padding: 100px 4%;
    position: relative;
    background-color: var(--themeColor2);
}

.video-sec .section-heading {
    z-index: 3;
    position: relative;
    margin-bottom: -40px;
}

.video-sec::before {
    top: -8%;
    left: -8%;
    height: 38%;
    content: '';
    width: 400px;
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/banner-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.video-sec::after {
    right: -5%;
    bottom: -24%;
    content: "";
    width: 270px;
    height: 450px;
    transform: rotate(-15deg);
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/programs-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-box {
    width: 100%;
    height: 580px;
    overflow: hidden;
    position: relative;
    border-radius: 0px;
}

.video-box .play-btn {
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.video-box .play-btn::before {
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.1;
    position: absolute;
    background-color: #000;
}

.video-box .play-btn i {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 125px;
    margin: auto;
    height: 125px;
    display: flex;
    font-size: 30px;
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    background-color: transparent;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px #ffffff7e;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }

    70% {
        -moz-box-shadow: 0 0 0 10px #ffffff7e;
        box-shadow: 0 0 0 10px #ffffff7e;
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }
}

.video-box .play-btn img {
    width: 105%;
    height: 100%;
    max-width: 105%;
    object-fit: cover;
    animation: moveLeftToRight 4s linear infinite;
}

.video-box .vid {
    width: 100%;
    height: 100%;
}

.video-box .vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* video-sec */



/* why-choose-sec */

.why-choose-sec {
    padding: 0px 4%;
    position: relative;
}

.why-choose-sec::before {
    right: -1%;
    top: -10%;
    content: "";
    width: 150px;
    height: 240px;
    position: absolute;
    transform: rotate(-15deg);
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/programs-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-choose-img {
    width: 100%;
    height: 670px;
    overflow: hidden;
    min-height: 100%;
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-text {
    gap: 15px;
    display: flex;
    min-height: 100%;
    padding: 30px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.why-choose-text p {
    margin-bottom: 15px;
}

.why-choose-text ul {
    gap: 15px;
    width: 100%;
    display: flex;
    padding-bottom: 15px;
    align-items: baseline;
    justify-content: flex-start;
    border-bottom: 1px solid #cccccc;
}

.why-choose-text ul li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.why-choose-text ul li:first-child {
    min-width: 30px;
}

.why-choose-text ul li h6 {
    font-size: 14px;
    max-width: 570px;
    line-height: 25px;
    color: var(--textColor);
}

.why-choose-text ul li h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
}






/* why-choose-sec */

/* testimonials-sec */

.testimonials-sec {
    padding: 100px 4%;
    position: relative;
}

.testimonials-sec::before {
    right: 0;
    content: "";
    width: 130px;
    bottom: 50px;
    height: 170px;
    position: absolute;
    animation: floatRotateRight 10s ease-in-out infinite;
    background-image: url(../images/haeder-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-sec::after {
    top: 17px;
    left: -9%;
    width: 460px;
    content: '';
    height: 44%;
    position: absolute;
    animation: floatRotateLeft 8s ease-in-out infinite;
    background-image: url(../images/banner-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonials-heading {
    gap: 10px;
    display: flex;
    text-align: center;
    margin-bottom: 70px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.testimonials-heading h6 {
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    padding: 10px 35px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 100px;
    background-color: #f1f1f1;
}

.testimonials-heading h6::before {
    top: 0;
    bottom: 0;
    width: 33px;
    content: '';
    right: -40px;
    margin: auto;
    height: 33px;
    position: absolute;
    object-fit: contain;
    animation: spin 4s linear infinite;
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonials-heading h6::after {
    top: 0;
    bottom: 0;
    width: 33px;
    content: '';
    left: -40px;
    margin: auto;
    height: 33px;
    position: absolute;
    object-fit: contain;
    animation: spin 4s linear infinite;
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonials-heading h2 {
    font-size: 60px;
}

.testimonials-heading p {
    text-align: center;
}

.testimonial-box {
    gap: 5px;
    display: flex;
    max-width: 950px;
    margin: 0px auto;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.testimonial-box-text h4 {
    font-weight: 400;
    font-style: italic;
    text-align: center;
    font-family: 'Poppins';
    color: var(--textColor);
}

.testimonial-box-text {
    height: 115px;
    margin: 15px 0px;
    overflow-y: scroll;
}

.testimonial-box-text::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.testimonial-box-text::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.testimonial-box-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}

.star-rating {
    gap: 2px;
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
}

.star-rating i {
    font-size: 20px;
    color: #f9ae0e;
}

.testimonial-box ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-box img {
    height: 100%;
    width: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
}

.testimonial-box h5 {
    margin-bottom: 15px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.testimonial-box h3 {
    text-transform: uppercase;
}

.testimonialsSlider .slick-prev,
.testimonialsSlider .slick-next {
    z-index: 1;
    width: 80px;
    height: 55px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    transition: ease-out;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.testimonialsSlider .slick-prev {
    left: 50px;
}

.testimonialsSlider .slick-next {
    right: 50px;
}

.testimonialsSlider .slick-prev::before,
.testimonialsSlider .slick-next::before {
    content: '';
    width: 25px;
    height: 17px;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(74%) sepia(1%) saturate(5764%) hue-rotate(347deg) brightness(84%) contrast(80%);
    background-image: url(../images/btn-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonialsSlider .slick-prev::before {
    transform: rotate(180deg);
}

.testimonialsSlider .slick-prev:hover,
.testimonialsSlider .slick-next:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    box-shadow: 0px 0px 10px -5px #f1f1f1;
}

.testimonialsSlider .slick-prev:hover::before,
.testimonialsSlider .slick-next:hover::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(39%) saturate(2%) hue-rotate(335deg) brightness(107%) contrast(100%);
}

/* testimonials-sec */

/* account sec */

.account-sec {
    padding: 100px 0px;
}

section.account-sec .waraper h5 {
    color: var(--themeColor);
    font-size: 42px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
}

section.account-sec .form {
    padding: 50px 30px;
    border-radius: 10px;
    transition: ease-in 0.5s;
    background-color: var(--white);
    box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.15);
}

section.account-sec .form:hover {
    transition: ease-in 0.5s;
    background-color: var(--themeColor);
}

section.account-sec .form h5 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

section.account-sec .form:hover h5 {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form:hover button {
    color: #013220;
    transition: ease-in 0.5s;
    background-color: var(--white);
}

section.account-sec .form:hover input,
section.account-sec .form:hover select {
    border-radius: 5px;
    color: var(--white);
    transition: ease-in 0.5s;
    background-color: transparent;
    border: 1px solid var(--white);
}

section.account-sec .form:hover select option {
    color: var(--black);
}

section.account-sec .form:hover input::placeholder {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .form-check label {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .forget a.bnts {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .para p,
section.account-sec .form:hover .para p a {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form input,
section.account-sec .form select {
    width: 100%;
    margin: 12px 0px;
    padding: 14px 20px;
    color: #59564f;
    border-radius: 10px;
    background-color: var(--white);
    transition: ease-in 0.5s;
    border: 1px solid #e0dcdc;
}

section.account-sec .form input::placeholder {
    font-size: 16px;
    transition: ease-in 0.5s;
    color: #59564f;
}

section.account-sec .form button {
    width: 100%;
    border: 0px;
    font-size: 16px;
    padding: 12px 0;
    transition: 0.4s;
    font-weight: 500;
    border-radius: 10px;
    color: var(--white);
    transition: ease-in 0.5s;
    text-transform: uppercase;
    background-color: var(--themeColor);
}

section.account-sec .form button#login {
    margin: 10px 0px;
}

section.account-sec .form:hover .toggle-password {
    color: var(--white);
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--black);
}

section.account-sec .form-check input#rememberMe {
    width: auto;
    padding: 8px;
    margin-right: 10px;
    border-radius: 0px;
    transition: ease-in 0.5s;
    border: 1px solid #f2f2f2;
    background-color: var(--white);
}

section.account-sec .form-check label {
    font-size: 16px;
    margin-bottom: 0px;
    transition: ease-in 0.5s;
    color: #a7a7a7;
}

section.account-sec .forget {
    display: flex;
    justify-content: space-between;
    transition: ease-in 0.5s;
    align-items: center;
}

section.account-sec .form-check {
    padding-left: 0px !important;
    transition: ease-in 0.5s;
}

section.account-sec .form button:hover {
    color: var(--white);
    transition: ease-in 0.5s;
    background-color: transparent;
    border: 1px solid var(--white);
}

section.account-sec .forget a.bnts {
    font-size: 16px;
    color: #a7a7a7;
    transition: ease-in 0.5s;
}

section.account-sec .forget a.bnts:hover {
    color: var(--black);
}

section.account-sec .form-check input#rememberMe:focus {
    outline: 0px !important;
    box-shadow: unset;
}

section.account-sec .form-check-input:checked[type="checkbox"] {
    filter: brightness(0);
    background-color: transparent !important;
    transition: ease-in 0.5s;
}

section.account-sec .form .para p {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 16px;
    transition: ease-in 0.5s;
    padding-left: 3px;
}

section.account-sec .form .para p a {
    font-weight: 600;
    transition: 0.4s;
    color: var(--themeColor);
    text-decoration: underline;
}

section.account-sec .form .para p a:hover {
    color: var(--white);
    transition: ease-in 0.5s;
}

/* account sec */

/* inner banner */

section.main_slider.inner-banner-sec .banner_img img {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    position: relative;
}

section.main_slider.inner-banner-sec .banner_img {
    height: 550px;
}

section.main_slider.inner-banner-sec {
    padding-bottom: 0px;
}

section.main_slider.inner-banner-sec .banner_text h1 {
    font-size: 80px;
}

/* inner banner */

/* video-library-sec */

.video-library-sec {
    padding: 100px 4%;
}

.video-library-sec .video-box {
    margin-bottom: 24px;
}

/* video-library-sec */


/* membership */

.membership-sec {
    padding: 100px 0;
}

/*MEMBER  PAGE STRT*/

.member_box_wrap {
    border-radius: 30px;
    background-color: #fff;
}

.member_box_wrap {}

.member_head {
    padding: 25px 20px;
    background-image: linear-gradient(180deg, var(--themeColor2), var(--themeColor));
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.member_mid {
    padding: 40px 0 70px 0;
    background-color: var(--white);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 12px 21.06px 5.94px rgba(0, 0, 0, 0.07);
}

.member_head h3 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0 0px 0;
    display: inline-block;
    text-transform: uppercase;
    color: var(--headingColor);
    border-bottom: 2px solid var(--headingColor);
}

.member_head p {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.member_mid h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 75px;
    line-height: 80px;
    color: #000;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 0 0 20px;
    border-bottom: 2px solid #d2d9d9;
}

.member_mid h2 sup {
    font-size: 40px;
    line-height: 45px;
    left: -30px;
    top: 0;
    position: absolute;
}

.member_mid h2 sub {
    font-size: 26px;
    line-height: 35px;
    right: -50px;
    position: absolute;
    bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 500;
}

.member_mid ul {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
}

.member_mid ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0 0 15px;
}

.member_mid ul li p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.member_mid ul li i {
    margin: 0;
    width: 30px;
    height: 30px;
    display: flex;
    flex-shrink: 0;
    line-height: 1;
    font-size: 10px;
    color: var(--black);
    align-items: center;
    border-radius: 100px;
    justify-content: center;
    background-color: var(--themeColor2);
}

.member_mid a {
    min-width: 65%;
    font-size: 16px;
    margin: 15px 0 0;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 20px;
    color: var(--white);
    display: inline-block;
    text-transform: uppercase;
    background-color: var(--themeColor);
}

.member_end {
    left: 0;
    bottom: 0;
    width: 100%;
}

.toggle-button-cover {
    display: table-cell;
    position: relative;
    box-sizing: border-box;
}

.toggle-button-cover {
    width: 100%;
    position: relative;
    display: flex;
    gap: 20px;
    font-size: 20px;
    text-transform: capitalize;
    margin-top: 20px;
    font-weight: 500;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    width: 100px;
    height: 39px;
    overflow: hidden;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

.button.r,
.button.r .layer {
    border-radius: 100px;
}

#button-3 .knobs:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 55px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: var(--themeColor);
    border-radius: 50px;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active+.knobs:before {
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active+.knobs:before {
    margin-left: -26px;
}

#button-3 .checkbox:checked+.knobs:before {
    content: "";
    left: 42px;
    background-color: var(--themeColor);
}

#button-3 .checkbox:checked~.layer {
    background-color: var(--themeColor2);
}

.select-with {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 30px 15px;
}

.select-with h6 {
    text-transform: capitalize;
}

/* membership */

/* booking-sec */

.booking-sec {
    padding: 100px 0px;
}

.booking-box {
    padding: 50px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}

.booking-box h2 {
    font-size: 70px;
    text-align: center;
    margin-bottom: 25px;
}

.booking-box input,
.booking-box select {
    width: 100%;
    height: 60px;
    padding: 10px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    background-color: #fff;
    border: 1px solid #d7d7d7;
}

.booking-box textarea {
    width: 100%;
    height: 200px;
    padding: 10px 25px;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #d7d7d7;
}

.booking-box button {
    width: 100%;
    height: 60px;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    color: var(--white);
    margin-bottom: 25px;
    background-color: var(--themeColor);
}

/* booking-sec */

/* terms-sec */

.terms-sec {
    padding: 100px 0px;
}

.terms-sec h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-sec h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-sec h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-sec h5 {
    display: flex;
    gap: 15px;
    font-size: 30px;
    margin-top: 30px;
    align-items: center;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.terms-sec h5 i {
    font-size: 20px;
    color: var(--themeColor);
}

.terms-sec p {
    margin-bottom: 15px;
}

/*contact-page start*/

section.contact-pg {
    padding: 100px 0px;
}

.cont-bx {
    padding: 70px 20px;
    border-radius: 10px;
    background-color: var(--themeColor);
}

.cont-bx h3 {
    font-size: 19px;
    line-height: 11px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 400;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    width: 75%;
}

.cont-bx a {
    color: #fff;
}

.cont-bot-txt {
    text-align: center;
}

.cont-bot-txt h3 {
    font-size: 45px;
    line-height: 50px;
    color: #000;
    margin-bottom: 10px;
}

.cont-bot-txt p {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.cont-bot-txt form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    color: #000;
}

.cont-bot-txt form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    color: #000;
    height: 150px;
}

.cont-bot-txt form button {
    margin: 0 auto;
}

section.sponser-main-pg {
    padding: 100px 0px;
}

.sponser-txt-main h3 {
    font-size: 45px;
    font-weight: 300;
    color: #181818;
    line-height: 55px;
}

.sponser-txt-main h3 span {
    display: block;
}

.sponser-txt-main p {
    font-size: 14px;
    color: #181818;
}

section.peer-support.inn {
    background-color: unset;
}

section.how-it-work {
    padding-bottom: 100px;
}

.how-it-work-txt {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-work-txt h3 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 10px;
}

.how-it-work-txt p {
    width: 50%;
    margin: 0 auto;
    font-size: 14px;
}

.main-bx-work {
    text-align: center;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 32px 84px 0px rgba(16, 16, 16, 0.04);
}

.main-bx-work h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #141414;
}


/* contact */

/* get-touch-sec */

.get-touch-sec {
    padding: 0px 4% 100px;
}

.get-touch-form {
    position: relative;
    padding: 100px 0% 100px 10%;
    background-color: #f6eee6;
}

.get-touch-form::before {
    top: 0;
    left: 100%;
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    background-color: #f6eee6;
}

.get-touch-form input {
    width: 100%;
    height: 60px;
    border: none;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--black);
    background-color: transparent;
    border-bottom: 1px solid var(--textColor);
}

.get-touch-form input::placeholder,
.get-touch-form textarea::placeholder {
    color: var(--textColor);
}

.get-touch-form textarea {
    width: 100%;
    height: 150px;
    border: none;
    display: block;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 40px;
    align-content: flex-end;
    background-color: transparent;
    border-bottom: 1px solid var(--textColor);
}

.get-touch-heading img {
    z-index: 1;
    left: 55px;
    height: 380px;
    display: block;
    max-width: 280px;
    object-fit: cover;
    position: relative;
    margin: 40px 0px 0px auto;
}

/* get-touch-sec */

/* FAQ Page Start */

.accordion-body.gorrila-page-txt {
    padding: 0px 20px 20px;
    border-top: none;
    background: var(--themeColor2);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.gorilla-content .accordion-item {
    border: none;
    margin: 10px 0;
    border-bottom: 1px solid #c7cbcf;
}

.gorilla-content .accordion-button:not(.collapsed) {
    box-shadow: none;
    height: 60px;
    color: #4b494b;
    font-size: 21px;
    background: unset;
    text-transform: capitalize;
    font-weight: 600;
    border-bottom: 0 !important;
    background: var(--themeColor2);
}

.faqs-main .accordion-collapse.collapse {
    border-top: 0 !important;
    border-radius: 0 0 5px 5px !important;
    /* margin-bottom: 30px; */
    /* border-radius: 0 !important; */
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.gorilla-content .accordion-button::after {
    top: 15px;
    width: 30px;
    right: 20px;
    height: 30px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    content: "\f078";
    position: absolute;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-image: none;
    font-family: "Font Awesome 5 free";
    background-color: var(--black);
}

.faqs-main .accordion-button:not(.collapsed)::after {
    top: 20px;
    content: "\f078";
    font-weight: 900;
    color: var(--white);
    font-family: "Font Awesome 5 free";
}

.address {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.contact-main h2 {
    font-size: 45px;
    color: #000;
    line-height: 45px;
    padding-bottom: 15px;
    font-weight: 400;
}

section.faqs-main p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

.faqs-main {
    padding: 100px 0;
    background-color: var(--white);
}

.faqs-main button.accordion-button.collapsed {
    border: none;
    height: 60px;
    font-size: 20px;
    border-radius: 0px;
    padding: 20px 20px;
    color: var(--black);
    font-family: 'Edensor';
    text-transform: capitalize;
    background: var(--themeColor2);
}

/* FAQ Page End */


/* pricing-sec */

.pricing-sec {
    padding: 100px 4%;
    position: relative;
}

.pricing-sec .section-heading {
    margin-bottom: 70px;
}

.pricing-sec::before {
    top: 11%;
    left: -5%;
    height: 28%;
    content: '';
    transform: rotate(76deg);
    width: 256px;
    position: absolute;
    background-image: url(../images/banner-before.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pricing-heading {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: flex-end;
    justify-content: space-between;
}

.pricing-heading>div {
    max-width: 550px;
}

.pricing-box {
    display: flex;
    margin: 0px auto;
    max-width: 350px;
    text-align: center;
    padding: 30px 20px;
    align-items: center;
    flex-direction: column;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #d6d6d6;
}

.last-box .pricing-box {
    margin: 0px 0px 0px auto;
}

.pricing-box:hover {
    max-width: 400px;
    transition: ease-in;
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.pricing-box h2 {
    font-size: 45px;
}

.pricing-box h2 span {
    font-size: 16px;
    color: var(--textColor);
}

.pricing-box h3 {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pricing-box p {
    margin-bottom: 15px;
}

.pricing-box ul {
    gap: 10px;
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.pricing-box ul li {
    gap: 10px;
    width: 100%;
    display: flex;
    padding: 20px 0px;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #b2b2b2;
}

.pricing-box ul li img {
    height: 30px;
    height: 20px;
    object-fit: contain;
}

.pricing-box ul li h6 {
    color: var(--textColor);
}

/* pricing-sec */


/*footer start*/
footer {
    padding: 80px 4% 0px;
    background-image: url(../images/ft-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

footer h3 {
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.quick-links ul li a {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins';
}

.quick-links ul li {
    padding-bottom: 12px;
}

.quick-links.tw ul {
    column-count: 2;
}

.news-txt-bx ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-txt-bx ul li a i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #e6d1bacf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0bea2;
}

.news-txt-bx ul li a i:hover {
    transition: 1s;
    background-color: #fff;
}

.ft-inp input {
    background-color: unset;
    border: unset;
    border-bottom: 1px solid #fff;
    width: 100%;
    margin-bottom: 30px;
    color: #fff;
}

.ft-inp {
    position: relative;
    width: 90%;
}

.ft-inp button {
    background-color: unset;
    border: unset;
    position: absolute;
    top: 0;
    right: 0;
}

.ft-inp input::placeholder {
    color: var(--white);
}

.ft-logo {
    margin: 40px 0px 20px;
}

.ft-logo p {
    margin: unset;
    text-align: end;
    color: var(--white);
}

/*footer end*/


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}



/*Media Query End*/

/* Forget Password Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h5 {
    margin: 0;
    font-size: 24px;
    color: var(--black);
    text-transform: uppercase;
}

.close-modal {
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--themeColor);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 20px;
    color: var(--textColor);
    font-size: 14px;
}

.modal-body input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.modal-body input[type="email"]:focus {
    border-color: var(--themeColor);
    outline: none;
}

.modal-body .reset-btn {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--themeColor);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Edensor';
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-body .reset-btn:hover {
    background-color: #c19a6f;
    transform: translateY(-2px);
}

/* Responsive Modal */
@media only screen and (max-width: 767px) {
    .modal-content {
        width: 95%;
        max-width: none;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h5 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* End Forget Password Modal */