:root {
    --golden-color: #D0AD73;
    --purple-color: #5C1C72;
    --soft-pink-background: #F3EFEB;

    --section-header-color: #100115;
    --body-text-color: #303030;

    --white-color: #ffffff;
    --black-color: #000000;
    --text-grey: #ddd;
    --red-color: #c40233;

    --body-fonts: "Avenir Next";

    --section-title-font-size: 50px;

    --font-size-small: 14px;
    --font-size-medium: 16px;

    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 32px;

    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@font-face {
    font-family: "Avenir Next";
    src: url("./fonts/avenir/AvenirNext-Regular.woff2") format("woff2"),
        url("./fonts/avenir/AvenirNext-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next Bold";
    src: url("./fonts/avenir/AvenirNext-DemiBold.woff2") format("woff2"),
        url("./fonts/avenir/AvenirNext-DemiBold.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Brittney Signature";
    src: url("./fonts/Brittney/BrittneySignature.woff") format("woff"), url("../font/Brittney/BrittneySignature.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth !important;
    font-family: var(--body-fonts)
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: var(--header-fonts);
}

p {
    font-family: var(--body-fonts);
}


section {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Button Styling */
.button {
    font-family: "Avenir Next";
    background-color: var(--golden-color);
    color: var(--white-color) ;
    padding: 8px 16px;
    width: 235px;
    font-family: var(--body-fonts);
    font-weight: 400;
    border-radius: 118px;
    border: none;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
    text-decoration: none;
    line-height: 30px;
    height: 50px;
    text-transform: capitalize;
}

.button:hover {
    background-color: var(--purple-color);
}

.outline-button {
    background-color: transparent;
    color: #303030;
    border: 1px solid var(--golden-color);
}

.outline-button:hover {
    background-color: var(--golden-color);
    color: var(--white-color);
}

input ,
select{
    border: 1px solid #FFFFFF;
    box-shadow: 0px 1.05px 2.1px 0px #1018280D;
    padding: 12px 16.8px;
    background-color: transparent;
    border-radius: 8.4px;
    max-width: 391px;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: 0%;
    font-family: "Avenir Next";
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.error {
    display: none;
    position: absolute;
    color: var(--red-color);
    font-size: 14px;
    bottom: -20px;
}

.error-input {
    border: 1px solid var(--red-color);
}
.validation-error {
    display: block;
    color: var(--red-color);
    font-size: 14px;
    position: absolute;
    bottom: -20px;
}

.friend-email .validation-error {
     bottom: -40px;
     line-height: 20px;
}

.country-code-error .validation-error{
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: color .3s ease;
    font-family: var(--header-fonts);
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: var(--section-title-font-size);
    color: var(--white-color);
    font-weight: 600;
    overflow: hidden;
}

.hide {
    display: none;
}

body {
    position: relative;
    font-size: var(--font-size-medium);
    line-height: 1.6;
    color: var(--body-text-color);
}

.loader{
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    display: none;
    z-index: 999;
}

.loader.show{
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img{
    max-width: 140px;
    animation-name: moveBottomToTop;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.soft-pink-background {
    background-color: var(--soft-pink-background);
}

.golden-divider {
    width: 100%;
    height: 1px;
    background-color: var(--golden-color);
}

/* heading with OM under it */
.header-container {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-container h2 {
    margin: 0;
    color: var(--section-header-color);
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: center;
}

.header-container .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-container .divider::before,
.header-container .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--golden-color);
    width: 100%;
}

.header-container .om-symbol img {
    width: 24px;
    margin: 0 12px;
}


/* Hero Section */
.hero-section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    overflow: hidden;
    padding: 32px 0;
}

.hero-section .banner-logo {
    max-width: 120px;
}

.banner-image-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    object-fit: cover;
}

.banner-image-container img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-section .gradient-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),*/
    /*    linear-gradient(180deg, rgba(0, 0, 0, 0) 61.41%, rgba(0, 0, 0, 0.50092) 78.77%, rgba(0, 0, 0, 0.6) 100%);*/
    background: rgba(0,0,0,0.5);
}

.hero-section .content-container {
    text-align: center;
    color: var(--white-color);
    max-width: 784px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.hero-section .content-container h1 {
    /*font-family: "Avenir Next Bold";*/
    font-weight: 600;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: 0%;
    text-align: center;
}

.thank-you-page .hero-section .content-container h1.thank-you-page-header {
    font-family: "Brittney Signature" !important;
}

.hero-section .content-container .golden-divider {
    margin-block: 20px;
}

.hero-section .content-container .date {
    font-family: "Avenir Next Bold";
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.hero-section .content-container .bio {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.hero-section .features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
    margin: 14px 0 32px 0;
}

.hero-section .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-section .feature-item span {
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
    margin-left: 4px;
}

.hero-section .content-container .button-container {
    display: flex;
    gap: 56px;
    justify-content: center;
    align-items: center;
}

/* Hero Section */



/* The Journey Begains */
.the-journey-begains-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-inline: 100px;
    padding-bottom: 50px;
}

.the-journey-begains-section .body-murial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: .5;
}

.the-journey-begains-section .banner-image {
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.the-journey-begains-section .header-container {
    padding-block: 35px;
    position: relative;
    z-index: 3;
}

.the-journey-begains-section .section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.the-journey-begains-section .left-section {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.the-journey-begains-section .left-section .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.the-journey-begains-section .left-section .countdown .time-unit {
    display: flex;
    flex-direction: column;
    padding-inline: 48px;
    border-right: 1px solid var(--golden-color);
}

.the-journey-begains-section .left-section .countdown .time-unit:last-child {
    border-right: 0;
}

.time-unit span {
    font-family: "Avenir Next Bold";
    font-weight: 700;
    font-size: 55.19px;
    line-height: 59.13px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.time-unit small {
    font-size: 17.35px;
    line-height: 31.54px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #252525;
}

.the-journey-begains-section .right-section {
    flex: 1;
    max-width: 380px;
    text-align: center;
    background-color: #FBFBFBB2;
    z-index: 4;
    padding: 60px 66px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #0000001A;
}

.avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.avatars img {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.avatars img:first-child {
    margin-left: 0;
}

.right-section .join-text {
    margin-block: 16px 40px;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: lowercase;
}


/* international-yoga-day-section */
.international-yoga-day-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.international-yoga-day-section .left-section,
.international-yoga-day-section .right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.international-yoga-day-section .left-section .header-container {
    max-width: max-content;
    align-items: start;
}

.international-yoga-day-section .left-section {
    padding: 43px 40px 51px 100px;
}

.international-yoga-day-section .left-section .content-container {
    margin: 5px 0 32px 0px;
}

.international-yoga-day-section .left-section .content-container p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #303030;
}

.international-yoga-day-section .right-section {
    overflow: hidden;
}

.international-yoga-day-section .right-section img {
    transition: all .4s ease-in-out;
}

.international-yoga-day-section .right-section:hover img {
    transform: scale(1.05);
}

/* Refer a friend  */
.refer-friend-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--purple-color);
    width: 100%;
    padding-block: 48px;
}

.refer-friend-section .header-container h2 {
    color: var(--white-color);
}

.refer-friend-section .sub-heading-text {
    font-weight: 500;
    font-size: 24px;
    line-height: 75px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--white-color);
}

.refer-friend-section form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.refer-friend-section form .fields-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 28px;
    margin-bottom: 45px;
}

.refer-friend-section form .input-wrapper {
    position: relative;
    width: 100%;
}

.refer-friend-section form .input-wrapper.full-width input {
    max-width: 100%;
}

.refer-friend-section form .input-wrapper.floating-label label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0%;
    color: var(--white-color);
    transition: all .3s ease;
}

.refer-friend-section form .input-wrapper.number-field .input-wrapper.floating-label label{
    left: 0 !important;
}

.refer-friend-section .input-wrapper.floating-label.floating label {
    left: 16px !important;
    top: -10px !important;
    font-size: 13px !important;
    background: var(--purple-color) !important;
    color: var(--white-color);
    padding-inline: 4px;
}

.refer-friend-section form .input-wrapper.number-field{
    display: flex;
}

.refer-friend-section .select2-container{
    width: 120px !important;
}

.refer-friend-section .select2-container--default .select2-selection--single .select2-selection__placeholder{
    font-size: 11px !important;
    color: #fff !important;
}


.refer-friend-section .select2-container .select2-selection--single{
    height: 100% !important; 
}

.refer-friend-section .select2-container--default .select2-selection--single{
    border: 1px solid #fff !important;
    border-radius: 8.4px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
}

.refer-friend-section .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #fff;
    line-height: 47px !important;
}

