/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
    2. Remove default margin
  */
* {
    margin: 0;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/*
    5. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
    font: inherit;
}

/*
    7. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/*
    8. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

footer,
header,
nav {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

header nav {
    float: left;
    width: 100%;
    padding: 30px 35px;
}

header nav a.logo {
    float: left;
    width: 235px;
    transition: opacity 0.5s ease;
}

header nav a.logo:hover {
    opacity: 0.7;
}

header nav .links {
    float: right;
    position: relative;
}

header nav .links .links-wrapper {
    float: left;
}

header nav .links .links-wrapper a:hover {
    color: #fff;
}

header nav .links .links-wrapper a:first-child {
    margin-left: 0px;
}

header nav .links .links-wrapper a.get-started-link {
    color: #fff;
    padding-right: 28px;
    background-image: url('../image-v1/arrow-icon.svg');
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: right top 1px;
    transition: opacity 0.5s ease;
}

header nav .links .links-wrapper a.get-started-link:hover {
    opacity: 0.5;
}

header .header-inner {
    float: left;
    width: 100%;
    padding: 150px 0px 190px 0px;
}

header .header-inner .inner-wrapper {
    width: 890px;
}

header .header-inner .header-copy {
    float: left;
    width: 100%;
    margin-bottom: 125px;
    text-align: center;
}

header .header-inner .header-copy h1 {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 58px;
    line-height: 65px;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 30px;
}

header .header-inner .header-copy p.subtitle {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 0px 30px 0px;
}

a {
    background: transparent;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

header nav .links {
    float: right;
    position: relative;
}

header nav .links .links-wrapper a:hover {
    color: #fff;
}

header nav .links .links-wrapper a {
    text-decoration: none;
    text-align: center;
    font-family: Inter;
    line-height: normal;
    float: left;
    font-weight: 543;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-variation-settings: 'wght' 543;
    margin-left: 25px;
    padding: 2px;
}

header .header-inner {
    float: left;
    width: 100%;
    padding: 150px 0px 190px 0px;
}

header .header-inner .inner-wrapper {
    width: 890px;
}

header .header-inner .header-copy {
    float: left;
    width: 100%;
    margin-bottom: 125px;
    text-align: center;
}

header .header-inner .header-copy h1 {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 58px;
    line-height: 65px;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 30px;
}

header .header-inner .header-copy p.subtitle {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 0px 30px 0px;
}

/* hamburger */

.hamburger {
    padding: 14px 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    margin-top: -2px;
    width: 30px;
    z-index: 500;
    height: 14px;
    position: absolute;
    right: 0px;
    display: none;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.main-container {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-main {
    background: #2c1200;
    height:760px;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hero .heading-sm {
    color: #ee731b;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.34px;
    margin-bottom: 10px;
}



.hero .heading-lg {
    color: #fff;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -0.96px;
    margin-bottom: 20px;
}

.hero .sub-heading {
    color: #937865;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    letter-spacing: -0.4px;
}

.hero .hero-img {
    position: absolute;
    right: -78px;
    /* aspect-ratio: 1063 / 1594;
    object-fit: cover;
    object-position: center; */
    top:35px;
    width: 581px;
    height: 710px;
}

.hero .left-col {
    padding-top: 150px;
    /* padding-bottom: 200px; */
}

.mw-40 {
    max-width: 520px;
    width:100%;
}

.mw-50 {
    max-width: 520px;
    width:100%;
}

.mw-60 {
    max-width: 60%;
}

.mw-75 {
    max-width: 75%;
}

.mw-80 {
    max-width: 80%;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: solid 1px #eee;
}

.section .title {
    color: #000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 53px;
    /* 132.5% */
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.section .sub-title {
    color: #9a9a9a;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 133.333% */
    letter-spacing: -0.48px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.section .content {
    padding-top: 50px;
}

.section .heading {
    color: #000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 100% */
    letter-spacing: -0.8px;
}

.section .sub-heading {
    color: #757575;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.section .sub-heading-sm {
    color: #b1b1b1;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.section .content-item {
    margin-right: 100px;
    margin-bottom: 40px;
    /* max-width: 160px; */
}

.section .info-subheading {
    color: #9a9a9a;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 168.421% */
    letter-spacing: -0.38px;
}

.rating {
    display: flex;
    margin-bottom: 10px;
}

.rating-number {
    margin-left: 5px;
    color: #f3a742;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 111.111% */
}

.rating-subheading {
    color: #adadad;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.info-heading {
    color: #04a777;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.info-heading-bold {
    color: #04a777;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.story-para {
    color: #757575;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
    max-width: 1100px;
    width:100%;
}

.story-para .orange-text {
    color: #ee731b;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.story-para .bold {
    color: #757575;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.dark-section {
    background-color: #000;
    padding-top: 150px;
    padding-bottom: 150px;
}

.dark-section .content {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.dark-section .heading {
    color: #fff;
    font-family: Inter;
    font-size: 62px;
    font-style: normal;
    font-weight: 600;
    line-height: 76px;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.dark-section .heading-light {
    color: #858585;
    font-family: Inter;
    font-size: 62px;
    font-style: normal;
    font-weight: 600;
    line-height: 76px;
    /* 122.581% */
    letter-spacing: -2px;
}

.dark-section .sub-heading {
    color: #b8b8b8;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 154.545% */
}

.dark-section .email {
    color: #fff;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-decoration-line: underline;
}

.card {
    padding: 40px;
    background-color: #fbfbfb;
    border: 1px solid #F2F2F2;
    margin-bottom: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin-right: 60px;
}

.card .profile-pic {
    width: 74px;
    height: 72px;
    border-radius: 36px;
}

.card .name {
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

.card .designation {
    color: #757575;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.card .desc {
    color: #646464;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.sub-title-sm {
    color: #9a9a9a;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.36px;
}

.card-white {
    padding: 0px;
    background-color: #fff;
    padding-top: 15px;
    margin: 0px;
    max-width: 320px;
    width: 100%;
    border: 0px;
}

.card-white .designation {
    color: #b1b1b1;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-white .description {
    color: #646464;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.note {
    color: #868686;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 146.667% */
}

.reviews {
    background-color: #3d1800;
    padding: 130px 220px;
    height: 980px;
}

.reviews .title {
    color: #a67758;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.64px;
}

.reviews .highlighted-review {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.88px;
    max-width: 750px;
    width: 100%;
    margin: auto;
}
.vid-inner-wrapper{
    max-width: 1010px;
    width: 100%;
}

.reviews .reviewer-name {
    color: #f60;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.reviews .disclaimer {
    color: #79573d;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 17px;
    max-width: 830px;
    width: 100%;

}

.reviews .reviewer-profile-pic {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    margin-right: 14px;
}

.reviewer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.timeline-container {
    margin-top: 40px;
}

/* video Style css */
/* program-details-section-thirteen */
section.program-details-section-thirteen {
    padding: 0px 0px 0px 0px;
}

section.program-details-section-thirteen h2 {
    float: left;
    width: 100%;
    color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 50px;
}

/* slider */
section.program-details-section-thirteen .slider-outer {
    position: relative;
    width: 748px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

section.program-details-section-thirteen .review-slider {
    width: 1132px;
}

.resp-vid {
    width: 382px !important;
}

section.program-details-section-thirteen .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
    overflow: hidden;
}

section.program-details-section-thirteen .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 115px;
    margin-top: -20px;
    height: 1px;
    z-index: 5000;
    margin-left: -15px;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow {
    height: 38px;
    width: 38px;
    text-indent: -2000px;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow:hover {
    opacity: 0.5;
}

section.program-details-section-thirteen .slider-outer button.slick-prev.slick-arrow {
    background-image: url('../about-page-img/black-slider-arrow-left.svg');
    float: left;
    margin-left: -70px;
}

section.program-details-section-thirteen .slider-outer button.slick-next.slick-arrow {
    background-image: url('../about-page-img/black-slider-arrow-right.svg');
    float: right;
    margin-right: -70px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper {
    float: left;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a {
    float: left;
    width: 364px;
    margin: 0px 0px 0px 0px;
    padding: 10px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a img {
    border-radius: 15px;
}

section.program-details-section-thirteen .slider-outer [aria-disabled='true'] {
    opacity: 0.4;
}

.inner-wrapper {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

section.section-four .inner-wrapper {
    max-width: 800px;
    padding-left: 3px;
    padding-right: 3px;
}

section.copy-page .inner-wrapper {
    width: 740px;
}

section.contact-page .inner-wrapper {
    width: 500px;
}

footer {
    float: left;
    width: 100%;
    border-top: solid 1px #f1f1f1;
    padding: 50px 0px;
    text-align: center;
}

footer .links {
    float: left;
    width: 100%;
}

footer .links a {
    font-style: normal;
    font-weight: 500;
    font-size: 14.5px;
    line-height: 18px;
    text-align: center;
    color: #bababa;
    margin: 0px 15px;
    text-decoration: none;
    font-family: Inter;
}

footer .links a:hover {
    color: #000;
}

footer .links a.get-started-link {
    color: #000;
    padding-right: 24px;
    background-image: url('../image-v1/arrow-icon-black.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right top 0px;
    transition: opacity 0.5s ease;
}

footer .links a.get-started-link:hover {
    opacity: 0.5;
}

footer .copyright {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    color: #d7d7d7;
    padding: 20px 0px 0px 0px;
}

.mobile-nav {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: #fff;
    padding: 45px 65px 55px 45px;
    display: none;
}

.mobile-nav .mobile-nav-links {
    float: left;
    width: 100%;
}

.mobile-nav .mobile-nav-links a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #333;
    float: left;
    clear: both;
    margin: 13px 0px;
}

.mobile-nav .mobile-nav-links a.get-started-link {
    color: #000;
    padding-right: 30px;
    background-image: url('../image-v1/arrow-icon-black.svg');
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: right top -1px;
    transition: opacity 0.5s ease;
}

.inner-wrapper .links a,
.mobile-nav .mobile-nav-links a {
    text-decoration: none;
    font-family: Inter;
}

section.program-details-section-thirteen h2 {
    float: left;
    width: 100%;
    color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 50px;
}

/* slider */
section.program-details-section-thirteen .slider-outer {
    position: relative;
    width: 748px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

section.program-details-section-thirteen .review-slider {
    width: 1132px;
}

.resp-vid {
    width: 382px !important;
}

section.program-details-section-thirteen .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
    overflow: hidden;
}

section.program-details-section-thirteen .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 115px;
    margin-top: -20px;
    height: 1px;
    z-index: 5000;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow {
    height: 38px;
    width: 38px;
    text-indent: -2000px;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow:hover {
    opacity: 0.5;
}

section.program-details-section-thirteen .slider-outer button.slick-prev.slick-arrow {
    background-image: url('../about-page-img/black-slider-arrow-left.svg');
    float: left;
    margin-left: -70px;
}

section.program-details-section-thirteen .slider-outer button.slick-next.slick-arrow {
    background-image: url('../about-page-img/black-slider-arrow-right.svg');
    float: right;
    margin-right: -70px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper {
    float: left;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a {
    float: left;
    width: 364px;
    margin: 0px 0px 0px 0px;
    padding: 10px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a img {
    border-radius: 15px;
}

section.program-details-section-thirteen .slider-outer [aria-disabled='true'] {
    opacity: 0.4;
}

.desk-video-container {
    padding: 40px !important;
    border: 1px solid #f2f2f2;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(188, 188, 188, 0.12);
}

.inner-wrapper {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

header .header-inner .inner-wrapper {
    width: 890px;
}

section.section-four .inner-wrapper {
    max-width: 800px;
    padding-left: 3px;
    padding-right: 3px;
}

section.copy-page .inner-wrapper {
    width: 740px;
}

section.contact-page .inner-wrapper {
    width: 500px;
}

section.section-twelve .slider-outer {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
}

section.section-twelve .slider-outer p.top-title {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #a67758;
    margin-bottom: 42px;
}

section.section-twelve .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
}

section.section-twelve .slider-outer .slider .quote-wrapper {
    float: left;
    width: 100%;
    text-align: center;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 750px;
    display: inline-block;
}

section.section-twelve .slider-outer .slider .quote-wrapper p.name {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #ff6600;
    margin-top: 15px;
}

section.section-twelve .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -19px;
    height: 1px;
    z-index: 5000;
}

section.section-twelve .slider-outer button.slick-arrow {
    height: 38px;
    width: 38px;
    text-indent: -2000px;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.5s ease;
    line-height: 17px;
    /* 141.667% */
}

section.section-twelve .slider-outer .slider {
    width: 80%;
    float: left;
    margin-left: 10%;
}

section.section-twelve .slider-outer .slider-arrows {
    position: inherit;
    width: 100%;
    top: -90px;
    margin-top: 0px;
    height: 40px;
    z-index: 5000;
    bottom: -30px;
    text-align: center;
    clear: both;
}

section.section-twelve .slider-outer .slider {
    width: 100%;
    float: left;
    margin-left: 0%;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-size: 34px;
    line-height: 40px;
}

section.section-twelve .slider-outer p.top-title {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 22px;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-size: 28px;
    line-height: 34px;
}

section.section-twelve .slider-outer p.top-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}

section.program-details-section-thirteen .slider-outer {
    position: relative;
    width: 748px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

section.program-details-section-thirteen .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
    overflow: hidden;
}

section.program-details-section-thirteen .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 115px;
    margin-top: -20px;
    height: 1px;
    z-index: 5000;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow {
    height: 38px;
    width: 38px;
    text-indent: -2000px;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

section.program-details-section-thirteen .slider-outer button.slick-arrow:hover {
    opacity: 0.5;
}

section.program-details-section-thirteen .slider-outer button.slick-prev.slick-arrow {
    background-image: url('../about-page-img/white-slider-arrow-left.svg');
    float: left;
    margin-left: -70px;
}

section.program-details-section-thirteen .slider-outer button.slick-next.slick-arrow {
    background-image: url('../about-page-img/white-slider-arrow-right.svg');
    float: right;
    margin-right: -70px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper {
    float: left;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a {
    float: left;
    width: 364px;
    margin: 0px 0px 0px 0px;
    padding: 10px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a img {
    border-radius: 15px;
}

section.program-details-section-thirteen .slider-outer [aria-disabled='true'] {
    opacity: 0.4;
}

section.section-twelve .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
}

section.section-twelve .slider-outer .slider .quote-wrapper {
    float: left;
    width: 100%;
    text-align: center;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 750px;
    display: inline-block;
}

section.section-twelve .slider-outer .slider .quote-wrapper p.name {
    float: left;
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #ff6600;
    margin-top: 15px;
}

section.section-twelve .slider-outer .slider {
    width: 80%;
    float: left;
    margin-left: 10%;
}

section.section-twelve .slider-outer .slider {
    width: 100%;
    float: left;
    margin-left: 0%;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-size: 34px;
    line-height: 40px;
}

section.section-twelve .slider-outer .slider .quote-wrapper h2 {
    font-size: 28px;
    line-height: 34px;
}

section.program-details-section-thirteen .slider-outer .slider {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5000;
    overflow: hidden;
}

section.program-details-section-thirteen .slider-outer .video-wrapper {
    float: left;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a {
    float: left;
    width: 364px;
    margin: 0px 0px 0px 0px;
    padding: 10px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a img {
    border-radius: 15px;
}

section.program-details-section-thirteen .slider-outer .video-wrapper a {
    width: 334px;
}

section.section-twelve .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -19px;
    height: 1px;
    z-index: 5000;
}

section.section-twelve .slider-outer .slider-arrows {
    position: inherit;
    width: 100%;
    top: -90px;
    margin-top: 0px;
    height: 40px;
    z-index: 5000;
    bottom: -30px;
    text-align: center;
    clear: both;
}

section.section-twelve .slider-outer .slider-arrows {
    top: auto;
}

section.program-details-section-thirteen .slider-outer .slider-arrows {
    text-align: center;
    margin-top: inherit;
    /* top: 240px !important; */
}

section.program-details-section-thirteen .slider-outer .slider-arrows {
    position: absolute;
    width: 100%;
    top: 115px;
    margin-top: -20px;
    height: 1px;
    z-index: 5000;
}

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 5, 48, 0.5);
    z-index: 9998;
    display: none;
    top: 0;
    left: 0;
}

.reveal-modal {
    visibility: hidden;
    left: 50%;
    top: 140px;
    width: 1200px;
    margin-left: -600px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    position: absolute;
    z-index: 9999;
    padding: 0px;
}

.reveal-modal .close-reveal-modal-button {
    position: absolute;
    height: 22px;
    width: 22px;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-image: url('../about-page-img/icon-close-modal.svg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    background-size: 100%;
    transition: opacity 0.5s ease;
}

.reveal-modal.padding-0 {
    padding: 0px;
}

.reveal-modal .close-reveal-modal-button:hover {
    opacity: 1;
}

.desk-video-container {
    padding: 40px !important;
    border: 1px solid #f2f2f2;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(188, 188, 188, 0.12);
}

.mobile-video-container {
    display: none;
}

.video-container button.stop-button {
    display: none;
}

.video-container button.play-button {
    display: none;
}

.desk-video-container {
    padding: 40px !important;
    border: 1px solid #f2f2f2;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(188, 188, 188, 0.12);
}

.video-container button.stop-button {
    display: none;
}

.video-container button.play-button {
    display: none;
}
.sec-title, .third-heading{
    max-width: 600px;
    width: 100%;
}
.third-sub-heading{
    max-width: 900px;
    width: 100%;
}
.mob-our-story{
    display: none;
}
.saying-wrapper{
    position: relative;
}
.declaimer-wrapper{
    position:absolute;
    bottom:-22rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.backgroudScrollStop{
    overflow: hidden;
}
.profile-img{
    width: 64px!important;
height: 64px!important;
}
.desc-para{
    max-width: 330px!important;
    width: 100%!important;
}
.lead-flex{
    align-items: center;
    justify-content: space-between;
    column-gap: 65px;
    row-gap: 60px;
    margin-top: 37px;
}
.resp-text{
    display: none;
}
.desk-text{
    display: inline;
}
.our-team-card{
    max-width:520px;
    width: 100%;
    margin-right: 60px;
}
.our-team-mar{
    margin-right: 0;
    height: fit-content;
}
.our-team-minus{
    margin-top: -44px;
}
.align-para{
    letter-spacing: -0.2px;
}
.note{
    max-width: 1100px;
    width: 100%;
}
.out-stats-items{
    max-width: 222px;
    width: 100%;
    margin-right: 0px!important;
}
.mobile-flex{
    column-gap: 100px;
}
.item-style{
    margin-right: 0px!important;
}
.vid-modal{
    position: absolute;
     top: -67px;
      left: 0; 
      width: 100%;
       height: 81%
}
.video-wrapper-container{
    padding: 56.25% 0 0 0;
     position: relative
}
@media screen and (max-width: 1376px) {
    .lead-flex{
        column-gap: 20px;
    }
    .section .heading{
        font-size: 32px;
        line-height: 46px;
        letter-spacing: -0.64px;
    }
    .mobile-flex{
        column-gap: 70px;
    }
    .our-team-card{
        margin-right: 30px;
        max-width: 470px;
    }
    .our-team-minus{
        margin-top: -29px;
    }
}
@media screen and (max-width: 1200px) {
    .lead-flex{
        justify-content: flex-start;
    }
    .our-team-card{
        max-width: 100%;
        width: 100%;
    }
    .out-stats-items{
        width: auto;
    }
    .hero .hero-img{
        right: -66px;
        top: 75px;
        width: 489px;
        height: 641px;
        object-fit: cover;
    }
    .reveal-modal {
        left: 0;
        width: 96%;
        margin-left: 2%;
    }

    .resp-vid {
        width: 364px !important;
    }

    section.program-details-section-thirteen .review-slider {
        width: 748px;
    }

    .mw-50{
        max-width: 400px;
    }
    .reveal-modal {
        left: 0;
        width: 96%;
        margin-left: 2%;
    }

    .resp-vid {
        width: 364px !important;
    }

    .our-team-minus{
        margin-top: 0px;
    }
    .our-team-card{
        margin-right: 20px;
    }
}

@media screen and (max-width: 1140px) {
    .inner-wrapper {
        width: 96%;
    }
}
@media screen and (max-width: 1058px) {
    .mw-40{
        max-width: 400px;
    }
    .mw-50{
        max-width: 30%; 
    }
    .reviews{
        padding: 50px 25px;
    }
}
@media screen and (max-width: 911px) {
    .reviews .title{
        font-size: 18px;
        line-height: normal;
        margin-bottom: 20px;
    }
    .reviews .highlighted-review{
        font-size: 24px;
        line-height: 34px;
    }
    .reviews .reviewer-name{
        font-size: 15px;
    }
    .reviewer{
        margin-bottom: 42px;
        margin-top: 10px;
    }
    .hero-main{
        height: 65rem;
    }
    .hero .hero-img{
    right: unset;
    left: 24px;
    top: 24rem;
    }
    .mw-40 , .mw-50{
        max-width: 100%;
    }
    .hero{
        padding: 70px 25px 0px 25px;
    }
    .hero .left-col{
        padding-top: 0px;
    }
    section.program-details-section-thirteen .slider-outer {
        position: relative;
        width: 364px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-video-container {
        padding-bottom: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .mob-video-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 25px 25px 0px 25px;
    }

    .desk-video-container {
        display: none;
    }

    .mobile-video-container {
        display: inline;
    }

    .mobile-video-container {
        padding-bottom: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media screen and (max-width: 900px) {

    section.program-details-section-thirteen .slider-outer {
        position: relative;
        width: 364px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-video-container {
        padding-bottom: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .desk-video-container {
        display: none;
    }
}

@media screen and (max-width: 880px) {
    .mobile-flex{
        column-gap: 70px;
    }
    .dark-section .heading, .dark-section .heading-light{
        font-size: 39px;
        line-height: 46px;
    }
    .dark-section .sub-heading, .dark-section .email{
        font-size: 18px;
        line-height: 26px;
    }
    header .header-inner .inner-wrapper {
        width: 100%;
    }
    header nav .links .links-wrapper {
        display: none;
    }
    a.hamburger {
        display: block;
    }
    header .header-inner .inner-wrapper {
        width: 100%;
    }
    .dark-section{
        padding: 80px 25px;
    }
    .reviews{
        height: 683px;
    }
    .lead-flex{
        column-gap: 0;
        row-gap: 55px;
        margin-top: 27px;
    }
}

@media screen and (max-width: 780px) {
    section.copy-page .inner-wrapper {
        width: 96%;
    }

    section.copy-page .inner-wrapper {
        width: 96%;
    }

    section.section-twelve .slider-outer .slider-arrows {
        top: auto;
    }
    section.copy-page .inner-wrapper {
        width: 96%;
    }
    .our-team-card{
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .third-sec{
        padding: 50px 25px;
    }
    .hero .heading-sm {
        color: #ee731b;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.32px;
    }

    .hero {
        display: flex;
        flex-direction: column;
    }
    
    .hero .heading-lg {
        color: #fff;
        font-family: Inter;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
        /* 116.667% */
        letter-spacing: -0.72px;
    }
    .hero .hero-img{
        top:22rem;
    }
    .hero .sub-heading {
        color: #937865;
        font-family: Inter;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 25px;
        /* 147.059% */
        letter-spacing: -0.34px;
    }
    .section .title{
        font-size: 24px;
        line-height: 31px;
        letter-spacing: -0.48px;
    }
    .sec-section{
        padding: 100px 25px 50px 25px;
    }
    .section .sub-title{
        font-size: 17px;
        line-height: 27px;
        letter-spacing: -0.34px;
        max-width: 100%;
    }
    .section .content{
        padding-top: 46px;
    }
    .section .heading{
        font-size: 32px;
        line-height: 46px;
        letter-spacing: -0.64px;
    }
}

@media screen and (max-width: 600px) {
    .out-stats-items{
        max-width: fit-content;
        width: auto;
    }
    .align-para{
        letter-spacing:0px;
    }
    .desc-resp{
        letter-spacing: -0.1px;
    }
    .hero{
        padding-top: 36px;
    }
    header nav {
        padding: 30px 25px;
    }
    header nav a.logo {
        width: 185px;
    }
    .Leadership-wrapper{
        margin: 50px 25px 0px 25px;
        padding-bottom: 80px;
        padding-top: 0px;
    }
    .card{
        padding: 30px;
        margin-right: 0px;
    }
    .card .desc{
        font-size: 14px;
        line-height: 20px;
    }
    .card .designation{
        margin-bottom: 10px;
    }
    .story-para, .story-para .orange-text, .story-para .bold{
        font-size: 14px;
        line-height: 24px;
    }
    .our-story-sec, .our-team-sec{
        padding: 50px 25px 30px 25px;
    }
    .desk-our-story{
        display: none;
    }
    .mob-our-story{
        display: flex;
        width: 305px;
        height: 1522px;
        margin-bottom: 55px;
    }
    .section .info-subheading{
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .info-heading, .info-heading-bold{
        font-size: 18px;
        line-height: 26px;
    }
    .mob-sub{
        font-size: 12px;
    }
    .section .content-item{
        margin-right: 0px;
        margin-bottom: 0px;
    }
    .mobile-flex{
        max-width: unset;
        column-gap: 40px;
        row-gap:30px;
    }
    .rating{
        margin-top: 50px;
    }
    .main-container{
        max-width: 100%;
    }
    .hero-main{
        height: 49rem;
    }
    .hero .hero-img{
    width: 325px;
   height: 397px;
    }
    section.program-details-section-thirteen .slider-outer .slider-arrows {
        text-align: center;
        margin-top: inherit;
        top: 240px !important;
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    }
    .declaimer-wrapper{
        bottom: -18rem;
    }

    section.program-details-section-thirteen .slider-outer button.slick-prev.slick-arrow {
        float: none !important;
        margin-left: 0 !important;
    }

    section.program-details-section-thirteen .slider-outer button.slick-next.slick-arrow {
        float: none !important;
        margin-right: 0 !important;
    }

    section.program-details-section-thirteen .slider-outer {
        clear: both;
    }
    section.program-details-section-thirteen {
        padding: 0px 0px 50px 0px;
    }

    section.program-details-section-thirteen h2 {
        font-size: 28px !important;
        line-height: 34px !important;
        margin-bottom: 20px !important;
    }
    .vid-modal{
       top:50px;
    }
    .reviews .disclaimer{
        font-size: 11px;
        line-height: 16px;
    }
    .sub-title-sm{
        font-size: 15px;
    }
    .card-white{
        max-width: 100%;
        padding: 0px;
    }
    .note{
        font-size: 13px;
        line-height: 24px;
    }
    .last-sec{
        padding: 50px 25px;
    }
    .our-stats-resp{
        column-gap: 50px;
        row-gap: 40px;
    }
}

@media screen and (max-width: 500px) {
    .resp-text{
        display: flex;
    }
    .desk-text{
        display: none;
    }
    .inner-wrapper {
        width: 88%;
    }

    section.contact-page .inner-wrapper {
        width: 88%;
    }

    section.copy-page .inner-wrapper {
        width: 88%;
    }

    header .header-inner .inner-wrapper {
        width: 80%;
    }

    section.program-details-section-thirteen .slider-outer {
        width: 334px;
    }

    section.program-details-section-thirteen .slider-outer .video-wrapper a {
        width: 334px;
    }
    .inner-wrapper {
        width: 88%;
    }

    section.contact-page .inner-wrapper {
        width: 88%;
    }

    section.copy-page .inner-wrapper {
        width: 88%;
    }

    header .header-inner .inner-wrapper {
        width: 80%;
    }
    .declaimer-wrapper{
        bottom: -21rem;
    }
    .reviews {
        height: 780px;
    }
}
@media screen and (max-width: 400px) {
    .mob-margin{
        margin-right: 40px;
    }
    .mob-width{
        max-width: 124px;
        width: 100%;
    }
}

