*{
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif;
}
body{
    overflow: hidden;
}
html{
    overflow-x: hidden;
}
.hidden{
    opacity: 0;
}
.topbar-wrapper {
    display: flex;
    width: 100%;
    color: white;
    background-color: #245478;
    position: relative;
}
.topbar{
    display: flex;
}
.topbar a{
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.topbar a .blink-soft{
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% {opacity: 0;}
}
.topbar-left{
    width: 25%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-evenly;
}
.topbar-middle{
    width: 55%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-evenly;
}
.topbar-right{
    width: 20%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-evenly;
}
.topbar-right a span{
    background-color: #ec6323;
    padding: 5px 15px;
    border-radius: 10px;
}
.invisible{
    display: none;
}
.visible{
    display: block;
}
#respMenu li:hover ul.sub-menu ul.sub-menu, #respMenu li:hover ul.sub-menu li:hover ul.sub-menu ul.sub-menu{
    display: none;
}
#respMenu li:hover ul.sub-menu, #respMenu li:hover ul.sub-menu li:hover ul.sub-menu, #respMenu li:hover ul.sub-menu li:hover ul.sub-menu li:hover ul.sub-menu{
    display: block;
}
.main-menu .logo{
    width: 170px;
    max-width: 100%;
    margin-bottom: 6px;
    margin-top: 6px;
}
.ace-responsive-menu>li>a {
    font-size: 15px;
    font-weight: 500;
}