.refer-friend-section .select2-container .select2-selection--single .select2-selection__rendered{
    padding-right: 0 !important;
}

.refer-friend-section .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 12px !important;
    right: 8px !important;
}


.refer-friend-section form .input-wrapper.number-field #friend-phone-number{
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 12px 0 !important;
}

.refer-friend-section .input-container {
    display: flex;
    width: 100%;
    gap: 24px;
}

.refer-friend-section .content-container {
    width: 100%;
    padding-inline: 100px;
    z-index: 4;
    position: relative;
}

.refer-friend-section .mural-image-right {
    position: absolute;
    max-width: 482px;
    width: 100%;
    right: -17%;
    opacity: 0.2;
    top: 0;
    bottom: 0;
    height: 100%;
    object-fit: contain;
}

.refer-friend-section .mural-image-left {
    position: absolute;
    width: 360px;
    left: -14%;
    top: -40%;
    opacity: .4;
}

.refer-friend-section .hover-outline{
    border: 1px solid transparent;
}

.refer-friend-section .hover-outline:hover {
    background-color: transparent;
    border-color: var(--golden-color);
}


/* Event Schedule */
.event-schedule-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 48px;
    padding-inline: 100px;
}

.event-schedule-section .content-container {
    width: 100%;
    padding-top: 7px;
}

.event-schedule-section .tab-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--purple-color);
}

