@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primaryColor: #FE7301;
    --secondaryColor: #773CB7;
    --whiteColor: #FFFFFF;
    --headingText: "League Spartan", sans-serif;
    --bodyText: "Roboto", sans-serif;
}
.container{
    max-width: 1720px;
    width: 90%;
    margin: 0 auto;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headingText);
}

.form{ position: absolute; top: 40px; width: 400px; border-radius: 20px; padding: 5px; }
.form h2 { text-align: center; font-size: 38px; padding: 30px 15px; line-height: 120%; }


.w-100 {
  width: 100%;
}
.fontBold{
  font-weight: 700;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
}
body{
    font-family: var(--bodyText);
}
.primaryBtn{
    background: url(../images/btnImg.svg) no-repeat right 21px center,var(--primaryColor);
    background-size: 50px 50px;
    padding: 18px 84px 17px 35px;
    font-weight: 700;
    font-size: 20px;
    line-height: 124%;
    text-align: center;
    text-transform: uppercase;
    color: var(--whiteColor);
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}  

.primaryBtn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px); /* optional lift effect */
}
.downloadBtn{
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    background: url(../images/downloadImg.svg) no-repeat right 38px center,#FFFFFF1A;
    background-size: 24px 24px;
    font-weight: 700;
    font-size: 20px;
    line-height: 124%;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    padding: 18px 68px 18px 44px;
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 20px;
} 
.downloadBtn:hover {
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3); /* glowing white shadow */
    transform: translateY(-2px); /* optional lift */
    border-color: rgba(255, 255, 255, 0.8); /* subtle change */
}
.sectionHeading{
    font-family: var(--headingText);
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    color: #222222;
    margin-bottom: 30px;
}
.sectionHeading span.secondaryColor{
  color: var(--secondaryColor);
  font-weight: 700;
}
p{
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #555555;
  margin-bottom: 1rem;
}

header{
  background-color: #FFFFFF;
}
.logo img{
  height: 90px;
}
.primaryBtn{
  align-self: center;
  margin-left: auto;
}
.heroContainer{
    background: url(../images/cargo.webp) no-repeat left 7px bottom,url(../images/heroBanner.webp) no-repeat center center;
    background-size: 302px auto,cover;
}
.heroContainer .container{
    background: url(../images/manBanner.webp) no-repeat right 473px bottom, url(../images/logisticBanner.webp) no-repeat right 344px bottom;
    background-size: 40.69% auto, 49.53% auto;
}
.heroLeft{
    padding: 40px 0 362px; position: relative;
}

