/* roadmap section css start */
.roadmap-section {
    position: relative;
    padding: 90px 0 50px;
    margin-top: -50px;
    overflow: hidden;
}

.roadmap-section .roadmap-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(1deg);
    opacity: 0.4;
    right: 0;
    bottom: 0;
    left: 5%;
}

.roadmap-section .roadmap-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.roadmap-section .roadmap-content-outer h2 {
    text-align: center;
    color: #6e4199;
    margin-bottom: 30px;
    position: relative;
}

.roadmap-section .roadmap-content-wrapper .road-background {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50vw;
    padding-top: 142px;
    height: calc(100% - 170px);
}

.roadmap-section .roadmap-content-wrapper .road-background img {
    height: 100%;
    width: 100%;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info {
    display: flex;
    position: relative;
    align-items: center;
}

.roadmap-section .roadmap-content-outer .right-block-outer {
    position: relative;
    padding: 0 50px;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info .location-image img {
    height: auto;
    width: 100%;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info .title-block {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info .title-block em{
    max-width: 40px;
    flex:0 0 40px;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info .title-block em img{
    width: 100%;
    height: auto;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info .title-block h3 {
    color: #6e4199;
    font-size: 26px;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info .right-block p {
    font-size: 20px;
    color: #000;
    font-weight: 300;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info .location-image {
    width: 60px;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info:first-child {
    padding-left: 0;
    gap: 20px;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info:first-child .location-image {
    width: 100px;
}

.roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
    padding-left: 0;
    gap: 370px;
    margin-top: 20px;
    margin-left: -326px;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) .right-block{
    padding-top: 16px;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3) {
    padding-left: 338px;
    margin-top: 76px;
    gap: 110px;
}
.roadmap-section .roadmap-content-wrapper .roadmap-info:last-child{
    padding-left: 300px;
    margin-top: 61px;
    gap: 150px;
}

.roadmap-section .roadmap-content-wrapper .road-background .location-image {
    position: absolute;
    display: block;
}
/* roadmap section css end */

/* what we do section css start */
.what-we-do-section {
    position: relative;   
    padding-top: 130px;
    margin-top: -130px; 
}
.what-we-do-section .bg-image-wrapper{
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.4;
    top: -83%;
    left: 0;
    z-index: -1;
}
.what-we-do-section .bg-image-wrapper img{
    object-fit: cover;
    position: absolute;
    object-position: top;
}
.what-we-do-section .container{
    position: relative;
}
.what-we-do-section .title-wrapper{
    text-align: center;
}
.what-we-do-section .title-wrapper h2{
    color: #6e4199;
}
.what-we-do-section .what-we-do-outer{
    margin-top: 30px;
}
.what-we-do-section .what-we-do-outer p{
    font-family: "diavlo", sans-serif;
    font-weight: 300;
}
.what-we-do-section .what-we-do-outer .content-block{
    position: relative;
    z-index: 5;
}
.what-we-do-section .what-we-do-outer .content-block p+p{
    margin-top: 10px;
}
.what-we-do-section .curriculum-wrapper{
    display: flex;
    margin-top: 30px;
}
.what-we-do-section .curriculum-wrapper .left-block{
    max-width: 70%;
    flex: 0 0 70%;
    padding-right: 50px;
    position: relative;
    z-index: 3;
}
.what-we-do-section .curriculum-wrapper .right-block{
    max-width: 30%;
    flex: 0 0 30%;
    align-self: flex-end;
}
.what-we-do-section .curriculum-wrapper .left-block h3.h4{
    color: #6e4199;
    font-weight: 700;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper{
    display: flex;
}

.what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper{
    max-width: 120px;
    flex: 0 0 120px;
    border-radius: 50%;
    border: 11px solid #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;    
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper::after{
    position: absolute;
    content: '';
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 15px solid #fde300;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.green-card .image-wrapper::after{
    border-left-color: #8cc63e;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.blue-card .image-wrapper::after{
    border-left-color: #0c8294;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper em{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper img{
    height: 50px;
    width: auto;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.yellow-card .content-wrapper,
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.yellow-card .image-wrapper em{
    background-color: #fde300;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.green-card .content-wrapper,
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.green-card .image-wrapper em{
    background-color: #8cc63e;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.blue-card .content-wrapper,
.what-we-do-section .curriculum-wrapper .levels-info-wrapper.blue-card .image-wrapper em{
    background-color: #0c8294;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
    padding: 30px 50px;
    border-radius: 0px 65px 65px 0;
    margin-left: -25px;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper+.levels-info-wrapper{
    margin-top: 10px;
}
.what-we-do-section .curriculum-wrapper .levels-outer{
    margin-top: 20px;
}
.what-we-do-section .curriculum-wrapper .levels-outer .btn-wrapper{
    margin: 30px 0 35px;
    text-align: center;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper h4{
    font-size: 18px;
    margin-bottom: 5px;
}
.what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper p{
    line-height: 1.3;
}
/* what we do section css end */
.why-us-network-about-block .why-us-network-about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img {
    max-width: 312px;
    flex: 0 0 312px;
    margin-top: -100px;
    z-index: 1;
}
.why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img img {
   height: auto;
   width: 100%;
}
.why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content {
    max-width: calc(100% - 312px);
    flex: 0 0 calc(100% - 312px);
    padding: 36px 0;
}
.why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content .h4{
    font-size: 26px;
}
.why-us-network-about-block .why-us-network-about-wrapper h2,
.why-us-network-about-block .why-us-network-about-wrapper h3 {
    color: #6e4199;
}
.why-us-network-about-block .why-us-network-about-wrapper h2 { margin-bottom: 12px;}
.why-us-network-about-block p {
    margin-bottom: 30px;
    font-family: "diavlo", sans-serif;
    font-weight: 300;
}
.why-us-network-about-block .offers-listing {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -15px;
    margin-top: 15px;
}
.why-us-network-about-block .offers-listing li {
    display: inline-flex;
    margin-right: 15px;
    margin-bottom: 15px;
    align-items: center;
    color: #6e4199;
}
.why-us-network-about-block .offers-listing li em {
    min-width: 35px;
    width: 35px;
    margin-right: 10px;
}
.border-box-img-section .efk-image-block .efk-inner-img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 18%);
    background-color: #B4111A;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.border-box-img-section .efk-image-block .efk-inner-img img{
   padding-right: 25px;
}
.border-box-img-section .efk-image-content .efk-image-block .efk-inner-img img{
    border-radius: 0;
}
.border-box-img-section .efk-image-content .efk-image-block .efk-inner-img img{
    border-radius: 0;
}
/* whatis-efk-block css start */
.whatis-efk-block h2{
    color: #6e4199;
    margin-bottom: 21px;  
}
.whatis-efk-block h2{
    margin-bottom: 18px;
}
.whatis-efk-block h4,
.whatis-efk-block h3
{
  margin: 15px 0;
}
.whatis-efk-block h3
{
  font-weight: 600;
  font-size: 26px;
}
.whatis-efk-block p{
    font-family: "diavlo", sans-serif;
    font-weight: 300;
}
.whatis-efk-block h4{
    font-weight: 600;
}
.whatis-efk-block .efk-image-content .efk-image-block .efk-inner-img{
    padding-bottom: 93%;
}
.whatis-efk-block .efk-image-content{
    align-items: flex-end;
}
.whatis-efk-block .site-primary-btn{
    margin-top: 15px;
}
/* whatis-efk-block css end */

/* make-us-different-block css start */
.make-us-different-block h2{
    color: #6e4199;
    margin-bottom: 15px;
}
.make-us-different-block p{
    font-family: "diavlo", sans-serif;
    font-weight: 300;
    line-height: 1.5;
}
.make-us-different-block p + p{
    margin-top: 20px;
}
.make-us-different-block p span {
    color: #6e4199; 
}
.make-us-different-block.border-box-img-section .efk-image-block .efk-inner-img::before{
    background-color: #172B48;
}
.make-us-different-block .efk-image-content .efk-image-block .efk-inner-img{
    padding-bottom: 90%;
}
/* make-us-different-block css end */

/* importance-stem-section css start */
.importance-stem-section{
    background: linear-gradient(270deg, #90c746 0%, #379aa9 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.importance-stem-section .ekf-image-content-section.white-background:before{
    display: none;
}
.importance-stem-section::before{
    background-image: url(../images/importance-stem-section-bg.png);
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    background-size: contain;
    top: 0;
    z-index: -1;
}
.importance-stem-section .title-wrapper{
    text-align: center;
    margin-bottom: 20px;
}
.importance-stem-section .stem-highlight-wrapper{
   display: flex;
   justify-content: space-between;
   gap: 15px;
   margin-bottom: 30px;
}
.importance-stem-section .stem-highlight-wrapper .stem-highlight{
    max-width: 310px;
    display: flex;
    align-items: center;
}
.importance-stem-section p{
    font-family: "diavlo", sans-serif;
}
.importance-stem-section .stem-highlight-wrapper .stem-highlight p{
   color: #fde300;
   font-size: 18px;
   line-height: 1.3;   
}
.importance-stem-section .stem-highlight-wrapper .stem-highlight em{
    height: 60px;
    width: 60px;
    min-width: 60px;
    margin-right: 8px;
}
.importance-stem-section .stem-highlight-wrapper .stem-highlight em img{
   height: 100%;
   width: 100%;
}
.importance-stem-section .ekf-image-content-section{
   padding: 0;
}
.importance-stem-section p + p{
    margin-top: 20px;
}
.importance-stem-section .efk-image-content{
    padding-top: 35px;
}
.importance-stem-section .ekf-image-content-section.white-background{
 overflow: unset;
}
.importance-stem-section .border-box-img-section .efk-image-block .efk-inner-img::before{
    background-color: #fde300;
    right: unset;
    left: 0;
}
.importance-stem-section .border-box-img-section .efk-image-block .efk-inner-img img{
    padding-left: 25px;
    padding-right: 0 !important;
}
.importance-stem-section .efk-content-block h3{
    font-size: 26px;
    margin-bottom: 5px;
}
.importance-stem-section .efk-content-block ul li,
.business-model-section .efk-image-content ul li
{
    position: relative;
    padding-left: 20px;
    font-family: "diavlo", sans-serif;
}
.importance-stem-section .efk-content-block ul li::before,
.business-model-section .efk-image-content ul li::before
{
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 8px;
    top: 11px;
}
.importance-stem-section .efk-content-block ul + h3{
    margin-top: 30px;
}
.importance-stem-section .efk-content-block .site-primary-btn{
    margin-top: 30px;
}

/* importance-stem-section css end */
.business-model-section h2{
    color: #6e4199; 
    margin-bottom: 15px;
}
.business-model-section p{
    font-family: "diavlo", sans-serif;
    font-weight: 300;
}
.business-model-section .efk-image-content ul li{
    font-weight: 300;
}
.business-model-section.ekf-image-content-section{
    padding-bottom: 0;
    overflow: hidden;
}
.business-model-section.ekf-image-content-section .efk-image-content .efk-image-block{
    position: relative;
    padding-left: 0;
}
.business-model-section.ekf-image-content-section .efk-image-content .efk-image-block .efk-inner-img{
    padding-bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.business-model-section.ekf-image-content-section .efk-image-content .efk-image-block .efk-inner-img img{
    position: relative;
    height: auto;
}
.business-model-section.ekf-image-content-section .efk-image-content .efk-image-block::before{
    position: absolute;
    content: '';
    background-image: url(../images/efk-franchise-purple-cog.svg);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-size: contain;
    /* top: 0; */
}
.business-model-section.ekf-image-content-section .efk-image-content .efk-content-block{
    padding-bottom: 60px;
    padding-right: 10px;
}
.business-model-section .efk-image-content ul li::before{
    background-color: #000;
}
.business-model-section .efk-image-content ul + p,
.business-model-section .efk-image-content p + p,
.business-model-section .efk-image-content .site-primary-btn
{
    margin-top: 15px;
}

/* efk-training-block css start */
.training-info-section{
    position: relative;
    z-index: 3
}
.training-info-section .efk-training-block {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Diavlo', Arial, sans-serif;
    background: #fff;
}

.training-info-section .efk-training-block .tab-container {
    display: flex;    
    background: #f8f9fa;
}
.training-info-section .efk-training-block .tab-outer-wrapper{
    overflow-x: auto;
    border-bottom: 3px solid #379aa9;
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none; 
}
.training-info-section .efk-training-block .tab-outer-wrapper::-webkit-scrollbar {
    display: none;              /* Chrome, Safari */
}
.training-info-section .efk-training-block .tab-button {
    flex: 1;
    padding: 20px 15px;
    background: #e5e5e5;
    border: none;
    border-right: 2px solid #ccc;
    cursor: pointer;
    font-family: 'Diavlo', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #313131;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 115px;
}

.training-info-section .efk-training-block .tab-button:last-child {
    border-right: none;
}

.training-info-section .efk-training-block .tab-button.active {
    background: #90c746;
    color: #fff;
    border-bottom: 3px solid #379aa9;
}

.training-info-section .efk-training-block .tab-button:hover:not(.active) {
    background: #d0d0d0;
    color: #6e4199;
}

.training-info-section .efk-training-block .tab-content {
    display: none;
    padding: 40px 30px 60px;
    background: #fff;
    min-height: 400px;
}

.training-info-section .efk-training-block .tab-content.active {
    display: block;
}

.training-info-section .efk-training-block .content-header {
    color: #6e4199;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.training-info-section .efk-training-block .content-subheader {
    color: #313131;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4;
}

.training-info-section .efk-training-block .content-text {
    color: #313131;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-info-section .efk-training-block .training-list {
    background: #f8f9fa;
    padding: 25px;
    margin: 20px 0 0;
    border-left: 4px solid #90c746;
}

.training-info-section .efk-training-block .training-list h3 {
    color: #6e4199;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.training-info-section .efk-training-block .training-list ul {
    list-style: none;
    padding: 0;
}

.training-info-section .efk-training-block .training-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #313131;
    font-size: 16px;
    line-height: 1.6;
}

.training-info-section .efk-training-block .training-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #90c746;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.training-info-section .efk-training-block .highlight-box {
    background: linear-gradient(135deg, #90c746 0%, #379aa9 100%);
    color: #fff;
    padding: 25px;
}

.training-info-section .efk-training-block .highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.training-info-section .efk-training-block .highlight-box p {
    font-size: 16px;
    line-height: 1.6;
}

.training-info-section .efk-training-block .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.training-info-section .efk-training-block .feature-card {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #379aa9;
}

.training-info-section .efk-training-block .feature-card h4 {
    color: #6e4199;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.training-info-section .efk-training-block .feature-card p {
    color: #313131;
    font-size: 14px;
    line-height: 1.5;
}
.training-info-section .efk-training-block .training-list li:last-child{
    margin-bottom: 0;  
}
.tooltip-wrapper {
    position: relative;
    cursor: pointer;
}
.tooltip-wrapper .tooltip-text {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    background: #313131;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    z-index: 999;
    max-width: 300px;    
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
.tooltip-wrapper .tooltip-text.tooltip-1,.tooltip-wrapper .tooltip-text.tooltip-2 {
    bottom: 100%;
    left: 0;
}
.tooltip-wrapper .tooltip-text.tooltip-3,.tooltip-wrapper .tooltip-text.tooltip-4 {
    top: 100%;
    left: 0;
}
.tooltip-wrapper .tooltip-text p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #fff !important;
}
.tooltip-wrapper .tooltip-text a {
    color: #fff;
  text-decoration: underline;
  word-break: break-word;
}
.tooltip-wrapper .tooltip-text p + p{
    margin-top: 10px !important;
}
.tooltip-wrapper:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
} 
/* efk-training-block css end */



@media(max-width: 1860px){
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
        margin-left: -296px;
        gap: 350px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3){
        padding-left: 348px;
    }
}
@media(max-width: 1780px){
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3){
        padding-left: 346px;
        gap: 110px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child{
        gap: 170px;
        padding-left: 327px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
        margin-left: -236px;
    }
}
@media(max-width: 1680px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3) {
        padding-left: 358px;
        margin-top: 76px;
        gap: 90px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
        margin-left: -200px;
    }
}

@media(max-width: 1536px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child {
        padding-left: 0;
        gap: 20px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child .location-image {
        width: 100px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {        
        gap: 310px;
        margin-left: -170px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3) {
        padding-left: 371px;
        margin-top: 76px;
        gap: 70px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child {
        padding-left: 343px;
        margin-top: 61px;
        gap: 150px;
    }
}
@media(max-width: 1460px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {
        margin-left: -130px;
    }
}
@media(max-width: 1439px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {
        margin-left: -106px;
    }
}

@media (max-width: 1366px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {
        margin-left: -86px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child {
        padding-left: 365px;
        gap: 130px;
    }
}

@media (max-width: 1280px) {
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {
        margin-left: -56px;
        gap: 220px;
    }

    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child {
        padding-left: 345px;
        gap: 110px;
    }
}

@media(max-width: 1199px) {
    .roadmap-section .roadmap-content-outer .right-block-outer {
        padding: 0;
    }
    .roadmap-section .roadmap-content-wrapper .road-background {
        display: none;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info .location-image,
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child .location-image{
        width: 40px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child,
    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child,
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3),
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
        margin: 0;
        padding: 0;
        gap: 30px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info+.roadmap-info{
        margin-top: 30px;
    }
    .roadmap-section{
        padding: 80px 0 50px;
    }
    .what-we-do-section .bg-image-wrapper{
        top: -70%;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        padding: 30px 30px 30px 50px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) .right-block{
        padding-top: 0;
    }
    .border-box-img-section .efk-image-block .efk-inner-img img{
        padding-right: 20px;
    }
    .importance-stem-section .border-box-img-section .efk-image-block .efk-inner-img img{
        padding-left: 20px;
    }
    .whatis-efk-block h4, .whatis-efk-block h3 {
        margin: 10px 0;
    }
    .whatis-efk-block h2 {
        margin-bottom: 15px;
    }
    .importance-stem-section{
        padding: 50px 0;
    }
    .importance-stem-section .efk-content-block ul + h3,
    .importance-stem-section .efk-content-block .site-primary-btn 
    {
        margin-top: 25px;
    }
     .training-info-section .efk-training-block .tab-content {
        padding: 40px 30px 50px;
    }
    .why-us-network-about-block p{
        margin-bottom: 20px;
    }
    .make-us-different-block p + p {
        margin-top: 15px;
    }
    .business-model-section h2{
        margin-bottom: 10px;
    }
    .training-info-section .efk-training-block .content-subheader,
    .training-info-section .efk-training-block .content-header,
    .importance-stem-section .title-wrapper
    {
        margin-bottom: 15px;
    }
    .training-info-section .efk-training-block .content-header{
        font-size: 26px;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content .h4 {
        font-size: 24px;
    }
    .importance-stem-section p + p {
        margin-top: 10px;
    }
    .make-us-different-block .efk-image-content .efk-image-block .efk-inner-img {
        padding-bottom: 60%;
    }
}
@media(max-width: 1023px){
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        padding: 30px 20px 30px 40px;
    }
}
@media(max-width: 991px){
    .roadmap-section{
        margin-top: -40px;
    }
    .what-we-do-section .curriculum-wrapper{
        flex-wrap: wrap;
    }
    .what-we-do-section .curriculum-wrapper .left-block{
        max-width: 100%;
        flex: 0 0 100%; 
        padding-right: 0;
    }
    .what-we-do-section .curriculum-wrapper .right-block{
        z-index: 3;
        position: relative;
        margin: 0 auto;
    }    
    .whatis-efk-block h2{
        margin-bottom: 10px; 
    }
    .whatis-efk-block .efk-image-content .efk-image-block .efk-inner-img{
        padding-bottom: 60%;
    }
    .importance-stem-section .efk-content-block ul + h3 ,
    .importance-stem-section .efk-content-block .site-primary-btn {
        margin-top: 20px;
    }
    .importance-stem-section .efk-image-content {
        padding-top: 25px;
    }
    .importance-stem-section .stem-highlight-wrapper{
        margin-bottom: 20px;
    }
    .business-model-section.ekf-image-content-section .efk-image-content .efk-image-block .efk-inner-img img{
        max-width: 700px;
        margin: 0 auto;
    }
    .business-model-section.ekf-image-content-section .efk-image-content .efk-content-block {
        padding-bottom: 30px;
        padding-right: 0;
        order: 1;
    }
    .business-model-section.ekf-image-content-section .efk-image-content .efk-content-block {
        padding-bottom: 30px;
        padding-right: 0;
        order: 1;
    }
    .business-model-section.ekf-image-content-section .efk-image-content .efk-image-block{
        order: 2;
        margin: 0;
    }
    .business-model-section.ekf-image-content-section .efk-image-content .efk-image-block::before{
        inset: 0;
        background-size: cover;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content{
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 0 10px;
        order: 1;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img{
        flex: 0 0 250px;
        max-width: 250px;
        margin: 0;
        order: 2;
    }
    .why-us-network-about-block .why-us-network-about-wrapper{
        justify-content: center;
    }
    .what-we-do-section .what-we-do-outer {
        margin-top: 15px;
    }
}
@media(max-width: 767px){
    .roadmap-section .roadmap-content-wrapper .roadmap-info .title-block h3{
        font-size: 22px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info .location-image, 
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child .location-image {
        width: 30px;
        min-width: 30px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child, .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child, .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3), .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2){
        gap: 20px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info .right-block p{
        font-size: 18px;
    }
    .whatis-efk-block{
        padding-bottom: 50px;
    }
    .what-we-do-section .bg-image-wrapper,
    .roadmap-section .roadmap-bg{
        display: none;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        padding: 30px 40px;
    }
    .what-we-do-section .curriculum-wrapper .levels-outer .btn-wrapper {
        margin: 20px 0 20px;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info .title-block em{
        max-width: 30px;
        flex: 0 0 30px;
    }    
    .importance-stem-section .efk-content-block h3,
    .whatis-efk-block h3
    {
        font-size: 22px;
    }
    .importance-stem-section{
        padding: 40px 0;
    }
    .importance-stem-section .stem-highlight-wrapper .stem-highlight p{
        font-size: 18px;
    }
    .training-info-section .efk-training-block .tab-button {
        border-right: none;
        border-bottom: 2px solid #ccc;
        padding: 15px 10px;
        font-size: 14px;
    }

    .training-info-section .efk-training-block .tab-content {
        padding: 20px 0 40px;
    }

    .training-info-section .efk-training-block .content-header {
        font-size: 24px;
    }

    .training-info-section .efk-training-block .feature-grid {
        grid-template-columns: 1fr;
    }
    .training-info-section .efk-training-block .training-list,
    .training-info-section .efk-training-block .highlight-box
    {
        padding: 20px;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content .h4{
        font-size: 22px;
    }
    .whatis-efk-block .efk-image-content .efk-image-block .efk-inner-img,
    .make-us-different-block .efk-image-content .efk-image-block .efk-inner-img
    {
        padding-bottom: 100%;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img {
        flex: 0 0 200px;
        max-width: 200px;
    }
}
@media(max-width: 676px){
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        padding: 20px 20px 20px 50px;
        border-radius: 0px 40px 40px 0;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper::after{
        opacity: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #fde300;
        left: 50%;
        right: initial;
        bottom: -10px;
        transform: translateX(-50%);
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper em{
        height: 70px;
        width: 70px;
        min-width: 70px;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper img{
        width: 40px;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper{
        max-width: 80px;
        flex: 0 0 80px;
        height: 80px;
        margin: 0 auto;
        border: 7px solid #fff;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        padding: 30px 20px 20px 20px;
        border-radius: 65px;
        margin-left: 0;
        margin-top: -20px;
        text-align: center;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper{
        flex-wrap: wrap;
    }
    .what-we-do-section .curriculum-wrapper .right-block{
        max-width: 220px;
        flex: 0 0 220px;
    }
}
@media(max-width: 574px){
    .roadmap-section .roadmap-content-wrapper .roadmap-info .title-block h3{
        font-size: 18px;
    }
    .roadmap-section .roadmap-bg img{
        object-position: left;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info{
        align-items: flex-start;
    }
    .roadmap-section .roadmap-content-wrapper .roadmap-info .right-block p {
        font-size: 16px;
    }
    .importance-stem-section .stem-highlight-wrapper .stem-highlight em {
        height: 45px;
        width: 45px;
        min-width: 45px;
    }
    .importance-stem-section .stem-highlight-wrapper{
        flex-wrap: wrap;
    }
    .importance-stem-section .stem-highlight-wrapper .stem-highlight{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .whatis-efk-block h3,
    .importance-stem-section .efk-content-block h3,
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content .h4
    {
        font-size: 20px;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img {
        flex: 0 0 180px;
        max-width: 180px;
    }.importance-stem-section .stem-highlight-wrapper{
        flex-wrap: wrap;
    }
    .importance-stem-section .stem-highlight-wrapper .stem-highlight{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .whatis-efk-block h3,
    .importance-stem-section .efk-content-block h3,
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-content .h4
    {
        font-size: 20px;
    }
    .why-us-network-about-block .why-us-network-about-wrapper .why-us-network-about-img {
        flex: 0 0 180px;
        max-width: 180px;
    }
}
@media(max-width: 426px){
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .image-wrapper img{
        width: 30px;
    }
    .what-we-do-section .curriculum-wrapper .right-block {
        max-width: 160px;
        flex: 0 0 160px;
    }
    .what-we-do-section .curriculum-wrapper .levels-info-wrapper .content-wrapper{
        border-radius: 35px;
    }
}
@media(max-width: 375px){
    .roadmap-section .roadmap-content-wrapper .roadmap-info:first-child, 
    .roadmap-section .roadmap-content-wrapper .roadmap-info:last-child, 
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(3), 
    .roadmap-section .roadmap-content-wrapper .roadmap-info:nth-child(2) {
        gap: 15px;
    }
}