.event-schedule-section .tab-button {
    background: none;
    border: none;
    padding: 10px 30px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    color: #474747;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}

.event-schedule-section .tab-button.active {
    border-color: var(--purple-color);
    color: var(--purple-color);
}

.event-schedule-section .tab-content-wrapper {
    padding-top: 24px;
    background-color: var(--white-color);
    border: 1px solid #ddd;
    border-top: 0;
}

.event-schedule-section .tab-content {
    display: none;
}

.event-schedule-section .tab-content.active {
    display: block;
}

.event-schedule-section .filter-container {
    display: flex;
    gap: 21px;
}

.event-schedule-section .filter-container .select2 {
    max-width: 219px !important;
}

.event-schedule-section .filter-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 100%;
    padding: 6px 24px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    text-transform: capitalize;
    background-color: #FFFFFF;
    border: 1px solid #C0C0C0;
    border-radius: 100px;
    cursor: pointer;
    width: 219px;
    position: relative;
    font-family: "Avenir Next";

}

.select2-container--default .select2-selection--single{
    background: transparent !important;
    border: 0 !important;
}

.select2-container--default .select2-selection--single:focus-visible{
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 8px !important;
    right: 26px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
    color: #000 !important;
}

.event-schedule-section .select2-container .select2-selection--single{
    height: 100%;
}

.event-schedule-section .filter-container button {
    font-family: "Avenir Next";
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    background-color: #FFFFFF;
    border: 1px solid #C0C0C0;
    border-radius: 100px;
    gap: 12px;
    cursor: pointer;
    max-width: 219px;
    width: 100%;
    text-wrap: nowrap;
    color: #000 !important;
}

.event-schedule-section .filter-container .select2-container--default .selection:focus-visible{
    outline: none !important;
}

.event-schedule-section .filter-container button.desktop-button {
    display: flex;
}

.event-schedule-section .filter-container button.mobile-button {
    display: none;
}

.event-schedule-section .event-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    font-family: "Avenir Next";

}

.event-table-mobile{
    display: none;
}

.event-schedule-section .event-table tr.odd {
    background-color: #f2f2f2;
}

.event-schedule-section .event-table thead td {
    padding-bottom: 17px;
}

.event-schedule-section .event-table thead td span {
    border-bottom: 1px solid var(--purple-color);
    padding-bottom: 17px;
    width: max-content;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #474747;
}


.event-schedule-section .event-table tbody td {
    color: #292929;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    padding: 12px;
    border-bottom: 1px solid #C0C0C0;
}

.event-table .teacher-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 19px;
    text-align: left;
}

.event-table .teacher-item img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Exclusive Offerings */
.exclusive-offerings-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 34px;
    padding-bottom: 120px;
}

.exclusive-offerings-section .content-container {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    padding-inline: 100px;
    padding-top: 8px;
}

.exclusive-offerings-section .card {
    max-width: 490px;
    width: 100%;
    padding: 40px 18px;
    text-align: left;
    position: relative;
    z-index: 9;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    background-color: var(--soft-pink-background);
}

.exclusive-offerings-section .card.card-left {
    animation-name: moveBottomToTop;
    position: absolute;
    top: 200px;
    left: 27px;
}

.exclusive-offerings-section .card.card-right {
    background: var(--purple-color);
    color: #fff;
    position: absolute;
    right: 27px;
    top: 30px;
    animation-name: moveTopToBottom;
}

.exclusive-offerings-section .card-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.exclusive-offerings-section .card.card-right .card-title {
    color: var(--white-color);
}

.exclusive-offerings-section .card.card-right .button {
    max-width: max-content !important;
    width: max-content !important;
}

.exclusive-offerings-section .card-left .card-desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #6B6B6B;
    margin-top: 11px;
    margin-bottom: 36px;
}

.exclusive-offerings-section .card-right .card-desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 29px;
    margin-top: 9px;
    color: var(--white-color);
}

.exclusive-offerings-section .exclusive-image-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-offerings-section .exclusive-image {
    max-width: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 0 0 0 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    z-index: 3;
    background: #fff;
}

.exclusive-offerings-section .hover-outline {
    border: 1px solid transparent;
}

.exclusive-offerings-section .hover-outline:hover {
    background-color: transparent;
    border-color: var(--golden-color);
}


/* What you will experience */
.experience-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-block: 50px;
}