.about-section{
    padding: 40px 20px;
    position: relative;
}
.about-section::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0px;
    width: 50%;
    height: 300px;
    background: #ec6323;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 1;
}
.about-section h1.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
}
.accordion-button{
    color: #245478;
    font-size: 18px;
    font-weight: 600;
}
@keyframes underline {
    0% { width: 0%; } /* No width at the start */
    100% { width: 33%; } /* Full width at the end */
}
.about-section .about-image{
    padding: 30px 0px;
    position: relative;
    z-index: 3;
}
.about-section .about-image img{
    border-radius: 25px;
}
.about-section .about-content{
    padding: 70px 30px;
}
.about-section .about-content p{
    font-size: 18px;
    text-align: justify;
    color: black;
}
.btn.btn-contact{
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #ec6323;
    border: 2px solid #ec6323;
    padding: 10px 25px;
    transition: all 0.4s ease;
}
.btn.btn-contact:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.why-header{
    padding: 35px 0px;
}
.why-section h2.title{
    color: #1a416b;
    font-size: 40px;
    font-weight: 600;
    border: none;
}
.why-section .why-content{
    padding: 30px 0px 20px 0px;
}
.why-section .why-content p{
    font-size: 18px;
}
.why-section .why-card{
    padding: 15px;
    height: 525px;
    max-height: 100%;
    border: 1px solid #1a416b;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: all 0.3s ease;
}
.why-section .why-card a{
    text-decoration: none;
    color: black;
}
.why-section .why-card:hover{
    box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff;
}
.why-section .why-card .why-image{
    margin-bottom: 15px;
}
.why-section .why-card .why-image img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.why-section .why-card .why-info h3{
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 600;
    color: #1a416b;
    text-align: center;
}
.why-section .why-card a.why .why-info h3{
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.why-section .why-card a.why .why-info h3:hover{
    letter-spacing: 1px;
}
.why-section .why-card .why-info p{
    font-size: 18px;
    text-align: center;
}

.programs-section{
    padding: 40px 0px;
}
.programs-section h2.title{
    color: #1a416b;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
}
.programs-section a{
    text-decoration: none;
}
.programs-section a .program-card{
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.programs-section a .program-card h3{
    font-size: 22px;
    color: #1a416b;
    text-align: center;
}
.programs-section a .program-card{
    background-color: #c7e0f7;
}
.programs-section a .program-card:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}
.programs-section a .program-card .program-image{
    padding: 10px 60px;
}
.programs-section a .program-card .program-image .image-wrapper{
    background-color: #1a416b;
    border-radius: 15px;
}

.cta-section{
    padding: 60px 0px 40px 0px;
    background-color: #ec6323;
}
.cta-section h2.title{
    color: white;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
}
.cta-section p{
    font-size: 18px;
    color: white;
}
.cta-section.two{
    padding: 60px 0px 40px 0px;
    background-color: transparent;
}
.cta-section.two h2.title{
    color: #1a416b;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
}
.cta-section.two p{
    font-size: 18px;
    color: #1a416b;
}
.btn.btn-cta{
    font-size: 20px;
    font-weight: 600;
    color: #1a416b;
    background: white;
    border: 2px solid white;
    padding: 10px 25px;
    transition: all 0.4s ease;
}
.btn.btn-cta:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.btn.btn-cta2{
    font-size: 20px;
    font-weight: 600;
    color: white;
    background: #1a416b;
    border: 2px solid #1a416b;
    padding: 10px 25px;
    transition: all 0.4s ease;
}
.btn.btn-cta2:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.testimonials-section{
    padding: 40px 0px;
}
.testimonials-section h2.title{
    color: #1a416b;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
}
.testimonials-section .testimony-content p{
    font-size: 18px;
}
.responsive-quote {
    position: relative;
    padding: 25px;
    background-color: #c7e0f7;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.responsive-quote:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}
.responsive-quote p {
    font-size: 18px;
    color: #1a416b;
    text-align: justify;
}
.responsive-quote ul{
    margin-bottom: 10px;
}
.responsive-quote ul, .responsive-quote ul li{
    display: inline-block;
}
.responsive-quote ul li i{
    color: orange;
    font-size: 20px;
}

.blogs-section{
    padding: 40px 0px;
}
.blogs-section h2.title{
    color: #1a416b;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 50px;
}
.blogs-section .event-card{
    padding: 10px 0px 0px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.blogs-section .event-card a{
    text-decoration: none;
}
.blogs-section .event-card .event-content{
    padding: 10px 0px;
}
.blogs-section .event-card p.event-date{
    font-size: 14px;
    color: #1a416b;
    font-weight: 600;
}
.blogs-section .event-card h3{
    font-size: 22px;
    color: #1a416b;
    font-weight: 600;
}
.blogs-section .event-card p.event-text{
    font-size: 18px;
    color: black;
}
.blogs-section .event-card .date-box{
    background-color: #1a416b;
    padding: 10px;
    border-radius: 5px;
}
.blogs-section .event-card .date-box .event-date.two{
    color: white;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}
.blogs-section .event-card .event-content.two{
    padding: 5px;
}
.blogs-section .event-card .event-content.two h3{
    margin-top: 18px;
    font-size: 22px;
}
.blogs-section a.more-link{
    text-decoration: none;
    color: #1a416b;
    font-weight: 600;
}

.beyond-section{
    padding: 40px 0px;
    background-color: #1a416b;
}
.beyond-section h2.title{
    color: white;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 50px;
}
.beyond-section .beyond-content p{
    font-size: 18px;
    color: white;
}
.beyond-section a{
    text-decoration: none;
}
.beyond-section a .beyond-card{
    border: 1px solid white;
    text-align: center;
    height: 400px;
}
.beyond-section a .beyond-card h3, .beyond-section a .beyond-card p{
    color: white;
}
.beyond-section a .beyond-card h3{
    font-size: 22px;
}
.beyond-section a .beyond-card p{
    font-size: 18px;
}

.programs-links{
    border: 1px solid #10376d;
    border-radius: 15px;
    padding: 25px;
}
.programs-links h3{
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 600;
    color: #10376d;
}
.programs-links ul li{
    margin-bottom: 15px;
}
.programs-links ul li a{
    font-size: 16px;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}
.programs-links ul li a:hover{
    letter-spacing: 1px;
}
.programs-links ul li a i{
    color: #ff853f;
}

.reg-faqs{
    padding: 40px 0px;
}
.reg-form-wrapper .header, .reg-faq-wrapper .header, .how-apply-section .header{
    padding: 10px 0px;
    background-color: #10376d;
    border: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading{
    color: white;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}
.form-area, .faq-area{
    padding: 15px 20px;
}
.form-area label{
    color: #10376d;
    font-size: 18px;
    font-weight: 500;
}
.form-area .form-control{
    border-color: #ff853f;
    color: #ff853f;
}
.form-area .form-control::placeholder{
    color: #ff853f;
}
.reg-faqs .accordion-item {
    border: none;
    border-bottom: 1px solid #10376d;
}
.reg-faqs .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #10376d;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.reg-faqs .accordion button:hover,
.reg-faqs .accordion button:focus {
    cursor: pointer;
}
.reg-faqs .accordion button:hover::after,
.reg-faqs .accordion button:focus::after {
    cursor: pointer;
}
.reg-faqs .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.reg-faqs .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 22px;
}
.reg-faqs .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.reg-faqs .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.reg-faqs .accordion button[aria-expanded='true'] {
    color: #03b5d2;
}
.reg-faqs .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
.reg-faqs .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.reg-faqs .accordion .accordion-content {
    padding: 0px 5px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.reg-faqs .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}
.reg-faqs .faq-wrapper{
    padding: 0px 15px;
}
.reg-faqs .faq-wrapper h3{
    width: 100%;
    display: table;
    font-size: 18px;
    color: #10376d;
    text-align: left !important;
    margin: 0;
    padding-bottom: 15px;
    line-height: 1.3;
}
.reg-faqs .faq-wrapper p,
.reg-faqs .faq-wrapper ul li{
    width: 100%;
    display: table;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}
.reg-faqs .faq-wrapper p span{
    background-color: #10376d;
    color: white;
}

.footer-section{
    padding: 50px 0px 0px 0px;
    background-color: #10376d;;
}
.footer-about img{
    width: 250px;
    max-width: 100%;
}
.footer-about ul, .footer-about ul li{
    display: inline-block;
}
.footer-about ul li:not(:last-child){
    margin-right: 5px;
}
.footer-about ul li a{
    text-decoration: none;
    color: white;
}
.footer-about ul li a i{
    font-size: 25px;
}
.footer-contact h3, .footer-links h3{
    color: white;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer-contact ul li, .footer-links ul li{
    margin-bottom: 15px;
}
.footer-contact ul li a, .footer-links ul li a{
    text-decoration: none;
    color: white;
}
.footer-contact ul li a i.school-text{
    text-decoration: none;
    color: #e77c4a;
}
.footer-contact ul li a{
    font-size: 18px;
}
.footer-section hr{
    color: white;
}
.footer-bottom p, .footer-bottom p a{
    color: white;
    font-size: 14px;;
}

a.top-navigate {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    text-decoration: none;
    z-index: 1000;
}
a.top-navigate::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}
a.top-navigate:hover {
    cursor: pointer;
    background-color: #ec6323;
}
a.top-navigate:active {
    background-color: #ec6323;
}
a.top-navigate.show {
    opacity: 1;
    visibility: visible;
}

.inner-hero {
    --banner-height: 240px;
    height: var(--banner-height);
    background-image: url('../images/bg-lines.png');
    background-blend-mode: overlay;
    display: table;
    width: 100%;
    background-color: #10376d;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.inner-hero .container {
    display: table;
    height: 100%;
}
.inner-hero-content{
    padding: 35px 0px;
}
.inner-hero .inner-hero-content h1 {
    font-size: 45px;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}
.inner-hero .inner-hero-content h2{
    font-size: 40px;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}
.inner-hero .inner-hero-content .breadcrumb li, .inner-hero .inner-hero-content .breadcrumb a{
    text-decoration: none;
    font-weight: 500;
    color: white;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.inner-about{
    padding: 40px 0px;
}
.inner-about .inner-about-image{
    padding: 70px 0px;
    position: relative;
    z-index: 3;
}
.inner-about .inner-about-image.two{
    padding: 30px 0px;
}
.inner-about .inner-about-image.three, .inner-about .inner-about-image.four, .inner-about .inner-about-image.five{
    padding: 0px;
}
.inner-about .inner-about-image img{
    border-radius: 25px;
}
.inner-about .inner-about-content{
    padding: 60px;
}
.inner-about .inner-about-content a{
    color: #245478;
    font-weight: 600;
}
.inner-about .inner-about-content p, .inner-about .inner-about-content ul li{
    font-size: 18px;
    text-align: justify;
    color: black;
}
.inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
}
.why-header.two {
    background: white;
    padding: 35px 0px;
}
.why-section .why-header.two h2.title {
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
}

.core-values{
    padding: 40px 0px;
}
.core-values h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
}
.core-values .value-card{
    padding: 25px 50px;
    text-align: center;
    border-radius: 25px;
    border: none;
    box-shadow: 0 20px 20px 5px rgba(36, 84, 120, 0.10);
}
.core-values .value-card h3{
    color: #ec6323;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.core-values .value-card p{
    font-size: 18px;
}
.core-values h3{
    color: #ec6323;
    font-size: 22px;
    font-weight: 600;
}

.founders-message{
    padding: 40px;
}
.founders-message h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    text-align: center;
    margin-bottom: 25px;
}
.founders-message .heading{
    color: #10376d;
    margin-bottom:50px;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}
.founders-message .heading span {
    font-weight: 300;
}
.founders-message .video-card{clear: both; text-align: center;}
.founders-message .video-card-top {
    border-radius: 10px;
    border-top: 10px solid #f20e0e;
    box-shadow: 16px 13px 42px -17px rgba(0,0,0,0.69);
    height: 370px;
    width: 100%;
}

.founder-section{
    padding: 25px 0px;
}
.founder-section .founder-image{
    position: relative;
    padding: 10px 150px;
}
.founder-section .founder-about{
    padding: 30px;
}
.founder-section .founder-about h3{
    color: #245478;
    font-size: 30px;
    font-weight: 600;
    border: none;
    text-align: center;
    margin-bottom: 25px;
}
.founder-section .founder-about p{
    font-size: 18px;
    text-align: justify;
    color: black;
}

.vision-section{
    padding: 40px 0px;
}
.vision-section .vision-content{
    padding: 30px;
}
.vision-section .vision-content h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 30px;
}
.vision-section .vision-content p{
    font-size: 18px;
    text-align: justify;
}

