.timelineScrollContentBox *{margin:0;padding:0;box-sizing:border-box}
:root {
    --font-regular: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
--font-medium: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
--font-semi-bold: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
--font-bold: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --primary-60: #1c291a99;
    --white-2: #fcfdf7;
    --cream: #F3F7E1;
    --cream-1: #fafcf3;
    --headerBorder: #1c291a33;
    --orange: #ff7a00;
    --grey: #f3f7e1a6;
    --main-black: #1c291a;
    --tranparent: #fff0;
    --white: white;
    --main-black-90: #1c291ae6;
    --green: #b8ef43;
    --h-farm-blue: #0b1651;
    --yellow: #fbc91b;
    --sub-heading: #f7faeb;
    --light-green: #e3f9b4;
    --bottom-border-light: #3e4b41a8;
    --cream-2: #FBFDF6;
    --brown: #1f2c1d;
    --greyDark: #727B6A;
    --base-dark-green: #004822;
    --base-light-green: #009C50;
    --base-pink: #F8769A;
    --base-cyan: #4CC9E9;
    --base-yellow: #F0C300;
    --base-purple: #9C2AB5;
    --base-black: #090909;
    --white: #ffffff;
    --border-bottom: #E5E5E5
    
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body {
    position: relative;
    font-family: var(--font-regular)
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    color: var(--base-black)
}

li {
    list-style: none
}

button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    width: max-content
}

.bigHide {
    display: none !important
}

.w100 {
    width: 100%
}

.mw130 {
    min-width: 130px
}

.overflowhide {
    overflow: hidden;
    transition: .3s
}

.container {
    position: relative;
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%
}

@media (max-width: 767px) {
    .container {
        max-width: 100%
    }
}

@media (min-width: 768px) and (max-width: 1080px) {
    .container {
        max-width: 100%
    }
}

@media (min-width: 1081px) and (max-width: 1280px) {
    .container {
        max-width: 90%
    }
}

.container2 {
    max-width: 1360px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%
}

@media (max-width: 767px) {
    .container2 {
        max-width: 100%
    }
}

@media (min-width: 768px) and (max-width: 1080px) {
    .container2 {
        max-width: 95%
    }
}

@media (min-width: 1081px) and (max-width: 1280px) {
    .container2 {
        max-width: 90%
    }
}

.bg-pink {
    background: var(--base-pink)
}

.bg-cyan {
    background: var(--base-cyan)
}

.bg-purple {
    background: var(--base-purple)
}

.bg-green {
    background: var(--base-light-green)
}

.pink {
    aspect-ratio: 1/1;
    height: 8px;
    width: 8px;
    background: var(--base-pink)
}

.cyan {
    aspect-ratio: 1/1;
    height: 8px;
    width: 8px;
    background: var(--base-cyan)
}

.purple {
    aspect-ratio: 1/1;
    height: 8px;
    width: 8px;
    background: var(--base-purple)
}

.green {
    aspect-ratio: 1/1;
    height: 8px;
    width: 8px;
    background: var(--base-dark-green)
}

.yellow {
    aspect-ratio: 1/1;
    height: 8px;
    width: 8px;
    background: var(--base-yellow)
}

.mobShow {
    display: none
}

.fw700 {
    font-weight: 700;
    font-family: var(--font-bold)
}

.font-italic {
    font-style: italic
}

.swiper-button-disabled {
    background: #fff5e4
}

.flexbox {
    display: flex
}

.flexEnd {
    justify-content: flex-end
}

.wrap {
    flex-wrap: wrap
}

.no-wrap {
    flex-wrap: nowrap
}

.align-center {
    align-items: center
}

.align-start {
    align-items: flex-start
}

.alignSelfEnd {
    align-self: flex-end
}

.align-end {
    align-items: flex-end
}

.baseline {
    align-items: baseline
}

.stretch {
    align-items: stretch
}

.justify-center {
    justify-content: center
}

.justify-space-between {
    justify-content: space-between
}

.justify-flex-start {
    justify-content: flex-start
}

.justify-flex-end {
    justify-content: flex-end
}

.flex-column {
    flex-direction: column
}

.flex-row {
    flex-direction: row
}

.column-reverse {
    flex-direction: column-reverse
}

.row-reverse {
    flex-direction: row-reverse
}

.underline {
    text-decoration: underline
}

.primaryOutlinedButton {
    font-size: 13px;
    background: transparent;
    color: var(--base-black);
    font-family: var(--font-bold);
    padding: 13px 22px;
    display: flex;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    outline: none;
    border: 2px solid var(--base-yellow)
}

.secondaryButton {
    font-size: 13px;
    background: var(--base-yellow);
    color: var(--base-black);
    font-family: var(--font-bold);
    padding: 13px 22px;
    display: flex;
    max-width: max-content;
    gap: 8px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    transition: .4s ease;
    cursor: pointer
}

.secondaryButton.bigButton {
    height: 52px;
    transition: .4s ease;
    gap: 1.5rem;
    padding: 10px 20px
}

.secondaryButton.animate img,
.secondaryButton.animate svg {
    transform: translate(0) translateY(0);
    transition: .4s ease
}

.secondaryButton.animate:hover img,
.secondaryButton.animate:hover svg {
    transform: translate(5px) translateY(-5px);
    transition: .4s ease
}

.secondaryButton.animateDown img,
.secondaryButton.animateDown svg {
    transform: translate(-5px) translateY(5px);
    transition: .4s ease
}

.secondaryButton.animateDown:hover img,
.secondaryButton.animateDown:hover svg {
    transform: translate(0) translateY(5px);
    transition: .4s ease
}

.mainHeader {
    background: var(--white);
    padding: 14.5px 0;
    border-bottom: 1px solid var(--border-bottom);
    position: relative;
    transition: .2s ease
}

.mainHeader.headerCrem,
.mainHeader.headerCrem.active {
    background: var(--white)
}

.mainHeader.whiteHeader {
    background: var(--white);
    transition: .2s ease
}

.mainHeader .logoSide {
    width: max-content;
    max-width: 80px;
    line-height: 0
}

.mainHeader .menuSide {
    position: relative;
    gap: 24px
}

.mainHeader .menuSide .mainMenu {
    gap: 20px
}

@media (max-width: 767px) {
    .mainHeader .menuSide .mainMenu {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mainHeader .menuSide .mainMenu {
        display: none
    }
}

.mainHeader .menuSide .mainMenu .navLinks {
    height: 1rem;
    overflow: hidden;
    font-size: 13px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    font-family: var(--font-bold);
    font-weight: 500;
    position: relative;
    text-transform: uppercase
}

.mainHeader .menuSide .mainMenu .navLinks .upperOne,
.mainHeader .menuSide .mainMenu .navLinks .bottomOne {
    transform: translateZ(0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0);
    transform-style: preserve-3d;
    transition: .2s
}

.mainHeader .menuSide .mainMenu .navLinks.triggerMenu {
    min-width: 90px;
    cursor: pointer
}

.mainHeader .menuSide .mainMenu .navLinks.triggerMenu .specialIcon {
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(0);
    transition: .4s ease
}

.mainHeader .menuSide .mainMenu .navLinks.triggerMenu.active .specialIcon {
    transform: rotate(180deg);
    transition: .4s ease
}

.mainHeader .menuSide .mainMenu .navLinks.triggerMenu .upperOne,
.mainHeader .menuSide .mainMenu .navLinks.triggerMenu .bottomOne {
    position: relative;
    left: -8px
}

.mainHeader .menuSide .mainMenu .navLinks.triggerMenu:hover .bottomOne {
    transform: translate3d(0, -140%, 0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0)
}

.mainHeader .menuSide .mainMenu .navLinks:hover .upperOne {
    transform: translate3d(0, -200%, 0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0);
    transform-style: preserve-3d;
    transition: .2s
}

.mainHeader .menuSide .mainMenu .navLinks:hover .bottomOne {
    transform: translate3d(0, -100%, 0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0);
    transform-style: preserve-3d;
    transition: .2s
}

.mainHeader .menuSide .buttonWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap
}

@media (max-width: 767px) {
    .mainHeader .menuSide .buttonWrapper {
        gap: 15px
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mainHeader .menuSide .buttonWrapper {
        gap: 15px
    }
}

.mainHeader .menuSide .buttonWrapper .mobButton {
    box-shadow: none;
    border: none;
    background: transparent;
    width: 100%;
    max-width: 2.5rem;
    gap: 10px
}

.mainHeader .menuSide .buttonWrapper .mobButton span {
    transition: .4s
}

.mainHeader .menuSide .buttonWrapper .mobButton span:first-child {
    display: block;
    position: relative;
    width: 2.5rem;
    height: 2px;
    transform: translateZ(0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0);
    transform-style: preserve-3d;
    background: var(--main-black)
}

.mainHeader .menuSide .buttonWrapper .mobButton span:last-child {
    display: block;
    position: relative;
    width: 2.5rem;
    height: 2px;
    transform: translateZ(0) scaleZ(1) rotateX(0) rotateY(0) rotate(0) skew(0);
    transform-style: preserve-3d;
    background: var(--main-black)
}

.mainHeader .menuSide .buttonWrapper .mobButton.active span:first-child {
    width: 2rem;
    transform: translate3d(0, 6px, 0) scaleZ(1) rotateX(0) rotateY(0) rotate(-45deg) skew(0)
}

.mainHeader .menuSide .buttonWrapper .mobButton.active span:last-child {
    width: 2rem;
    transform: translate3d(0, -6px, 0) scaleZ(1) rotateX(0) rotateY(0) rotate(45deg) skew(0)
}

.queriesFooter {
    position: relative;
    background-color: var(--main-black);
    padding: 26px 0;
    border-bottom: .5px solid rgba(121, 143, 117, .1)
}

.queriesFooter .subFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px
}

@media screen and (max-width: 768px) {
    .queriesFooter .subFooter {
        flex-direction: column;
        gap: 10px
    }
}

.queriesFooter .subFooter .sfLeft,
.queriesFooter .subFooter .sfRight {
    position: relative;
    max-width: calc(50% - 20px)
}

@media screen and (max-width: 768px) {

    .queriesFooter .subFooter .sfLeft,
    .queriesFooter .subFooter .sfRight {
        max-width: 100%
    }
}

.queriesFooter .subFooter .sendQueries,
.queriesFooter .subFooter .sendMails {
    color: #f3f7e1a6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%
}

.queriesFooter .subFooter .sendMails a {
    color: #f3f7e1a6;
    text-decoration: none
}

.queriesFooter .subFooter .sendMails a:hover {
    transition: .4s;
    color: var(--green)
}

.mainFooter {
    z-index: 2;
    position: relative;
    padding: 56px 0 0;
    background: var(--base-dark-green);
    overflow: hidden;
    border-top: .5px solid #E5E5E5
}

@media (max-width: 767px) {
    .mainFooter {
        padding: 56px 0 0
    }
}

.mainFooter .mobLinksWrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px
}

.mainFooter .mobLinksWrap .column1,
.mainFooter .mobLinksWrap .column2 {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.mainFooter .mobLinksWrap .column1 a,
.mainFooter .mobLinksWrap .column2 a,
.mainFooter .mobLinksWrap .column2 span {
    color: var(--white)
}

.mainFooter .full-footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px
}

@media screen and (max-width: 767px) {
    .mainFooter .full-footer-wrapper {
        margin-bottom: 32px
    }
}

.mainFooter .full-footer-wrapper .left {
    position: relative;
    max-width: 200px;
    width: 100%;
    z-index: 99
}

@media (max-width: 767px) {
    .mainFooter .full-footer-wrapper .left {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end
    }
}

.mainFooter .full-footer-wrapper .left .footer-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px
}

.mainFooter .full-footer-wrapper .left .footer-links-wrapper a {
    line-height: 0
}

.mainFooter .full-footer-wrapper .left .infoMail,
.mainFooter .full-footer-wrapper .left .infoMail a {
    color: var(--white)
}

.mainFooter .full-footer-wrapper .right {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    max-width: 508px;
    z-index: 99
}

@media (max-width: 767px) {
    .mainFooter .full-footer-wrapper .right {
        display: none
    }
}

.mainFooter .full-footer-wrapper .right .footer-links-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mainFooter .full-footer-wrapper .right .footer-links-wrap .footer-link {
    position: relative;
    display: block;
    width: max-content;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-regular);
    transition: all .2s;
    font-weight: 400;
    cursor: pointer
}

.mainFooter .full-footer-wrapper .right .footer-links-wrap .footer-link:hover {
    transform: translateY(-2px);
    transition: all .2s
}