.experience-section .body-murial-image {
    opacity: 0.35;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.experience-section .header-container,
.experience-section .content-container {
    z-index: 3;
}

.experience-section .content-container {
    padding-top: 40px;
    width: 100%;
    padding-inline: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.experience-section .experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF26;
    border-radius: 8px;
    padding: 26px 14px;
    transition: all .2s ease-in-out;
}

.experience-card .img-container {
    max-height: 85px;
    height: 100%;
    margin-bottom: 18px;
}

.experience-card img {
    width: 120px;
    max-height: 85px;
    height: 100%;
    object-fit: contain;

}

.experience-section .experience-card:hover {
    background-color: var(--white-color);
}

.experience-section .experience-card .purple-image {
    visibility: visible;
    opacity: 1;
    display: block;
}

.experience-section .experience-card .golden-image {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.experience-section .experience-card:hover .golden-image {
    visibility: visible;
    opacity: 1;
    display: block;
}

.experience-section .experience-card:hover .purple-image {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.experience-section .experience-card .card-content h3 {
    height: 60px;
    margin-bottom: 12px;
    color: #252525;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
}

.experience-section .experience-card .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #6B6B6B;
}

/* Meet the Founder */
.meet-founder-section {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding-block: 50px;
}

.meet-founder-section .body-murial-image {
    opacity: 0.35;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.meet-founder-section .content-container {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-inline: 100px;
    padding-top: 24px;
    padding-bottom: 24px;
    overflow: hidden;
}

.meet-founder-section .content-container .left-container,
.meet-founder-section .content-container .right-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meet-founder-section .content-container .left-container {
    padding-right: 24px;
}

.meet-founder-section .content-container .left-container p {
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0%;
}

.meet-founder-section .content-container .right-container img {
    max-height: 749px;
    object-fit: cover;
}

/* Meet your teachers */
.meet-teacher-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 56px;
    gap: 24px;
}

.meet-teacher-section .content-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    width: 100%;
    padding-inline: 100px;
    padding-top: 24px;
}

.teacher-card {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.teacher-card .teacher-image-container {
    overflow: hidden !important;
    border-radius: 10px;

}

.teacher-card .teacher-image-container img {
    height: 100%;
    overflow: hidden !important;
    transition: all 0.2s ease-in-out;
}


.teacher-card .teacher-image-container:hover img {
    transform: scale(1.05);

}

.teacher-card h4 {
    width: max-content;
    border-bottom: 1px solid var(--golden-color);
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    margin-top: 12px;
    margin-bottom: 3px;
    padding-bottom: 3px;
}

/* Register Now section */
.register-now-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 56px;
    gap: 24px;
}

.register-now-section .content-container .left-container,
.register-now-section .content-container .right-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.register-now-section .content-container {
    display: flex;
    width: 100%;
    padding-inline: 100px;
    gap: 24px;
    padding-top: 24px;
}

.register-now-section .content-container .left-container {
    gap: 50px;
    margin-top: 24px;
}

.register-now-section .content-container .left-container .text-container h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #404040;
    margin-bottom: 24px;
}

.register-now-section .content-container .left-container .text-container p {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #404040;
}

.register-now-section .content-container .features-container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    justify-content: space-between;
    gap: 24px;
}

.register-now-section .content-container .features-container .container {
    display: flex;
    width: 100%;
    align-items: start;
}

.register-now-section .content-container .features-container .container .divider {
    min-height: 70px;
    width: 1px;
    background-color: var(--golden-color);
}

.register-now-section .content-container .features-container .feature-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    /* border-right: 0.91px solid var(--golden-color); */
    /* padding: 16px; */
    padding-top: 16px;
    padding-bottom: 8px;
    gap: 9px;
    /* width: 30%; */
    width: 90%;
}

.register-now-section .content-container .features-container .feature-item.second-child {
    padding-left: 30px;
}

.register-now-section .content-container .features-container .feature-item:last-child {
    border-right: none;
}

.register-now-section .content-container .features-container .feature-item h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    font-family: "Avenir Next Bold";
}

.register-now-section .content-container .features-container .feature-item h4 span {
    color: #4C4C4C;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #4C4C4C;
}

.register-now-section .content-container .features-container .feature-item p {
    font-family: Avenir Next;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #4C4C4C;
}

.register-now-section .right-container img {
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}


/* Special course Section */
.special-course-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 75px;
}

.special-course-section .murial-image {
    position: absolute;
    left: -53%;
    top: 0;
    bottom: 0;
    object-fit: contain;
    height: 100%;
    opacity: 0.5;
}

.special-course-section .header-container,
.special-course-section .content-container {
    position: relative;
    z-index: 3;
}

.special-course-section .content-container {
    width: 100%;
    padding-inline: 100px;
    padding-top: 24px;
}

.special-course-section .course-card .price-tag {
    position: absolute;
    top: 16px;
    right: -25px;
    overflow: visible;
    font-size: 18px;
    line-height: 18px;
    z-index: 91;
}

.special-course-section .course-card .price-tag:before {
    top: 3px;
    left: 0;
    border-top: 25px solid rgba(0, 0, 0, .3);
    border-bottom: 25px solid rgba(0, 0, 0, .3);
    border-right: 25px solid rgba(0, 0, 0, .3);
    border-left: 25px solid transparent;
}

.special-course-section .course-card .price-tag span {
    display: block;
    padding: 3px 20px;
    position: relative;
    background: #5c1c72;
    overflow: visible;
    height: 50px;
    margin-left: 29px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.special-course-section .course-card .course-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #5c1c72;
    margin-right: 10px;
}

.special-course-section .course-card .price-tag span:before {
    top: 0;
    left: -25px;
    border-top: 25px solid #5c1c72;
    border-bottom: 25px solid #5c1c72;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
}

.special-course-section .course-card .price-tag span h6 {
    font-size: .85rem;
    width: 100%;
}

.special-course-section .course-card .price-tag span:after {
    bottom: -15px;
    right: 0;
    border-top: 15px solid #3f134e;
    border-right: 15px solid transparent;
}

.special-course-section .course-card .price-tag span:after,
.price-tag span:before,
.price-tag:before {
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    content: "";
}

.special-course-section .course-card .price-tag:after {
    content: "";
    height: 3px;
    background: rgba(0, 0, 0, .3);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50px;
    right: 13px;
}