.method-section{
    padding: 40px 0px;
}
.method-section h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 30px;
}
.method-section p{
    font-size: 18px;
    text-align: justify;
}
.method-section .content-wrapper h3{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-top: 30px;
    margin-bottom: 30px;
}
.method-section .content-wrapper p, .method-section .content-wrapper ul li{
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}
.method-section .method-image{
    position: relative;
    padding: 25px;
}
.method-section .method-image .gradient-border::before{
    content: "";
    position: absolute;
    background: linear-gradient(to left, #245478, #f20e0e);
    left: 0;
    right: 0;
    height: 3px;
    top: 0;
}
.method-section .method-image .gradient-border::after{
    content: "";
    position: absolute;
    background: linear-gradient(to right, #245478, #f20e0e);
    left: 0;
    right: 0;
    height: 3px;
    bottom: 0;
}
.method-section .method-image img{
    border-radius: 25px;
}

.program-section{
    padding: 25px 0px;
}
.program-section .program-header{
    padding: 20px;
    border: 1px solid #245478;
    border-radius: 15px;
    text-align: center;
}
.program-section .program-header h2{
    font-size: 40px;
    font-weight: 600;
    color: #245478;
}
.program-section .program-header p.head{
    font-size: 22px;
    font-weight: 600;
    color: #245478;
}
.reg-faqs .program-content{
    padding: 0px 10px;
}
.reg-faqs .program-content p, .reg-faqs .program-content ul li{
    font-size: 18px;
    text-align: justify;
}
.reg-faqs .program-content p span{
    color: #ec6323;
}

.inquiry-image img{
    border-radius: 25px;
}

.faq-section{
    padding: 40px 0px;
}
.faq-section h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 30px;
}
.faq-section .faq-wrapper h3{
    width: 100%;
    display: table;
    font-size: 18px;
    font-weight: 400;
    color: #10376d;
    text-align: left !important;
    margin: 0;
    padding-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}
.faq-wrapper ul{
    padding: 0px 25px;
}
.faq-section .faq-wrapper p,
.faq-section .faq-wrapper ul li{
    width: 100%;
    display: table;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}
.faq-section .faq-wrapper p span{
    background-color: #10376d;
    color: white;
}
.hr-line{
    display: table;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px dashed #10376d;
}
.faq-wrapper a{
    color: #0ba5ff;
    text-decoration: none;
}
.faq-wrapper a:hover{
    color: #10376d
}

.openings-section{
    padding: 25px 0px;
}
.openings-section .openings-content h2.title{
    color: #245478;
    font-size: 40px;
    font-weight: 600;
    border: none;
    margin-bottom: 30px;
}
.openings-section .openings-content p{
    font-size: 18px;
    text-align: justify;
    color: black;
}
.openings-section .job-card{
    padding: 25px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.09);
}
.openings-section .job-card h3{
    font-size: 22px;
    color: #ec6323;
    font-weight: 600;
}
.openings-section .job-card p{
    font-size: 18px;
}
.btn.btn-apply{
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #245478;
    border: 2px solid #245478;
    padding: 10px 25px;
    transition: all 0.4s ease;
}
.btn.btn-apply:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.contact-section{
    padding: 40px 0px;
}
.contact-form-wrapper .header{
    padding: 10px 0px;
    background-color: #10376d;
    border: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.contact-form-wrapper .header h2.heading{
    color: white;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}
.contact-section .contact-wrapper{
    padding: 0px 25px;
}
.contact-section .contact-wrapper h2{
    color: #10376d;
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-section .contact-wrapper p.address{
    font-size: 18px;
}
.contact-section .contact-wrapper ul li{
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-section .contact-wrapper ul li a{
    text-decoration: none;   
    color: #10376d;
}

.gallery-section{
    padding: 40px 0px;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}
.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
    display: none;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
    display: none !important;
}
.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #CCC;
}
.mfp-preloader a:hover {
    color: #FFF;
}
.mfp-s-ready .mfp-preloader {
    display: none;
}
.mfp-s-error .mfp-content {
    display: none;
}
button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
}
.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}
.mfp-close:active {
    top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}