.mainFooter .full-footer-wrapper .businessWrap {
    display: flex;
    flex-flow: column;
    gap: 32px;
    width: 100%;
    max-width: 195px
}

@media (max-width: 767px) {
    .mainFooter .full-footer-wrapper .businessWrap {
        display: none
    }
}

.mainFooter .full-footer-wrapper .businessWrap .fooTagline {
    color: var(--white);
    font-size: 23px;
    font-family: var(--font-bold);
    line-height: 120%
}

.colorBorder {
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #984096 0% 10.58%, #fff 10.58% 14.68%, #1cc1e4 14.68% 18.82%, #fff 18.82% 31.56%, #079e4d 31.56% 35.7%, #1cc1e4 35.7% 42.84%, #fff 42.84% 54.64%, #f5c21a 54.64% 62.84%, #f16a94 62.84% 67.64%, #984096 67.64% 74.12%, #079e4d 74.12% 77.96%, #1cc1e4 77.96% 81.7%, #fff 81.7% 94.54%, #079e4d 94.54% 100%)
}

@media screen and (max-width: 767px) {
    .colorBorder {
        height: 1.5px
    }
}

.bottomFooter {
    padding: 18px 0
}

.bottomFooter .bottomFooterWrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media screen and (max-width: 767px) {
    .bottomFooter .bottomFooterWrap {
        flex-direction: column;
        gap: 12px
    }
}

.bottomFooter .footerLegal {
    color: var(--white);
    font-size: 13px
}

@media screen and (max-width: 767px) {
    .bottomFooter .footerLegal {
        font-size: 12px
    }
}

.bottomFooter .referencePages {
    display: flex;
    gap: 16px;
    align-items: center
}

.bottomFooter .referencePages .footer-link {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .bottomFooter .referencePages .footer-link {
        font-size: 12px;
        text-transform: capitalize
    }
}

.mob-hide-block {
    display: block
}