.special-course-section .course-card {
    background-color: var(--white-color);
    padding: 50px;
    border-radius: 30px;
    display: flex;
    gap: 60px;
    position: relative;
}

.special-course-section .course-card .img-container {
    max-width: 500px;
    width: 100%;
}

.special-course-section .course-card .course-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-course-section .course-card .course-content-container h3 {
    font-family: "Avenir Next bold";
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.special-course-section .course-card .course-content-container p {
    font-weight: 400;
    font-size: 17px;
    line-height: 35px;
    letter-spacing: 0%;
    color: #303030;
}

.special-course-section .course-card .course-content-container .offering-container .offering-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.special-course-section .course-card .course-content-container .offering-container .offering-item p {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0%;
    color: #303030;
}

.gradient-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #CBAE7B 0%, #FFFFFF 100%);
    margin-block: 15px;
}

.special-course-section .course-card .course-content-container .more-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.special-course-section .course-card .course-content-container .more-info p {
    font-weight: 400;
    font-size: 17px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-align: center;
    width: 50%;
}

.special-course-section .course-card .course-content-container .button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.special-course-section .course-card .course-content-container .button-container a {
    width: 50%;
}

/* Footer  */

footer input#email_subscribe {
    position: relative;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: 0;
    height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 20px;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: .3s;
    color: #fff;
}

footer .input-wrapper.floating-label label {
    left: 1rem;
    color: #9e9e9e;
    font-size: 16px;
    cursor: text;
    transition: all .2s ease;
    transform-origin: 0 100%;
    text-align: initial;
    /* transform: translateY(12px); */
    pointer-events: none;
    position: absolute;
    top: 10px;
    left: 24px;
}

footer .input-wrapper.floating-label.floating label {
    top: -14px !important;
    left: 18px !important;
    font-size: 14px;
}

footer.footer_area {
    background: #212121;
    padding: 70px 0 50px;
    position: relative;
    text-align: center;
    color: #fff
}

.mailchaimp-block {
    max-width: 650px;
    margin: 0 auto
}

.mailchaimp-block h4 {
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 500
}

ul.socillink-block {
    border: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding-left: 0
}

ul.socillink-block>li {
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #d0ad73;
    transition: 250ms ease-out
}

ul.socillink-block>li a {
    /* font-size: 18px; */
    line-height: 0;
    color: #fff;
    transition: 265ms ease-in
}

.footer-info-block p {
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 0;
    font-size: 18px
}

.adreess p {
    text-align: center
}

.footer-info-block h5 {
    margin-top: 26px;
    margin-bottom: 10px
}

.footer-info-block {
    margin-bottom: 0;
    margin-top: 60px;
    text-align: center !important;
    border-bottom: 1px solid #ccc8
}

.foot-links {
    border: none !important
}

ul.foot-links.wow.fadeInUp.footer_linkss {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.foot-links li {
    line-height: 34px;
    list-style-type: none;
    margin-inline: 27px
}

.foot-links li a {
    color: #fff;
    font-size: 17px
}

.foot-links li a:hover {
    color: #d0ad73;
    text-decoration: underline !important
}

footer span.main-title {
    font-size: 45px !important
}

footer span.footer-title {
    display: block;
    margin-bottom: 30px;
    font-size: 27px;
    letter-spacing: 0;
    font-weight: 400
}

.footerMobile {
    text-align: left
}

.bottom-footer {
    position: relative;
    background-position: center bottom;
    padding-bottom: 230px !important
}

.bottom-footer .bottom-footer-left-image {
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 311px;
    height: 600px;
    z-index: -1
}

.bottom-footer .bottom-footer-image {
    position: absolute;
    z-index: -2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 690px;
    height: auto
}

.bottom-footer .logo-img {
    max-width: 150px
}

.daily-block {
    max-width: 330px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
}

.daily-block span {
    font-family: Arizonia, cursive;
    font-size: 30px;
    color: #717171
}

.daily-block img {
    margin-bottom: 20px
}

.daily-block p {
    font-family: "Avenir Next" !important;
    display: block;
    font-style: italic;
    font-size: 19px;
    line-height: 24px;
    color: #3a3a3a;
    font-weight: 500
}

p.footer-copyright {
    font-size: 15px;
    color: #9e9e9e;
    font-family: "Avenir Next";
    font-style: inherit;
    font-weight: 500
}

footer .container::after {
    content: ".";
    position: absolute;
    bottom: -19px;
    left: 50%;
    font-size: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #212121;
    margin-left: -21px
}

.col-lg-12 {
    width: 100%;
}

.col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
}

.row {
    display: flex;
}

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

/* Modal */
.count-me-in-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999
}

.count-me-in-modal {
    display: none;
    overflow: hidden;
}

.count-me-in-modal .modal-body {
    border-radius: 20px;
    max-width: 990px;
    width: 100%;
    display: flex;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.count-me-in-modal .modal-body .close-button {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border-radius: 100%;
    border: none;
    cursor: pointer;
    outline: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.count-me-in-modal .modal-body .close-button.show-on-mobile{
    display: none;
    outline: 1px solid white;
}

.count-me-in-modal .image-container {
    width: 50%;
    object-fit: cover;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white-color);
}

.count-me-in-modal .image-container img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.count-me-in-modal .form-container {
    width: 50%;
}

.count-me-in-modal .form-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 30px;
    gap: 30px;
    padding-right: 40px;
}