.form{ position: absolute; top: 70px; right: 0; width: 400px; height: 440px; border-radius: 20px; padding: 10px 5px; background: #ffffff; }

.heroContainer .subTitle{
    color:  var(--whiteColor);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    display: inline-block;
    margin-bottom: 10px;
}
.heroContainer h1{
    font-weight: 700;
    font-size: 54px;
    line-height: 130%;
    color:  var(--whiteColor);
    margin-bottom: 17px;
}
.highLightedText{
    max-width: 701px;
    border: 1px solid  var(--whiteColor);
    backdrop-filter: blur(40px);
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    display: inline-block;
    margin-bottom: 52px;
    border-radius: 4px;
    overflow: hidden;
}
.highLightedText span:first-child{
    background: #0000001A;
    backdrop-filter: blur(40px);
    padding: 11px 2px 11px 16px;
}
.highLightedText span:nth-child(2){
    background-color: var(--primaryColor);
    backdrop-filter: blur(40px);
    padding: 11px 16px 11px 2px;
}
.highLightedText span{
    color: var(--whiteColor);
    display: inline-block;
}

/* infoSection Section */
.infoSection{
  position: relative;
  background: url(../images/building.webp) no-repeat bottom center, url(../images/blueSky.webp) no-repeat center top;
  background-size: 100% auto, cover;
}
.infoSection::before{
  content: "";
  position: absolute;
  background: url(../images/box1.webp) no-repeat;
  background-size: contain;
  width: 137px;
  height: 141px;
  top: 0;
  left: 28%;
  z-index: 99;
  transform: translateY(-60%);
}
.infoSection::after{
  content: "";
  position: absolute;
  background: url(../images/box2.webp) no-repeat;
  background-size: contain;
  width: 254px;
  height: 258px;
  top: 0;
  right: 14%;
  z-index: 99;
  transform: translateY(-60%);
}
.infoRow{
  background-color: var(--primaryColor);
  display: flex;
  padding: 40px;
  display: flex;
  gap: 13px;
  border-radius: 0 0 30px 30px;
  transform: translateY(-25px);
  position: relative;
}
.infoBlock{
  max-width: 400px;
  width: 100%;
  padding: 28px 24px;
  border: 1px solid #FFB578;
  background-color: #FF7E14;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all ease 0.4s;
}
.infoBlock h4{
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 20px;
  margin-top: 93px;
}
.infoBlock p{
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
}
.infoBlock p.bigText{
  font-weight: 700;
  font-size: 42px;
  line-height: 130%;
  color: #FFFFFF;
}
.infoRow::before{
  content: "";
  width: 25px;
  height: 25px;
  background: linear-gradient(
    to bottom right,
    transparent 50%,
    #CA600A 50%
  );
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.infoRow::after{
  content: "";
  width: 25px;
  height: 25px;
  background: linear-gradient(
    to bottom right,
    transparent 50%,
    #CA600A 50%
  );
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%) rotateY(180deg);
}
.infoBlock::before{
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 99;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 64px;
  height: 64px;
  transition: all background ease-in;
}
.infoBlock:nth-of-type(1)::before {
  background-image: url(../images/infoIcon-1.svg);
}
.infoBlock:nth-of-type(2)::before {
  background-image: url(../images/infoIcon-2.svg);
}
.infoBlock:nth-of-type(3)::before {
  background-image: url(../images/infoIcon-3.svg);
}
.infoBlock:nth-of-type(4)::before {
  background-image: url(../images/infoIcon-4.svg);
}

/* Hover icons */
.infoBlock:nth-of-type(1):hover::before {
  background-image: url(../images/infoIconHover-1.svg);
}
.infoBlock:nth-of-type(2):hover::before {
  background-image: url(../images/infoIconHover-2.svg);
}
.infoBlock:nth-of-type(3):hover::before {
  background-image: url(../images/infoIconHover-3.svg);
}
.infoBlock:nth-of-type(4):hover::before {
  background-image: url(../images/infoIconHover-4.svg);
}
.infoBlock::after{
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9;
  background-color: #FFFFFF14;
  width: 55%;
  height: 70%;
  transform: translate(30%, -40%);
  border-radius: 100%;
  transition: all background ease-in;
}
.infoBlock:hover::after{
  background-color: #FFFFFF;
}


/* rankingSection CSS */

.rankingSection{
  padding-top: 117px;
}
.innerRanking{
  position: relative;
}
.innerRanking::after{
  content: "";
  left: 0;
  min-height: 300px;
  background: url(../images/strip.webp) no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  z-index: 999;
  width: 100%;
  bottom: -180px;
}
.rankingSection .rankingTitle{
  margin-bottom: 60px;
  text-align: center;
}

.rankingBlock{
  max-width: 1424px;
  margin: 0 auto;
  background-color: var(--primaryColor);
  padding: 44px 90px 117px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.rankingBlock::after{
  content: "";
  background: url(../images/cup.webp) no-repeat center center;
  position: absolute;
  width: 321px;
  height: 370px;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background-size: contain;
}
.programContent{
  max-width: 1057px;
  width: 100%;
  margin: 0 auto;
}
.programContent p{
  margin-bottom: 26px;
}
.tabBox{
  width: 90%;
  padding: 40px;
  max-width: 1720px;
  background: linear-gradient(180deg, #7C48B3 0%, #4E2778 100%);
  margin: 0 auto;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
}
.tabBox .content{
  max-width: 746px;
  width: 100%;
}
.tabBox .content ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.tabBox .content ul li{
  background: url(../images/check.svg) no-repeat top 2px left;
  background-size: 24px 24px;
  padding-left: 38px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.tabBox .content h4{
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 38px;
}
.tabBox .panelWrapper {
  max-width: 754px;
  width: 50%;
  min-height: 428px;
  overflow: hidden;
  position: relative;
}

.panelWrapper .img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.4s ease;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}
.panelWrapper .img img{
  object-fit: cover;
  width: 100%;
}

.panelWrapper .img.current {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.panelWrapper .img.exit {
  opacity: 0;
  transform: translateY(-100%);
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.contentInner{
  display: none;
}
.contentInner.current{
  display: block;
}
.awardBlock{
  max-width: 450px;
  text-align: center;
  width: 100%;
  background: url(../images/leaf-1.webp) no-repeat right bottom, url(../images/leaf-2.webp) no-repeat left bottom;
  background-size: auto 100%;
}
.awardBlock h3{
  font-family: var(--headingText);
  font-weight: 600;
  font-size: 54px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
}
.awardBlock .location{
  font-family: var(--headingText);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
  display: block;
}
.awardBlock .year{
  font-family: var(--headingText);
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
  margin-top: 10px;
}
.lagacyRow{
  background: url(../images/legacyOfTrust.webp) no-repeat top center;
  background-size: 100% auto;
  padding: 178px 0 419px;
}
.legacyLeft{
  max-width: 850px;
  width: 100%;
}
.legacyLeft p{
  max-width: 704px;
}
.programBlock{
  padding-top: 256px;
  background-color: #FFF0E3;
  background-image: url(../images/Perfect_Balance.webp);
  background-repeat: no-repeat;
  background-position: top 80px center;
  background-size: 100% auto;
  padding-bottom: 100px;
}
.tabClick{
  position: absolute;
  max-width: 746px;
  width: 50%;
  bottom: 40px;
  left: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 38px;
  border-bottom: 1px solid #FFFFFF;
}
.tabClick li{
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 24px;
  transition: all ease-in 0.4s;
}
.tabClick li.active{
  border-bottom: 3px solid #FFFFFF;
  font-weight: 700;
}
/* skillSection CSS */
.skillSection{
  padding: 102px 0 100px;
}
.skillRow{
  display: flex;
  width: 100%;
  gap: 16px;
  padding-top: 30px;
  border-top: rgba(0, 0, 0, 0.20) 1px solid;
  padding-bottom: 102px;
}
.skillBlock{
  max-width: 418px;
  width: 100%;
  background-color: #FFF0E3;
}
.skillBlock .img{
  position: relative;
  display: block;
  line-height: 100%;
}
.skillBlock .img img{
   width: 100%;
}
.skillBlock .img::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: #9975bf5d;
  width: 100%;
  height: 99.5%;
  z-index: 99;
  transition: background ease 0.4s;
}
.skillTitle{
    padding: 60px 20px 30px 20px;
    transition: 0.4s ease-in padding;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: #000000;
    display: block;
}
.skillBlock:hover .skillTitle{
    padding: 20px 20px 70px 20px;
}
.skillBlock:hover .img::before{
    background: transparent;
}
.skillTypesRow{
   display: flex;
   gap: 0px;
   flex-wrap: wrap;
   justify-content: center;
}
.skillTypeBlock{
  max-width: 428px;
  width: 25%;
  border: 1px solid rgba(0, 0, 0, 0.20);
  text-align: center;
  padding: 40px 20px;
}
.skillTypeBlock.odd{
  background-color: #FAFAFA;
}
.skillTypeBlock img {
  height: 140px;
  width: auto;
}
.skillTypeBlock p{
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-top: 46px;
}

/* carrerSection CSS */
.carrerSection{
  background: url(../images/worldMap.svg) no-repeat right bottom 113.13px,linear-gradient(180deg, #7C48B3 0%, #4E2778 100%);
  background-size: 62.5% auto, cover;
  padding: 100px 0 85px;
}
.carrerSection h3{
  font-weight: 500;
  font-size: 48px;
  line-height: 120%;
  color: #FFFFFF;
  padding-bottom: 37px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 42px;
}
.carrerLeft{
  max-width: 714px;
  width: 100%;
}
.carrerLeft hr{
  border: 1px solid; /* fallback */
  border-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
}
.carrerSection .smText{
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 11px;
  margin-top: 30px;
}
.carrerSection .bigNumbers{
  display: block;
  font-weight: 200;
  font-size: 32px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.carrerSection .smTextBottom{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  display: block;
}
.carrerLeft img{
  margin-bottom: 30px;
  max-width: 400px;
}
.alumniSection {
  padding: 100px 0 35px;
}
.aluminiRow{
  display: flex;
}
.alumniSection h2{
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.aluminiBlock{
  max-width: 344px;
  width: 100%;
  padding: 40px;
  border: 1px solid #00000033;
  display: flex;
  align-items: center;
}
.aluminiBlock img{
  max-width: 268px;
  width: 85%;
}


/* eligiblitySection css */

.eligiblitySection{
  margin-top: 102px;
  background-color: #FFF2E8;
  box-shadow: 20px 24px 24px 0px #EED5C1 inset;
  background-image: url(../images/stepImg.webp);
  background-size: 52% auto;
  background-repeat: no-repeat;

}
.eligiblitySection .eligiblityContainer{
    /*  */
}
.eligiblitySection .eligibiltyRight{
  max-width: 850px;
  width: 44.5%;
  margin-left: auto;
  padding: 92px 0 25px;
}
.innerDiv{
  max-width: 750px;
  width: 90%;
}

.eligiblitySection .sectionHeading {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.eligiblitySection h5{
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: #222222;
  margin-bottom: 20px;
  position: relative;
}
.eligiblitySection h5::before{
  content: "";
  position: absolute;
  background: url(../images/circle.svg) no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  top: 0;
  left: -13%;
}
.innerDiv ul{
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 52px;
}
.innerDiv ul li{
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #555555;
  background: url(../images/wheelIcon.svg) no-repeat top left;
  background-size: 32px 32px;
  padding-left: 48px;
  margin-bottom: 18px;
}


/* placementsSection css */
.placementsSection{
  background: url(../images/placementsImg.webp) no-repeat top right;
  background-size: 67.23% auto;
  padding-top: 176px;
}
.placementsSection h2{
  max-width: 47.16%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 30px;
  margin-bottom: 72px;
}
.placementRow{
    display: flex;
    background: url(../images/placmentImgRow.svg) no-repeat top left;
    background-size: 100% auto;
    min-height: 562px;
    align-items: flex-end;
    justify-content: space-between;
}
.placementBlock h6{
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 10px;
}
.placementBlock .digit{
  display: none;
}
.placementBlock p{
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #555555;
}
.placementBlock:nth-child(1){
  padding-bottom: 310px;
}
.placementBlock:nth-child(2){
  padding-bottom: 120px;
  margin-left: -80px;
}
.placementBlock:nth-child(4){
  transform: translateY(40px);
}

.placementBlock:nth-child(5){
  transform: translateY(60px);
}

/* logisticSection CSS */
.logisticSection{
  background: url(../images/logisticsBg.webp) no-repeat bottom center;
  background-size: 100% auto;

}
.logisticLeft{
  padding-bottom: 410px;
  max-width: 707px;
  width: 100%;
}
.logisticLeft p{
  max-width: 572px;
}
.logisticSection .container{
  background: url(../images/logisticsObject.webp) no-repeat bottom right 40px;
  background-size: 64.30%;
}
/* 
Footer CSS */

.footerSectionTop{
  background: linear-gradient(180deg, #7C48B3 0%, #4E2778 100%);
  position: relative;
}
.footerSectionTop::after{
  content: "";
  background: url(../images/footerBootom.webp) no-repeat bottom left;
  background-size: 100% auto;
  width: 100%;
  height: 133px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.footerRow{
  display: flex;
  justify-content: center;
}
.footerBlock{
  max-width: 562px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footerBlock > span{
  margin-bottom: 42px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;  
  color: #FFFFFF;
}
.footerBlock > span.user{
  background: url(../images/footerIcon-1.svg) no-repeat top left;
  padding-left: 80px;
  background-size: 60px 60px;
}
.footerBlock > span.call{
  background: url(../images/footerIcon-4.svg) no-repeat top left;
  padding-left: 80px;
  background-size: 60px 60px;
}

.footerBlock a{ color: #ffffff; }

.footerBlock > span.email{
  background: url(../images/footerIcon-2.svg) no-repeat top left;
  padding-left: 80px;
  background-size: 60px 60px;
  line-height: 60px;
}
.footerBlock > span.website{
  background: url(../images/footerIcon-3.svg) no-repeat top left;
  padding-left: 80px;
  background-size: 60px 60px;
  line-height: 60px;
}

.footerBlock:nth-child(2){
  background: linear-gradient(180deg, #7C48B3 0%, #371858 114.8%);
  padding-top: 80px;
  padding-bottom: 229px;
}
.footerBlock h5{
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 56px;
  color: #FFFFFF;
}
.footerBottom{
  width: 100%;
  display: block;
  background-color: #FE7301;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width:1680px) {
    .heroContainer h1{
      font-size: 52px;
    }
    .highLightedText{
      font-size: 28px;
    }
    .skillTitle{
      font-size: 22px;
    }
    .tabClick li{
      font-size: 18px;
    }
    .eligiblitySection .eligibiltyRight{
      padding: 60px 0 25px;
    }
    .innerDiv ul{
      margin-bottom: 20px;
    }
}
@media screen and (max-width:1480px) {
  .infoBlock h4{
    font-size: 28px;
  }
  .infoBlock p{
    font-size: 20px;
  }
  .infoBlock p.bigText{
    font-size: 38px;
  }
  .infoBlock::after{
    width: 65%;
    height: 60%;
  }
  .infoBlock::before{
    width: 54px;
    height: 54px;
  }
  .infoBlock h4{
    margin-top: 76px;
  }
  .innerRanking::after{
    bottom: -100px;
  }
}
@media screen and (max-width: 1280px) {
    .sectionHeading, .carrerSection h3{
      font-size: 40px;
    }
    .heroContainer .container{
      background: url(../images/manBanner.webp) no-repeat right 303px bottom, url(../images/logisticBanner.webp) no-repeat right 180px bottom;
      background-size: 40.69% auto, 49.53% auto;
    }
    .downloadBtn, .primaryBtn{
      font-size: 18px;
    }
    .infoBlock p.bigText{
      font-size: 32px;
    }
    .awardBlock h3{
      font-size: 44px;
    }
    .awardBlock{
      max-width: 400px;
    }
    .eligiblitySection{
      background-size: 52.5% auto;
      background-repeat: no-repeat;
      background-position: center left;
    }
    .placementBlock p{
      font-size: 16px;
    }
    .placementBlock h6{
      font-size: 18px;
    }
    .placementBlock{
      width: 20%;
    }
    .placementRow{
      min-height: 400px;
    }
    .placementBlock:nth-child(1){
      padding-bottom: 214px;
    }
    .placementBlock:nth-child(2){
      padding-bottom: 75px;
    }
    .logisticSection{
      padding-top: 100px;
    }
    .alumniSection{
      padding-top: 70px 0;
    }
    .eligiblitySection{
      margin-top: 40px;
    }
}
@media screen and (max-width: 1080px){
    .sectionHeading, .awardBlock h3, .carrerSection h3{
      font-size: 32px;
    }
    p, .infoBlock p{
      font-size: 16px;
    }
    .infoBlock{
      padding: 10px;
    }
    .infoBlock::before{
      width: 32px;
      height: 32px;
    }
    .infoBlock p.bigText, .tabBox .content h4{
      font-size: 24px;
    }
    .lagacyRow{
      padding-top: 120px;
    }
    .rankingBlock::after{
      height: 324px;
    }
    .awardBlock{
      max-width: 329px;
    }
    .sectionHeading, .awardBlock h3{
      font-size: 28px;
    }
    .awardBlock .location, .awardBlock .year{
      font-size: 20px;
    }
    .rankingSection{
      padding-top: 40px;
    }
    .rankingSection .rankingTitle{
      margin-bottom: 90px;
    }
    .tabBox .content ul li, .innerDiv ul li{
      font-size: 16px;
    }
    .tabClick{
      width: 100%;
    }
    .skillTitle, .skillTypeBlock p{
      font-size: 16px;
      line-height: 21px;
      margin-top: 10px;
    }
    .skillTypeBlock img{
      height: 100px;
    }
    .skillTypeBlock{
      padding: 20px 10px;
    }
    .eligiblitySection h5, .carrerSection .bigNumbers{
      font-size: 24px;
    }
    .innerDiv ul li{
      background-size: 24px 24px;
    }
    .eligiblitySection h5::before{
      width: 30px;
      height: 30px;
      left: -12.2%;
    }
    .placementBlock p{
      font-size: 13px;
    }
    .footerBlock > span{
      font-size: 16px;
    }
    .footerBlock > span.user, .footerBlock > span.call, .footerBlock > span.email, .footerBlock > span.website{
      background-size: 40px 40px;
    }
}
@media screen and (max-width: 767px){
    .container{
      width: 100%;
      padding: 0 20px;
    }
    .sectionHeading{
      font-size: 32px;
    }
    .heroContainer{
      background: url(../images/mobile/heroBanner.webp) no-repeat center bottom;
      background-size: cover;
      position: relative;
    }
    .heroContainer .container{
      background: url(../images/manBanner.webp) no-repeat bottom center;
      background-size: auto 392px;
    }
    .heroLeft{
      padding: 35px 0 412px;
    }
    .form{ position: relative; top: 0px; width: 100%; border-radius: 20px; padding: 5px; right: 0; left: 0; margin: 0 auto; }
    .form h2 { text-align: center; font-size: 30px; padding: 30px 30px; }



    .infoSection::before, .infoSection::after, .infoRow::before, .infoRow::after{
      display: none;
    }
    .heroContainer .subTitle{
      font-size: 20px;
      margin-bottom: 5px;
    }
    .heroContainer h1{
      font-size: 32px;
      margin-bottom: 14px;
    }
    .highLightedText{
      font-size: 16px;
    }
    .highLightedText span:first-child, .highLightedText span:nth-child(2){
      padding: 6px;
    }
    .heroContainer .primaryBtn{
      display: none;
    }
    .heroContainer .downloadBtn{
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0;
      margin: 0;
      border-radius: 0;
      background-color: #40186AE5;
      border: 0;
      border-top: 1px solid #FFFFFF;
    }
    .infoRow{
      flex-wrap: nowrap;
      overflow-x: auto;
      transform: translateY(0) ;
    }
    .infoBlock{
      max-width: 262px;
      width: 100%;
      min-height: 195.5px;
      border-radius: 0 0 7.77px 7.77px;
    }
    .infoSection .container{
      padding: 0;
    }

  .infoRow .owl-item:nth-child(1) .infoBlock::before {
    background-image: url(../images/infoIcon-1.svg);
  }
  .infoRow .owl-item:nth-child(2) .infoBlock::before {
    background-image: url(../images/infoIcon-2.svg);
  }
  .infoRow .owl-item:nth-child(3) .infoBlock::before {
    background-image: url(../images/infoIcon-3.svg);
  }
  .infoRow .owl-item:nth-child(4) .infoBlock::before {
    background-image: url(../images/infoIcon-4.svg);
  }

  /* Hover icons */
  .infoRow .owl-item:nth-child(1) .infoBlock:hover::before {
    background-image: url(../images/infoIconHover-1.svg);
  }
  .infoRow .owl-item:nth-child(2) .infoBlock:hover::before {
    background-image: url(../images/infoIconHover-2.svg);
  }
  .infoRow .owl-item:nth-child(3) .infoBlock:hover::before {
    background-image: url(../images/infoIconHover-3.svg);
  }
  .infoRow .owl-item:nth-child(4) .infoBlock:hover::before {
    background-image: url(../images/infoIconHover-4.svg);
  }
  .infoBlock::before {
      width: 38.5px;
      height: 38.5px;
      right: 20px;
      top: 20px;
  }
  .infoBlock::after {
      width: 142px;
      height: 142px;
  }
  .infoBlock h4{
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 50.23px;
  }
  .infoRow{
    padding: 0 20px 15px;
    border-radius: 0 0 19.43px 19.43px;
  }
  .lagacyRow{
    padding: 60px 0 181px;
  }
  .legacyLeft{
    width: 100%;
    padding: 0 20px;
  }
  .sectionHeading{
    margin-bottom: 20px;
  }
  .rankingSection .rankingTitle{
        max-width: 70%;
        margin: 0 auto 80px;
  }
  .rankingBlock{
    padding: 34px 10px 55px;
  }
  .rankingBlock::after{
    height: 186px;
  }
  .awardBlock {
    max-width: 200px;
  }
  .awardBlock .location, .awardBlock .year{
    font-size: 14px;
  }
  .innerRanking::after{
      bottom: -60px;
      min-height: 148px;
      background-size: auto 147px;
  }
  .programBlock{
    padding-top: 100px;
    padding-bottom: 59px;
    background: url(../images/mobile/Perfect_Balance.svg) no-repeat  top 40px center, #FFF0E3;
    background-size: auto 50px;
  }
  .programContent{
    max-width: 490px;
  }

  .tabBox{
    flex-wrap: wrap;
    padding: 0;
    border-radius: 12px;
    background: none;
  }
  .tabBox .panelWrapper{
    width: 100%;
    background: #4E2778;
    border-radius: 0 0 12px 12px;
  }
  .tabBox .content{
    padding: 20px 9px;
    background: linear-gradient(180deg, #7C48B3 0%, #4E2778 100%);
    border-radius: 12px 12px 0 0;
  }
  .tabBox .panelWrapper{
    min-height: 290px;
  }
  .panelWrapper .img{
    border-radius: 0px;
    
  }
  .tabBox .content h4{
    font-size: 20px;
    margin-bottom: 14px;
  }
  .tabBox .content ul li{
    font-size: 15px;
    background-size: 16px 20px;
    padding-left: 24px;
    margin-bottom: 10px;
  }
  .tabClick{
    position: unset;
    border-bottom: 1px solid #FE7301;
    margin-bottom: 11px;
    gap: 15px;
    justify-content: space-between;
  }
  .tabClick li{
    color: #000000;
    font-size: 14px;
    line-height: 130%;
    padding-bottom: 13px;
    max-width: 160px;
  }
  .tabClick li.active{
    border-bottom: 3px solid #FE7301;
  }
  .skillSection{
    padding: 60px 0;
  }
  .sectionHeading span.secondaryColor{
    font-weight: 400;
  }
  .skillTitle, .skillBlock:hover .skillTitle{
    padding: 20px 13px;
    font-size: 14px;
  }
  .skillRow{
    padding-bottom: 50px;
  }
  .skillTypesRow{
    justify-content: center;
  }
  .skillTypeBlock{
    width: 50%;
  }
  .carrerSection{
    padding: 60px 0 380px;
  }
  .carrerSection{
    background: url(../images/worldMap.svg) no-repeat right bottom 80px,linear-gradient(180deg, #7C48B3 0%, #4E2778 100%);
    background-size: auto 244px, cover;
  }
  .aluminiBlock{
    padding: 20px 10px;
    justify-content: center;
    min-height: 100px;
  }
  .aluminiBlock img{
    max-width: 123px;
  }
  .eligiblitySection{
    background: url(../images/mobile/stepImg.webp) top center no-repeat, #FFF7F1;
    background-size: 405px auto;
  }
  .eligiblityContainer{
    max-width: 405px;
    margin: 0 auto;
  }
  .eligiblitySection .eligibiltyRight{
      width: 100%;
      max-width: 360px;
      margin-left: auto;
      padding: 340px 0 30px
  }
  .innerDiv{
    width: 100%;
    position: relative;
  }
  .innerDiv::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 34px;
    left: -35px;
    top: 0;
    background: url(../images/mobile/line.png) no-repeat top left;
  }
  .eligiblitySection h5, .carrerSection .bigNumbers{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .tabBox .content ul li, .innerDiv ul li{
    font-size: 15px;
  }
  .placementsSection{
    padding: 60px 0 60px;
     background: url(../images/placementsImg.webp) no-repeat top right, linear-gradient(360deg, #F1F1F1 0%, rgba(249, 249, 249, 0) 100%);
    background-size: 67.23% auto, cover;
  }
  .placementsSection h2{
    margin-bottom: 30px;
  }
  .placementRow{
    background: none;
    display: unset;
    min-height: unset;
  }
  .placementBlock:nth-child(1){
    padding-bottom: 0;
  }
  .placementBlock:nth-child(2){
    padding-bottom: 0;
    margin-left: unset;
  }
  .placementBlock{
    width: 100%;
    padding-left: 35px;
    padding-bottom: 30px;
    background: url(../images/mobile/curveLine.svg) no-repeat left top 10px;
    background-size: 32px auto;
    min-height: 165px;
  }
  .placementBlock p span.d-block, .placementBlock h6 span.d-block{
    display: unset;
  }
  .placementBlock .digit{
    display: block;
    font-family: var(--headingText);
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: #6B4099;
    margin-bottom: 10px;
  }
  .placementBlock:nth-child(4),.placementBlock:nth-child(5){
     transform: translateY(0);
  }
  .primaryBtn{
    font-size: 12.2px;
    background: url(../images/btnImg.svg) no-repeat right 10px center,var(--primaryColor);
    background-size: 31px 31px;
    padding: 11.5px 53px 11.5px 22px;
  }
  .logisticSection .container{
    background: url(../images/logisticsObject.webp) no-repeat bottom center;
    background-size: auto 302px;
  }
  .footerSectionTop::after{
    display: none;
  }
  .footerSectionTop{
    background: url(../images/mobile/footer.webp) no-repeat bottom center;
    background-size: cover;
  }
  .footerRow{
    flex-direction: column;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footerBlock{
     border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1; /* this makes the gradient apply */
  }
    .footerRow .footerBlock:last-child{
      border-bottom: 0;
    }
  .footerBlock:nth-child(2){
    background: none;
  }
  .footerRow .footerBlock{
    padding: 15px 0;
    align-items: flex-start;
  }
  .footerBlock > span{
    margin-bottom: 0;
  }
  .footerBlock:nth-child(1){
    flex-direction: row;
    justify-content: space-between;
    
  }
  .footerBlock h5{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .footerBlock > span.user, .footerBlock > span.call, .footerBlock > span.email, .footerBlock > span.website{
    padding-left: 60px;
    background-position: center left;
   
    display: block;
  }
  .footerBlock > span.call{
    display: flex;
    line-height: 60px;
    gap: 30px;
  }
  .logo img{
    height: 50px;
  }
  .carrerLeft img{
    width: 50%;
  }
}