* {
    font-family: Roboto;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-section {
    width: 100%;
    width: auto;
    margin: 0 auto;
}

.TopBG {
    width: 100%;
    height: auto;
    fill: linear-gradient(180deg, rgba(244, 166, 0, 0.12) 0%, rgba(244, 166, 0, 0.05) 100%);
    background-image: url('/images/about-us/TopBG.png');
    position: relative;
    background-size: cover;
    background-position: center;
}

.first-heading {
    color: #000;
    text-align: center;
    font-family: Merriweather;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-top: 48px;
    margin-bottom: 0px;
}

.second-heading {
    text-align: center;
    padding-top: 25px;
}

.second-heading .first-half {
    color: #C9102E;
    text-align: center;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.second-heading .second-half {
    color: #000;
}

.school-collage {
    justify-content: center;
    align-items: center;
    display: flex;
}

.school-collage .desktop-image {
    box-sizing: border-box;
    width: 100%;
    max-width: 1104px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.school-collage .mobile-image {
    display: none;
    width: 100%;
}

.who-we-are-section .heading {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 16px;
}

.heading .first-half {
    color: #000;
    text-align: center;
    font-family: Merriweather;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.heading .second-half {
    color: #C9102E;
}

.who-we-are-section {
    font-family: Roboto;
}

.who-we-are-section .content {
    color: #000;
    font-size: 18px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 60px;
}

.who-we-are-section .first-para,
.who-we-are-section .second-para
.who-we-are-section .third-para {
    margin-bottom: 16px;
}

.who-we-are-section .last-para {
    margin-bottom: 0px;
}

.what-makes-us-different-section {
    width: 100%;
    min-height: 408px;
    flex-shrink: 0;
    background: #F2F9FF;

}

.what-makes-us-different-section .heading {
    text-align: center;
    padding-top: 60px;
    font-family: Merriweather;
}

.what-makes-us-different-section .tabs-gifs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    width: 75%;
    margin: auto;
    max-width: 1200px;
}

.tab-box {
    width: 350px;
    height: 120px;
    padding: 16px 16px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    border-left: 3px solid #0C71C3;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.tab-box img {
    width: 108px;
    height: 108px;
    flex-shrink: 0;
}

.tab-content {
    color: black;
    font-size: 18px;
    line-height: 27px;
    word-wrap: break-word;
}

.tab-title {
    font-weight: 700;
    font-family: Merriweather !important;
}

.Roboto-text {
    font-family: Roboto !important;
}

.Roboto-text b {
    font-weight: 700;
}

.tab-title span {
    font-weight: 400;
}

.our-values-section .first-half {
    font-family: Merriweather;
}

.our-values-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFF;
}

.our-values-section .left-1 p {
    animation: slideInFromLeft 1s ease-out;
    font-family: Roboto;
}

.our-values-section .right-1 img {
    animation: slideInFromRight 1s ease-out;
}

.our-values-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-values-section .heading {
    padding-top: 60px;
    padding-bottom: 24px;
}

.our-values-section .content {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    flex-direction: row-reverse;
    gap: 60px;
    padding-bottom: 60px;
}

.our-values-section .left-1,
.our-values-section .right-1 {
    width: calc(50% - 29px);
}

.our-values-section .left-1 {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: auto;
}

.our-values-section .right-1 {
    padding-top: 5px;
    box-sizing: border-box;
}

.our-values-section .left-1,
.our-values-section .right-1 {
    opacity: 0;
    transform: translateX(0);
}

.our-values-section .right-1 img {
    margin-left: 40px;
    width: 90%;
}

.our-values-section.visible .left-1 {
    animation: slideInFromLeft 1s ease-out forwards;
}

.our-values-section.visible .right-1 {
    animation: slideInFromRight 1s ease-out forwards;
}

.mission-statement-section {
    position: relative;
    background-image: url('/images/about-us/MissionStatement.png');
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
}

.mission-statement-section .box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.80);
    color: white;
    display: flex;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 1200px;
    margin: 48px 48px;
    padding: 32px 40px;
}

.mission-statement-section .heading {
    color: #FFBD00;
    font-family:Merriweather;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.mission-statement-section .content {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    text-align: center;
}

.what-do-we-offer-section {
    width: auto;
    background: #FFF;
    padding-bottom: 48px;
}

.what-do-we-offer-section .heading {
    padding-top: 60px;
    text-align: center;
    font-family:Merriweather;
}

.what-do-we-offer-section .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding-top: 16px;
    gap: 62px;
    margin: 0 auto;
    max-width: 1200px;
}

.what-do-we-offer-section .check {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex-shrink: 0;
}