.count-me-in-modal .form-container form .input-container {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 100%;
}

.count-me-in-modal .form-container form .input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* margin-bottom: 40px; */
    position: relative;
}

.count-me-in-modal .form-container form .number-wrapper{
    display: flex;
    position: relative;
}

.count-me-in-modal .form-container form .input-wrapper.floating-label label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    transition: all .3s ease;
}

.count-me-in-modal .input-wrapper.floating-label.floating label {
    left: 16px !important;
    top: -10px !important;
    font-size: 14px !important;
    background: var(--white-color);
    color: var(--black-color);
    padding-inline: 4px;
}

.count-me-in-modal .form-container form .input-wrapper label {
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    letter-spacing: 0%;
}

.count-me-in-modal .form-container form input {
    /*max-width: 391px;*/
    max-width: 100%;
    width: 100%;
    box-shadow: 0px 1.05px 2.1px 0px #1018280D;
    border: 1px solid #404040;
    color: #000;
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0%;
}

.count-me-in-modal .form-container form .number-wrapper .input-wrapper.max-width{
    width: max-content !important;
    max-width: max-content !important;
}

.count-me-in-modal .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #000 !important;
}

.count-me-in-modal .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #000;
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 16px;
    line-height: 48px !important;
    letter-spacing: 0%;
    height: 100%;
   
}

.count-me-in-modal .select2-selection{
    height: 100% !important;
}

.count-me-in-modal .form-container form .number-wrapper .input-wrapper .select2{
    width: 100px !important;
    height: 100%;
    border: 1px solid #404040;
    border-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.count-me-in-modal .form-container form .number-wrapper .input-wrapper #popup-number{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
    
}