@media (max-width: 767px) {
    .mob-hide-block {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mob-hide-block {
        display: none
    }
}

.mob-hide-flex {
    display: flex
}

@media (max-width: 767px) {
    .mob-hide-flex {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mob-hide-flex {
        display: none
    }
}

.mob-visible-block {
    display: none
}

@media (max-width: 767px) {
    .mob-visible-block {
        display: block
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mob-visible-block {
        display: block
    }
}

.mob-visible-flex {
    display: none
}

@media (max-width: 767px) {
    .mob-visible-flex {
        display: flex
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mob-visible-flex {
        display: flex
    }
}

@media screen and (max-width: 767px) {
    .ft-ml-6 {
        margin-left: 6rem
    }
}

@keyframes growUp {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

.buttonSimpleText {
    color: var(--base-yellow);
    font-size: 13px;
    font-family: var(--font-bold);
    line-height: 140%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    transition: .3s;
    width: max-content;
    cursor: pointer
}

.buttonSimpleText img {
    transition: .3s
}

.buttonSimpleText:hover img {
    transform: translate(2px, -2px)
}

.orangeButton {
    background: var(--base-yellow);
    color: var(--base-black);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    transition: .3s;
    width: max-content;
    border-radius: 4px;
    position: relative
}

.orangeButton img {
    transition: .3s
}

.orangeButton:hover img {
    transform: translate(4px, -4px)
}

.orangeButton.animateLeft:hover img {
    transform: translate(-4px, -4px)
}

.orangeButtonDown {
    background: #ff7a00;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    transition: .3s;
    width: max-content;
    position: relative
}

.orangeButtonDown img {
    transition: .3s
}

.orangeButtonDown:hover {
    opacity: .8
}

.orangeButtonDown:hover img {
    transform: translate(4px, 4px)
}

.darkButton {
    background: #1c291a;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    transition: .3s;
    width: max-content
}

.darkButton img {
    transition: .3s
}

.soonButton {
    background: #fafcf31a;
    color: #fafcf380;
    padding: 20px
}

.soonButton:hover {
    color: #fafcf3e6
}

.btn-disabled {
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none
}

.greyedOut {
    background: #fafcf333 !important;
    color: #fafcf380
}

.darkButton:hover {
    opacity: .8
}

.darkButton:hover img {
    transform: translate(4px, -4px)
}

.uppercase {
    text-transform: uppercase
}

.tabCommonForAll {
    margin-top: 36px;
    width: 100%;
    display: none;
    animation: tabCommonForAll .5s ease-in-out
}

@media screen and (max-width: 767px) {
    .tabCommonForAll {
        margin-top: 24px
    }
}

@keyframes tabCommonForAll {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.tabCommonForAll.active {
    display: block
}

.text10r {
    font-size: 10px;
    font-weight: 400;
    line-height: 18.2px
}

.text11r {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%
}

.text12r {
    font-size: 12px;
    font-weight: 400;
    line-height: 17.28px
}

.text13r {
    font-size: 13px;
    font-weight: 400;
    line-height: 150%
}

.text13n {
    font-size: 13px;
    font-weight: 500;
    line-height: 18.2px
}

.text13b {
    font-size: 13px;
    font-weight: 700;
    line-height: 114%;
    font-family: var(--font-bold)
}

.text14r {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px!important;
}

.text14n {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%
}

.text14b {
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    font-family: var(--font-bold)
}

.text15r {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%
}

.text15n {
    color: #f3f7e1;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-medium);
    line-height: 120%
}

.text15b {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.text16r {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    font-family: var(--font-regular)
}

.text16rg {
    color: #f3f7e1e6;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px
}

.text16n {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-medium);
    color: #1c291a;
    line-height: 120%
}

.text16b {
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    font-family: var(--font-bold)
}

.text17r {
    font-size: 17px;
    font-weight: 400;
    line-height: 180%
}

.text17b {
    font-size: 17px;
    line-height: 180%;
    font-family: var(--font-bold)
}

.text20n {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-medium);
    line-height: 22px
}

.text20m {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px
}

.text20r {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%
}

.text24r {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%
}

.text24b {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--font-bold)
}

.text18r {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%
}

.text18n {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    font-family: var(--font-medium)
}

.text18b {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    font-family: var(--font-bold)
}

.text20b {
    color: #1c291a;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -.4px;
    font-family: var(--font-bold)
}

.text26r {
    font-size: 26px;
    font-weight: 400;
    line-height: 120%
}

.text26b {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%
}

.text46b {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--font-bold)
}

.text48b {
    font-size: 48px;
    font-weight: 700;
    line-height: 130%;
    font-family: var(--font-bold)
}

.text54b {
    color: var(--white);
    font-size: 54px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.text50b {
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.text64b {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 110%
}

.text60b {
    color: var(--white);
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 1
}

.text30b {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.text36b {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.text38b {
    color: var(--base-black);
    font-size: 38px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%
}

.textTh {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 124%;
    letter-spacing: -.28px
}

.textTd {
    color: var(--base-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 124%
}

.textBold {
    font-weight: 700;
    font-family: var(--font-bold)
}

.sectionHeading {
    color: var(--white);
    font-family: var(--font-regular);
    font-size: 48px;
    font-weight: 400;
    line-height: 120%
}

@media (max-width: 767px) {
    .sectionHeading {
        font-size: 28px
    }
}

.sectionHeading.headingAdjust {
    font-size: 39.6px
}

@media (max-width: 767px) {
    .sectionHeading.headingAdjust {
        font-size: 28px
    }
}

.text-center {
    text-align: center
}

.text-color-green {
    color: var(--green)
}

.textdark {
    color: var(--base-black) !important
}

.bgGreenText {
    background: var(--green);
    padding: 0 5px;
    color: #1c291a
}

.bgdarkGreenText {
    color: #b8ef43;
    background: #1c291a
}

.darkGreenText {
    background: #1c291a;
    padding: 0 8px;
    color: #e8eae8
}

.greenTextHeading {
    color: #b8ef43;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--font-bold)
}

.flex {
    display: flex
}

.wMax {
    width: max-content
}

.textGreen {
    color: var(--base-light-green)
}

.textWhite {
    color: var(--white)
}

.font32 {
    font-size: 32px;
    font-family: var(--font-bold)
}

.font38 {
    font-size: 38px
}

.lightGreen {
    background: var(--base-light-green)
}

.hide {
    display: none
}

.boldBlack {
    color: var(--base-black);
    font-family: var(--font-regular) !important
}

.OnlyGreenText {
    color: var(--base-light-green)
}

.textYellow {
    color: var(--base-yellow)
}

.fadeGrey {
    color: #fafcf3cc
}

.fadeBlack {
    color: #1c291a
}

.creame {
    color: var(--cream)
}

.gap4 {
    display: flex;
    align-items: center;
    gap: 4px
}

.gap12 {
    gap: 12px !important
}

.megaMenu.active {
    animation: updownMenu .3s
}

@keyframes updownMenu {
    0% {
        top: 70px
    }

    to {
        top: 80px
    }
}

.ugProgramBody .megaMenu.active {
    animation: ugdownMenu .3s;
    top: 130px
}

@keyframes ugdownMenu {
    0% {
        top: 120px
    }

    to {
        top: 130px
    }
}

.megaMenu .programDetail {
    width: 100%
}

.markerTitleTag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    font-size: 11px;
    font-weight: 700;
    line-height: 120%;
    color: #1c291a;
    background: #b8ef43;
    padding: 6px 10px
}

.flipButtonGroup {
    background: var(--base-yellow);
    color: var(--base-black);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%;
    display: flex;
    border-radius: 4px;
    align-items: center;
    gap: 8px;
    transition: .3s;
    width: max-content;
    padding: 13px 22px
}

@media screen and (min-width: 374px) and (max-width: 389px) {
    .flipButtonGroup {
        gap: 12px
    }
}

.flipButtonGroup.greenBtn {
    background: #b8ef43
}

.flipButtonGroup .flipBtnOuter {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px
}

.flipButtonGroup .arrow {
    display: flex;
    align-items: center;
    justify-content: center
}

.flipButtonGroup .textOne,
.flipButtonGroup .hoverTextTwo {
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    font-size: 13px;
    font-family: var(--font-bold);
    line-height: 120%
}

.flipButtonGroup .verticalFlipButton .textOne,
.flipButtonGroup .verticalFlipButton .hoverTextTwo {
    transform: translateY(0)
}

.flipButtonGroup .hoverTextTwo {
    position: absolute
}

.flipButtonGroup .verticalFlipButton .hoverTextTwo {
    bottom: -100%
}

.flipButtonGroup img {
    transition: .3s
}

.arrowAbsolueUp.flipButtonGroup:hover .verticalFlipButton .hoverTextTwo,
.arrowAbsolueUp.flipButtonGroup:hover .verticalFlipButton .textOne {
    transform: translateY(-20px)
}

.flipButtonGroup:hover img {
    transform: translate(4px, -4px)
}

.animateDown.flipButtonGroup:hover img {
    transform: translate(4px, 4px)
}

.darkBtnAnimate {
    background: #1c291a;
    color: var(--white)
}

.flipButtonGroup:hover .verticalFlipButton .hoverTextTwo,
.flipButtonGroup:hover .verticalFlipButton .textOne {
    transform: translateY(-100%)
}

.mainTextChangeBlock {
    display: flex;
    align-items: center
}

.mainTextChangeBlock .typed-cursor {
    color: var(--white)
}

.mainTextChangeBlock .changingTextAnimate {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    color: var(--white);
    line-height: 140%
}

.mainTextChangeBlock .changingTextAnimate.typeGap {
    margin-left: 8px
}

.mainTextChangeBlock .changingTextAnimate .typingTextStay {
    color: var(--white);
    line-height: 150%
}

.emailButton {
    background: #ff7a00;
    min-height: 151px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 24px
}

.emailButton svg {
    transition: .3s;
    position: absolute;
    top: 36px;
    right: 34px
}

.emailButton:hover svg {
    transform: translate(4px, -4px)
}

.emailButton .contentEmailButton {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--white);
    font-size: 24px;
    line-height: 120%;
    font-family: var(--font-medium)
}

.emailButton .contentEmailButton .hidden-text {
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font-regular)
}

@media (max-width: 767px) {
    .mobShow {
        display: block
    }

    .mobHide {
        display: none
    }

    .mob-hide {
        display: none !important
    }

    .mob-visible {
        display: block !important
    }

    .text38b,
    .text46b {
        font-size: 28px
    }

    .text18r {
        font-size: 16px
    }

    .bigHide {
        display: flex !important
    }

     *::-webkit-scrollbar {
        width: 0;
        height: 0
    }

     *::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 0
    }

     *::-webkit-scrollbar-track {
        background: transparent
    }

    .tetrScholarshipsSection.dreamSection .blockUnviversityDivide {
        flex-direction: column;
        gap: 25px
    }

    .tetrScholarshipsSection.dreamSection .leftSideUniDivide {
        max-width: 100%;
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1
    }

    .tetrScholarshipsSection.dreamSection .rightSideUniDivide {
        max-width: 100%
    }
}

.bottomItems .currentYear {
    margin: 0 !important
}

.w-90 {
    width: 90%
}

.lightwhite {
    color: #f3f7e1
}

.popupWrapperNew {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000b3;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease
}

.popupWrapperNew.active {
    opacity: 1;
    visibility: visible
}

.popupWrapperNew .popupVideoContainer {
    position: relative;
    display: block
}

.popupWrapperNew .popupVideoContainer video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    aspect-ratio: 9/16;
    object-fit: contain
}

.popupWrapperNew .popupVideoContainer .closeIcon {
    position: absolute;
    right: -20px;
    top: -40px;
    cursor: pointer
}

@media (min-width: 1080px) and (max-width: 1600px) {
    .popupWrapperNew .popupVideoContainer .closeIcon {
        right: -25px;
        top: -25px
    }
}

@media screen and (max-width: 400px) {
    .popupWrapperNew .popupVideoContainer .closeIcon {
        right: 0
    }
}

.scrollableHeader {
    z-index: 999;
    left: 0;
    width: 100%;
    transition: top .3s ease-in-out;
    position: sticky;
    top: -1px
}

.scrollItUp {
    top: -76px;
    transition: top .3s ease-in-out
}

.scrollItUpMSEL {
    top: -80px;
    transition: top .3s ease-in-out
}

.scrollItUpAll {
    top: -1px;
    transition: top .3s ease-in-out
}

.scrollItUpAll+.mobMenu+script+.videoPopupBlockCommon+.facultyPage .commonListTabScroll {
    top: 76px;
    transition: .4s ease
}

.scrollItUpAll+.mobMenu+script+.newsPage .rightFilters {
    top: 62px;
    transition: top .2s ease-in-out
}

.scrollItUpAll .newMegaMenuBox {
    top: 65px;
    transition: .2s ease
}

.scrollItUpAll+.mobMenu+script+div+div+script+div+script+div+script+div+script+div+script+main .flipbookTabs .content .stickyTab {
    top: 75px;
    transition: top .2s ease-in-out
}

.scrollItUp11 {
    top: 0
}

.tetr_fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.colGap16 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

@media screen and (max-width: 768px) {
    .colGap16 {
        grid-template-columns: repeat(1, 1fr)
    }
}

.newTetrisApplyNow {
    width: 100%;
    max-width: 153px;
    padding: 17px;
    background: var(--base-yellow);
    cursor: pointer;
    transition: .3s ease;
    position: relative;
    border-radius: 0
}

.newTetrisApplyNow .blockArrow {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 17px;
    background: var(--base-yellow)
}

.newTetrisApplyNow .textOne,
.newTetrisApplyNow .hoverTextTwo {
    transition: .3s ease;
    color: var(--base-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 120%
}

.primaryYellowBtn {
    display: flex;
    padding: 14px 24px;
    align-items: center;
    gap: 8px;
    max-width: max-content;
    border-radius: 4px;
    background: var(--base-yellow);
    font-size: 13px;
    font-family: var(--font-semi-bold);
    font-weight: 600;
    line-height: 120%;
    color: var(--base-black)
}

.primaryYellowBtn[disabled] {
    background: #d4d4d4;
    cursor: not-allowed
}

@media screen and (max-width: 767px) {
    .primaryYellowBtn {
        padding: 12px 14px
    }
}

.primaryYellowBtn img {
    transition: .3s ease
}

.primaryYellowBtn:hover img {
    transform: translate(4px, -4px)
}

@media screen and (max-width: 767px) {
    .mobBtnFix {
        padding: 8px 10px
    }
}

.secondaryOutlineBtn {
    display: flex;
    max-width: max-content;
    padding: 14px 24px;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 2px solid var(--base-yellow);
    background: var(--white);
    font-size: 13px;
    font-family: var(--font-semi-bold);
    font-weight: 600;
    line-height: 120%;
    color: var(--base-black)
}

@media screen and (max-width: 767px) {
    .secondaryOutlineBtn {
        padding: 12px 14px
    }
}

.secondaryOutlineBtn img {
    transition: .3s ease
}

.secondaryOutlineBtn:hover img {
    transform: translate(4px, -4px)
}

.swiperOrangeButton {
    background: var(--base-yellow);
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    z-index: 99
}

.swiperOrangeButton.swiper-button-disabled {
    background: #fff5e4;
    border: .75px solid var(--base-yellow);
    border-right: none
}

.mt-1 {
    margin-top: 1px
}

.mt-2 {
    margin-top: 2px
}

.mt-3 {
    margin-top: 3px
}

.mt-4 {
    margin-top: 4px
}

.mt-5 {
    margin-top: 5px
}

.mt-6 {
    margin-top: 6px
}

.mt-7 {
    margin-top: 7px
}

.mt-8 {
    margin-top: 8px
}

.mt-9 {
    margin-top: 9px
}

.mt-10 {
    margin-top: 10px
}

.mt-11 {
    margin-top: 11px
}

.mt-12 {
    margin-top: 12px
}

.mt-13 {
    margin-top: 13px
}

.mt-14 {
    margin-top: 14px
}

.mt-15 {
    margin-top: 15px
}

.mt-16 {
    margin-top: 16px
}

.mt-17 {
    margin-top: 17px
}

.mt-18 {
    margin-top: 18px
}

.mt-19 {
    margin-top: 19px
}

.mt-20 {
    margin-top: 20px
}

.mt-21 {
    margin-top: 21px
}

.mt-22 {
    margin-top: 22px
}

.mt-23 {
    margin-top: 23px
}

.mt-24 {
    margin-top: 24px
}

.mt-25 {
    margin-top: 25px
}

.mt-26 {
    margin-top: 26px
}

.mt-27 {
    margin-top: 27px
}

.mt-28 {
    margin-top: 28px
}

.mt-29 {
    margin-top: 29px
}

.mt-30 {
    margin-top: 30px
}

.mt-31 {
    margin-top: 31px
}

.mt-32 {
    margin-top: 32px
}

.mt-33 {
    margin-top: 33px
}

.mt-34 {
    margin-top: 34px
}

.mt-35 {
    margin-top: 35px
}

.mt-36 {
    margin-top: 36px
}

.mt-37 {
    margin-top: 37px
}

.mt-38 {
    margin-top: 38px
}

.mt-39 {
    margin-top: 39px
}

.mt-40 {
    margin-top: 40px
}

.mt-41 {
    margin-top: 41px
}

.mt-42 {
    margin-top: 42px
}

.mt-43 {
    margin-top: 43px
}

.mt-44 {
    margin-top: 44px
}

.mt-45 {
    margin-top: 45px
}

.mt-46 {
    margin-top: 46px
}

.mt-47 {
    margin-top: 47px
}

.mt-48 {
    margin-top: 48px
}

.mt-49 {
    margin-top: 49px
}

.mt-50 {
    margin-top: 50px
}

.mt-51 {
    margin-top: 51px
}

.mt-52 {
    margin-top: 52px
}

.mt-53 {
    margin-top: 53px
}

.mt-54 {
    margin-top: 54px
}

.mt-55 {
    margin-top: 55px
}

.mt-56 {
    margin-top: 56px
}

.mt-57 {
    margin-top: 57px
}

.mt-58 {
    margin-top: 58px
}

.mt-59 {
    margin-top: 59px
}

.mt-60 {
    margin-top: 60px
}

.mt-61 {
    margin-top: 61px
}

.mt-62 {
    margin-top: 62px
}

.mt-63 {
    margin-top: 63px
}

.mt-64 {
    margin-top: 64px
}

.mt-65 {
    margin-top: 65px
}

.mt-66 {
    margin-top: 66px
}

.mt-67 {
    margin-top: 67px
}

.mt-68 {
    margin-top: 68px
}

.mt-69 {
    margin-top: 69px
}

.mt-70 {
    margin-top: 70px
}

.mt-71 {
    margin-top: 71px
}

.mt-72 {
    margin-top: 72px
}

.mt-73 {
    margin-top: 73px
}

.mt-74 {
    margin-top: 74px
}

.mt-75 {
    margin-top: 75px
}

.mt-76 {
    margin-top: 76px
}

.mt-77 {
    margin-top: 77px
}

.mt-78 {
    margin-top: 78px
}

.mt-79 {
    margin-top: 79px
}

.mt-80 {
    margin-top: 80px
}

.mt-81 {
    margin-top: 81px
}

.mt-82 {
    margin-top: 82px
}

.mt-83 {
    margin-top: 83px
}

.mt-84 {
    margin-top: 84px
}

.mt-85 {
    margin-top: 85px
}

.mt-86 {
    margin-top: 86px
}

.mt-87 {
    margin-top: 87px
}

.mt-88 {
    margin-top: 88px
}

.mt-89 {
    margin-top: 89px
}

.mt-90 {
    margin-top: 90px
}

.mt-91 {
    margin-top: 91px
}

.mt-92 {
    margin-top: 92px
}

.mt-93 {
    margin-top: 93px
}

.mt-94 {
    margin-top: 94px
}

.mt-95 {
    margin-top: 95px
}

.mt-96 {
    margin-top: 96px
}

.mt-97 {
    margin-top: 97px
}

.mt-98 {
    margin-top: 98px
}

.mt-99 {
    margin-top: 99px
}

.mt-100 {
    margin-top: 100px
}

.mt-120 {
    margin-top: 120px
}

.mt-128 {
    margin-top: 128px
}

@media screen and (max-width: 767px) {
    .mt-128 {
        margin-top: 80px
    }
}

.mt-140 {
    margin-top: 140px
}

.mb-1 {
    margin-bottom: 1px
}

.mb-2 {
    margin-bottom: 2px
}

.mb-3 {
    margin-bottom: 3px
}

.mb-4 {
    margin-bottom: 4px
}

.mb-5 {
    margin-bottom: 5px
}

.mb-6 {
    margin-bottom: 6px
}

.mb-7 {
    margin-bottom: 7px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-9 {
    margin-bottom: 9px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-11 {
    margin-bottom: 11px
}

.mb-12 {
    margin-bottom: 12px
}

.mb-13 {
    margin-bottom: 13px
}

.mb-14 {
    margin-bottom: 14px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-17 {
    margin-bottom: 17px
}

.mb-18 {
    margin-bottom: 18px
}

.mb-19 {
    margin-bottom: 19px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-21 {
    margin-bottom: 21px
}

.mb-22 {
    margin-bottom: 22px
}

.mb-23 {
    margin-bottom: 23px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-26 {
    margin-bottom: 26px
}

.mb-27 {
    margin-bottom: 27px
}

.mb-28 {
    margin-bottom: 28px
}

.mb-29 {
    margin-bottom: 29px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-31 {
    margin-bottom: 31px
}

.mb-32 {
    margin-bottom: 32px
}

.mb-33 {
    margin-bottom: 33px
}

.mb-34 {
    margin-bottom: 34px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-36 {
    margin-bottom: 36px
}

.mb-37 {
    margin-bottom: 37px
}

.mb-38 {
    margin-bottom: 38px
}

.mb-39 {
    margin-bottom: 39px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-41 {
    margin-bottom: 41px
}

.mb-42 {
    margin-bottom: 42px
}

.mb-43 {
    margin-bottom: 43px
}

.mb-44 {
    margin-bottom: 44px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-46 {
    margin-bottom: 46px
}

.mb-47 {
    margin-bottom: 47px
}

.mb-48 {
    margin-bottom: 48px
}

.mb-49 {
    margin-bottom: 49px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-51 {
    margin-bottom: 51px
}

.mb-52 {
    margin-bottom: 52px
}

.mb-53 {
    margin-bottom: 53px
}

.mb-54 {
    margin-bottom: 54px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-56 {
    margin-bottom: 56px
}

.mb-57 {
    margin-bottom: 57px
}

.mb-58 {
    margin-bottom: 58px
}

.mb-59 {
    margin-bottom: 59px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-61 {
    margin-bottom: 61px
}

.mb-62 {
    margin-bottom: 62px
}

.mb-63 {
    margin-bottom: 63px
}

.mb-64 {
    margin-bottom: 64px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-66 {
    margin-bottom: 66px
}

.mb-67 {
    margin-bottom: 67px
}

.mb-68 {
    margin-bottom: 68px
}

.mb-69 {
    margin-bottom: 69px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-71 {
    margin-bottom: 71px
}

.mb-72 {
    margin-bottom: 72px
}

.mb-73 {
    margin-bottom: 73px
}

.mb-74 {
    margin-bottom: 74px
}

.mb-75 {
    margin-bottom: 75px
}

.mb-76 {
    margin-bottom: 76px
}

.mb-77 {
    margin-bottom: 77px
}

.mb-78 {
    margin-bottom: 78px
}

.mb-79 {
    margin-bottom: 79px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-81 {
    margin-bottom: 81px
}

.mb-82 {
    margin-bottom: 82px
}

.mb-83 {
    margin-bottom: 83px
}

.mb-84 {
    margin-bottom: 84px
}

.mb-85 {
    margin-bottom: 85px
}

.mb-86 {
    margin-bottom: 86px
}

.mb-87 {
    margin-bottom: 87px
}

.mb-88 {
    margin-bottom: 88px
}

.mb-89 {
    margin-bottom: 89px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-91 {
    margin-bottom: 91px
}

.mb-92 {
    margin-bottom: 92px
}

.mb-93 {
    margin-bottom: 93px
}

.mb-94 {
    margin-bottom: 94px
}

.mb-95 {
    margin-bottom: 95px
}

.mb-96 {
    margin-bottom: 96px
}

.mb-97 {
    margin-bottom: 97px
}

.mb-98 {
    margin-bottom: 98px
}

.mb-99 {
    margin-bottom: 99px
}

.mb-100 {
    margin-bottom: 100px
}

.ml-16 {
    margin-left: 16px
}


 .timelineOnScrollSection,
 .timelineOnScrollSection .swiper-pagination {
    position: relative
}


.timelineOnScrollSection {
    background: #000;
}

.timelineOnScrollSection .timelineScrollContentBox {
    background: #000;
    position: sticky;
    top: 115px
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .timelineOnScrollSection .timelineScrollContentBox {
        top: 25px
    }
}

@media (min-width: 1441px) and (max-width: 1600px) {
    .timelineOnScrollSection .timelineScrollContentBox {
        top: 68px
    }
}

.timelineOnScrollSection .timelineScrollContentBox .timelineBlockEsteemed {
    display: flex;
    color: #fff;
    margin-top: 40px;
    gap: 20px
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: calc(50% - 20px)
}

@media (max-width: 767px) {
    .timelineOnScrollSection .timelineScrollContentBox .acrossWrap {
        max-width: 100%
    }
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading {
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 767px) {
    .timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading {
        display: none
    }
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .headerText {
    font-size: 23px;
    line-height: 120%;
    font-weight: 800;
    color: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .firstPagination {
    top: 0
}
.swiper-pagination-bullet{
    display: none;
}
.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .firstPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .firstPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .secondPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .secondPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .secondPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirdPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirdPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirdPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fifthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fifthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fifthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .sixthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .sixthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .sixthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .seventhPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .seventhPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .seventhPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .ninthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .ninthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .ninthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .tenthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .tenthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .tenthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .eleventhPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .eleventhPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .eleventhPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .twelfthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .twelfthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .twelfthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirteenthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirteenthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .thirteenthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourteenthPagination {
    top: 0
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourteenthPagination .swiper-pagination-bullet {
    background: #fff5e4
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .topHeading .swipeBulletWrap .fourteenthPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .countryContentData {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.timelineOnScrollSection .timelineScrollContentBox .acrossWrap .countryContentData img {
    width: 100%;
    height: 295px;
    object-fit: cover
}

@media screen and (max-width: 768px) {
    .timelineOnScrollSection .timelineScrollContentBox .acrossWrap .countryContentData {
        gap: 10px
    }
}

.timelineOnScrollSection .timelineScrollContentBox .timelineGroupNav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding: 10px;
    width: 100%;
}

.timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn {
    display: inline-flex;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #ac0000;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 12px;
    font-family: var(--font-regular);
    line-height: 120%;
    position: relative
}

.timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn.active {
    color: var(--base-black);
    font-family: var(--font-bold);
    background: var(--base-yellow)
}

.timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ac0000
}

.timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn.active:before {
    background-color: var(--base-yellow);
    visibility: visible
}

.timelineOnScrollSection .timelineScrollContentBox .timelineBorderLine {
    width: 2px;
    background: #ffe9bb;
    opacity: .1;
    position: absolute;
    left: -2px;
    height: 210px
}

.timelineOnScrollSection .timelineScrollContentBox .allTabContentTimeline {
    display: none;
    width: 100%;
    max-width: calc(100% - 130px)
}

.timelineOnScrollSection .timelineScrollContentBox .allTabContentTimeline.active {
    display: block
}


.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 30px
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .containAllCardTimeLine {
    width: 100%
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .timelineSwiperBothWrap {
    display: flex;
    align-items: center;
    gap: 40px
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent .mobYellowHeading {
    font-size: 13px;
    font-family: var(--font-bold);
    line-height: 140%;
    color: var(--base-yellow);
    display: none
}

@media screen and (max-width: 768px) {
    .timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent .mobYellowHeading {
        display: block
    }
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent h4 {
    line-height: 120%;
    color: var(--white);
    font-family: var(--font-bold)
}

.timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent p {
    color: var(--white);
    line-height: 120%;
    min-height: 41.5px
}

@media screen and (max-width: 768px) {
    .timelineOnScrollSection .timelineScrollContentBox .timelineContentFlexWrap .cardTimelineContent p {
        min-height: initial;
        font-size: 14px
    }
}

.tetrNewPreviewBlockhome .swiper-slide {
    transition: .3s
}

.tetrNewPreviewBlockhome .swiper {
    overflow: unset;
    overflow-x: clip
}

.eventCardTetrBlock {
    position: relative;
    width: 100%;
    background: var(--white);
    transition: all .25s ease-in
}

.eventCardTetrBlock .eventComingTag {
    max-width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    gap: 6px;
    text-transform: uppercase;
    border: 1px solid #D4D4D4;
    background: #d4d4d4;
    color: var(--base-black);
    font-family: var(--font-bold);
    font-size: 11px;
    font-weight: 700;
    line-height: 140%;
    transition: all .25s ease-in;
    position: absolute;
    bottom: 7%;
    right: 3.9%
}

@media screen and (max-width: 767px) {
    .eventCardTetrBlock .eventComingTag {
        padding: 4px 6px
    }
}

.eventCardTetrBlock:hover {
    background-color: #ebfff2;
    transition: all .25s ease-in
}

.eventCardTetrBlock:hover .svgArrowUp svg path {
    stroke: var(--white)
}

.eventCardTetrBlock:hover .svgArrowUp rect {
    fill: var(--base-yellow)
}

.eventCardTetrBlock .svgArrowUp {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px
}

.eventCardTetrBlock .svgArrowUp svg {
    cursor: pointer
}

.eventCardTetrBlock .svgArrowUp rect {
    fill: #fafcf3
}

.eventCardTetrBlock .svgArrowUp svg path {
    stroke: #ff7a00
}

.eventCardTetrBlock .eventCoachDetails {
    padding: 16px
}

.eventCardTetrBlock .eventCoachDetails h3 {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0;
    color: var(--base-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    font-family: var(--font-bold);
    line-height: 120%;
    text-transform: capitalize
}

.eventCardTetrBlock .eventCoachDetails p {
    color: #1c291bb3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.eventCardTetrBlock .eventCoachDetails .timeEventBlock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 60px
}

.eventCardTetrBlock .eventCoachDetails .timeEventBlock .innerDetailTime {
    display: flex;
    align-items: center;
    gap: 7px
}

.eventCardTetrBlock .eventCoachDetails .timeEventBlock .innerDetailTime span {
    color: var(--base-black);
    line-height: 120%
}

.applyPosterSection {
    padding: 0;
    background: url(https://cdn.tetr.com/assets/ih-images/V2/scholarBanner.webp) no-repeat center center/cover;
    min-height: 75vh;
    position: relative
}

@media screen and (max-width: 767px) {
    .applyPosterSection {
        background: url(https://cdn.tetr.com/assets/ih-images/V2/scholarBannerMob.webp) no-repeat center center/cover;
        min-height: 65vh
    }
}

.applyPosterSection .aboutScholarship {
    padding: 50px;
    background: var(--white);
    width: 100%;
    max-width: 585px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media screen and (max-width: 767px) {
    .applyPosterSection .aboutScholarship {
        padding: 12px 20px;
        max-width: 300px;
        gap: 16px
    }
}

.applyPosterSection .aboutScholarship .scholarText {
    color: var(--base-black);
    font-size: 27.6px;
    font-family: var(--font-regular);
    line-height: 120%
}

@media screen and (max-width: 767px) {
    .applyPosterSection .aboutScholarship .scholarText {
        font-size: 20px
    }
}

.redefiningEduSectionMob {
    background: #310000;
    display: none
}

.fullCoverImageMob {
    display: none
}

.studentLifeHero {
    width: 100%;
    position: relative;
    height: 100%;
    max-height: calc(100vh - 150px);
    line-height: 0
}

.studentLifeHero .studentLifeHeroImg {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: calc(100vh - 150px)
}

.studentLifeHero .videoPlayIconLife {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: max-content;
    margin: 0 auto;
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translate(-50%)
}

.studentLifeHero .videoPlayIconLife span {
    color: var(--white);
    line-height: 100%
}

.studentLifeHero .studentLifeHeroContent {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 80px;
    transform: translate(-50%)
}

@media (max-width: 767px) {
    .studentLifeHero .studentLifeHeroContent {
        top: 5%
    }
}

.studentLifeHero .mainContentStudentLife {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.studentLifeHero .typeTextStudentlife {
    display: flex;
    align-items: center
}

.studentLifeHero .typeTextStudentlife .mr4 {
    margin-right: 4px
}

.studentLifeHero .typeTextStudentlife .text16b {
    line-height: 130%
}

.studentLifeHero .typeTextStudentlife .textStay {
    color: #fafcf3;
    line-height: 130%
}

.headingCenter {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center
}

.weekPurposeSection {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1
}

.weekPurposeSection:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52%;
    z-index: -1;
    background: #1c291a
}

.weekPurposeSection .academicImmerSionBlock {
    background: var(--white);
    width: 100%;
    max-width: 1380px;
    padding: 60px 0 80px;
    margin: 0 auto
}

.weekPurposeSection .academicHeadingCenter {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    margin: 0 auto;
    max-width: 500px
}

.weekPurposeSection .academicHeadingCenter h3 {
    color: #1c291a
}

.weekPurposeSection .academicHeadingCenter p {
    color: #1c291ab3
}

.weekPurposeSection .immersionBoxes {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translate(40px);
    z-index: 9
}

.weekPurposeSection .immersionBoxes:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 100%;
    height: 1px;
    background: #727b6a;
    opacity: .2;
    z-index: -1
}

.weekPurposeSection .immersionBoxes .boxCategory {
    position: relative;
    background: #e4e7dd;
    color: #1c291a66;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: normal;
    padding: 10px 12px;
    transition: .2s ease;
    font-family: var(--font-bold)
}

.weekPurposeSection .immersionBoxes .boxCategory.active {
    background: #feebd9;
    color: #ff7a00;
    transition: .2s ease
}

.weekPurposeSection .swiperImmersionsWrap {
    overflow-y: visible;
    overflow-x: clip
}

.weekPurposeSection .swiperImmersionsWrap .swiper-slide {
    transition: .4s ease
}

.weekPurposeSection .swiperImmersionsWrap .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    transform: scale(.9) translate(8px)
}

.weekPurposeSection .swiperImmersionsWrap .swiper-slide.swiper-slide-active {
    transform: scale(1.1) translate(-9px);
    transition: .4s ease;
    margin-left: 10px
}

.weekPurposeSection .swiperImmersionsWrap .swiper-slide.swiper-slide-next+div {
    transform: scale(.9) translate(-19px) !important
}

.weekPurposeSection .swiperImmersionsWrap .swiper-slide.swiper-slide-prev {
    transform: translate(-9.5px)
}

.shapeFuture {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f3f7e1
}

@media (max-width: 767px) {
    .shapeFuture {
        padding: 60px 0
    }
}

.shapeFuture .shapeFlexbox {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px
}

@media (max-width: 767px) {
    .shapeFuture .shapeFlexbox {
        flex-direction: column;
        gap: 10px
    }
}

.shapeFuture .shapeFlexbox .sectionHeading {
    max-width: 50%;
    width: 100%;
    font-weight: 800;
    color: #1c291a
}

@media (max-width: 767px) {
    .shapeFuture .shapeFlexbox .sectionHeading {
        max-width: 100%
    }
}

.shapeFuture .shapeFlexbox .sectionDesc {
    color: #1c291a;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    max-width: 50%;
    width: 100%
}

@media (max-width: 767px) {
    .shapeFuture .shapeFlexbox .sectionDesc {
        max-width: 100%
    }
}

.shapeFuture .shapeFlexbox .sectionDesc strong {
    font-weight: 700
}

.shapeFuture .futureSlider {
    position: relative;
    margin-top: 60px;
    transform: rotate(-1deg)
}

@media (max-width: 767px) {
    .shapeFuture .futureSlider {
        margin-top: 20px;
        max-width: 100%;
        padding: 0 15px;
        overflow: hidden
    }
}

.meetTribeSection .swiper-slide,
.meetTribeSection .playPauseBlock {
    pointer-events: auto !important
}

.nasContent {
    position: relative;
    padding: 100px 0 0;
    background: var(--white)
}

.nasContent .container {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end
}

@media (max-width: 767px) {
    .nasContent .container {
        display: block
    }
}

@media (max-width: 767px) {
    .nasContent {
        padding: 60px 0 0
    }
}

.nasContent .textCover {
    position: absolute;
    left: 0;
    top: 50px;
    max-width: 550px
}

@media (max-width: 767px) {
    .nasContent .textCover {
        position: static
    }
}

.nasContent .textCover .funcHeading {
    color: #1c291a;
    font-size: 38px;
    font-weight: 700;
    line-height: 120%;
    width: 100%
}

@media (max-width: 767px) {
    .nasContent .textCover .funcHeading {
        font-size: 28px
    }
}

.nasContent .textCover .funcSubHeading {
    color: #1c291a;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    margin-top: 10px;
    width: 100%
}

.nasContent .nasImg {
    position: relative;
    object-position: 60px 60px;
    width: 95%
}

@media (max-width: 767px) {
    .nasContent .nasImg {
        object-position: 0
    }
}

.yourLeadSection {
    background: #f3f7e1
}

.yourLeadSection .yourLeadForum {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap
}

@media (max-width: 767px) {
    .yourLeadSection .yourLeadForum {
        margin-top: 0;
        padding: 0 15px
    }
}

.yourLeadSection .yourLeadForum .left {
    max-width: calc(50% - 15px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap
}

@media (max-width: 767px) {
    .yourLeadSection .yourLeadForum .left {
        max-width: 100%
    }
}

.yourLeadSection .yourLeadForum .left .textCover {
    max-width: 570px;
    margin-left: auto
}

.yourLeadSection .yourLeadForum .left img {
    transform: rotate(3.6deg);
    box-shadow: 4px 4px 60px -10px #00000040;
    margin-top: 60px
}

@media (max-width: 767px) {
    .yourLeadSection .yourLeadForum .left img {
        margin-top: 30px
    }
}

.yourLeadSection .yourLeadForum .left .funcHeading {
    color: #1c291a;
    font-size: 38px;
    font-weight: 700;
    line-height: 120%;
    width: 100%
}

@media (max-width: 767px) {
    .yourLeadSection .yourLeadForum .left .funcHeading {
        font-size: 28px
    }
}

.yourLeadSection .yourLeadForum .left .funcSubHeading {
    color: #1c291a;
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
    margin-top: 10px;
    width: 100%
}

.yourLeadSection .yourLeadForum .right {
    max-width: calc(50% - 15px);
    width: 100%
}

@media (max-width: 767px) {
    .yourLeadSection .yourLeadForum .right {
        max-width: 100%
    }
}

.yourLeadSection .yourLeadForum .right img {
    transform: rotate(-2deg);
    box-shadow: 4px 4px 60px -10px #00000040
}

.troomWrapper {
    position: relative;
    padding: 0 0 100px;
    background: var(--green);
    z-index: 9
}

.troomWrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 180px;
    background: #1c291a;
    z-index: -1
}

@media (max-width: 767px) {
    .troomWrapper {
        padding: 0 0 60px
    }
}

.troomWrapper .flexbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap
}

@media (max-width: 767px) {
    .troomWrapper .flexbox {
        gap: 10px
    }
}

.troomWrapper .flexbox .left,
.troomWrapper .flexbox .right {
    max-width: calc(30% - 20px);
    width: 100%
}

@media (max-width: 767px) {

    .troomWrapper .flexbox .left,
    .troomWrapper .flexbox .right {
        max-width: 100%
    }
}

.troomWrapper .flexbox .left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.troomWrapper .flexbox .left img {
    max-width: 100%;
    margin-right: auto
}

.troomWrapper .flexbox .left img:nth-child(2) {
    margin-right: unset;
    margin-left: auto
}

.troomWrapper .flexbox .mid {
    max-width: calc(40% - 20px);
    width: 100%
}

@media (max-width: 767px) {
    .troomWrapper .flexbox .mid {
        max-width: 100%
    }
}

.troomWrapper .flexbox .mid img {
    width: 100%
}

.troomWrapper .flexbox .right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media (max-width: 767px) {
    .troomWrapper .flexbox .right {
        flex-direction: row;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        gap: 10px
    }
}

.troomWrapper .flexbox .right img {
    max-width: 100%;
    margin-right: auto
}

.troomWrapper .flexbox .right img:nth-child(5) {
    margin-right: unset;
    margin-left: auto
}

@media (max-width: 767px) {
    .troomWrapper .flexbox .right img {
        margin: 0;
        max-width: 33%
    }
}

.accodionTitleOuter {
    display: flex;
    align-items: center;
    gap: 12px
}

.accodionTitleOuter p {
    font-weight: 500;
    font-family: var(--font-medium);
    font-size: 16px;
    line-height: 120%;
    color: var(--base-black)
}

@media screen and (max-width: 767px) {
    .accodionTitleOuter p {
        font-size: 14px
    }
}

.tetrScholarshipsSection {
    position: relative;
    padding: 55px 0
}

.tetrScholarshipsSection .headingWrapper>p {
    color: var(--base-black)
}

.tetrScholarshipsSection .accordionWrapperCol .headeEduAccordion h3,
.tetrScholarshipsSection .contentListGraptab li p,
.tetrScholarshipsSection .contentListGraptab li p span {
    color: var(--base-black)
}

.tetrScholarshipsSection .borderBtm:not(:first-child) {
    border-top: 1px solid #A5E8C0
}

.tetrScholarshipsSection .plus-icon-wrap .plus-h,
.tetrScholarshipsSection .plus-icon-wrap .plus-v {
    background-color: var(--base-black)
}

.tetrScholarshipsSection .headeEduAccordion {
    padding-top: 14px
}

.tetrScholarshipsSection .blockUnviversityDivide {
    display: flex;
    align-items: flex-start;
    gap: 40px
}

@media screen and (max-width: 768px) {
    .tetrScholarshipsSection .blockUnviversityDivide {
        gap: 20px;
        flex-direction: column
    }
}

.tetrScholarshipsSection .rightSideUniDivide {
    width: 100%;
    max-width: 468px;
    position: sticky;
    top: 0;
    padding-top: 115px
}

@media screen and (max-width: 768px) {
    .tetrScholarshipsSection .rightSideUniDivide {
        position: relative
    }
}

.noWrap {
    text-wrap: nowrap;
    align-items: flex-start;
    display: flex
}

.borderLine {
    border-top: 1px solid rgba(28, 41, 26, .1)
}

.hoverUpImage img {
    transition: .4s
}

.hoverUpImage:hover img {
    transform: translate(4px, -4px)
}

.plus-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    cursor: pointer
}

.plus-icon-wrap .plus-h {
    background-color: var(--base-black);
    width: 10px;
    height: 2px
}

.plus-icon-wrap .plus-v {
    background-color: var(--base-black);
    width: 2px;
    height: 10px;
    transition: all .25s;
    transform: translate(-6px)
}

.accordionWrapperCol {
    display: flex;
    flex-direction: column
}

.accordionBlockEdu .headeEduAccordion {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8fefa
}

@media screen and (max-width: 768px) {
    .accordionBlockEdu .headeEduAccordion {
        padding: 16px 8px
    }
}

.accordionBlockEdu .headeEduAccordion h3 {
    color: var(--base-black);
    font-family: var(--font-bold);
    font-size: 17px;
    font-weight: 700;
    line-height: 140%
}

.accordionBlockEdu .headeEduAccordion:hover,
.accordionBlockEdu .headeEduAccordion.active {
    background: #ebfff2
}

.accordionBlockEdu .headeEduAccordion.active .plus-icon-wrap .plus-v {
    transform: rotate(90deg) translate(-6px);
    transition: transform .25s ease, opacity .25s ease;
    opacity: 0
}

.accordionBlockEdu .contentAccordionEdu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease, opacity .5s ease;
    opacity: 0
}

.accordionBlockEdu .contentAccordionEdu.active {
    max-height: 240px;
    opacity: 1;
    padding: 16px 20px
}

@media screen and (max-width: 768px) {
    .accordionBlockEdu .contentAccordionEdu.active {
        padding: 16px 8px
    }
}

@keyframes heightAccordion {
    0% {
        height: auto;
        opacity: 0
    }

    to {
        height: auto;
        opacity: 1
    }
}

.contentAccordionEdu .contentListGraptab {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contentAccordionEdu .contentListGraptab li {
    display: flex;
    align-items: center;
    gap: 10px
}

@media screen and (max-width: 768px) {
    .contentAccordionEdu .contentListGraptab li {
        align-items: baseline
    }
}

.contentAccordionEdu .contentListGraptab li p {
    color: var(--base-black);
    line-height: 120%;
    display: flex;
    gap: 4px
}

.contentAccordionEdu .contentListGraptab li p span {
    color: var(--base-black);
    font-style: normal;
    font-weight: 700;
    font-family: var(--font-bold)
}

.uniImage {
    display: none;
    max-width: 100%;
    animation: imageShort .4s ease-in-out
}

@keyframes imageShort {
    0% {
        width: 0;
        opacity: 0
    }

    to {
        width: 100%;
        opacity: 1
    }
}

.uniImage.active {
    display: block
}

.viewMore {
    font-size: 11.11px;
    font-weight: 700;
    line-height: 120%;
    color: var(--base-black);
    cursor: pointer;
    gap: .375rem;
    text-transform: uppercase;
    background-color: var(--base-yellow);
    align-items: center;
    padding: 6px 10px;
    display: flex;
    width: max-content;
    border-radius: 4px
}

.livingGlanceSection {
    width: 100%
}

.livingGlanceSection .glanceCostWrapper {
    display: flex;
    align-items: center;
    gap: 40px
}

.livingGlanceSection .glanceCostWrapper .headingWrapper p {
    font-size: 14px;
    color: var(--base-black)
}

.livingGlanceSection .glanceCostWrapper .tetrleftstick {
    width: 100%;
    max-width: 528px
}

.livingGlanceSection .glanceCostWrapper .glanceCostRight {
    width: 100%;
    max-width: calc(100% - 568px);
    display: flex;
    flex-direction: column;
    gap: 48px
}

@media screen and (max-width: 767px) {
    .livingGlanceSection .glanceCostWrapper .glanceCostRight {
        gap: 24px
    }
}

.livingGlanceSection .glanceCostWrapper .glanceCostRight .headingWrapper {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCostWrapper {
    display: flex;
    flex-direction: column;
    gap: 32px
}

@media screen and (max-width: 767px) {
    .livingGlanceSection .glanceCostWrapper .listViewGlanceCostWrapper {
        gap: 12px
    }
}

.livingGlanceSection .glanceCostWrapper .vectorWrap {
    display: flex;
    gap: 15px;
    align-items: flex-start
}

@media screen and (max-width: 767px) {
    .livingGlanceSection .glanceCostWrapper .vectorWrap img {
        padding-top: 8px
    }
}

.livingGlanceSection .glanceCostWrapper .vectorWrap:not(:last-child) {
    border-bottom: .5px solid #525252
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCost {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCost:not(:last-child) {
    border-bottom: 1px solid #525252
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCost h3 {
    color: var(--base-black);
    line-height: 140%;
    font-size: 20px
}

@media screen and (max-width: 767px) {
    .livingGlanceSection .glanceCostWrapper .listViewGlanceCost h3 {
        font-size: 16px
    }
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCost>p {
    color: var(--base-black);
    line-height: 140%
}

.livingGlanceSection .glanceCostWrapper .textCatch {
    color: var(--base-black);
    line-height: 140%;
    font-weight: 700;
    font-family: var(--font-bold);
    font-size: 13px
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCostList {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCostList li {
    display: flex;
    align-items: center;
    gap: 6px
}

.livingGlanceSection .glanceCostWrapper .listViewGlanceCostList li p {
    color: var(--base-black)
}

.livingGlanceSection.iconIngreenBg {
    background: #1c291a url(https://cdn.tetr.com/assets/ih-images/studyTetr-bg.svg);
    background-repeat: no-repeat;
    background-position: 114% -220px
}

.studentLifePage .videoBoxLifeExp {
    position: relative
}

.studentLifePage .videoBoxLifeExp .playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}

.programfadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.facultyPage .facultyhero {
    width: 100%;
    background: url(https://cdn.tetr.com/assets/ih-images/V2/facultyVectorHero.svg) no-repeat center, #3f0000;
    background-size: cover
}

@media screen and (max-width: 767px) {
    .facultyPage .facultyhero {
        background: #3f0000;
        background-size: cover;
        padding: 48px 0
    }
}

.facultyPage .facultyhero .facUp {
    position: absolute;
    top: 0;
    right: 0
}

@media (max-width: 767px) {
    .facultyPage .facultyhero .facUp {
        display: none
    }
}

.facultyPage .facultyhero .facDown {
    position: absolute;
    bottom: 0;
    left: 0
}

.facultyPage .facultyhero .facultyheroBlock {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 106px
}

@media (max-width: 767px) {
    .facultyPage .facultyhero .facultyheroBlock {
        gap: 16px
    }
}

.facultyPage .facultyhero .leftfacultyhero {
    width: 100%;
    max-width: 44%
}

.facultyPage .facultyhero .leftfacultyhero .primaryYellowBtn {
    transition: .2s ease
}

@media (max-width: 767px) {
    .facultyPage .facultyhero .leftfacultyhero {
        max-width: 100%
    }
}

.facultyPage .facultyhero .leftfacultyhero>p {
    color: var(--white);
    line-height: 140%
}

@media (max-width: 767px) {
    .facultyPage .facultyhero .leftfacultyhero>p {
        font-size: 14px;
        margin-top: 12px
    }
}

.facultyPage .facultyhero .rightfacultyhero {
    width: 100%;
    max-width: calc(56% - 106px)
}

@media (max-width: 767px) {
    .facultyPage .facultyhero .rightfacultyhero {
        max-width: 100%
    }

    .facultyPage .facultyhero .rightfacultyhero .playButtonVideo {
        width: 35px
    }
}

.facultyPage .facultyMasterSection {
    width: 100%
}

@media screen and (max-width: 767px) {
    .facultyPage .facultyMasterSection {
        padding: 36px 0 48px
    }
}

.facultyPage .facultyMasterSection .commonListTab {
    margin-top: 24px
}

.facultyPage .facultyMasterSection .home-people-card {
    flex-direction: column;
    display: flex
}

@media (max-width: 768px) {
    .facultyPage .facultyMasterSection .home-people-card {
        min-width: 280px
    }
}

.facultyPage .facultyMasterSection .home-people-card .people-img-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0
}

.facultyPage .facultyMasterSection .home-people-card .people-img-wrapper .home-master-img {
    aspect-ratio: 260/320;
    object-fit: cover;
    width: 100%
}

.facultyPage .facultyMasterSection .home-people-card .people-img-wrapper .mster-img-overlay {
    padding: 12px 5px;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(#fff0, #00000040);
    width: 100%
}

.facultyPage .facultyMasterSection .home-people-card .people-img-wrapper .mster-img-overlay .master-card-name {
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-bold);
    line-height: 140%;
    letter-spacing: 0
}

@media screen and (max-width: 767px) {
    .facultyPage .facultyMasterSection .home-people-card .people-img-wrapper .mster-img-overlay .master-card-name {
        font-size: 14px
    }
}

.facultyPage .facultyMasterSection .home-people-card .master-uni-name {
    margin-top: 8px;
    font-size: 13px;
    min-height: 33.8px;
    line-height: 140%;
    font-family: var(--font-bold)
}

.facultyPage .facultyMasterSection .home-people-card .hrBreak {
    height: 1px;
    background: #e5e5e5;
    margin-block: 5px
}

.facultyPage .facultyMasterSection .home-people-card .people-label-text {
    color: var(--base-black);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    line-height: 120%;
    gap: 4px
}

@media (max-width: 767px) {
    .facultyPage .facultyMasterSection .home-people-card .people-label-text {
        font-size: 12px
    }
}

.facultyPage .facultyMasterSection .facultyMasterTabFlex {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.facultyPage .facultyMasterSection .tabContent {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 32px
}

.facultyPage .facultyMasterSection .tabContent.active {
    display: grid
}

@media (max-width: 767px) {
    .facultyPage .facultyMasterSection .tabContent.active {
        display: flex;
        overflow-x: scroll;
        flex-wrap: nowrap;
        gap: 20px;
        margin-top: 16px
    }
}

.facultyPage .realSupportSection {
    padding: 80px 0 0;
    background: #ebfff2;
    position: relative
}

@media (max-width: 767px) {
    .facultyPage .realSupportSection {
        padding: 36px 0 0
    }
}

.facultyPage .realSupportSection .realSupportPinkVector {
    position: absolute;
    top: 0;
    left: 0
}

.facultyPage .realSupportSection .container {
    max-width: 1100px
}

.facultyPage .realSupportSection .textWrapperSupport {
    width: 100%;
    max-width: 256px
}

.facultyPage .realSupportSection .realSupportHeading {
    display: flex;
    align-items: center;
    gap: 22px
}

@media (max-width: 767px) {
    .facultyPage .realSupportSection .realSupportHeading {
        gap: 16px
    }
}

.facultyPage .realSupportSection .realSupportHeading h2 {
    color: var(--base-black);
    font-size: 192px;
    font-family: var(--font-semi-bold);
    line-height: 153.6px
}

@media (max-width: 767px) {
    .facultyPage .realSupportSection .realSupportHeading h2 {
        font-size: 77.813px;
        line-height: 120%
    }
}

.facultyPage .realSupportSection .lineOrange {
    height: 10px;
    display: flex;
    flex: 1;
    background: var(--base-yellow)
}

.facultyPage .realSupportSection .contentRealSupport {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 32%
}

.facultyPage .realSupportSection .contentRealSupport p {
    color: #1c291ae6;
    line-height: 25.92px
}

.facultyPage .realSupportCardSection .commonListTab .borderLineTab {
    max-width: 175px
}

.facultyPage .realSupportCardSection .commonListTab li.active:nth-child(2)~.borderLineTab {
    left: 195px;
    max-width: 155px
}

.facultyPage .realSupportCardSection .commonListTab li.active:nth-child(3)~.borderLineTab {
    left: 487px
}

.facultyPage .realSupportCardSection .commonListTabScroll .borderLineTab {
    max-width: 175px
}

.facultyPage .realSupportCardSection .commonListTabScroll li.active:nth-child(2)~.borderLineTab {
    left: 195px;
    max-width: 150px
}

.facultyPage .realSupportCardSection .commonListTabScroll li.active:nth-child(3)~.borderLineTab {
    left: 380px
}

.facultyPage .realSupportCardSection .commonListTabScroll {
    position: sticky;
    top: 76px;
    transition: .4s ease;
    z-index: 1;
    background: #ebfff2
}

@media screen and (max-width: 767px) {
    .facultyPage .realSupportCardSection .commonListTabScroll {
        top: 63px
    }
}

.facultyPage .realSupportCardSection {
    background: url(https://cdn.tetr.com/assets/ih-images/V2/yellowTetris.svg) no-repeat bottom right #ebfff2
}

@media (max-width: 767px) {
    .facultyPage .realSupportCardSection {
        background: url(https://cdn.tetr.com/assets/ih-images/V2/yellowTetrisMob.svg) no-repeat bottom right #ebfff2
    }
}

.facultyPage .realSupportCardSection .container {
    max-width: 1100px
}

.facultyPage .careerCoachFacultyCard {
    background: var(--base-dark-green);
    width: 100%;
    display: flex
}

.facultyPage .rightDataCard {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    background: url(https://cdn.tetr.com/assets/ih-images/V2/realSupportVector.svg) no-repeat top center/auto
}

.facultyPage .rightDataCard ul {
    display: flex;
    flex-direction: column;
    gap: 12px
}

@media (max-width: 767px) {
    .facultyPage .rightDataCard ul {
        gap: 8px
    }
}

.facultyPage .rightDataCard .text24b {
    color: var(--white);
    line-height: 26.4px
}

.facultyPage .rightDataCard ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.facultyPage .rightDataCard ul li img {
    margin-top: 4px
}

.facultyPage .rightDataCard ul li .text16rg {
    color: var(--white)
}

.facultyPage .tabContentScroll {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.commonListTab,
.commonListTabScroll {
    display: flex;
    align-items: center;
    background: var(--white);
    gap: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 72, 34, .3);
    position: relative;
    overflow-x: auto
}

.commonListTab li,
.commonListTabScroll li {
    position: relative;
    width: max-content;
    padding: 20px 30px;
    cursor: pointer;
    color: #1e2c1b;
    opacity: .5;
    transition: .3s ease-in-out;
    text-wrap: nowrap
}

.commonListTab li.active,
.commonListTabScroll li.active {
    color: var(--base-black);
    opacity: 1
}

.commonListTab li:after,
.commonListTabScroll li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent
}

.commonListTab .borderLineTab,
.commonListTabScroll .borderLineTab {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 80px;
    height: 2px;
    background: var(--base-yellow);
    transition: .3s ease-in-out
}

.commonListTab li.active:nth-child(2)~.borderLineTab,
.commonListTabScroll li.active:nth-child(2)~.borderLineTab {
    left: 95px;
    max-width: 130px
}

.commonListTab li.active:nth-child(3)~.borderLineTab,
.commonListTabScroll li.active:nth-child(3)~.borderLineTab {
    left: 260px;
    max-width: 150px
}

@media (max-width: 767px) {

    .commonListTab,
    .commonListTabScroll {
        gap: 0
    }
}

.commonListTab::-webkit-scrollbar {
    width: 0px;
    height: 0px
}

.masterCardFlexWrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px
}

.tabContent {
    display: none;
    animation: tabActive .4s ease-in-out
}

@keyframes tabActive {
    0% {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.tabContent.active {
    display: block
}

.launchedpadHero {
    padding: 0 0 30px
}

@media (max-width: 767px) {
    .launchedpadHero {
        padding: 48px 0;
        overflow: hidden
    }
}

.launchedpadHero .contact-star-decor {
    top: -60px;
    right: -40px
}

.launchedpadHero .launchedpadBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    flex: 1
}

@media (max-width: 767px) {
    .launchedpadHero .launchedpadBlock {
        flex-direction: column;
        row-gap: 22px
    }
}

.launchedpadHero .contentHeroLaunched {
    position: absolute;
    top: 10%;
    z-index: 1;
    width: 100%
}

.launchedpadHero .contentHeroLaunched h1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px
}

.launchedpadHero .leftHeroLaunched {
    width: 100%;
    max-width: 445px;
    position: relative;
    top: -42px;
    left: 118px
}

@media (max-width: 767px) {
    .launchedpadHero .leftHeroLaunched {
        left: 5px
    }
}

@media (max-width: 767px) {
    .launchedpadHero .mobtext32 {
        font-size: 32px !important;
        color: var(--sub-heading)
    }

    .launchedpadHero .leftText {
        top: -6.6rem
    }
}

.launchedpadHero .rightHeroLaunched {
    width: 100%;
    max-width: 490px;
    position: relative;
    bottom: -88px;
    left: -19px
}

@media (max-width: 767px) {
    .launchedpadHero .rightHeroLaunched {
        bottom: 80px;
        left: 15px
    }

    .launchedpadHero .rightHeroLaunched .text30Mob {
        font-size: 30px
    }
}

.launchedpadHero .rightHeroLaunched .imgFixes {
    width: 1.25rem;
    position: absolute;
    inset: -4.5rem 24% auto auto
}

.launchedpadHero .lineHeroLaunched {
    background: var(--white);
    height: 8px;
    width: 100%;
    flex: 1;
    position: relative;
    top: 20px;
    left: -28px
}

@media (max-width: 767px) {
    .launchedpadHero .lineHeroLaunched {
        height: 6px;
        width: 7.5%;
        flex: 1;
        position: absolute;
        top: -62px;
        left: 172px
    }
}

.launchedpadHero .text81b {
    font-size: 81.1px;
    font-weight: 700;
    line-height: 120%
}

@media (max-width: 767px) {
    .launchedpadHero .text81b {
        line-height: 1
    }
}

.launchedpadHero .heroImageLaunched img {
    width: 100%
}

@media (max-width: 767px) {
    .launchedpadHero .heroImageLaunched img {
        margin-top: 135px
    }
}

.launchedpadHero .whiteBoxHeroLaunched {
    padding: 30px;
    background: var(--white);
    width: 100%;
    max-width: 400px;
    position: absolute;
    bottom: 10%;
    right: 115px
}

@media (max-width: 767px) {
    .launchedpadHero .whiteBoxHeroLaunched {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 30px;
        right: 0
    }

    .launchedpadHero .whiteBoxHeroLaunched .textMob15 {
        font-size: 15px;
        color: var(--base-black-90);
        line-height: 1.4
    }
}

.launchedpadHero .whiteBoxHeroLaunched .text18n {
    line-height: 160%;
    color: #1c291ae6
}

.youngLeadSection {
    width: 100%
}

.youngLeadSection .leadYoungBlock {
    display: flex;
    align-items: flex-start;
    width: 100%
}

@media (max-width: 767px) {
    .youngLeadSection .leadYoungBlock {
        flex-direction: column;
        margin-top: 30px
    }
}

.youngLeadSection .cardLeadYoungwrap.creamBox {
    background: #b5f8271a
}

.youngLeadSection .cardLeadYoungwrap {
    border: 1px solid #1c291a;
    background: var(--green);
    padding: 30px;
    min-height: 318px;
    width: 100%;
    max-width: 33.3%
}

@media (max-width: 767px) {
    .youngLeadSection .cardLeadYoungwrap {
        max-width: 100%;
        min-height: 260px;
        padding: 24px 16px 0
    }

    .youngLeadSection .cardLeadYoungwrap .textMob33 {
        font-size: 33.6px;
        color: #1c291a
    }
}

.youngLeadSection .cardLeadYoungwrap .blackLine {
    border-top: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    margin: 30px 0 20px
}

@media (max-width: 767px) {
    .youngLeadSection .cardLeadYoungwrap .blackLine {
        margin: 20px 0
    }
}

.youngLeadSection .cardLeadYoungwrap h3 {
    line-height: 110%;
    color: var(--base-black)
}

.youngLeadSection .cardLeadYoungwrap p {
    line-height: 144%;
    color: #000000bf;
    padding-bottom: 1.25rem;
    font-size: 1rem
}

.youngLeadSection .cardLeadYoungwrap:nth-child(2) {
    border-left: none;
    border-right: none
}

@media (max-width: 767px) {
    .youngLeadSection .cardLeadYoungwrap:nth-child(2) {
        border-left: 1px solid #1c291a;
        border-right: 1px solid #1C291B;
        border-bottom: none
    }
}

@media (max-width: 767px) {
    .youngLeadSection .cardLeadYoungwrap:nth-child(1) {
        border-bottom: none
    }
}

@media (max-width: 767px) {
    .youngLeadSection .lineHeading .blackLine {
        width: 25%;
        height: .2rem
    }
}

@media (max-width: 767px) {
    .youngLeadSection .mobtext32 {
        font-size: 32px !important;
        color: var(--sub-heading)
    }
}

.lineHeading {
    width: 100%
}

.lineHeading .text48b {
    line-height: 100%
}

.lineHeading .blackLine {
    background: #1c291a;
    height: 5px;
    width: 100%;
    max-width: 166px;
    display: flex
}

.lineHeading .lineWrapper {
    display: flex;
    align-items: center;
    gap: 16px
}

.buildingBussinessBlockCard {
    width: 100%
}

.buildingBussinessBlockCard .bestBussinessCardWrap {
    background: #1c291b;
    box-shadow: 10px 10px 50px #00000026;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.buildingBussinessBlockCard .bestBussinessCardWrap .masterImage {
    width: 100%
}

.buildingBussinessBlockCard .descriptionBestBussCard h3 {
    color: #b8ef43;
    font-family: var(--font-bold)
}

.buildingBussinessBlockCard .descriptionBestBussCard p {
    font-family: var(--font-medium);
    line-height: 24.7px;
    color: var(--white);
    min-height: 50px
}

.buildingBussinessBlockCard .descriptionBestBussCard span {
    color: var(--white);
    line-height: 20px;
    font-family: var(--font-regular)
}

.groundbreakingSection {
    width: 100%;
    padding: 80px 0
}

@media (max-width: 767px) {
    .groundbreakingSection {
        padding: 50px 0
    }
}

.groundbreakingSection .blockGroundBreaking {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px
}

@media (max-width: 767px) {
    .groundbreakingSection .blockGroundBreaking {
        flex-direction: column
    }
}

.groundbreakingSection .leftSideGroundBraking {
    width: 100%;
    max-width: calc(100% - 400px)
}

@media (max-width: 767px) {
    .groundbreakingSection .leftSideGroundBraking {
        max-width: 100%
    }
}

.groundbreakingSection .rightSideGroundBraking {
    width: 100%;
    max-width: 375px
}

@media (max-width: 767px) {
    .groundbreakingSection .rightSideGroundBraking .mobButtonEmail {
        padding: 20px;
        min-height: 119px;
        width: 60%
    }

    .groundbreakingSection .rightSideGroundBraking .mobButtonEmail svg {
        top: 20px
    }

    .groundbreakingSection .rightSideGroundBraking .contentEmailButton {
        font-size: 18px;
        font-weight: 500;
        color: #f3f7e1;
        line-height: 1.1
    }

    .groundbreakingSection .rightSideGroundBraking .mobTextSmall-Hidden {
        line-height: 1.1;
        color: #f3f7e1b3;
        font-size: .875rem
    }
}

.groundbreakingSection .rightSideGroundBraking .mobTextSmall-Hidden {
    font-size: 16px;
    color: #f3f7e1b3;
    font-family: var(--font-regular)
}

.groundbreakingSection .rightSideGroundBraking .contentEmailButton {
    font-size: 19.2px;
    color: #f3f7e1;
    font-family: var(--font-medium)
}

@media (max-width: 767px) {
    .groundbreakingSection .textMob26 {
        font-size: 26px
    }

    .groundbreakingSection .lineHeading .blackLine {
        flex: 1;
        width: 10%;
        height: 4px
    }
}

.LeadershipProgramPage .heroSliderUgProgramLeft .text48b {
    color: #f3f7e1;
    line-height: 110%
}

.LeadershipProgramPage .inspireEmpowerSection .whiteBgEmpower {
    background: #fafcf3;
    padding: 60px 30px 40px;
    box-shadow: #64646f33 0 7px 29px
}

.LeadershipProgramPage .inspireEmpowerSection {
    padding: 80px 0
}

.LeadershipProgramPage .livingGlanceSection .totallValueBlock .totalFeePro {
    color: #f3f7e1
}

.LeadershipProgramPage .livingGlanceSection .totallValueBlock .totalFeePro .crosstext {
    line-height: 22.4px;
    text-decoration: line-through;
    color: #727c6a
}

.LeadershipProgramPage .livingGlanceSection .totallValueBlock .totalFeePro .greenText {
    font-size: 24px;
    font-weight: 700;
    color: #b8ef43
}

.LeadershipProgramPage .enrolmentBlock {
    padding-bottom: 10px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px
}

.LeadershipProgramPage .enrolmentBlock .text13r {
    font-size: 13px;
    line-height: 15.6px;
    color: #f3f7e1;
    font-weight: 400;
    font-family: var(--font-regular)
}

.LeadershipProgramPage .listViewGlanceCost .twoLineList {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.formSctionLeaderShip {
    width: 100%;
    position: relative
}

.formSctionLeaderShip .container {
    max-width: 1112px
}

.formSctionLeaderShip.afterBgGreen:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background: #b8ef43
}

.formSctionLeaderShip .formApplicationBlock {
    background: #1c291a;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px;
    position: relative
}

.formSctionLeaderShip .formApplicationBlock .leftSideForm .text28b {
    color: #f3f7e1;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--font-bold)
}

.formSctionLeaderShip .formApplicationBlock .leftSideForm .text28b .blackLine {
    display: inline-block;
    height: 4px;
    width: 60px;
    background: #b8ef43;
    vertical-align: bottom;
    margin-right: 5px;
    position: relative;
    top: -15px
}

.formSctionLeaderShip .formApplicationBlock .rightSideForm {
    width: 100%;
    max-width: 400px
}

.formSctionLeaderShip .formApplicationBlock .rightSideForm .formBoxWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%
}

.formSctionLeaderShip .formApplicationBlock .rightSideForm .termConditionCheckBox {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.formSctionLeaderShip .formApplicationBlock .rightSideForm .termConditionCheckBox span {
    color: #fafcf3;
    font-family: var(--font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.formSctionLeaderShip .formApplicationBlock .rightSideForm .termConditionCheckBox input {
    margin-top: 5px
}

.contactPage {
    width: 100%;
    background: url(https://cdn.tetr.com/assets/ih-images/V2/contactBg.svg) no-repeat center center/cover
}

.contactPage .contactPageContainer {
    max-width: 1100px
}

.contactPage .contactDetailBlock {
    display: flex;
    align-items: stretch;
    gap: 18px
}

.contactPage .contactGridLeft {
    position: relative
}

.contactPage .detailContentGridLeft {
    position: absolute;
    top: 0;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    padding: 25px;
    background: linear-gradient(#fff0, #1c291a00 32%, #131b11 85%);
    bottom: 0
}

.contactPage .detailContentGridLeft .detailAddress span {
    color: var(--white);
    font-family: var(--font-bold);
    line-height: 1.4;
    font-size: 20px
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailAddress span {
        font-size: 16px
    }
}

.contactPage .detailContentGridLeft .detailAddress span .usAdd {
    font-size: 17.5px;
    color: #ebfff2
}

.contactPage .detailContentGridLeft .detailPhone {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%
}

.contactPage .detailContentGridLeft .detailPhone .detailleftInner {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.contactPage .detailContentGridLeft .detailPhone .detailleftInner p {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-bold);
    line-height: 1.4
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailPhone .detailleftInner p {
        font-size: 14px
    }
}

.contactPage .detailContentGridLeft .detailPhone .detailleftInner p a {
    font-size: 14px;
    font-family: var(--font-regular);
    color: var(--white)
}

.contactPage .detailContentGridLeft .detailPhone .detailReachUs {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailPhone .detailReachUs {
        gap: 4px
    }
}

.contactPage .detailContentGridLeft .detailPhone .detailReachUs .tagReachUs {
    background-color: var(--base-light-green);
    border: 1px solid var(--base-light-green);
    text-transform: uppercase;
    align-items: center;
    padding: .625rem;
    font-size: .75rem;
    font-family: var(--font-bold);
    font-weight: 500;
    line-height: 1;
    display: flex;
    width: max-content;
    color: var(--white)
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailPhone .detailReachUs .tagReachUs {
        font-size: 10px
    }
}

.contactPage .detailContentGridLeft .detailPhone .detailReachUs .textTime {
    color: var(--white);
    font-family: var(--font-bold);
    line-height: 1.44;
    font-size: 16px;
    text-align: right
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailPhone .detailReachUs .textTime {
        font-size: 14px
    }
}

.contactPage .detailContentGridLeft .detailPhone .detailReachUs .texthour {
    color: var(--white);
    font-weight: 400;
    line-height: 1.44;
    font-size: 16px
}

@media screen and (max-width: 768px) {
    .contactPage .detailContentGridLeft .detailPhone .detailReachUs .texthour {
        font-size: 14px
    }
}

.contactPage .contactGridRight {
    width: 100%;
    max-width: 468px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1
}

.contactPage .contactGridRight .upperGridBox {
    background-color: #002810;
    flex-direction: column;
    padding: 2.5rem;
    display: flex;
    flex: 1;
    min-height: 227px;
    justify-content: flex-end
}

@media (max-width: 767px) {
    .contactPage .contactGridRight .upperGridBox {
        padding: 16px
    }
}

.contactPage .contactGridRight .downGridBox {
    background-color: var(--base-light-green);
    position: relative;
    justify-content: flex-end
}

.contactPage .contactGridRight .downGridBox .textquery {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-medium);
    line-height: 1.1
}

@media screen and (max-width: 767px) {
    .contactPage .contactGridRight .mh-153 {
        min-height: 153px !important
    }
}

.contactPage .contactGridRight .textEmailWrap {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.contactPage .contactGridRight .textEmailWrap span {
    font-size: 16px;
    color: var(--white);
    line-height: 1.2
}

@media (max-width: 767px) {
    .contactPage .contactGridRight .textEmailWrap span {
        font-size: 14px
    }
}

.contactPage .contactGridRight .textEmailWrap p {
    color: var(--white);
    font-family: var(--font-medium);
    font-size: 1.2rem;
    line-height: 1.1
}

.contactPage .contactGridRight .upperGridBox .upSideIcon {
    transition: .4s
}

.contactPage .contactGridRight .upperGridBox:hover .upSideIcon {
    transform: translate(4px, -4px)
}

.contactPage .contactGridRight .upSideIcon {
    position: absolute;
    right: 30px;
    top: 30px
}

.leadershipFormWrapper .accordionLeaderReg {
    max-height: 53px;
    overflow: hidden;
    transition: max-height .3s ease-in-out
}

.leadershipFormWrapper .accordionLeaderReg.active {
    max-height: 1000px
}

.leadershipFormWrapper .accordionLeaderReg .headerAccLeaderReg {
    transition: .3s
}

.leadershipFormWrapper .accordionLeaderReg.active .headerAccLeaderReg {
    border-radius: 10px 10px 0 0
}

.leadershipFormWrapper .accordionLeaderReg.active .plus-v {
    transform: rotate(90deg) translateY(8px)
}

.leadershipFormWrapper .accordionLeaderReg .formGropuwrapper label {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%
}

.leadershipFormWrapper .accordionLeaderReg .formGropuwrapper input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #EEE;
    background: #fbfdf6;
    font-size: 14px;
    line-height: 120%;
    height: 42px
}

.leadershipFormWrapper .accordionLeaderReg .formGropuwrapper input::placeholder {
    font-size: 14px
}

.borderInputBox label {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%
}

.borderInputBox .dropdownWrapperBox select {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    border: 1px solid #eee;
    height: 42px;
    border-radius: 8px;
    background: transparent
}

.borderInputBox .dropdownWrapperBox .inputCountryCodeMenu {
    border: 1px solid #eee;
    font-size: 14px;
    line-height: 120%;
    height: 42px;
    border-radius: 8px;
    background: transparent
}

.borderInputBox .dropdownWrapperBox .inputCountryCodeMenu::placeholder {
    font-size: 14px;
    line-height: 120%
}

.singleFlexGap {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.borderInputBox.formTextAreawrapper label {
    color: #5a5a5a;
    font-size: 14px;
    line-height: 120%
}

.borderInputBox.formTextAreawrapper textarea {
    border: 1px solid #EEE;
    border-radius: 8px;
    background: transparent
}

.radioLeaderForm .labelValue {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

@media (max-width: 767px) {
    .mobShow {
        display: block
    }

    .mobHide {
        display: none
    }

    .mob-hide {
        display: none !important
    }

    .mob-visible {
        display: block !important
    }

    .livingGlanceSection .glanceCostWrapper {
        flex-wrap: wrap;
        gap: 20px
    }

    .livingGlanceSection .glanceCostWrapper .tetrleftstick,
    .livingGlanceSection .glanceCostWrapper .glanceCostRight {
        max-width: 100%
    }

    .tetrScholarshipsSection .rightSideUniDivide {
        max-width: 100%;
        padding-top: unset
    }

    .tetrScholarshipsSection.dreamSection .rightSideUniDivide {
        max-width: 100%
    }

    .contentAccordionEdu .contentListGraptab li p {
        display: unset
    }

    .accordionBlockEdu .headeEduAccordion h3 {
        font-size: 16px
    }

    .heroSliderUgProgram .heroSliderUgProgramRight .groupButtonHero a,
    .heroSliderUgProgram .heroSliderUgProgramRight .groupButtonHero button {
        padding: 12px 14px
    }

    .mainHeader .menuSide .buttonWrapper .mobButton {
        max-width: 48px;
        position: relative;
        left: 10px
    }

    .menuSide .buttonWrapper .secondaryButton {
        padding: 12px 14px
    }

    .heroSliderUgProgram .heroSliderUgProgramLeft {
        max-width: 100%
    }

    .subHeader {
        padding: 8px 15px
    }

    .subHeader .subHeaderContent {
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        height: 44px
    }

    .subHeader .subHeaderContent h3 {
        font-size: 12px;
        line-height: 140%;
        color: #f3f7e1;
        font-weight: 500;
        font-family: var(--font-medium);
        max-width: 315px;
        letter-spacing: 0
    }

    .subHeader .container {
        padding: 0;
        height: 44px
    }

    .heroSliderUgProgram .heroSliderUgProgramLeft .bgGreenText {
        margin-left: 0
    }

    .exploreTetrExpSection .explorExperienceBlock {
        flex-direction: column-reverse;
        gap: 16px
    }

    .exploreTetrExpSection .explorExperienceBlock .rightSideExplorExp,
    .exploreTetrExpSection .explorExperienceBlock .leftSideExplorExp {
        max-width: 100%
    }

    .videoMainPopupBlock {
        min-height: auto
    }

    .videoPopupBlockCommon iframe {
        width: 100%;
        height: 100%
    }

    .learnCompaniesSection.homeExploreProgram .learnCompanieTabSwipeWrap {
        padding: 60px 15px
    }

    .innovateLernBussSection .innovateLearnTetrBlock .cardVideoInnovateBoxRight {
        max-width: 100%
    }

    .innovateLernBussSection .innovateLearnTetrBlock .collageDownInnvoate {
        grid-template-columns: repeat(1, 1fr)
    }

    .innovateLernBussSection .innovateLearnTetrBlock .collageDownInnvoate .commonInnovateVideoBox {
        height: 265px
    }

    .innovateLernBussSection .cardVideoInnovateBoxLeft,
    .inspireEmpowerSection .commonCardMaster {
        max-width: 100%
    }

    .homeInspireEmpowerSection,
    .homeInspireEmpowerSection .container2 {
        padding: 0
    }

    .homeInspireEmpowerSection:before {
        content: unset
    }

    .homeInspireEmpowerSection:after {
        content: unset
    }

    .realTimeAccessSection .accessRealTimeBlock .leftAccessRealTime {
        max-width: 100%
    }

    .realTimeAccessSection .accessRealTimeBlock .listCommonAllBlock {
        margin-top: 16px;
        gap: 14px
    }

    .realTimeAccessSection .accessRealTimeBlock .listCommonAllBlock li p {
        font-size: 12px
    }

    .realTimeAccessSection .accessRealTimeBlock .leftAccessRealTime .textWhiteFirst {
        margin-top: 16px;
        font-size: 14px
    }

    .tetrLaunChpadSection:before {
        content: unset
    }

    .meetTribeSection .slideVideoWrap {
        max-height: 100%
    }

    .timelineOnScrollSection {
        height: auto;
        padding-bottom: 0
    }

    .timelineOnScrollSection .timelineScrollContentBox {
        padding: 60px 15px
    }

    .timelineOnScrollSection .timelineContentFlexWrap {
        flex-direction: column;
        width: 100%
    }

    .timelineOnScrollSection .timelineContentFlexWrap .containAllCardTimeLine {
        width: 100%
    }

     .timelineOnScrollSection .timelineScrollContentBox .timelineBlockEsteemed {
        flex-direction: column;
        gap: 24px;
        margin-top: 12px
    }

     .timelineOnScrollSection .timelineScrollContentBox .timelineGroupNav {
        flex-direction: row;
        overflow: auto;
        max-width: 100%;
        position: sticky;
        top: 0;
        left: 0;
        background: #3f0000;
        padding: 20px 0;
        z-index: 10
    }
}

@media (max-width: 767px) and (max-width: 767px) {
     .timelineOnScrollSection .timelineScrollContentBox .timelineGroupNav {
        top: 63px;
        gap: 12px
    }
}

@media (max-width: 767px) {
     .timelineOnScrollSection {
        padding-top: 0
    }

     .timelineOnScrollSection .timelineScrollContentBox {
        content: ""
    }

     .timelineOnScrollSection .timelineScrollContentBox .timelineBorderLine {
        width: calc(100% + 165px);
        opacity: .1;
        position: absolute;
        left: 0;
        top: 34px;
        height: 1px
    }

     .timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn:before {
        display: none
    }

     .timelineOnScrollSection .timelineScrollContentBox .timelineTabBtn {
        text-wrap: nowrap
    }

     .scholarBannerCoverBlock {
        padding: 0
    }

     .bannerScholarshipLeft {
        padding: 15px
    }

    .buttonGroupLearnSwipe .swiperOrangeButton {
        width: 36px;
        height: 36px
    }

    .mapImages,
    .worldMap {
        display: none
    }

    .popupContent {
        width: 97%;
        height: 50%
    }

    .fullCoverImageMob {
        display: block;
        width: 100%
    }

    .studentLifePage .studentLifeHero .studentLifeHeroImg {
        max-height: calc(100vh - 240px);
        min-height: calc(100vh - 240px)
    }

    .studentLifePage .mainContentStudentLife .text48b {
        font-size: 36px;
        line-height: 130%
    }

    .studentLifePage .studentLifeHero {
        max-height: calc(100vh - 240px);
        min-height: calc(100vh - 240px)
    }

    .studentLifePage .studentLifeHero .typeTextStudentlife .textStay {
        font-weight: 400;
        font-family: var(--font-regular)
    }

    .studentLifePage .changingTextAnimate {
        color: #b8ef43;
        font-weight: 400;
        font-family: var(--font-regular)
    }

    .studentLifePage .weekPurposeSection {
        gap: 40px
    }

    .studentLifePage .weekPurposeSection .academicImmerSionBlock {
        padding: 20px 0 40px;
        max-width: 100%
    }

    .studentLifePage .academicHeadingCenter {
        padding: 0 5px
    }

    .studentLifePage .academicHeadingCenter .text30b {
        font-size: 24px
    }

    .studentLifePage .weekPurposeSection .academicHeadingCenter p {
        font-size: 13px
    }

    .studentLifePage .weekPurposeSection .immersionBoxes {
        margin-top: 20px;
        transform: translate(0);
        overflow: hidden;
        justify-content: space-around;
        gap: 5px
    }

    .studentLifePage .weekPurposeSection .immersionBoxes .boxCategory {
        min-width: max-content;
        font-size: 10px;
        padding: 8px 10px
    }

    .studentLifePage .swiperImmersionsWrap {
        margin-top: 40px
    }

    .studentLifePage .weekPurposeSection:after {
        bottom: -2px
    }

    .studentLifePage .shapeFuture {
        background: var(--sub-heading)
    }

    .studentLifePage .fullCoverImage {
        display: none
    }

    .studentLifePage .careerLabSection {
        padding-bottom: 8px;
        background: transparent
    }

    .studentLifePage .careerLabSection .InternDetailBlock {
        position: relative;
        min-height: 50vh
    }

    .studentLifePage .careerLabSection .InternDetailBlock .fullCoverImageMob {
        width: 100%
    }

    .studentLifePage .careerLabSection .termInternGreenBlock {
        max-width: 95%;
        margin: 0 auto -40px;
        padding: 50px 15px
    }

    .studentLifePage .careerLabSection .termInternFlexWrapper {
        flex-direction: column
    }

    .studentLifePage .careerLabSection .careerLabTeamBlock .internDetailBox {
        max-width: 100%
    }

    .studentLifePage .careerLabTeamBlock .labCareerContentWrap {
        position: unset;
        z-index: 2;
        gap: 24px;
        margin-top: -204px
    }

    .studentLifePage .careerLabTeamBlock .labCareerContentWrap h3 {
        font-size: 28px;
        text-align: left;
        padding-left: 15px
    }

    .studentLifePage .crossFunctionSection {
        padding: 60px 0 0
    }

    .studentLifePage .crossFunctionSection:before {
        content: unset
    }

    .studentLifePage .crossFunctionSection .functionBlockHeading p {
        font-size: 14px
    }

    .studentLifePage .crossFunctionSection .functionBlockWhiteBox {
        padding: 16px 20px 30px;
        flex-direction: column-reverse;
        gap: 15px
    }

    .studentLifePage .meetTribeSection.whiteMob .headingBetweenWrap h2 {
        color: var(--base-black)
    }

    .studentLifePage .sectionHeading,
    .text36b {
        font-size: 28px
    }

    .whiteMob {
        background: var(--white)
    }

    .playButtonStartup {
        width: 32px
    }

    .eventAtMastersSection .swiper-slide:hover {
        transform-origin: top left;
        transform: unset
    }

    .timelineOnScrollSection .timelineScrollContentBox .allTabContentTimeline {
        max-width: 100%
    }
}