.what-do-we-offer-section .left-1,
.what-do-we-offer-section .right-1 {
    opacity: 0;
    transform: translateX(0);
}

.what-do-we-offer-section .right-1 {
    font-size: 20px;
}

.what-do-we-offer-section .right-1 p { 
    margin-bottom: 20px;
}

.what-do-we-offer-section.visible .left-1 {
    animation: slideInFromLeft 1s ease-out forwards;
}

.what-do-we-offer-section.visible .right-1 {
    animation: slideInFromRight 1s ease-out forwards;
}

.points-tick {
    display: flex;
    align-items: center;
    align-items: flex-start;
}

.book-an-appointment-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    width: 1200px;
    padding-bottom: 60px;
}

.book-an-appointment-section .banner {
    position: relative;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #E3A800;
    background-image:
        linear-gradient(90deg, rgba(255, 247, 224, 0.20) 0%, rgba(255, 222, 128, 0.30) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 155px;
    width: 1200px;
}

.book-an-appointment-section .banner .bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: -1;
    background-image: url('/images/about-us/doodle.png');
    background-size: contain; 
    background-position: center; 
}

.book-an-appointment-section .banner .heading {
    color: #000;
    font-family: Merriweather;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
    padding-bottom: 16px;
}

.book-an-appointment-section .banner .first-half {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.book-an-appointment-section .banner .second-half {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.book-an-appointment-section .banner .content {
    margin-bottom: 0px;
    text-align: center;
    padding-bottom: 20px;
}

.book-an-appointment-section .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
}

.book-an-appointment-section .button:hover {
    background: #AB0923;
}

.book-an-appointment-section .button {
    display: inline-flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 36px;
    background: linear-gradient(91deg, #DA1F1F 0%, #B90D2A 100%);
    box-shadow: 4px 4px 16px 0px rgba(255, 255, 255, 0.32) inset,
    -6px -6px 16px 0px rgba(0, 0, 0, 0.32) inset,
    4px 4px 8px 0px rgba(0, 0, 0, 0.32);
    color: #FFF;
}

.book-an-appointment-section .red-stroke{
    width: 90%;
    bottom: -45%;
    position:absolute;
}

.book-an-appointment-section .text-1 {
    position: relative;
}

.elite-school-section {
    width: 100%;
    flex-shrink: 0;
    background: #F7F7F7;
    justify-content: center;
    align-items: center;
}

.elite-school-section .heading {
    padding-top: 60px;
    padding-bottom: 0px;
    text-align: center;
    font-family: Merriweather;

}

.elite-school-section .heading p{
    padding-bottom: 0px;
}

.elite-school-section .heading .first-half {
    padding-bottom: 24px;
}

.elite-school-section .consultants .desktop-image {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 24px;
    width: 1100px;
}

.elite-school-section .consultants .mobile-image {
    display: none;
    width: 100%;
}

.elite-school-section .content {
    text-align: center;
}

.elite-school-section p {
    padding-bottom: 60px;
    margin: 0px;
}

.elite-school-section .content .first-half {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.elite-school-section .content .second-half {
    color: #C9102E;
}

.meet-our-founders-section {
    background: #FFF;
    margin: 0 auto;
    width: 70%;
    overflow: hidden;
}

.meet-our-founders-section .heading {
    padding-top: 60px;
    padding-bottom: 24px;
    text-align: center;
    font-family: Merriweather;
}

.meet-our-founders-section .heading p {
    margin-bottom: 0px;
}

.abhyank-sir-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.rohit-sir-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    position: relative;
    margin: 0 auto;
    margin-top: 48px;
    margin-bottom: 48px;
    max-width: 1200px;
}

.blue-box-abhyank,
.blue-box-rohit {
    width: calc(90% - 80px);
    height: 100%;
    position: absolute;
    border-radius: 16px;
    background: #EBF5FF;
    right: 0%;

}

.blue-box-rohit {
    left: 0%;
    right: unset
}

.abhyank-sir-section .profile,
.rohit-sir-section .profile {
    width: 366px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    border: 2px solid rgba(6, 133, 246, 0.40);
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    left: 0px;
    z-index: 1;
}

.abhyank-sir-section .profile {
    padding-top: 20px;
    padding-bottom: 20px;
}

.rohit-sir-section .profile {
    padding-top: 8px;
    padding-bottom: 20px;
}

.abhyank-sir-section .profile {
    margin-right: 30px;
}

.rohit-sir-section .profile {
    margin-left: 50px;
}

.abhyank-sir-section .profile img,
.rohit-sir-section .profile img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.abhyank-sir-section .profile .name,
.rohit-sir-section .profile .name {
    color: #003169;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.abhyank-sir-section .college,
.rohit-sir-section .college {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 10px;
}

.abhyank-sir-section .info,
.rohit-sir-section .info {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.abhyank-sir-section .heading-1,
.rohit-sir-section .heading-1 {
    color: #003169;
    text-align: left;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
}

.abhyank-sir-section .underl,
.rohit-sir-section .underl {
    width: 100%; 
    height: 100%; 
    border: 1px rgba(12, 113, 195, 0.50) solid; 
    margin-bottom: 12px;
}

.abhyank-sir-section .content,
.rohit-sir-section .content {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.abhyank-sir-section .content {
    padding-left: 10px;
}

.abhyank-sir-section .about {
    margin-right: 10px;
    margin-top: 28px;
}

.rohit-sir-section .about {
    margin-left: 10px;
    margin-top: 28px;
}

.abhyank-sir-section .success-mantra-stories,
.rohit-sir-section .success-mantra-stories {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0px;
}

.abhyank-sir-section .success-mantra,
.abhyank-sir-section .success-stories,
.rohit-sir-section .success-mantra,
.rohit-sir-section .success-stories {
    width: calc(50% - 10px);
}

.abhyank-sir-section .success-mantra .content,
.abhyank-sir-section .success-stories .content,
.rohit-sir-section .success-mantra .content,
.rohit-sir-section .success-stories .content {
    padding: 10px;
}

.abhyank-sir-section .box-abhyank {
    z-index: 1;
    padding-right: 32px;
}

.rohit-sir-section .box-rohit {
    z-index: 1;
    padding-left: 32px;
}

@media (max-width: 768px) {

    .hero-section .first-heading {
        font-size: 32px;
    }

    .who-we-are-section .heading .first-half, 
    .what-makes-us-different-section .heading .first-half,
    .our-values-section .heading .first-half,
    .what-do-we-offer-section .heading .first-half,
    .elite-school-section .heading .first-half,
    .meet-our-founders-section .heading .first-half{
        font-size: 22px !important;
    }

    .hero-section .first-heading {
        padding-top: 24px;
    }
    
    .hero-section .second-heading {
        padding-top: 16px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 16px;
        line-height: 28px;
        font-weight: 600;
    }

    .hero-section .second-heading .first-half {
        font-size: 20px;
    }

    .hero-section .second-heading .second-half {
        font-size: 20px;
    }

    .TopBG {
        aspect-ratio: 0.72;
    }

    .school-collage .desktop-image {
        display: none;
    }

    .school-collage .mobile-image {
        display: block;
        padding: 0px 24px;
    }

    .who-we-are-section .heading {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .who-we-are-section .content {
        padding: 0px 20px 32px 20px;
    }

    .what-makes-us-different-section {
        padding: 0px 20px;
    }

    .what-makes-us-different-section .heading {
        padding-top: 32px;
    }

    .what-makes-us-different-section .tabs-gifs {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tab-box {
        width: 320px;
    }

    .our-values-section .heading {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .our-values-section .content {
        padding-bottom: 32px;
        display: block;
        flex-direction: column;
        margin: 0px auto;
    }

    .our-values-section .left-1,
    .our-values-section .right-1 {
        width: 100%;
        margin: 0 auto;
    }

    .our-values-section .left-1 {
        padding: 0 20px;
    }

    .our-values-section .right-1 {
        padding: 0 24px;
    }

    .our-values-section .right-1 img {
        width: 100%;
        margin-left: 0px;
        padding-bottom: 20px;
    }

    .our-values-section .left-1 p {
        margin-bottom: 0px;
    }

    .first-heading {
        font-size: 32px;
        padding-top: 20px;
    }

    .second-heading .first-half,
    .second-heading .second-half {
        font-size: 24px;
    }

    .mission-statement-section {
        padding: 0px 0.5px;
        background-image: url('/images/about-us/MissionStatementMobile.png');
    }

    .mission-statement-section .box {
        margin: 32px 20px;
        padding: 24px 16px;
    }

    .mission-statement-section .heading {
        font-size: 22px;
    }

    .mission-statement-section .content {
        font-size: 18px;
        width: 100%;
        text-align: left;
        line-height: 28px;
    }

    .what-do-we-offer-section .heading {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .what-do-we-offer-section .check {
        width: 24px;
        height: 24px;
    }

    .what-do-we-offer-section .content {
        width: 100%;
        display: block;
        padding-top: 0px;
    }

    .what-do-we-offer-section .left-1 img {
        width: 100%;
        padding: 0px 24px 20px 24px;
    }

    .what-do-we-offer-section .right-1 {
        text-align: left;
        font-size: 16px;
        padding: 0px 24px;
    }

    .what-do-we-offer-section .right-1 ul {
        padding: 0px;
        font-size: 18px;
        line-height: 28px;
    }

    .what-do-we-offer-section {
        padding-bottom: 0px;
    }

    .what-do-we-offer-section .right-1 p {
        margin-bottom: 0px;
        padding-bottom: 16px;
    }

    .book-an-appointment-section {
        display: block;
        padding: 0 20px;
        padding-bottom: 40px;
        width: 100%;
    }

    .book-an-appointment-section .red-stroke {
        display: none;
    }

    .book-an-appointment-section .text-1 {
        color: #C9102E;
    }

    .book-an-appointment-section .banner {
        padding: 24px 9px;
        width: 100%;
    }

    .book-an-appointment-section .banner .heading {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .book-an-appointment-section .banner .content .first-half{
        font-size: 18px;
    }

    .elite-school-section .heading {
        padding-top: 32px;
        padding-bottom: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .elite-school-section .heading .first-half {
        font-size: 22px;
    }

    .elite-school-section .heading p {
        padding-bottom: 0px;
    }

    .elite-school-section .consultants .desktop-image {
        display: none;
    }

    .elite-school-section .consultants .mobile-image {
        display: block;
    }

    .elite-school-section .content {
        padding: 0px 20px;
    }


    .elite-school-section .content p {
        padding-bottom: 32px;
    }

    .elite-school-section .content .first-half {
        font-size: 18px;
    }

    .meet-our-founders-section {
        display: block;
        width: 100%;
        margin: 0px !important;
    }

    .meet-our-founders-section .heading {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .meet-our-founders-section .about .content,
    .meet-our-founders-section .success-mantra-stories .content {
        width: 100%;
        padding: 0px;
    }

    .meet-our-founders-section .abhyank-sir-section,
    .meet-our-founders-section .rohit-sir-section {
        display: block;
    }

    .abhyank-sir-section .box-abhyank,
    .rohit-sir-section .box-rohit {
        margin: 0 25px;
        position: relative;        
    }

    .abhyank-sir-section .box-abhyank {
        padding-right: 20px;
        padding-left: 20px;
        margin: 0px;
        padding-bottom: 32px;
    }

    .rohit-sir-section .box-rohit {
        padding-right: 20px;
        padding-left: 20px;
        margin: 0px;
        padding-bottom: 32px;
    }

    .blue-box-abhyank,
    .blue-box-rohit {
        border-radius: 0px;
        align-items: center;
        justify-content: center;
        top: 15%;
        width: 100%;
        height: 85%;
        position: absolute;
        z-index: 1;
        margin: 0 auto;
    }

    .blue-box-abhyank {
        right: 0%;
    }

    .blue-box-rohit {
        left: 0%;
    }

    .abhyank-sir-section .profile,
    .rohit-sir-section .profile {
        width: 90%;
        height: 70%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .rohit-sir-section {
        margin-bottom: 0px;
    }

    .abhyank-sir-section .about {
        margin-right: 0px;
        margin-top: 24px;
    }

    .rohit-sir-section .about {
        margin-left: 0px !important;
        margin-top: 24px;
    }

    .abhyank-sir-section .profile .name,
    .rohit-sir-section .profile .name {
        font-size: 24px;
    }

    .abhyank-sir-section .college,
    .abhyank-sir-section .info,
    .rohit-sir-section .college,
    .rohit-sir-section .info {
        font-size: 16px;
        line-height: 22px;
    }

    .abhyank-sir-section .success-mantra-stories,
    .rohit-sir-section .success-mantra-stories {
        display: block;
        margin-bottom: 0px;
    }

    .abhyank-sir-section .success-mantra,
    .rohit-sir-section .success-mantra {
        width: 100%;
    }

    .abhyank-sir-section .success-stories,
    .rohit-sir-section .success-stories {
        width: 100%;
    }

    .abhyank-sir-section .info, 
    .rohit-sir-section .info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .meet-our-founders-section {
        margin: 0 10px;
        align-items: center;
        justify-self: center;
    }

    .meet-our-founders-section .heading-1 {
        padding-top: 0px;
    }

    .meet-our-founders-section {
        margin: 0 10px;
        align-items: center;
        justify-self: center;
        text-align: left;
    }

    .success-stories p {
        margin-bottom: 0px;
    }
    .success-stories .content {
        margin-bottom: 0px;
    }

    .our-values-section .left-1,
    .our-values-section .right-1,
    .our-values-section .left-1 p,
    .our-values-section .right-1 img,
    .what-do-we-offer-section .left-1,
    .what-do-we-offer-section .right-1 {
        animation: none;
        opacity: 1;
    }

}