/* Modal overlay */
.application-subbmitted.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
  }

  .application-subbmitted.modal.show{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.application-subbmitted .modal-content{
    border-radius: 8px;
}

.application-subbmitted.modal > div {
    background: #fff;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: "Avenir";
}

.application-subbmitted.modal .modal-header {
    padding: 16px 24px;
    background: #f9f9f9; 
    color: var(--purple-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.application-subbmitted.modal .modal-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.application-subbmitted.modal .modal-header .close-button{
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 1px solid black;
    border-radius: 100%;
    width: 24px;
    height: 24px;
}

.application-subbmitted.modal .modal-header .close-button{
    display: none;
    outline: 1px solid #FFF;
}

.application-subbmitted.modal .modal-header .close-button img {
    width: 24px;
    height: 24px;
}

.application-subbmitted.modal .modal-body {
    padding: 20px 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.application-subbmitted.modal .modal-footer {
    padding: 16px 24px;
    background: #f9f9f9;
    text-align: right;
}

.application-subbmitted.modal .modal-footer .modal-btn{
    padding: 4px 12px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid var(--purple-color);
    border-radius: 8px;
    color: var(--purple-color);
    transition: all .2s ease;
    width: max-content;
}

  .application-subbmitted.modal .modal-footer .modal-btn:hover{
    background-color: var(--purple-color);
    color: var(--white-color);
}
  
/* Responsive adjustments */
@media (max-width: 480px) {
    .application-subbmitted.modal > div {
      width: 95%;
    }
}


/* whats app button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background-color 0.3s, transform 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20b954;
    transform: scale(1.1);
}

/* ====== THANK YOU PAGE =======  */
.thankyou-section {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.thankyou-page-banner {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.thankyou-section .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.thank-you-page-logo{
    width: 150px;
    position: relative;
    z-index: 9;
}

.information{
    display: flex;
    flex-direction: column;
    padding-block: 60px;
    justify-content: center;
    align-items: center;
    padding-inline: 20px;
    background: #f4efeb;
}

.information .content-container{
    text-align: center;
    padding-bottom: 20px;
    font-size: 18px;
}

.information .content-container .font-bold{
    font-size: 18px !important;
    font-weight: bold !important;
    font-family: "Avenir Next Bold";
}

.thankyou-section .content-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
    margin-top: auto;
}

.thankyou-section .content-container h1 {
    font-family: "Brittney Signature";
    font-size: 40px !important;
    line-height: 60px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    letter-spacing: 0 !important;
}

.thankyou-section .content-container p {
    font-size: 20px;
}

.sattva-connect-team {
    margin-top: 24px;
}

.quote-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--golden-color);
    padding: 50px 0;
}

.quote-text p{ 
    color: #fff;
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 1px;
    font-style: italic;
    text-align: center;
    padding: 27px 0;
}

.quote-text .quote-writer{ 
    margin-top: 20px;
    padding: 0;
    font-family: "Brittney Signature";
    font-size: 36px !important;
}

@media screen and (max-width: 1200px) {
    .the-journey-begains-section .left-section .countdown {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-section .content-container,
    .the-journey-begains-section,
    .international-yoga-day-section,
    .refer-friend-section,
    .event-schedule-section,
    .experience-section .content-container,
    .meet-founder-section .content-container,
    .meet-teacher-section .content-container,
    .register-now-section .content-container,
    .special-course-section .content-container {
        padding-inline: 50px;
    }

    .international-yoga-day-section .left-section{
        padding: 40px 20px 40px 0 ;
    }

    .refer-friend-section .content-container{
        padding: 0;
    }

    .refer-friend-section .input-container{
        flex-wrap: wrap;
    }
    .refer-friend-section .input-container{
        gap: 34px;
    }

    .event-table .teacher-item{
        padding-right: 20px;
    }
    .exclusive-offerings-section .exclusive-image{
        max-width: 100%;
    }

    .experience-section .content-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .special-course-section .course-card .course-content-container p{
        line-height: 24px;
    }
    .special-course-section .course-card .course-content-container .more-info p{
        line-height: 20px;
        text-align: left;
    }
    .special-course-section .course-card .course-content-container .button-container{
        flex-direction: column;
        gap: 8px;
    }
    .special-course-section .course-card .course-content-container .button-container button{
        width: 100%;
    }
    
    .event-schedule-section .tab-button{
        font-size: 16px;
        line-height: 20px;
    }
    .event-schedule-section .filter-container{
        flex-direction: column;
    }
    .the-journey-begains-section .left-section .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section .banner-logo{
        max-width: 90px;
    }
    .header-container h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .button {
        font-size: 16px;
        padding:8px;
        width: 200px;
        height: 40px;
        line-height: 22px;
    }

    /* 20px padding for mobile */
    .hero-section .content-container,
    .the-journey-begains-section,
    .international-yoga-day-section,
    .refer-friend-section,
    .event-schedule-section,
    .experience-section .content-container,
    .meet-founder-section .content-container,
    .meet-teacher-section .content-container,
    .register-now-section .content-container,
    .special-course-section .content-container {
        padding-inline: 20px;
    }

    .hero-section .content-container h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-section .content-container .date,
    .hero-section .content-container .bio {
        font-size: 16px;
    }

    .hero-section .features {
        flex-direction: column;
        gap: 4px;
    }

    .hero-section .feature-item span {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-section .content-container .button-container {
        flex-direction: row;
        gap: 16px;
    }

    /* Journey begins */
    .the-journey-begains-section .section-content {
        flex-direction: column;
    }

    .the-journey-begains-section .left-section,
    .the-journey-begains-section .right-section {
        width: 100%;
    }
    
    .the-journey-begains-section .left-section .countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .the-journey-begains-section .left-section .countdown .time-unit {
        padding: 0;
        width: 100%;
    }

    .time-unit span {
        font-size: 30px;
        line-height: 38px;
    }

    .time-unit small {
        font-size: 15px;
        line-height: 30px;
    }

    .the-journey-begains-section .right-section {
        padding: 40px;
    }

    .right-section .join-text {
        font-size: 20px;
    }

    .avatars img {
        width: 50px;
        height: 50px;
    }

    /* International yoga day */
    .international-yoga-day-section {
        flex-direction: column;
        padding-block: 40px;
        gap: 40px;
    }

    .international-yoga-day-section .left-section {
        padding: 0;
        align-items: center;
    }

    .international-yoga-day-section .left-section,
    .international-yoga-day-section .right-section {
        width: 100%;
    }

    /* Share the light section */
    .refer-friend-section .mural-image-left {
        position: absolute;
        width: 360px;
        left: -56%;
        top: -25%;
        opacity: .2;
    }

    .refer-friend-section .sub-heading-text {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
    }

    .refer-friend-section .mural-image-right {
        right: -53%;
    }

    .refer-friend-section .content-container {
        padding: 0;
    }

    .refer-friend-section .input-container {
        flex-direction: column;
        gap: 40px;
    }

    .refer-friend-section form .fields-container {
        gap: 8px;
    }

    /* Event schedule */
    .event-schedule-section .tab-buttons {
        flex-direction: column-reverse;
    }

    .tab-button-container {
        display: flex;
        width: 100%;
        gap: 16px;
    }

    .event-schedule-section .tab-content-wrapper{
        padding-top: 0;
    }
    .event-schedule-section .tab-button {
        padding: 0;
    }

    .filter-container {
        margin-block: 16px;
        width: 100%;
    }

    .event-schedule-section .filter-container select,
    .event-schedule-section .filter-container button {
        /*width: 50%;*/
    }
    .event-schedule-section .filter-container{
        flex-direction: row;
    }

    .event-schedule-section .filter-container button.desktop-button {
        display: none;
    }

    .event-schedule-section .filter-container button.mobile-button {
        display: flex;
    }

    .event-schedule-section .event-table thead td span {
        font-size: 17px;
        line-height: 22px;
        padding-bottom: 12px;
    }

    .event-schedule-section .event-table tbody td {
        font-size: 14px;
        line-height: 22px;
    }

    .event-schedule-section .event-table {
        display: none;
    }
    
    .event-table-mobile{
        display: block;
        border: 1px solid #ddd;
    }

    .event-card{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px;
        font-size: 17px;
    }

    .event-card.odd{
        background-color: #f2f2f2;
    }
    
    .event-card .img-container{
        width: 55px;
    }

    .event-card-item{
        display: flex;
        align-items: baseline;
        justify-content: start;
    }

    .event-card p.label{
        font-family: "Avenir Next Bold";
        min-width: 60px;
        width: 60px;
        font-size: 12px;
        font-weight: bold;
        color: #000;
    }

    .event-table-mobile .teacher-item {
        display: flex;
        align-items: center;
    }

    .event-table .teacher-item img,
    .event-table-mobile .teacher-item img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
        object-fit: cover;
    }

    .event-table .teacher-item {
        gap: 8px;
    }

    /* Exclusive offerings */
    .exclusive-offerings-section {
        padding-bottom: 40px;
    }

    .exclusive-offerings-section .content-container {
        padding: 0;
        /* gap: 16px; */
        flex-direction: column;
    }

    .exclusive-offerings-section .card.card-left,
    .exclusive-offerings-section .card.card-right {
        position: unset;
        animation: none;
        max-width: 100%;
        text-align: center;
    }
    
    
    .international-yoga-day-section .left-section .content-container p{
        text-align: center;
    }

    /* what you will experience */
    .experience-section .content-container {
        grid-template-columns: 1fr;
    }

    /* Meet Founder */
    .meet-founder-section .content-container {
        flex-direction: column;
        gap: 16px;
    }

    .meet-founder-section .content-container .left-container {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .meet-founder-section .content-container .left-container,
    .meet-founder-section .content-container .right-container {
        width: 100%;
    }

    /* Meet your teachers */
    .meet-teacher-section .content-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* register now */
    .register-now-section {
        gap: 0;
    }

    .register-now-section .content-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .register-now-section .content-container .left-container,
    .register-now-section .content-container .right-container {
        width: 100%;
    }

    .register-now-section .content-container .features-container {
        flex-direction: column;
        margin-top: 16px;
    }

    .register-now-section .content-container .features-container .feature-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--golden-color);
        justify-content: center;
        align-items: center;
    }

    .register-now-section .content-container .left-container {
        gap: 30px;
        align-items: center;
    }

    /* special course launch */
    .special-course-section .course-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .special-course-section .course-card .course-content-container{
        align-items: center;
    }

    .special-course-section .course-card .course-content-container h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .special-course-section .course-card .course-content-container p {
        font-size: 16px;
        line-height: 28px;
    }

    .special-course-section .course-card .course-content-container .more-info {
        align-items: start;
    }

    .special-course-section .course-card .course-content-container .more-info p {
        line-height: 20px;
    }
    
    .special-course-section .course-card .course-content-container .more-info p.break-on-mobile{
        width: 90px;
    }

    .course-card .gradient-divider {
        margin-block: 25px;
    }

    .special-course-section .course-card .course-content-container .button-container {
        gap: 8px;
        width: 100%;
        flex-direction: row;
    }

    /* Modal */
    .count-me-in-modal .modal-body {
        flex-direction: column;
        width: 90%;
    }
    
    .count-me-in-modal .modal-body .close-button.show-on-desktop{
        display: none;
    }
    
    .count-me-in-modal .modal-body .close-button.show-on-mobile{
        display: flex;
        outline: 1px solid white;
    }

    .count-me-in-modal .image-container,
    .count-me-in-modal .form-container {
        width: 100%;
    }

    .count-me-in-modal .image-container {
        height: 200px;
        overflow: hidden;
    }

    .count-me-in-modal .image-container img {
        object-position: top;
    }

    .count-me-in-modal .form-container form {
        padding: 20px;
        padding-bottom: 30px;
    }

    .count-me-in-modal .form-container form .input-wrapper {
        gap: 0;
    }

    .count-me-in-modal .form-container form .input-wrapper label {
        font-size: 16px;
    }

    .count-me-in-modal .form-container form input {
        max-width: 100%;
    }

    .count-me-in-modal .form-container form button.button {
        margin-top: 10px !important;
    }

    /* Footer  */
    footer.footer_area {
        padding-inline: 20px;
    }

    .footer-subscribe-form {
        flex-direction: column;
    }

    .footer-subscribe-form .button {
        width: 100%;
    }

    .footer-info-block {
        margin-top: 10px;
        padding-bottom: 30px;
    }

    footer span.footer-title {
        margin-top: 30px;
        margin-bottom: 8px;
    }

    ul.socillink-block {
        justify-content: space-evenly;
    }

    ul.foot-links.wow.fadeInUp.footer_linkss {
        flex-direction: column;
        gap: 6px;
    }

    .bottom-footer .logo-img {
        margin-top: 20px;
    }

    .bottom-footer {
        padding-bottom: 160px !important;
    }


    .bottom-footer .bottom-footer-left-image {
        display: none;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-md-8 {
        width: 100%;
    }

    .col-lg-3 {
        width: 100%;
    }

    .row {
        display: flex;
        flex-direction: column;
    }


    /* THANK YOU PAGE */
    .thankyou-section .content-container h1{
        font-size: 50px !important;
        line-height: 58px !important;
    }

    .thankyou-section .content-container p{
        font-size: 18px;
    }


}


@keyframes moveBottomToTop {
    0% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

@keyframes moveTopToBottom {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}