* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:hover {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
    url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
    url('../fonts/Gotham-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.woff2') format('woff2'),
    url('../fonts/Gotham-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2'),
    url('../fonts/Gotham-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



body {
  font-family: 'Gotham';
  background: url(../images/body.webp) no-repeat center;
  background-size: cover;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Gotham';
  font-weight: bold;
}

p {
  font-family: 'Gotham';
  font-style: normal;
}

img {
  max-width: 100%;
}

.container-fluid {
  max-width: 1800px;
  margin: 0px auto;
}

/*** Header css Start ***/

header {
  padding: 10px 0;
  position: relative;
  width: 100%;
  background: #FFFFFF;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin: 0px auto 20px;
  box-shadow: 0px 4px 5px 0px #00000017;

}

.pageHeader.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 7px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  z-index: 9999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}


.top-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0px;
  align-items: center;

}

.top-left {
  width: auto;
  height: auto;
  margin: 0px 0 0 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  max-height: 90px;
  width: auto;
}

.logo-wrap .yearsLogo {
  max-height: 80px;
  width: auto;
}

.top-right {
  width: auto;
  height: auto;
  margin: 4px 0 0 0;
}

.top-right a {
  border: 2px solid #FFFFFF;
  background: #003692;
  border-radius: 40px;
  padding: 13px 35px;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  line-height: 150%;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.top-right a img {
  max-height: 20px;
  margin: 7px 0 0 0;
}

.top-right a:hover {
  background: #1A4393;
  color: #fff;
}



.banner {
  width: 100%;
  height: auto;
  position: relative;
  padding: 50px 0 40px 0;
  background: url(../images/banner-bg.webp) no-repeat center;
  background-size: cover;
  overflow: hidden;
  max-width: 98%;
  margin: 0px auto;
  border-radius: 50px;
  min-height: 762px;
}

.bannerText {
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 2;
  margin: 0 0 0 60px;
}

.bannerText h2 {
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  font-weight: 500;
}

.bannerText h5 {
  font-size: 32px;
  line-height: 150%;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.bannerText h1 {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  line-height: 124%;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 18px 0;
  max-width: 560px;
}

.bannerText h4 {
  font-size: 120px;
  line-height: 100%;
  color: #fff;
  padding: 0;
  font-weight: 700;
  text-transform: none;
  margin: 0;
}

.bannerText p {
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  padding: 0 0 8px 0;
  font-weight: 600;
  margin: 0;
}


.relative {
  position: relative;
}

.bnFull {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 22px 0 0 0;
  max-width: 780px;
}

.bnList {
  width: 100%;
  background: url(../images/bu.svg) no-repeat;
  padding: 0 0 0 38px;
  min-height: 30px;
  color: #fff;
  font-size: 28px;
  line-height: 130%;
  background-position: 0 3px;
  background-size: 25px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.bnList.bnListFull {
  width: 100%;
}

.bnListRow {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
}

.bnListRow .bnList {
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
}

.banDate {
  width: auto;
  max-width: 100%;
  height: auto;
  border: 2px solid #fff;
  margin: 0 0 18px 0px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: stretch;
}

.bnLeft {
  color: #fff;
  font-weight: 700;
  line-height: 120%;
  font-size: 28px;
  text-transform: uppercase;
  min-height: 50px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.bnRight {
  color: #14314D;
  font-weight: 700;
  line-height: 120%;
  font-size: 28px;
  text-transform: uppercase;
  min-height: 50px;
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
}

.ladyPic {
  height: auto;
  position: absolute;
  left: 41%;
  right: auto;
  bottom: 0;
  top: auto;
  text-align: center;
  max-width: 34%;
  width: 34%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.ladyPic img {
  height: auto;
  width: 100%;
  max-width: 614px;
  max-height: 95%;
  object-fit: contain;
  object-position: bottom center;
  margin: 0;
  display: block;
}

.relative {
  position: relative;
}


.form {
  width: 100%;
  height: auto;
  position: absolute;
  right: 55px;
  border-radius: 20px;
  max-width: 410px;
  top: 190px;
  text-align: center;
  padding: 30px 10px;
  scroll-margin-top: 120px;
  background-color: #fff;
  box-shadow: 4px 4px 15px 0px #000000F2;
  z-index: 3;
}

.form h4 {
  color: #000;
}



.heading {
  margin: 0 0 40px 0;
  text-align: center;
}

.heading h3 {
  color: #003692;
  font-size: 48px;
  line-height: 150%;
  text-align: center;
}

.heading h4 {
  color: #EE3228;
  font-weight: 400;
  font-size: 40px;
  line-height: 140%;
}

.heading p {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2%;
  max-width: 1200px;
  margin: 0px auto 20px;
  text-align: center;
}

.abtFlex {
  display: flex;
  justify-content: space-between;
}

.aboutSec {
  width: 100%;
  height: auto;
  padding: 100px 0 60px;
}

.abtLeft {
  width: 70%;
  height: auto;
  text-align: center;
  padding: 50px 0 0 0;
}

.abtLeft img {
  max-width: 80%;
}

.abtRight {
  width: 100%;
  height: auto;
  text-align: center;
  max-width: 1500px;
  margin: 0px auto;
}

.abtRight h2 {
  font-size: 76px;
  line-height: 120%;
  text-transform: uppercase;
  color: #003692;
  margin: 0 0 30px 0;
}

.abtRight p {
  font-size: 24px;
  line-height: 180%;
  color: #04193D;
  margin: 0 0 20px 0;
}

.curriculumLabel,
.careerLabel {
  color: #04193D;
  font-size: 20px;
  line-height: 180%;
  margin: 10px 0 0;
}

.careerLabel {
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  max-width: 100%;
  margin: 20px 0 0;
}


.programmeSec {
  width: 100%;
  height: auto;
  padding: 0 0 10px;
}

.programmeSec .heading {
  text-align: center;
}

.programmeSec .heading h3 {
  font-weight: 700;
  line-height: 120%;
}

.programWrap {
  width: 100%;
  height: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.program {
  width: calc(20% - 16px);
  flex: 0 1 calc(20% - 16px);
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #CAE7FF60;
  border-radius: 10px;
  box-shadow: inset 2px 3px 10px #cccccc40;
  margin: 0 0 15px 0;
  min-height: 100px;
}

.program.programRow2 {
  width: calc(20% - 16px);
  flex: 0 1 calc(20% - 16px);
}

.hidden {
  visibility: hidden;
}

.programIcon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.programIcon img {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  object-position: center;
  display: block;
  aspect-ratio: 1 / 1;
}

.programText {
  color: #04193D;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  width: calc(100% - 80px);
  display: flex;
  justify-content: left;
  align-items: center;
}

.none {
  display: none;
}

.cgcSec {
  width: 100%;
  height: auto;
  padding: 50px 0 100px;
  overflow: hidden;
}

.cgcFlx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cgcLeft {
  color: #003692;
  font-size: 48px;
  line-height: 140%;
  min-width: 580px;
  font-weight: 700;
  padding: 10px 0 0 0;
}

.cgcRight {
  width: 100%;
  height: auto;
}

.rankSliderWrapper {
  overflow: hidden;
  width: 100%;
}

.rankslider {
  display: flex;
  width: max-content;
  animation: rankMarquee 22s linear infinite;
}

.rankLogo {
  flex: 0 0 auto;
  padding: 0 10px;
}

.rankLogo img {
  height: auto;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;

}

.rankLogo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Infinite loop */
@keyframes rankMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



.hireSec {
  width: 100%;
  height: auto;
  padding: 0 0 50px;
}

.hireFlx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hireLeft {
  min-width: 438px;
  height: auto;
  margin-top: -57px;
}

.hireRight {
  width: 100%;
  height: auto;
  background: #CAE7FF36;
  padding: 40px 45px;
  border-radius: 20px;
  text-align: center;
}

.hireRight h4 {
  color: #003692;
  font-size: 36px;
  line-height: 120%;
  margin: 0 0 20px 0;
}

.hireRight p {
  color: #003692;
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 20px 0;
}

.hireMain {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.hireBox {
  width: auto;
  height: auto;
  margin: 0px 0 0 0;
  min-width: 350px;
}

.hireBox h3 {
  color: #fff;
  font-size: 58px;
  line-height: 120%;
  margin: 0 0 10px 0;
}

.hireBox h5 {
  color: #fff;
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 0px 0;
  font-style: italic;
  text-transform: uppercase;
}

.slLogoMain {
  width: 100%;
  height: auto;
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.slLogoWrapper {
  overflow: hidden;
  width: 100%;
  background: #CAE7FF36;
  padding: 40px 30px;
  border-radius: 20px;
  margin: 30px 0 0 0;
}

.slLogo {
  flex: 0 0 auto;
  padding: 0 40px;
}

.slLogo img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.slLogo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonialSec {
  width: 100%;
  height: auto;
  padding: 50px 0;
  overflow: hidden;
}

.testFlx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.testLeft {
  color: #003692;
  font-size: 64px;
  line-height: 140%;
  min-width: 550px;
  font-weight: 700;
  padding: 70px 60px 0 0;
  max-width: 550px;
  letter-spacing: -3%;
}

.testRight {
  width: calc(100% - 550px);
  height: auto;
}

.tmFull {
  width: 96%;
  min-height: 400px;
  box-shadow: 0px 4px 10px 0px #00000017;
  background: #FFFFFF99;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 30px 0;
  margin: 20px 0 20px 10px;
  border-radius: 20px;
  position: relative;
}

.tmLeft {
  width: 55%;
}

.tmLogo {
  width: 100%;
  height: auto;
  margin: 0 0 50px 0;
}

.tmLogo img {
  max-width: 150px;
}

.tmText {
  width: 100%;
  height: auto;
}

.tmText p {
  color: #003692;
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 10px 0;
}

.tmText h5 {
  color: #003692;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  font-style: italic;
}

.tmRight {
  width: 45%;
  position: relative;
  z-index: 9;
}

.testRight .tmRight img {
  width: auto;
}

.tmcoma {
  width: auto;
  position: absolute;
  right: -15px;
  top: -20px;
  z-index: 0;
}

.testimonialSec .owl-carousel .owl-nav button.owl-next,
.testimonialSec .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  background: #003692;
  border-radius: 50%;
  font-size: 36px;
  color: #fff;
}

.testimonialSec .owl-carousel .owl-nav button.owl-next:hover,
.testimonialSec .owl-carousel .owl-nav button.owl-prev:hover {
  background: #ccc;
  color: #003692;
}

.testimonialSec .owl-carousel .owl-nav button.owl-next span,
.testimonialSec .owl-carousel .owl-nav button.owl-prev span {
  margin-top: -10px;
}



.globalSec {
  margin-top: -40px;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 50px 0;
}

.globalInner {
  width: 100%;
  height: auto;
  padding: 70px 100px;
  background: url(../images/globe-bg.webp) no-repeat;
  background-size: cover;
  min-height: 750px;
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
}

.globalInner p {
  color: #fff;
  margin: 20px 0 0 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
}

.globalInner .heading h3 {
  color: #fff;
  margin: 0 auto 10px;
}

.globalInner .heading p {
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 180%;
}

.sectorInfo {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.sectorInfo p {
  color: #fff;
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 8px 0;
}

.sectorTags {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 20px;
  max-width: 1400px;
  margin: 30px auto 0;
}

.sectorTag {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  text-transform: capitalize;
}

.mouBox {
  background: rgba(1, 29, 92, 0.5);
  border-radius: 20px;
  box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.35);
  padding: 30px 40px;
  max-width: 1194px;
  margin: 30px auto 0;
}

.mouBox p {
  color: #fff;
  font-size: 20px;
  line-height: 180%;
  margin: 0;
  text-align: center;
}

.globeLogoMain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1322px;
  margin: 30px auto 0;
}

.globelogo {
  width: auto;
  background: #00000050;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0px 40px;
  box-shadow: inset -1px 0px 4px #00000040;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globelogo img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
}

.ftrSec {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0px 0 0 0;
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.ftrSec iframe {
  width: 100%;
  height: 800px;
  object-fit: cover;
  border-radius: 30px;
}

.videoWrap {
  position: relative;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  min-height: 500px;
}

.videoThumb {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  display: block;
  border-radius: 50px;
}

.playBtn {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 90px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.playBtn img {
  width: 46px;
  height: auto;
  margin-left: 6px;
}

.placementSec .owl-carousel .owl-stage {
  display: flex;
}

.placementSec .owl-carousel .owl-item {
  display: flex;
}

.placementSec .owl-carousel .owl-item .item {
  width: 100%;
  display: flex;
}

.placeCard {
  width: 100%;
  min-height: 400px;
  box-shadow: 0px 4px 10px 0px #00000017;
  background: #FFFFFF99;
  display: flex;
  gap: 24px;
  padding: 20px;
  margin: 10px 0;
  border-radius: 20px;
  position: relative;
}

.placePhoto {
  width: 48%;
  max-width: 220px;
  min-width: 140px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.placePhoto img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.placeInfo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 10px 10px 10px 0;
}

.placeLogo img {
  max-width: 152px;
  max-height: 100px;
  object-fit: contain;
}

.placeLogoWide img {
  max-width: 200px;
}

.placeRole {
  color: #04193D;
  font-size: 16px;
  line-height: 180%;
  margin: 10px 0 0;
  text-transform: capitalize;
}

.placeMeta h5 {
  color: #003692;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

.placeMeta span {
  color: #04193D;
  font-size: 18px;
  line-height: 180%;
  text-transform: uppercase;
  display: block;
}

.placementSec .testLeft {
  font-size: 64px;
}

.ftrbtm {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
  padding: 0 30px 40px;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.ftrbtm:before {
  content: "";
  height: 280px;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 43.59%);
  left: 0;
  bottom: 0px;
  z-index: -1;
}

.ftrLeft {
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: -4%;
  color: #fff;
  max-width: 70%;
  padding: 22px 0 0 0;

}

.ftrRight {
  width: auto;
  height: auto;
  margin: 16px 0 0 0;
}

.ftrRight a {
  border: 1px solid #FFFFFF;
  background: #003692;
  border-radius: 40px;
  padding: 13px 45px;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  line-height: 150%;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.ftrRight a img {
  max-height: 20px;
  margin: 7px 0 0 0;
}

.ftrRight a:hover {
  background: #1A4393;
  color: #fff;
}

.frmb {
  display: none;
}

.mbladyPic {
  display: none;
}

.mobileSl {
  display: none;
}

.progflex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.admissionSec {
  width: 100%;
  height: auto;
  padding: 0px 0 0;
  position: relative;
}

.admFlx {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.admissionLeft {
  min-width: 770px;
  display: flex;
  align-items: flex-end;

}

.admissionRight {
  padding: 0px 0 40px 0;
}

.admissionRight h2 {
  color: #003692;
  font-size: 48px;
  line-height: 120%;
  margin: 0 0 30px 0;
  padding: 0 80px 0 0;
}

.admissionRight h4 {
  color: #003692;
  font-size: 30px;
  line-height: 120%;
  margin: 0 0 40px 0;
}

.admissionRight h4.routeTitle {
  margin: 30px 0 16px 0;
}

.routeIntro {
  color: #04193D;
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 24px 0;
}

.routeList {
  margin-top: 0;
}

.admissionRight ul {
  padding: 0 0 0 0px;
  border-left: 0px dashed #84A0D0D9;
}

.admissionRight ul li {
  width: 100%;
  height: auto;
  list-style: none;
  background: url(../images/tick.webp) no-repeat;
  padding: 0 0 0px 50px;
  margin: 0 0 20px -20px;
  color: #003692;
  line-height: 28px;
  font-size: 20px;
  font-weight: normal;
  min-height: 35px;
}

.buildSec {
  width: 100%;
  height: auto;
  padding: 90px 0 40px;
}

.buildSec .heading {
  text-align: left;
  max-width: 1200px;
  margin: 0 0 40px 0;
}

.buildSec .heading h2 {
  color: #003692;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  margin: 0 0 20px 0;
  text-align: left;
}

.buildSec .heading p {
  margin: 0;
  color: #04193D;
  line-height: 180%;
  text-align: left;
  max-width: 100%;
}

.buildSlider {
  width: 100%;
  height: auto;
  max-width: 1800px;
  margin: 50px auto 0;
  position: relative;
}

.buildSlider .owl-stage {
  display: flex;
}

.buildSlider .owl-item {
  display: flex;
}

.buildSlider .owl-item .item {
  width: 100%;
  display: flex;
}

.build {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(147deg, #031B57 8.42%, #0B58B5 78.53%);
}

.buildIcon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.buildIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.buildText {
  position: static;
  padding: 0;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
}

.buildSlider .owl-theme .owl-nav {
  position: absolute;
  width: 120px;
  right: 20px;
  display: flex;
  top: -100px;
  justify-content: space-between;
  visibility: visible;
}

.buildSlider .owl-theme .owl-nav .owl-prev span,
.buildSlider .owl-theme .owl-nav .owl-next span {
  display: none;
}

.buildSlider .owl-theme .owl-nav .owl-prev,
.buildSlider .owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  border: 1px solid #cccccc70;
}

.buildSlider .owl-theme .owl-nav .owl-prev {
  background: #fff url(../images/lf.webp) no-repeat center;
  background-size: 20px;
}

.buildSlider .owl-theme .owl-nav .owl-prev:hover {
  background: #ccc url(../images/lf.webp) no-repeat center;
  background-size: 20px;
}

.buildSlider .owl-theme .owl-nav .owl-next {
  background: #fff url(../images/rg.webp) no-repeat center;
  background-size: 20px;
}

.buildSlider .owl-theme .owl-nav .owl-next:hover {
  background: #ccc url(../images/rg.webp) no-repeat center;
  background-size: 20px;
}

.testLeftArw button {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
}

.testLeftArw button:hover {
  background: #ccc;
}

.last-footer {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  color: #003692;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}

.mbBtn {
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: none;
}

.mbBtn a {
  background: #003692;
  color: #fff;
  font-weight: 500;
  padding: 13px 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  display: block;
  text-align: center;
  cursor: pointer;
}

.mbBtn a:hover {
  background: #000;
  color: #fff;
}


.thankFlex {
  display: flex;
  justify-content: space-between;
}

.thankSec {
  width: 100%;
  height: auto;
  padding: 70px 0;
}

.thankLeft {
  width: 70%;
  height: auto;
  text-align: center;
  padding: 0px 0 0 0;
}

.thankLeft img {
  max-width: 80%;
}

.thankRight {
  width: 100%;
  height: auto;
  padding: 70px 0 0 0;
}

.thankRight h2 {
  font-size: 76px;
  line-height: 120%;
  text-transform: uppercase;
  color: #003692;
  margin: 0 0 30px 0;
}

.thankRight h5 {
  font-size: 24px;
  line-height: 120%;
  color: #003692;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.thankRight p {
  font-size: 26px;
  line-height: 180%;
  color: #04193D;
}

.btn {
  width: 100%;
  height: auto;
  margin: 50px 0 0 0;
}

.btn a {
  color: #fff;
  font-family: 'Gotham';
  background: #003692;
  text-decoration: none;
  padding: 20px 70px 20px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 20px;
}

.btn a.btn-1 {
  background: #003692 url(../images/download.webp) no-repeat;
  background-position: 92% 16px;
  margin: 0 10px 0 0;
  background-size: 27px;
}

.btn a.btn-1:hover {
  background: #000 url(../images/download.webp) no-repeat;
  background-position: 92% 16px;
  margin: 0 10px 0 0;
  background-size: 27px;
}

.btn a.btn-2 {
  background: #003692 url(../images/wh-arw.webp) no-repeat;
  background-position: 91% 20px;
  background-size: 21px;
}

.btn a.btn-2:hover {
  background: #000 url(../images/wh-arw.webp) no-repeat;
  background-position: 91% 20px;
  background-size: 21px;
}

.sideBtn {
  width: 180px;
  height: 50px;
  position: fixed;
  z-index: 9;
  right: -65px;
  top: 250px;
  transform: rotate(-90deg);
  visibility: hidden;
}

.sideBtn a {
  display: block;
  background: #003692;
  color: #fff;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 3px;
  border-radius: 10px 10px 0 0;
}

.sideBtn a:hover {
  background: #000;
}

.sideBtn.show {
  opacity: 1;
  visibility: visible;
}

.mb {
  display: none;
}

.mb1 {
  display: none;
}