.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}
.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}
.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}
.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}
/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}
.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}
.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}
.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}
.mfp-image-holder .mfp-content {
    max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.float-container {
  position: fixed;
  top: 36%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 99
}
.float-container a {
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  margin-right: -1px;
  margin-bottom: 10px;
  padding: 10px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: white;
  border-color: #46b8da;
  border-radius: 5px 0 0 5px;
  background-color: #ec6323;
  -webkit-box-shadow: 0 2px 4px #1a416b;
  box-shadow: 0 2px 4px #1a416b;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: sans-serif;
}
.float-container a:hover {
  margin-right: 0;
  background-color: #1a416b;
  -webkit-box-shadow: 0 2px 4px #ec6323;
  box-shadow: 0 2px 4px #ec6323;
}
.side-icon i{
  font-size: 20px;
}
.post-text ol li{
    font-size: 18px;
    margin-bottom: 1rem;
    color: #626262;
}

@media only screen and (max-width: 1650px){
    
}
@media only screen and (max-width: 1425px) {
    .topbar-left{
        width: 30%;
    }
    .topbar-middle{
        width: 50%;
    }
    .topbar-right{
        width: 20%;
    }
    .ace-responsive-menu>li>a {
        padding: 40px 10px 40px 10px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 1365px) {
    .topbar-left{
        width: 30%;
    }
    .topbar-middle{
        width: 50%;
    }
    .topbar-right{
        width: 20%;
    }
    .ace-responsive-menu>li>a {
        padding: 40px 10px 40px 10px;
        font-size: 14px;
    }
    .about-section{
        padding: 50px 0px 0px 20px;
    }
    .about-section .about-image {
        padding: 120px 10px;
    }
    .about-section h1.title, .why-section h2.title, .programs-section h2.title, .cta-section h2.title, .testimonials-section h2.title, .blogs-section h2.title,
    .beyond-section h2.title, .reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading{
        font-size: 30px;
    }
    .why-section .why-card .why-info h3, .blogs-section .event-card h3, .blogs-section .event-card .event-content.two h3, .beyond-section a .beyond-card h3 {
        font-size: 20px;
    }
    .programs-section a .program-card {
        padding: 20px 10px;
    }
    .founder-section .founder-image {
        padding: 10px 125px;
    }
    .founder-section .founder-about {
        padding: 10px 25px;
    }
    .method-section .method-image {
        padding: 35px 0px;
    }
    .responsive-quote {
        height: 400px;
    }
    .founders-message .video-card-top {
        height: 320px;
    }
    .inner-about .inner-about-content p, .inner-about .inner-about-content ul li, .core-values .value-card p {
        font-size: 16px;
    }
    .vision-section .vision-content h2.title {
        font-size: 33px;
    }
    .vision-section .vision-content p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1280px) {
    .topbar-left{
        width: 30%;
    }
    .topbar-middle{
        width: 50%;
    }
    .topbar-right{
        width: 20%;
    }
    .ace-responsive-menu>li>a {
        padding: 36px 8px 36px 8px;
        font-size: 13px;
    }
    .about-section{
        padding: 50px 0px 0px 20px;
    }
    .about-section .about-image {
        padding: 70px 10px;
    }
    .inner-about .inner-about-image{
        padding: 80px 0px;
    }
    .inner-about .inner-about-image.two{
        padding: 50px 0px;
    }
    .about-section h1.title, .why-section h2.title, .programs-section h2.title, .cta-section h2.title, .testimonials-section h2.title, .blogs-section h2.title,
    .beyond-section h2.title, .reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading,
    .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3, .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3,
    .inner-hero .inner-hero-content h1, .inner-hero .inner-hero-content h2{
        font-size: 30px;
    }
    .why-section .why-card .why-info h3, .blogs-section .event-card h3, .blogs-section .event-card .event-content.two h3, .beyond-section a .beyond-card h3,
    .founder-section .founder-about h3, .footer-contact h3, .footer-links h3, .programs-section a .program-card h3 {
        font-size: 20px;
    }
    .about-section .about-content p, .founder-section .founder-about p, .founder-section .founder-about p, .responsive-quote p, .why-section .why-content p,
    .why-section .why-card .why-info p, .cta-section p, .testimonials-section .testimony-content p, .blogs-section .event-card p.event-text, .beyond-section .beyond-content p,
    .beyond-section a .beyond-card p, .reg-faqs .faq-wrapper h3, .reg-faqs .faq-wrapper p, .reg-faqs .faq-wrapper ul li, .form-area label, .footer-contact ul li a,
    .footer-contact ul li a, .footer-links ul li a, .footer-bottom p, .footer-bottom p a {
        font-size: 16px;
    }
    .why-section .why-card {
        height: 475px;
    }
    .responsive-quote {
        height: 330px;
    }
    .method-section .method-image {
        padding: 45px 0px;
    }
    .footer-about ul li a i {
        font-size: 20px;
    }
    .beyond-section a .beyond-card {
        height: 360px;
    }
    .programs-section a .program-card {
        padding: 10px;
    }
    .programs-section a .program-card .program-image {
        padding: 10px 20px;
    }
    .responsive-quote {
        padding: 15px;
    }
}
@media only screen and (max-width: 1024px) {
    .main-menu .logo {
        padding-top: 10px;
        width: 100%;
        height: auto;
    }
    .topbar-left{
        width: 20%;
    }
    .topbar-middle{
        width: 60%;
    }
    .topbar-right{
        width: 20%;
    }
    .topbar-left a span{
        display: none;
    }
    .ace-responsive-menu>li>a {
        padding: 40px 15px 40px 15px;
        font-size: 15px;
    }
    .inner-about .inner-about-content {
        padding: 30px;
    }
    .about-section{
        padding: 10px 0px 0px 10px;
    }
    .about-section::after {
        width: 42%;
        height: 250px;
    }
    .about-section .about-image {
        padding: 90px 5px;
    }
    .about-section .about-content {
        padding: 70px 25px;
    }
    .why-section .why-card{
        height: 480px;
    }
    .about-section h1.title, .why-section h2.title, .programs-section h2.title, .cta-section h2.title, .testimonials-section h2.title, .blogs-section h2.title,
    .beyond-section h2.title, .reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading,
    .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3, .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3,
    .inner-hero .inner-hero-content h1, .inner-hero .inner-hero-content h2{
        font-size: 27px;
    }
    .why-section .why-card .why-info h3, .blogs-section .event-card h3, .blogs-section .event-card .event-content.two h3, .beyond-section a .beyond-card h3,
    .founder-section .founder-about h3, .footer-contact h3, .footer-links h3, .programs-section a .program-card h3 {
        font-size: 18px;
    }
    .about-section .about-content p, .founder-section .founder-about p, .founder-section .founder-about p, .responsive-quote p, .why-section .why-content p,
    .why-section .why-card .why-info p, .cta-section p, .testimonials-section .testimony-content p, .blogs-section .event-card p.event-text, .beyond-section .beyond-content p,
    .beyond-section a .beyond-card p, .reg-faqs .faq-wrapper h3, .reg-faqs .faq-wrapper p, .reg-faqs .faq-wrapper ul li, .form-area label, .footer-contact ul li a,
    .footer-contact ul li a, .footer-links ul li a, .footer-bottom p, .footer-bottom p a {
        font-size: 15px;
    }
    .blogs-section .event-card .date-box .event-date.two {
        font-size: 18px;
    }
    .founder-section .founder-about p {
        font-size: 18px;
    }
    .method-section .method-image {
        margin-top: 110px;
    }
    .beyond-section a .beyond-card {
        height: 310px;
    }
    .beyond-section h2.title {
        margin-bottom: 15px;
    }
    .founders-message .video-card-top {
        height: 260px;
    }
}
@media only screen and (max-width: 920px) {
    .topbar-left{
        width: 20%;
    }
    .topbar-middle{
        width: 60%;
    }
    .topbar-right{
        width: 20%;
    }
    .topbar-left a span{
        display: none;
    }
    .inner-about .inner-about-image {
        padding: 0px;
    }
    .inner-about .inner-about-content {
        padding: 20px 0px;
    }
    .about-section {
        padding: 0px;
    }
    .about-section::before {
        width: 0;
        height: 0;
    }
    .about-section::after {
        width: 100%;
        height: 250px;
        top: 20%;
        left: -20px;
    }
    .about-section .about-image {
        padding: 50px 5px;
    }
    .about-section .about-content {
        padding: 0px 20px;
    }
    .why-section .why-card{
        height: 100%;
    }
    .about-section h1.title, .why-section h2.title, .programs-section h2.title, .cta-section h2.title, .testimonials-section h2.title, .blogs-section h2.title,
    .beyond-section h2.title, .reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading,
    .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3, .inner-hero .inner-hero-content h1, .inner-hero .inner-hero-content h2{
        font-size: 27px;
    }
    .why-section .why-card .why-info h3, .blogs-section .event-card h3, .blogs-section .event-card .event-content.two h3, .beyond-section a .beyond-card h3,
    .founder-section .founder-about h3, .footer-contact h3, .footer-links h3, .programs-section a .program-card h3, .inner-about .inner-about-content h2.title,
    .inner-about .inner-about-content h3 {
        font-size: 18px;
    }
    .about-section .about-content p, .founder-section .founder-about p, .founder-section .founder-about p, .responsive-quote p, .why-section .why-content p,
    .why-section .why-card .why-info p, .cta-section p, .testimonials-section .testimony-content p, .blogs-section .event-card p.event-text, .beyond-section .beyond-content p,
    .beyond-section a .beyond-card p, .reg-faqs .faq-wrapper h3, .reg-faqs .faq-wrapper p, .reg-faqs .faq-wrapper ul li, .form-area label, .footer-contact ul li a,
    .footer-contact ul li a, .footer-links ul li a, .footer-bottom p, .footer-bottom p a {
        font-size: 14px;
    }
    .founders-message .video-card-top {
        width: 100%;
    }
    .custom-xs-order-1 {
        order: 1;
    }
    .method-section .method-image {
        padding: 25px 0px;
        margin-top: 0px;
    }
    .beyond-section a .beyond-card {
        height: 100%;
    }
    .programs-section a .program-card .program-image {
        padding: 10px 70px;
    }
    .responsive-quote {
        height: 100%;
    }
    .founders-message .video-card-top {
        height: 400px;
    }
}
@media screen and (max-width: 820px) {
    
}
@media only screen and (max-width: 768px) {
    .topbar-left{
        width: 20%;
    }
    .topbar-middle{
        width: 60%;
    }
    .topbar-right{
        width: 20%;
    }
    .topbar-left a span{
        display: none;
    }
    
}
@media only screen and (max-width: 600px) {
    .main-menu .logo {
        width: 100%;
        padding: 10px 70px;
    }
    .topbar{
        flex-direction: column;
        justify-content: center;
    }
    .topbar-left, .topbar-middle, .topbar-right{
        width: 100%;
    }
    .topbar-left a{
        display: flex;
    }
    .topbar-left a i{
        padding-top: 5px;
        padding-right: 5px;
    }
    .topbar-left a span{
        display: block;
    }
    .about-section::after {
        width: 100%;
        height: 150px;
        top: 15%;
        left: 0px;
        border-radius: 0px;
    }
    .about-section h1.title {
        text-align: center;
    }
    @keyframes underline {
        0% { width: 0%; } /* No width at the start */
        100% { width: 100%; } /* Full width at the end */
    }
    a.top-navigate {
        width: 40px;
        height: 40px;
    }
    a.top-navigate::after {
        font-size: 1.5em;
        line-height: 40px;
    }
    .founders-message {
        padding: 0px;
    }
    .inner-hero {
        --banner-height: 250px;
        height: var(--banner-height);
    }
    .about-section h1.title, .why-section h2.title, .programs-section h2.title, .cta-section h2.title, .testimonials-section h2.title, .blogs-section h2.title,
    .beyond-section h2.title, .reg-form-wrapper .header h2.heading, .reg-faq-wrapper .header h2.heading, .how-apply-section .header h3.heading,
    .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3, .inner-about .inner-about-content h2.title, .inner-about .inner-about-content h3,
    .inner-hero .inner-hero-content h1, .inner-hero .inner-hero-content h2{
        font-size: 30px;
    }
    .why-section .why-card .why-info h3, .blogs-section .event-card h3, .blogs-section .event-card .event-content.two h3, .beyond-section a .beyond-card h3,
    .founder-section .founder-about h3, .footer-contact h3, .footer-links h3, .programs-section a .program-card h3 {
        font-size: 20px;
    }
    .about-section .about-content p, .founder-section .founder-about p, .founder-section .founder-about p, .responsive-quote p, .why-section .why-content p,
    .why-section .why-card .why-info p, .cta-section p, .testimonials-section .testimony-content p, .blogs-section .event-card p.event-text, .beyond-section .beyond-content p,
    .beyond-section a .beyond-card p, .reg-faqs .faq-wrapper h3, .reg-faqs .faq-wrapper p, .reg-faqs .faq-wrapper ul li, .form-area label, .footer-contact ul li a,
    .footer-contact ul li a, .footer-links ul li a, .footer-bottom p, .footer-bottom p a {
        font-size: 15px;
    }
    .founders-message .video-card-top {
        height: 230px;
    }
    .responsive-quote {
        padding: 10px;
    }
    .why-section .why-card{
        height: 100%;
    }
    .programs-section a .program-card .program-image {
        padding: 10px 110px;
    }
    .founder-section .founder-image {
        padding: 25px;
    }
}
@media only screen and (max-width: 420px) {
    .topbar{
        flex-direction: column;
        justify-content: center;
    }
    .topbar-left, .topbar-middle, .topbar-right{
        width: 100%;
    }
    .topbar-left a, .topbar-middle a, .topbar-right a{
        font-size: 12px;
        display: flex;
    }
    .topbar-left a i{
        padding-top: 5px;
        padding-right: 5px;
    }
    .topbar-left a span{
        display: block;
    }
    
}
@media only screen and (max-width: 320px) {
    .topbar{
        flex-direction: column;
        justify-content: center;
    }
    .topbar-left, .topbar-middle, .topbar-right{
        width: 100%;
    }
    .topbar-left a, .topbar-middle a, .topbar-right a{
        font-size: 12px;
        display: flex;
    }
    .topbar-left a i{
        padding-top: 5px;
        padding-right: 5px;
    }
    .topbar-left a span{
        display: block;
    }
    
}