@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Gilroy-Black";
  src: url("../font/Gilroy-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-BlackItalic";
  src: url("../font/Gilroy-BlackItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../font/Gilroy-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-BoldItalic";
  src: url("../font/Gilroy-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../font/Gilroy-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-ExtraBoldItalic";
  src: url("../font/Gilroy-ExtraBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Heavy";
  src: url("../font/Gilroy-Heavy.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-HeavyItalic";
  src: url("../font/Gilroy-HeavyItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Light";
  src: url("../font/Gilroy-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-LightItalic";
  src: url("../font/Gilroy-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-UltraLightItalic";
  src: url("../font/Gilroy-UltraLightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("../font/Gilroy-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-MediumItalic";
  src: url("../font/Gilroy-MediumItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("../font/Gilroy-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-RegularItalic";
  src: url("../font/Gilroy-RegularItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../font/Gilroy-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-SemiBoldItalic";
  src: url("../font/Gilroy-SemiBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Thin";
  src: url("../font/Gilroy-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-ThinItalic";
  src: url("../font/Gilroy-ThinItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-UltraLight";
  src: url("../font/Gilroy-UltraLight.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Gilroy-Regular", sans-serif;
}
h3 {
  color: #ffda00;
}
.content-box h3 {
  color: #000;
}
.h100v {
  height: 100vh !important;
}
.fnt20 {
  font-size: 20px !important;
}

html {
  font-size: 16px;
  height: 100%;
  width: 100%;
}

img {
  border-radius: 10px;
}
.text-left {
  text-align: left;
}
:root {
  /* colors */
  --clr-header: #231f20;
  --clr-primary: #ffda00;
  --clr-secondary: #ff5500;
  --clr-secondary-light: #f98c25;
  --clr-ternary: #00c3ff;
  --clr-white: #fff;
}
/* timeline start */
.select-box {
  position: relative;
}

.fuild-img {
  width: 100%;
  height: auto;
}

.select-box input {
  width: 100%;

  outline: none;
}

input[type="tel"] {
  border-radius: 0 0.25rem 0.25rem 0;
}

.select-box input:focus {
  border: 0;
  outline: 0;
}

.selected-option {
  background-color: #fff;
  border-radius: 0.25rem;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option div {
  position: relative;
  color: #000;
  width: 10rem;
  text-align: center;
  cursor: pointer;
}

.selected-option div::after {
  position: absolute;
  content: "";
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.12rem solid var(--primary);
  border-bottom: 0.12rem solid var(--primary);

  transition: 0.2s;
}

.selected-option div.active::after {
  transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
  position: absolute;
  top: 4rem;

  width: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  z-index: 10;
  display: none;
}

.select-box .options.active {
  display: block;
}

.select-box .options::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;

  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
}

input.search-box {
  background-color: var(--primary);
  color: #000;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1.4rem 1rem;
}

.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: 0.4rem;
}

.select-box ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #000;
}

.select-box ol li.hide {
  display: none;
}

.select-box ol li:not(:last-child) {
  border-bottom: 0.1rem solid #eee;
}

.select-box ol li:hover {
  background-color: lightcyan;
}

.select-box ol li .country-name {
  margin-left: 0.4rem;
}

.assets-section {
  padding: 16rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline {
  display: inline-flex;
  height: 4rem;
  background-repeat: no-repeat;
  font-family: "Montserrat";
  background-image: url(../img/aseets-line.png);
}

.timeline-item {
  position: relative;
  width: 68px;
  height: 32px;
  display: inline-table;
}

.timeline-item:nth-child(1) {
  width: 50px;
}

.timeline-item .arrow-end {
  position: absolute;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.timeline-item .circle {
  position: absolute;
  background-position: center center;
  border-radius: 25px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 12px 0px #4d4d4d;
}

.timeline-item:nth-child(1) .circle {
  left: 0;
}

.timeline-item .inner-circle {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-color: #fff;
  box-shadow: inset 0px 0px 6px 0px #000;
}

.timeline-item:nth-child(3n + 1) .buble-content {
  background-color: #ff5000;
}
.timeline-item:nth-child(3n + 1) .buble-content .content p {
  color: #ff5000;
}
.timeline-item:nth-child(3n + 2) .buble-content .content p {
  color: #ffda00;
}
.timeline-item:nth-child(3n + 3) .buble-content .content p {
  color: #00c3ff;
}
.timeline-item:nth-child(3n + 2) .buble-content {
  background-color: #ffda00;
}

.timeline-item:nth-child(3n + 3) .buble-content {
  background-color: #00c3ff;
}

.timeline-item:nth-child(3n + 1) .content-half-circle {
  background-color: #ff5000;
}

.timeline-item:nth-child(3n + 2) .content-half-circle {
  background-color: #ffda00;
}

.timeline-item:nth-child(3n + 3) .content-half-circle {
  background-color: #00c3ff;
}

.timeline-item .buble-content {
  text-align: center;
  position: absolute;
  cursor: pointer;
  width: 110px;
  height: 110px;
}

.timeline-item .buble-content img {
  position: absolute;
  top: 20%;
  width: 35px;
  cursor: pointer;

  height: 35px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.founder-section {
  background: url(../img/upcoming-events-bg.jpeg);
  /* background-repeat: no-repeat; */
  position: relative;
}
.commas {
  width: 2rem;
}
.founder-section .second-section-wrapper {
  padding: 5rem 0;
}
.founder-section .second-section-left {
  /* width: 80%; */
  height: 100%;
  object-fit: cover;
}

.founder-section .second-section-right p {
  font-size: 16px;
}
/* .founder-section .second-section-left img {
  border-radius: 10px;
  width: 80%;
  height: 40rem;
  object-fit: cover;
} */
.timeline-item:nth-child(odd) .buble-content .content {
  position: absolute;
  bottom: 100%;
  width: 100%;
  color: #fff;
  margin-bottom: 3rem;
  font-size: 14px;
}
.founder-section h2 {
  line-height: 40px !important ;
}
.timeline-item:nth-child(even) .buble-content .content {
  position: absolute;
  top: 100%;
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-top: 3rem;
}

.timeline-item:nth-child(odd) .buble-content {
  border-radius: 100%;

  top: -138px;
}

.timeline-item:nth-child(even) .buble-content {
  border-radius: 100%;
  bottom: -160px;
  right: 3px;
}

.timeline-item:nth-child(1) .buble-content {
  left: -11px;
}

.timeline-item:nth-child(even) .content-year-bottom {
  position: absolute;
  width: 155px;
  bottom: 0;
}

.timeline-item .content {
  margin: auto 0;
  padding: 5px;
  color: #000;
  font-size: 18px;
  height: 60px;
  text-align: center;
  display: flex;
  position: absolute;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timeline-item .content h3 {
  color: var(--clr-white);
}

.buble-content:hover .content {
  visibility: visible;
  opacity: 1;
}

.timeline-item .content p,
.assets-section-mobile-wrapper .card .content p {
  font-family: Gilroy-Medium;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  width: 100%;
  text-align: center;
}
.timeline-item .content h3,
.assets-section-mobile-wrapper .card .content h3 {
  margin: 0;
  font-family: Gilroy-Bold;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}
.timeline-item .content-half-circle {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  z-index: 9999;
  cursor: pointer;
}

.timeline-item:nth-child(odd) .content-half-circle {
  top: -22px;
  left: 80%;
  border-radius: 100%;
}

.timeline-item:nth-child(even) .content-half-circle {
  bottom: -59px;
  left: 13%;
  border-radius: 100%;
}

.timeline-item:nth-child(1) .content-half-circle {
  left: 46px;
}

.timeline-item:nth-child(odd) .grey-line {
  top: -30px;
  left: 50%;
}
.assets-section-mobile-wrapper {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
}

.assets-section-mobile-wrapper .card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  img {
    width: 2rem;
  }
}
.assets-section-mobile-wrapper {
  gap: 2rem;
}

.assets-section-mobile-wrapper .card:nth-child(3n + 1) {
  background-color: var(--clr-primary);
}
.assets-section-mobile-wrapper .card:nth-child(3n + 2) {
  background-color: var(--clr-secondary);
}
.assets-section-mobile-wrapper .card:nth-child(3n + 3) {
  background-color: var(--clr-ternary);
}
.assets-section-mobile-wrapper .card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: white;
  width: 27%;
  height: 130px;
  text-align: center;
  padding: 6rem 1rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.assets-section-mobile-wrapper .card h3 {
  color: white;
}

.assets-section-mobile-wrapper .card:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.timeline-item:nth-child(even) .grey-line {
  bottom: -130px;
  left: 50%;
}

.timeline-item:nth-child(1) .grey-line {
  left: 0;
}
/* timeline end */
.common-heading {
  font-family: Lato;
  font-size: 74px;
  font-weight: 400;
  line-height: 88.8px;
  text-align: center;
  color: var(--clr-white);
}

.navbar {
  padding: 15px 40px;
  display: flex;
  font-family: Gilroy-Medium;
  justify-content: space-between;
  align-items: center;
  background: #151617;
  /* position: fixed;
  top:0; */
}

.navbar-logo img {
  height: 80px;
}

.navbar-links {
  display: flex;
  flex-direction: row;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.navbar-links-ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-links-ul li,
.sidebar-links li {
  list-style: none;
  padding: 0 20px;
  text-align: left;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.close-btn .line {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.close-btn .line.line1 {
  transform: translateY(-50%) rotate(45deg);
}

.close-btn .line.line2 {
  transform: translateY(-50%) rotate(-45deg);
}

.close-btn.open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.close-btn.open .line:nth-child(2) {
  opacity: 0;
}

.close-btn.open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-links-ul li a,
.sidebar-links li a {
  text-decoration: none;
  font-family: Inter;
  font-size: 20px;
  font-weight: 300;
  line-height: 24.2px;
  text-align: left;
  color: var(--clr-white);
}
.sidebar-links li a {
  font-size: 14px;
}
.navbar-links-button {
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--clr-secondary);
  margin: 0 10px;
}

.navbar-links-button a {
  font-family: Inter;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.78px;
  text-align: left;
  color: var(--clr-white);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  display: flex;
  width: 35px;
  /* height: 3px; */
  gap: 5px;
  /* background-color: white; */
  /* margin: 5px 0; */
  flex-direction: column;
}
.hamburger .hamline {
  width: 100%;
  height: 4px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.open:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.open:nth-child(2) {
  opacity: 0;
}

.open:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  z-index: 10;
  background-color: #333;
  padding-top: 50px;
  background: #151617;

  transition: right 0.3s ease;
}

.sidebar.show {
  right: 0;
}

.home-section {
  height: calc(100vh - 10px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-banner-static-art {
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 0%;
  width: 7rem;
  transform: translateY(-50%);
}

nav ul li a,
.sidebar-links li a {
  text-decoration: none;
  position: relative;
}
nav ul li a::before,
.sidebar-links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--clr-secondary);
  bottom: -13px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::before,
.sidebar-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.home-banner-static-lines {
  position: absolute;
  opacity: 0;
  z-index: 0;
  top: 50%;
  left: 6%;
  transition: opacity 0.3s ease-in-out;
  height: 600px;
  transform: translateY(-50%);
}

/*Home SLider*/
.fnc {
  /* you can add color names and their values here
  and then simply add classes like .m--blend-$colorName to .fnc-slide 
  to apply specific color for mask blend mode */
}
.fnc-slider {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
}
.fnc-slider *,
.fnc-slider *:before,
.fnc-slider *:after {
  box-sizing: border-box;
}
.fnc-slider__slides {
  position: relative;
  height: 100%;
  transition: transform 1s 0.6666666667s;
}
.fnc-slide {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
.fnc-slide.m--before-sliding {
  z-index: 2 !important;
  transform: translate3d(100%, 0, 0);
}
.fnc-slide.m--active-slide {
  z-index: 1;
  transition: transform 1s 0.6666666667s ease-in-out;
  transform: translate3d(0, 0, 0);
}

.fnc-slide.m--active-slide .home-banner-static-lines {
  opacity: 1;
}
.fnc-slide__inner img {
  position: absolute;
  animation: 50s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal none running
    staticArt;
  top: 10%;
}
.fnc-slide__inner {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transform: translate3d(0, 0, 0);
}
.m--global-blending-active .fnc-slide__inner,
.m--blend-bg-active .fnc-slide__inner {
  background-blend-mode: luminosity;
}
.m--before-sliding .fnc-slide__inner {
  transform: translate3d(-100%, 0, 0);
}
.m--active-slide .fnc-slide__inner {
  transition: transform 1s 0.6666666667s ease-in-out;
  transform: translate3d(0, 0, 0);
}

.fnc-slide__mask {
  overflow: hidden;
  z-index: 1;
  position: absolute;
  right: 60%;
  top: 15%;
  width: 50.25vh;
  height: 67vh;
  margin-right: -90px;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    0 0,
    6vh 0,
    6vh 61vh,
    44vh 61vh,
    44vh 6vh,
    6vh 6vh
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    0 0,
    6vh 0,
    6vh 61vh,
    44vh 61vh,
    44vh 6vh,
    6vh 6vh
  );
  transform-origin: 50% 0;
  transition-timing-function: ease-in-out;
}
.m--before-sliding .fnc-slide__mask {
  transform: rotate(-10deg) translate3d(200px, 0, 0);
  opacity: 0;
}
.m--active-slide .fnc-slide__mask {
  transition: transform 0.7s 1.2222222222s, opacity 0.35s 1.2222222222s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.m--previous-slide .fnc-slide__mask {
  transition: transform 0.7s 0.3333333333s, opacity 0.35s 0.6833333333s;
  transform: rotate(10deg) translate3d(-200px, 0, 0);
  opacity: 0;
}
.fnc-slide__mask-inner {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
  background-blend-mode: luminosity;
  transform-origin: 50% 16.5vh;
  transition-timing-function: ease-in-out;
}

.mobile-view-home-car {
  display: none;
}
#home-owl-mobile-view {
  display: flex;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-owl-mobile-view .item {
  height: 100% !important;
}
#home-owl-mobile-view .home-owl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
}
#home-owl-mobile-view .home-owl-card .image {
  height: 10rem;
  width: 100%;
}
#home-owl-mobile-view .home-owl-card img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
#home-owl-mobile-view .home-owl-card .home-carousel-content {
  color: white;
  display: flex;
  /* background-color: var(--clr-secondary); */
  flex-direction: column;
  padding: 10px 0;
  h3 {
    font-family: Lato;
    font-size: 25px;
    font-weight: 500;
    line-height: 48px;
  }

  p {
    font-family: Lato;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
  }
}

.m--before-sliding .fnc-slide__mask-inner {
  transform: translateY(0) rotate(10deg) translateX(-200px) translateZ(0);
}
.m--active-slide .fnc-slide__mask-inner {
  transition: transform 0.7s 1.2222222222s;
  transform: translateX(0);
}
.m--previous-slide .fnc-slide__mask-inner {
  transition: transform 0.7s 0.3333333333s;
  transform: translateY(0) rotate(-10deg) translateX(200px) translateZ(0);
}
.fnc-slide__content {
  z-index: 2;
  position: absolute;
  left: 10%;
  top: 40%;
}
.fnc-slide__heading {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.fnc-slide__heading-line {
  overflow: hidden;
  position: relative;
  padding-right: 20px;
  font-size: 50px;
  line-height: 80px;
  color: #fff;
  word-spacing: 10px;
}

.m--before-sliding .fnc-slide__heading-line {
  transform: translateY(100%);
}
.m--active-slide .fnc-slide__heading-line {
  transition: transform 1.5s 1s;
  transform: translateY(0);
}
.m--previous-slide .fnc-slide__heading-line {
  transition: transform 1.5s;
  transform: translateY(-100%);
}
.fnc-slide__heading-line span {
  display: block;
}
.m--before-sliding .fnc-slide__heading-line span {
  transform: translateY(-100%);
}
.m--active-slide .fnc-slide__heading-line span {
  transition: transform 1.5s 1s;
  transform: translateY(0);
}
.m--previous-slide .fnc-slide__heading-line span {
  transition: transform 1.5s;
  transform: translateY(100%);
}
.fnc-slide__action-btn {
  position: relative;
  margin-left: 200px;
  padding: 5px 15px;
  font-size: 20px;
  line-height: 1;
  color: transparent;
  border: none;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-align: center;
  outline: none;
}
.fnc-slide__action-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.3s;
  transform-origin: 50% 0;
  line-height: 30px;
  color: #fff;
}
/* .fnc-slide__action-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
}
.fnc-slide__action-btn span:after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 30px;
  background: #1f2833;
  opacity: 0;
  transform-origin: 50% 0;
  transform: translateY(100%) rotateX(-90deg);
  transition: opacity 0.15s 0.15s;
} */
.fnc-slide__action-btn:hover span {
  transform: rotateX(90deg);
}
.fnc-slide__action-btn:hover span:after {
  opacity: 1;
  transition: opacity 0.15s;
}
.fnc-nav {
  z-index: 5;
  position: absolute;
  right: 50%;
  bottom: 7%;
  transform: translate(50%);
}
.fnc-nav__bgs {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fnc-nav__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fnc-nav__bg.m--nav-bg-before {
  z-index: 2 !important;
  transform: translateX(100%);
}
.fnc-nav__bg.m--active-nav-bg {
  z-index: 1;
  transition: transform 1s 0.6666666667s;
  transform: translateX(0);
}
.fnc-nav__controls {
  font-size: 0;
}
/* .fnc-nav__controls button {
  margin: 0 2rem;
} */
.fnc-nav__control {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100px;
  border-radius: 5px;
  height: 3px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.5s;
}
.fnc-nav__control.m--active-control {
  background: #1f2833;
}
.fnc-nav__control-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition-timing-function: linear !important;
}
.m--with-autosliding .m--active-control .fnc-nav__control-progress {
  transform: scaleX(1);
}
.m--prev-control .fnc-nav__control-progress {
  transform: translateX(100%);
  transition: transform 0.5s !important;
}
.m--reset-progress .fnc-nav__control-progress {
  transform: scaleX(0);
  transition: transform 0s 0s !important;
}
.m--autosliding-blocked .fnc-nav__control-progress {
  transition: all 0s 0s !important;
  transform: scaleX(0) !important;
}

.fnc-slider .m--blend-dark .fnc-slide__inner {
  background-color: rgba(255, 218, 0, 0.3);
}
.fnc-slider .m--blend-dark .fnc-slide__mask-inner {
  background-color: rgba(255, 218, 0, 0.3);
}
.fnc-slider .m--navbg-dark {
  background-color: rgba(255, 218, 0, 1);
}
.fnc-slider .m--blend-green .fnc-slide__inner {
  background-color: #6d9b98;
}
.fnc-slider .m--blend-green .fnc-slide__mask-inner {
  background-color: #42605e;
}
.fnc-slider .m--navbg-green {
  background-color: #42605e;
}
.fnc-slider .m--blend-red .fnc-slide__inner {
  background-color: #ea2329;
}
.fnc-slider .m--blend-red .fnc-slide__mask-inner {
  background-color: #990e13;
}
.fnc-slider .m--navbg-red {
  background-color: #990e13;
}
.fnc-slider .m--blend-blue .fnc-slide__inner {
  background-color: #59aecb;
}
.fnc-slider .m--blend-blue .fnc-slide__mask-inner {
  background-color: #2d7791;
}
.fnc-slider .m--navbg-blue {
  background-color: #2d7791;
}
.fnc-slider .m--blend-primary .fnc-slide__inner {
  background-image:url("../img/home-slider-img-01.jpg");
  background-size:cover;
}

.fnc-slider .m--blend-primary .fnc-slide__mask-inner {
  background-image:url("../img/home-slider-img-01.jpg");
  background-size:cover;
}

.fnc-slider .m--navbg-primary {
  background-color: rgba(255, 218, 0, 1);
}

.fnc-slider .m--blend-secondary .fnc-slide__inner {
  background-image:url("../img/home-slider-img-01.jpg");
  background-size:cover;
}

.fnc-slider .m--blend-secondary .fnc-slide__mask-inner {
  background-color: rgba(255, 85, 0, 0.3);
}

.fnc-slider .m--navbg-secondary {
  background-color: rgba(255, 85, 0, 1);
}

.fnc-slider .m--blend-terniary .fnc-slide__inner {
  background-image:url("../img/home-slider-img-01.jpg");
  background-size:cover;
}

.fnc-slider .m--blend-terniary .fnc-slide__mask-inner {
  background-color: rgba(0, 195, 255, 0.315);
}

.fnc-slider .m--navbg-terniary {
  background-color: rgba(0, 195, 255, 1);
}

.color--primary {
  color: rgba(255, 218, 0, 1) !important;
}

.color--secondary {
  color: rgba(255, 85, 0, 1) !important;
}

.color--terniary {
  color: rgba(0, 195, 255, 1) !important;
}

/* NOT PART OF COMMON SLIDER STYLES */
body {
  margin: 0;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 5px; /* width of the scrollbar */
}

/* Customize scrollbar track */
body::-webkit-scrollbar-track {
  background: transparent; /* color of the track */
}

/* Customize scrollbar handle */
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--clr-secondary); /* color of the handle */
}
.demo-cont {
  overflow: hidden;
  position: relative;
  height: 100vh;
  perspective: 1500px;
  background: #000;
}
.demo-cont__credits {
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  padding: 20px 10px 30px;
  background: #303030;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: center;
  transition: transform 0.7s;
  transform: translate3d(100%, 0, 0) rotateY(-45deg);
  will-change: transform;
}
.credits-active .demo-cont__credits {
  transition: transform 0.7s 0.2333333333s;
  transform: translate3d(0, 0, 0);
}
.demo-cont__credits *,
.demo-cont__credits *:before,
.demo-cont__credits *:after {
  box-sizing: border-box;
}
.demo-cont__credits-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.demo-cont__credits-close:before,
.demo-cont__credits-close:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
}
.demo-cont__credits-close:before {
  transform: rotate(45deg);
}
.demo-cont__credits-close:after {
  transform: rotate(-45deg);
}
.demo-cont__credits-heading {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
}
.demo-cont__credits-img {
  display: block;
  width: 60%;
  margin: 0 auto 30px;
  border-radius: 10px;
}
.demo-cont__credits-name {
  margin-bottom: 20px;
  font-size: 30px;
}
.demo-cont__credits-link {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #fff;
}
.demo-cont__credits-blend {
  font-size: 30px;
  margin-bottom: 10px;
}

.example-slider {
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transition: transform 0.7s;
}
.credits-active .example-slider {
  transform: translate3d(-400px, 0, 0) rotateY(10deg) scale(0.9);
}
.example-slider .fnc-slide-1 .fnc-slide__inner,
.example-slider .fnc-slide-1 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-01.jpg");
  background-size: cover;
}

.example-slider .fnc-slide-2 .fnc-slide__inner,
.example-slider .fnc-slide-2 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-02.jpg");
  background-size: cover;
}
.example-slider .fnc-slide-3 .fnc-slide__inner,
.example-slider .fnc-slide-3 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-03.jpg");
  background-size: cover;
}
.example-slider .fnc-slide-4 .fnc-slide__inner,
.example-slider .fnc-slide-4 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-04.jpg");
  background-size: cover;
}
.example-slider .fnc-slide-5 .fnc-slide__inner,
.example-slider .fnc-slide-5 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-05.jpg");
  background-size: cover;
}
.example-slider .fnc-slide-6 .fnc-slide__inner,
.example-slider .fnc-slide-6 .fnc-slide__mask-inner {
  background-image: url("../img/home-slider-img-05.jpg");
  background-size: cover;
}
.example-slider .fnc-slide-3 .fnc-slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.example-slider .fnc-slide-4 .fnc-slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.example-slider .fnc-slide__heading,
.example-slider .fnc-slide__action-btn,
.example-slider .fnc-nav__control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

/* COLORFUL SWITCH STYLES 
   ORIGINAL DEMO - https://codepen.io/suez/pen/WQjwOb */
.colorful-switch {
  position: relative;
  width: 180px;
  height: 77.1428571429px;
  margin: 0 auto;
  border-radius: 32.1428571429px;
  background: #cfcfcf;
}
.colorful-switch:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: -5px;
  top: -5px;
  width: 190px;
  height: 87.1428571429px;
  border-radius: 37.1428571429px;
  background: #314239;
  transition: background-color 0.3s;
}
.colorful-switch:hover:before {
  background: #4c735f;
}
.colorful-switch__checkbox {
  z-index: -10;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.colorful-switch__label {
  z-index: 1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 32.1428571429px;
  cursor: pointer;
}
.colorful-switch__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 540px;
  height: 100%;
  background: linear-gradient(
    90deg,
    #14dcd6 0,
    #10e7bd 180px,
    #ef9c29 360px,
    #e76339 100%
  );
  transition: transform 0.5s;
  transform: translate3d(-360px, 0, 0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__bg {
  transform: translate3d(0, 0, 0);
}
.colorful-switch__dot {
  position: absolute;
  left: 131.1428571429px;
  top: 50%;
  width: 5.1428571429px;
  height: 5.1428571429px;
  margin-left: -2.5714285714px;
  margin-top: -2.5714285714px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__dot {
  transform: translate3d(-80.3571428571px, 0, 0);
}
.colorful-switch__on {
  position: absolute;
  left: 104.1428571429px;
  top: 22.5px;
  width: 19.2857142857px;
  height: 36px;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__on {
  transform: translate3d(-80.3571428571px, 0, 0);
}
.colorful-switch__on__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.25s 0s cubic-bezier(0.52, -0.96, 0.51, 1.28);
  transform-origin: 100% 50%;
  transform: rotate(45deg) scale(0) translateZ(0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__on__inner {
  transition: transform 0.25s 0.25s cubic-bezier(0.67, -0.16, 0.47, 1.61);
  transform: rotate(45deg) scale(1) translateZ(0);
}
.colorful-switch__on__inner:before,
.colorful-switch__on__inner:after {
  content: "";
  position: absolute;
  border-radius: 2.5714285714px;
  background: #fff;
}
.colorful-switch__on__inner:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6.1428571429px;
}
.colorful-switch__on__inner:after {
  right: 0;
  top: 0;
  width: 6.1428571429px;
  height: 100%;
}
.colorful-switch__off {
  position: absolute;
  left: 131.1428571429px;
  top: 50%;
  width: 41.1428571429px;
  height: 41.1428571429px;
  margin-left: -20.5714285714px;
  margin-top: -20.5714285714px;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__off {
  transform: translate3d(-80.3571428571px, 0, 0);
}
.colorful-switch__off:before,
.colorful-switch__off:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 5.1428571429px;
  margin-top: -2.5714285714px;
  border-radius: 2.5714285714px;
  background: #fff;
  transition: transform 0.25s 0.25s;
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__off:before,
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__off:after {
  transition-delay: 0s;
}
.colorful-switch__off:before {
  transform: rotate(45deg) scaleX(1) translateZ(0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__off:before {
  transform: rotate(45deg) scaleX(0) translateZ(0);
}
.colorful-switch__off:after {
  transition-timing-function: cubic-bezier(0.67, -0.16, 0.47, 1.61);
  transform: rotate(-45deg) scaleX(1) translateZ(0);
}
.colorful-switch__checkbox:checked
  ~ .colorful-switch__label
  .colorful-switch__off:after {
  transition-timing-function: ease;
  transform: rotate(-45deg) scaleX(0) translateZ(0);
}

/*carousel Section*/
.home-carousel {
  background: url(../img/carousel-section-bg.jpeg);
  padding: 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.strong {
  font-weight: bold;
  font-size: 60px;
}
.home-carousel-static-line {
  position: absolute;
  bottom: 2%;
  height: 700px;
  left: -35%;
  z-index: 200;
}

.home-carousel h4 {
  font-family: Lato;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  color: var(--clr-white);
  padding-bottom: 3rem;
}

.home-carousel .item {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 600px;
  border-radius: 10px;
  filter: brightness(0.4);
  background-position: 50% 15%;
}

.home-carousal-static-art {
  position: absolute;
  width: 9rem !important;
  bottom: 0;
  transform: rotate(180deg);
  left: 63px;
}
.home-carousel h2 span {
  color: rgba(255, 219, 4, 1);
}
.demo-section {
  width: 17rem;
  height: 15rem;
  position: fixed;
  background: rgb(241, 86, 9);
  cursor: pointer;
  z-index: 100;
  background: radial-gradient(
    circle,
    rgb(245, 112, 46) 20%,
    rgba(255, 85, 0, 1) 50%
  );
  /* background-color: var(--clr-secondary); */
  border-radius: 100%;
  right: 41px;
  bottom: -141px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 5s infinite alternate;
  img {
    width: 2rem;
    margin-top: 2rem;
    margin-bottom: 10px;
  }
  p {
    color: var(--clr-white);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.home-carousel-content-box {
  position: absolute;
  top: 0;
  display: none;
  right: 10%;
  width: 300px;
  background: rgba(255, 85, 0, 1);
  padding: 50px 24px;
  color: white;
}

.home-carousel-content-box h3 {
  font-family: Lato;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: var(--clr-white);
}

.home-carousel-content-box p {
  font-family: Lato;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.owl-item.active .home-carousel-content-box {
  display: flex;
  flex-direction: column;
}
.home-carousel .owl-item.active .item {
  filter: brightness(1);
  width: 100%;
}
.home-carousel .swiper-slide img {
  width: 100%;
  border-radius: 10px;
}
.home-carousel .swiper-slide {
  border-radius: 10px;
}
#home-owl-carousel .owl-nav button.owl-prev,
#home-owl-carousel .owl-nav button.owl-next {
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  color: white;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important;
  cursor: pointer;
}

#home-owl-carousel .owl-nav button.owl-next {
  right: 3%;
  transform: translate(-3%, -50%);
}

#home-owl-carousel .owl-nav button.owl-prev {
  left: 3%;
  transform: translate(-3%, -50%);
}

#home-owl-carousel .owl-nav button span {
  font-size: 100px;
  height: 100%;
  display: block;
  width: 100%;
}

#home-owl-carousel .owl-carousel .owl-nav {
  margin: 0;
}

.btn-wrap {
  text-align: center;
  width: 100%;
}

/*Future Section*/
.future-section {
  background: url("../img/Future-section-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.future-section-static-art {
  position: absolute;
  top: 0;
  left: 60%;
  transform: translateX(-60%);
  height: 6rem;
}
.future-tech .content {
  margin-top: 2rem;
}
.future-tech-section-static-art {
  position: absolute;
  top: -10%;
  left: 40%;
  height: 6rem;
  transform: rotate(180deg);
}

.future-section-static-lines {
  position: absolute;
  right: -35%;
  bottom: 2%;
  animation: 20s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal none running
    sideArt;
  /* transform: translateY(30%); */
}

.future-section-wrapper {
  margin: 0 auto;
  width: 90%;
  padding: 5rem 0;
}

.future-section-wrapper > h1 {
  color: #171717;
  font-family: "Montserrat", Sans-serif;
  font-size: 10rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 30px;
  margin-bottom: 1.5rem;
}

.future-section-wrapper > h2 {
  color: var(--clr-white);
  font-family: "Montserrat", Sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.future-section-wrapper > h3 {
  color: #fcf424;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.future-section-divider {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.future-section-divider > span {
  display: block;
  border-block-start: 4px solid #ffff00;
  width: 8%;
  margin: 0 auto;
  margin-left: 0;
}

.future-section-cards {
  display: flex;
  justify-content: center;
  color: var(--clr-white);
}
.future-section-cards a {
  text-decoration: none;
  cursor: pointer;
}

.future-section-cards div {
  /* flex: 1; */
  width: 30%;
}

.future-section-cards img {
  height: 230px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.future-section-cards img:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.future-section-cards h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.future-section-cards p {
  color: #e7e3e1;
  font-size: 1rem;
  letter-spacing: 1.5px;
  font-weight: 200;
  margin-bottom: 1rem;
  line-height: 25px;
}

.future-section-card1 {
  padding: 1em 3em 1em 1em;
}

.future-section-card1 h3 {
  color: var(--clr-ternary);
}

.future-section-card2 {
  padding: 11em 3em 1em 1em;
}

.future-section-card2 h3 {
  color: var(--clr-secondary);
}

.future-section-card3 {
  margin: -6% 0% 0% 0%;
  padding: 1em 3em 1em 1em;
}

.future-section-card3 h3 {
  color: var(--clr-primary);
}

/* feature section  */
.feature-section {
  display: flex;
  background: url(../img/feature-section-bg.png);
  padding: 4rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.feature-section-static-line {
  position: absolute;
  height: 350px;
  bottom: -53%;
  right: -5%;
}

.feature-section h2 span {
  color: var(--clr-secondary-light);
}

.feature-section-cards {
  display: flex;
  width: 90%;
  justify-content: space-between;
  margin: 2.3rem auto;
  align-items: center;
}
.feature-section-cards .item {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* height: 600px; */
  background-position: 50% 15%;
}
.feature-section-card {
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feature-section-card img {
  width: 330px !important;
  position: relative;
  height: 100%;
  animation: featureAnimate 30s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.feature-section-card .content {
  position: absolute;
}
.feature-section-card p:first-child {
  font-family: Gilroy-Black;
  font-size: 46px;
  font-weight: 400;
  line-height: 58.05px;
  text-align: center;
}

.feature-section-card p:last-child {
  font-family: Gilroy-Medium;
  font-size: 28px;
  font-weight: 400;
  line-height: 33.96px;
  text-align: center;
}

.feature-section-card4 p {
  transform: rotateY(180deg);
}

/*Book section*/

.book-section {
  /* or any other parent wrapper */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90dvh;
  perspective: 1000px;
  font: 1em/1.4 "Poppins", sans-serif;
  overflow: hidden;
  color: hsl(180 68% 5%);

  background-image: url(../img/book.jpg);
  position: relative;
  overflow: hidden;
}

.book-section-static-art {
  position: absolute;
  top: 0;
  left: 2%;
  height: 5rem;
}

.book-section-static-line {
  position: absolute;
  top: 10%;
  left: 5%;
  height: 700px;
  animation: 50s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal none running
    staticArt;
}

.book-section-text p {
  font-family: Lato;
  font-size: 74px;
  font-weight: 400;
  line-height: 88.8px;
  text-align: left;
  color: white;
}

.book-section-text p span {
  color: var(--clr-primary);
}

.book {
  position: relative;
  display: flex;
  padding: 10px;
  margin: 16rem 15rem 10rem 15rem;
  width: 40cqmin;
  /*1* let pointer event go trough pages of lower Z than .book */
  pointer-events: none;
  transform-style: preserve-3d;
  transition: translate 1s;
  translate: calc(min(var(--c), 1) * 50%) 0%;
  /* Incline on the X axis for pages preview */
  rotate: 1 0 0 30deg;
}

.page {
  /* PS: Don't go below thickness 0.5 or the pages might transpare */
  --thickness: 4;
  flex: none;
  display: flex;
  width: 100%;
  font-size: 2cqmin;
  /*1* allow pointer events on pages */
  pointer-events: all;
  user-select: none;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 1s,
    rotate 1s ease-in
      calc((min(var(--i), var(--c)) - max(var(--i), var(--c))) * 50ms);
  translate: calc(var(--i) * -100%) 0px 0px;
  transform: translateZ(
    calc((var(--c) - var(--i) - 0.5) * calc(var(--thickness) * 0.23cqmin))
  );
  rotate: 0 1 0 calc(clamp(0, var(--c) - var(--i), 1) * -180deg);
}

.front,
.back {
  position: relative;
  flex: none;
  width: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  background-color: #fff;
  /* Fix backface visibility Firefox: */
  translate: 0px;
}

.back {
  translate: -100% 0;
  rotate: 0 1 0 180deg;
}

/* That's it. Your FlipBook customization styles: */

.book {
  counter-reset: page -1;

  & a {
    color: inherit;
  }
}

.page {
  box-shadow: 0em 0.5em 1em -0.2em #00000020;
}

.front,
.back {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  padding: 2em;
  border: 1px solid #0002;

  &:has(img) {
    padding: 0;
  }

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &::after {
    position: absolute;
    bottom: 1em;
    counter-increment: page;
    content: counter(page) ".";
    font-size: 0.8em;
  }
}

.cover {
  &::after {
    content: "";
  }
}

.front {
  &::after {
    right: 1em;
  }

  background: linear-gradient(to left, #f7f7f7 80%, #eee 100%);
  border-radius: 0.1em 0.5em 0.5em 0.1em;
}

.back {
  &::after {
    left: 1em;
  }

  background-image: linear-gradient(to right, #f7f7f7 80%, #eee 100%);
  border-radius: 0.5em 0.1em 0.1em 0.5em;
}

.cover {
  background: radial-gradient(
      circle farthest-corner at 80% 20%,
      hsl(150 80% 20% / 0.3) 0%,
      hsl(170 60% 10% / 0.1) 100%
    ),
    hsl(231, 32%, 29%) url("../img/1.jpg") 50% / cover;
  color: hsl(200 30% 98%);
}

/* Upcoming events */

.upcoming-events {
  background: url("../img/upcoming-events-bg.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.upcoming-events-static-art {
  position: absolute;
  top: 0;
  right: 5%;
  height: 7rem;
}

.upcoming-events h2 {
  padding-bottom: 2rem;
}

.upcoming-events h2 span {
  color: rgba(255, 219, 4, 1);
}

.upcoming-event-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: stretch;
}

.upcoming-event-wrapper img {
  width: 100%;
  height: 100%;
  /* border-radius: 10px; */
  object-fit: cover;
}

.upcoming-event-video {
  flex: 2;
}

.upcoming-event-list {
  flex: 1;
}

.upcoming-event-headline {
  border-bottom: 1px solid rgba(85, 75, 13, 1);
}

.upcoming-event-headline ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.upcoming-event-headline ul li {
  text-decoration: none;
  padding: 10px 24px;
  border: 0px 0px 1px 0px;
  opacity: 0px;
  font-family: Gilroy-Medium;
  font-size: 25px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: white;
}

.upcoming-event-headline-active {
  font-family: Gilroy-Bold !important;
  color: rgba(255, 218, 0, 1) !important;
  border-bottom: 1px solid rgba(255, 218, 0, 1) !important;
}

.upcoming-events-video {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
}
.upcoming-events-video .video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;

  flex-direction: column;
}
.upcoming-events-video .video-wrapper .content-box {
  background-color: var(--clr-primary);
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 0 0 10px 10px;

  justify-content: center;
}
.footer-banner {
  background: url("../img/global-partner-partnership-banner-min.jpg");
  height: 600px;
  padding: 2rem;
  gap: 0px;
  opacity: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing-page-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* margin-top: 3rem; */
  justify-content: center;
  gap: 3rem;
  height: 100%;
}
.landing-page-container .section {
  position: relative;
}
.feature-section2 .content-upper {
  position: absolute;
  background-color: var(--clr-ternary);
  color: var(--clr-white);
  border-radius: 10px;
  padding: 3rem 4rem;
  width: 80%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  top: 40px;
  left: 11%;
}

.form-section .content-upper {
  position: absolute;
  background-color: var(--clr-ternary);
  color: var(--clr-white);
  border-radius: 10px;
  padding: 3rem 4rem;
  width: 80%;

  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  top: -100px;
}
.form-section .content-upper h3 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  line-height: 61.9px;
  color: var(--clr-white);
  text-align: center;
}
.landing-page-container .section .line {
  width: 40rem;

  animation: sideArtRound 30s linear infinite;
}
.landing-page-container .section .art {
  position: absolute;
  width: 20rem;
  top: 120px;
  animation: sideArtRoundRev 30s linear infinite;

  left: 120px;
  transform: translate(-50%, 40%);
}
.landing-page-container .section2 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
.landing-page-container .section2 img {
  width: 20rem;
}
.landing-page-container .section2 h3 {
  color: white;
  font-size: 50px;
}
.footer-banner h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  color: white;
  line-height: 61.9px;
  text-align: center;
}
.footer-banner h2 a {
  color: white;
}

.upcoming-events-video video {
  height: 100%;
  width: 100%;
  position: relative;
  object-fit: cover;
}

.upcoming-events-video .video-container {
  position: relative;
  height: 100%;
  width: 100%;
  position: relative;
  object-fit: cover;
  /* border-radius: 10px; */
}
.section2 .why-kodeit-cards {
  height: 100% !important;
}

.upcoming-events-video .video-container .play-button img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
}

.upcoming-event-video-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 2rem 0 0;
}
.upcoming-event-video-list h3 {
  color: white;
}
.upcoming-event-video-data {
  display: flex;
  color: white;
  gap: 1rem;
  cursor: pointer;
}

.upcoming-event-video-data-left {
  flex: 2;
}
.upcoming-event-video-data-left img {
  border-radius: 10px;
  width: 100%;
}
.upcoming-event-video-data-right {
  flex: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
}

.upcoming-event-video-data-right h3 {
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.83px;
  text-align: left;
}
.form-group.success input {
  border-color: green;
}
.form-group.error input {
  border-color: var(--clr-primary);
}
.form-group small {
  color: var(--clr-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}
.form-group.error small {
  visibility: visible;
}

.upcoming-event-video-data-right p {
  font-family: Gilroy-Light;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  padding: 3px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.upcoming-event-video-data-datetime {
  display: flex;
  gap: 1rem;
}

.upcoming-event-video-data-datetime span {
  display: flex;
  gap: 3px;
  align-items: center;
  img {
    height: 16px;
    width: 14px;
  }
}

.upcoming-event-video-data-datetime span svg {
  height: 16px;
  width: 16px;
}
/* future tech section  */
.future-tech {
  background: #171523;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.future-tech-static-art {
  position: absolute;
  right: 0;
  bottom: 10%;
  height: 10rem !important;
  width: auto !important;
}

.future-tech h2 {
  padding: 4rem 0;
}

.future-tech h2 span {
  color: var(--clr-primary);
}

.future-tech video {
  width: 100%;
  height: 80vh;
}

/*Testimonials*/
.testimonials-section {
  background: url("../img/teaching-section-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.teaching-section-static-art {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 6rem;
}

.teaching-section-static-line {
  position: absolute;
  left: -40%;
  top: 2%;
  z-index: 100;
  animation: 20s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal none running
    sideArt;
}
.upcoming-event-wrapper .tab2 .contactForm img {
  width: 1rem;
  height: 1rem !important;
}
.testimonials-section h2 {
  padding-bottom: 2rem;
}

.testimonials-section h2 span {
  color: var(--clr-primary);
}

#testimonials-owl-carousel .item {
  background-color: var(--clr-white);
  width: 90%;
  margin: 0 auto;
  padding: 50px 100px;
  border-radius: 16px;
}

#testimonials-owl-carousel .owl-stage-outer {
  margin-bottom: 2rem;
}

#testimonials-owl-carousel .owl-nav {
  margin-top: -30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10rem;
}

#testimonials-owl-carousel .owl-nav button span {
  font-size: 50px;
  color: var(--clr-white);
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span,
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: rgba(255, 85, 0, 1) !important;
}

.testimonial-item-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.testimonial-item-left {
  flex: 2;
  height: 400px;
  width: 400px;
  border-radius: 50% !important;
  overflow: hidden;
}

.testimonial-item-right {
  flex: 5;
}

.testimonial-item-right h3 {
  font-family: Lato;
  font-size: 24px;
  color: black;
  font-weight: 700;
  line-height: 28.8px;
  text-align: left;
}

.testimonial-item-right p {
  padding: 1rem 0;
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

/* Teaching section  */
.teaching-section {
  background: url("../img/teaching-section-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}

.teaching-section h2 span {
  color: var(--clr-secondary-light);
}

.teacher-section-team-wrapper {
  width: 80%;
  display: flex;
  margin: 0 auto;
}

.teacher-section-card {
  margin: 1rem;
  position: relative;
}

.teacher-section-card > img {
  width: 100%;
}

.teacher-section-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem 2rem;
  background-color: var(--clr-header);
  color: var(--clr-white);
}

.teacher-section-card-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Montserrat", Sans-serif;
  text-transform: uppercase;
}

.teacher-section-card-info p {
  font-size: 0.7rem;
  font-family: "Poppins", Sans-serif;
  line-height: 2em;
}

.teacher-section-card-info svg {
  height: 1.5rem;
  width: 1.5rem;
}

.teacher-section-card-info span {
  margin-left: 1rem;
}

.teacher-section-card-info > span:first-child {
  margin-left: 0;
}

/*Social Section*/
.social-section {
  background: url(../img/teaching-section-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  position: relative;
}

.social-section-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: 80%;
  justify-content: space-between;
}
.disital-assets-libary-container {
  flex-direction: column;
}
.disital-assets-libary-container h2 {
  margin-bottom: 30px;
}
.social-section-card {
  position: relative;
  height: 200px;
  border-radius: 10px;
  width: 200px;
  overflow: hidden;
}
.social-section-card img {
  object-fit: cover;
}
.social-section-image,
.social-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}

.social-section-overlay {
  background-image: url("../img/social-card-overlay.png");
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.social-section-content {
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-section-card:hover .social-section-image {
  opacity: 0.3;
  transform: scale(1.3) rotate(15deg);
}

.social-section-card:hover .social-section-overlay {
  opacity: 0.7;
}

.social-section-card:hover .social-section-content {
  opacity: 1;
  animation: scale 0.5s ease-in;
}

.social-section-content span svg {
  height: 5rem;
  width: 5rem;
}

@keyframes scale {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(6);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/*Footer css*/
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

canvas {
  display: block;
  background: #13131d;
  width: 100%;
  height: 100%;
}

#particles-js {
  width: 100%;
  height: 40%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-section-static-art {
  position: absolute;
  top: 0;
  left: 50%;
  height: 5rem;
  transform: translateX(-50%);
}

.footer-section {
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 50%;
  margin-top: 2rem;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  width: 70%;
  justify-content: space-between;
  gap: 1rem;
}

.footer-section .footer-list {
  display: flex;
  flex-direction: column;
  width: 25%;
  gap: 1rem;
  /* height: 100%; */
  align-items: flex-start;
  /* justify-content: space-between; */
}
.footer-list ul {
  margin: 0;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.footer-list li {
  list-style: none;
  display: flex;
  /* margin-top: 1rem; */
  align-items: center;
}

.footer-list a {
  text-decoration: none;
  font-weight: 800;
  color: white;
}

.footer-list svg {
  height: 1rem;
  width: 1rem;
  fill: #fa9624;
  margin-right: 12px;
}

.footer-list-socials {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
}

.footer-list-socials svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: #ffffff;
  cursor: pointer;
}
.static-art-left-banner {
  width: 7rem;
  position: absolute;
  z-index: 10;
  width: 6rem;
  top: 50%;
  right: 0;
}
/*About us page starts*/

/*About Us page banner*/
.landing-pages-banner {
  display: flex;
  position: relative;
  height: 80vh;
  width: 100%;
}

.landing-pages-banner-wrapper {
  animation: growBackground 30s ease-in-out infinite alternate;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  z-index: 0;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: white;
}

.second-section .owl-dots button {
  width: 30px;
}
@keyframes growBackground {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 120% 120%;
  }
}
.landing-pages-banner-wrapper {
  /* position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  height: 50vw;
  min-height: 400px;
  max-height: 550px;
  min-width: 300px;
  color: #eee; */
}

.landing-pages-banner-wrapper h2 {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: Gilroy-ExtraBold;
  font-size: 96px;
  font-weight: 400;
  line-height: 120px;
  text-align: left;
  color: var(--clr-primary);
  z-index: 1;
}

.landing-pages-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.486);
  z-index: 1;
}

.landing-pages-banner-wrapper .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  z-index: 100;
}

.landing-pages-banner-wrapper .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.landing-pages-banner-wrapper .lines .line:first-child {
  margin-left: -25%;
}

.landing-pages-banner-wrapper .lines .line:last-child {
  margin-left: 25%;
}

.landing-pages-banner-wrapper .lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(75%, #ffffff),
    to(#ffffff)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 75%,
    #ffffff 100%
  );
  -webkit-animation: run 7s 0s infinite;
  animation: run 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.landing-pages-banner-wrapper .lines .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.landing-pages-banner-wrapper .lines .line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@keyframes run {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

/*Second Section section*/
.second-section {
  background-image: url(../img/feature-section-bg.png);
  padding: 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.second-section-wrapper,
.upcoming-events-video-container {
  display: flex;
  width: 90%;
  margin: 0 auto;
  gap: 6rem;
}
.second-section .extra-content {
  margin: 2rem auto;
  width: 90%;
  display: none;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.upcoming-events-video-container .upcoming-events-video {
  width: 100%;
  gap: 4rem;
}
.upcoming-events-video-container .video-wrapper img {
  display: block;
  width: 100%;
}
.upcoming-events-video-container .video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.second-section .extra-content p {
  font-family: Gilroy-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  color: var(--clr-white);
}
.second-section .extra-content h3 {
  font-family: Gilroy-SemiBold;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  color: var(--clr-white);
}
.second-section-left {
  flex: 4;
  position: relative;
  width: 692px;
  height: 599px;
  padding: 10px 0px 0px 0px;
}
.second-section-left #carousel img {
  width: 60%;
  object-fit: contain;

  background-repeat: no-repeat;
}

.second-section-left #carousel-mobile {
  display: none !important;
}
.second-section-left .owl-carousel.owl-loaded {
  display: flex !important;
  flex-direction: column;
  /* justify-content: space-between; */
}
.second-section-left .desktop .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  /* width: 72%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  /* gap: 3rem; */
  top: 34%;
  transform: translate(-22%, -28%);
}
.second-section-left #carousel .item {
  /* position: absolute; */
  top: 50%;
  overflow: hidden;
  left: 50%;
  /* height: 28rem; */
  /* transform: translate(-50%, 50%); */
}
.second-section-left #carousel-mobile .item {
  /* position: absolute; */

  /* height: 28rem; */
  /* transform: translate(-50%, 50%); */
}
.second-section-left #carousel .owl-dots {
  margin-left: 10rem;
  margin-top: 12rem;
}
.second-section-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: scale 0.4s ease;
  /* transform: rotateY(180deg); */
}
.second-section-left .image-wrapper {
  width: 100%;
  height: 100%;
}
.second-section-left img:hover {
}
.second-section-right {
  flex: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  line-height: 70px;
  text-align: left;
  color: var(--clr-white);
}

.second-section-right h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  line-height: 70px;
  text-align: left;
  color: var(--clr-white);
}
.second-section-readMore {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  display: none;
  margin: 2rem auto 0;
  justify-content: center;
  width: 90%;
  font-family: Gilroy-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  text-align: justify;
  color: var(--clr-white);
}
.second-section-right h2 span {
  font-family: Gilroy-ExtraBold;
  font-size: 130px;
  font-weight: 400;
  line-height: 92.5px;
  text-align: left;
  color: var(--clr-ternary);
}

.second-section-right h3 {
  font-family: Gilroy-SemiBold;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  color: var(--clr-white);
}

.second-section-right h3 span {
  font-family: Gilroy-Bold;
  font-size: 20px;
  font-weight: 400;
  line-height: 37.14px;
  text-align: left;
  color: var(--clr-white);
}

.second-section-right p {
  font-family: Gilroy-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  color: var(--clr-white);
}
.second-section button {
  width: 120px;
  height: 42px;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 4px;
  border: 0;
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}
/*Kodeit in numbers*/
.kodeit-numbers-section {
  background-image: url(../img/carousel-section-bg.jpeg);
  padding: 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  background-size: cover;
}

.kodeit-numbers-wrapper {
  display: flex;
  gap: 8rem;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}

.kodeit-numbers-wrapper .right-part {
  display: flex;
  width: 100%;
  flex-direction: row;
  /* align-items: center; */
  justify-content: space-between;
}
.kodeit-numbers-right {
  width: 70%;
  height: 824px;
  /* flex: 3; */
}

.kodeit-numbers-right img {
  width: 100%;

  border-radius: 10px;
  object-fit: cover;
}

.kodeit-numbers-left {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  width: 45%;
  /* align-items: center; */
}

.kodeit-numbers-left-left {
  /* flex: 3; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  gap: 2rem;
}
.kodeit-numbers-left-left .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kodeit-numbers-left-right {
  /* flex: 2; */
}

.kodeit-numbers-left-right ul {
  list-style: none;
}

.kodeit-numbers-left-right ul li {
  font-family: Gilroy-Medium;
  font-size: 20px;
  font-weight: 400;
  /* line-height: 24.26px; */
  text-align: left;
  /* padding-bottom: 1.5rem; */
  color: var(--clr-white);
}

.kodeit-numbers-left-right ul li a {
  color: var(--clr-white);
  text-decoration: none;
}

.kodeit-numbers-left-left h2 {
  padding-left: 1rem;
  font-family: Gilroy-Bold;
  font-size: 45px;
  font-weight: 400;
  line-height: 75.52px;
  text-align: left;
  color: var(--clr-white);
}

.kodeit-numbers-left-left h2 span {
  font-family: Gilroy-Bold;
  font-size: 61px;
  font-weight: 400;
  line-height: 75.52px;
  text-align: left;
  color: var(--clr-ternary);
}

.kodeit-numbers-left-left h3 {
  font-family: Gilroy-Light;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  color: var(--clr-white);
}

.kodeit-numbers-left-left p {
  font-family: Gilroy-Light;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  color: var(--clr-white);
}

.kodeit-numbers-left-left img {
  height: 335px;
  width: 403px;
}

/*why kodeit section*/
.why-kodeit-section {
  background-image: url(../img/upcoming-events-bg.jpeg);
  padding: 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.why-kodeit-section h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  width: 90%;
  font-weight: 400;
  line-height: 89.76px;
  text-align: left;
  color: var(--clr-white);
}
.why-kodeit-wrapper {
  display: flex;
  gap: 4rem;
  width: 85%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.why-kodeit-cards-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}
.why-kodeit-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 400px;
  position: relative;
  /* justify-content: space-between; */
  color: var(--clr-white);
  gap: 1rem;
}
.why-kodeit-cards h3 {
  color: var(--clr-white);
}
.why-kodeit-cards h2 {
  font-family: Gilroy-Medium;
  font-size: 30px;
  font-weight: 400;
  line-height: 36.39px;
  text-align: left;
}
.audio-control {
  position: fixed;
  right: 3%;
  top: 85%;
  z-index: 10000;
  /* bottom: 30px; */
}
.audio-control img {
  width: 3rem;
}
.audio-control button {
  height: 4rem;
  width: 4rem;
  border: 0;
  color: var(--clr-white);
  font-size: 15px;
  background-color: var(--clr-secondary);
  border-radius: 100%;
}
.why-kodeit-cards p {
  font-family: Gilroy-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
}

.why-kodeit-cards img {
  /* height: 217px; */
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.teachers-hub-features {
  display: flex;
  padding: 5rem 0px;
  flex-direction: column;
  justify-content: center;
  background-color: black;
  align-items: center;
}

.teachers-hub-features-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}

.teachers-hub-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 45%;
  border-bottom: 3px solid transparent;
  /* transition: border-bottom 0.3s ease; */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.teachers-hub-card img {
  width: 100%;
}

.teachers-hub-card .content-wrapper {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  /* align-self: center; */

  justify-content: center;
  transition: background-color 0.3s ease;
}
.teachers-hub-card .content h2 {
  padding-left: 30px;
  margin-bottom: 0rem;
  font-size: 26px;
  font-weight: 400;
}
.teachers-hub-card .content {
  color: white;
  /* font-family: 'Lato', sans-serif; */
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 11;
  transition: transform 0.3s ease, padding-bottom 0.3s ease;
}

.teachers-hub-card .content .description {
  width: 100%;
  padding: 30px;
  align-items: flex-start;
  /* position: absolute; */
  background-color: #232031;
  display: none;
  flex-direction: column;
  gap: 18px;
  /* min-height: 12rem; */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}
.teachers-hub-card:hover .content .description h2 {
  padding-left: 0;
}
.teachers-hub-card:hover .content .heading {
  display: none;
}
.teachers-hub-card:nth-child(3n + 1):hover {
  border-bottom: 3px solid var(--clr-primary);
}

.teachers-hub-card:nth-child(3n + 2):hover {
  border-bottom: 3px solid var(--clr-secondary);
}

.teachers-hub-card:nth-child(3n + 3):hover {
  border-bottom: 3px solid var(--clr-ternary);
}

.teachers-hub-card:hover .content-wrapper {
  /* background-color: #232031;
  transform: translateY(-10px); */
  /* transform: translateY(-8%);
  transition: transform 0.3s ease-out; */
  width: 100%;
  /* transition: transform 0.3s ease-out; */
}

.teachers-hub-card:hover .content {
  transform: translateY(-10px);
  transition: transform 0.3s ease-out;
}

.teachers-hub-card:hover .content .description {
  display: flex;
  opacity: 1;

  visibility: visible;
  margin-top: 12px;
  margin-bottom: -10px;
  transition: opacity 0.3s ease-out, visibility 0s linear;
}
.teachers-hub-card .content .description p {
  font-family: Gilroy-Light;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
}
.static-art-bottom {
  position: absolute;
  transform: rotate(90deg) !important;
  width: 4rem !important;
  height: 9rem !important;
}

.static-art-top {
  position: absolute;
  width: 4rem !important;
  transform: rotate(-90deg) !important;
  height: 9rem !important;
}
.static-art-left {
  position: absolute;
  width: 4rem !important;
  height: 9rem !important;
}
.static-art-right {
  position: absolute;
  transform: rotate(180deg) !important;
  width: 4rem !important;
  height: 9rem !important;
}
/* Additional transition properties for smoother hover effect */
.teachers-hub-card {
  transition: border-bottom 0.3s ease;
}

.teachers-hub-card .content {
  transition: transform 0.3s ease, padding-bottom 0.3s ease;
}

.teachers-hub-card .content .description {
  transition: opacity 0.3s ease;
}

/* teachers section */
/* .teachers-hub-features {
  display: flex;
  padding: 5rem 0px;
  flex-direction: column;
  justify-content: center;
  background-color: black;
  align-items: center;
}

.teachers-hub-features-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.teachers-hub-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: background-color 0.3s ease;
}

.teachers-hub-card .content-wrapper {
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.teachers-hub-card .content {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.teachers-hub-card .content .description {
  display: none;
  transition: opacity 0.3s ease;
  transform: translateY(0)
  
}
.teachers-hub-card .content .description p {
  font-family: Gilroy-Light;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
}
.teachers-hub-card:nth-child(3n + 1):hover {
  border-bottom: 3px solid var(--clr-primary);
}

.teachers-hub-card:nth-child(3n + 2):hover {
  border-bottom: 3px solid var(--clr-secondary);
}
.teachers-hub-card:nth-child(3n + 3):hover {
  border-bottom: 3px solid var(--clr-ternary);
}
.teachers-hub-card:hover .content-wrapper {
  background-color: #232031;
}
.teachers-hub-card:hover .content {
  transform: translateY(-20px);
}
.teachers-hub-card:hover .content .description {
  display: block;
  opacity: 1;
    transform: translateY(-20px); 
} */

/* .teachers-hub-card {
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.teachers-hub-card .content {
  transition: transform 0.3s ease, padding-bottom 0.3s ease;
}

.teachers-hub-card .content .description {
  transition: opacity 0.3s ease;
}  */

.main-container {
  width: 90%;
}

/* tabs */
.tabs .tab-link,
.tabs2 .tab-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}
.tabs .tab-link::after,
.tabs2 .tab-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.tabs .tab-link.current,
.tabs2 .tab-link.current {
  color: rgb(255, 218, 0) !important;
}
.tabs .tab-link.current::after {
  border-bottom: 1px solid rgb(255, 218, 0) !important;
  height: 2px;
}
.tabsContent .tab-content {
  display: none;
  height: 100%;
}
.tabsContent .tab-content.current {
  display: block;
}
.tabsContent {
  height: 100%;
}

@keyframes featureAnimate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(150deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes staticArt {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(150deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes sideArt {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes sideArtRound {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sideArtRoundRev {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ICT Curriculum */

.ict-tabs-wrapper {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
}

.ict-tabs .cards-section-wrapper {
  display: flex;
  margin: 2rem 0;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ict-tabs {
  background: url(../img/teaching-section-bg.jpg);
  display: flex;
  flex-wrap: wrap;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;

  align-items: center;
  justify-content: center;
}

.ict-tabs .card,
.ict-tabs .card2 {
  perspective: 150rem;
  flex-grow: 1;
  -moz-perspective: 150rem;
  position: relative;
  height: 500px;
  width: 350px;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 3;
}
.ict-tabs .card2 {
  /* width: 500px ; */
}

.ict-tabs .core-books-card-front-header {
  width: 100%;
  height: 400px;
}
.ict-tabs .core-books-card-front-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}
.ict-tabs .front-card-bottom-img {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 89px;
}
.elective-card-front-content {
  left: 24px;
  position: absolute;
  top: 19px;
}
.ict-tabs .front-card-logo {
  position: absolute;
  right: 39px;
  top: 17px;
  width: 89px;
}
.ict-tabs .card h3,
.ict-tabs .card2 h3 {
  color: var(--clr-white);
}
.ict-tabs .card .card-front > p,
.ict-tabs .card2 .card-front > p {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
  color: #fff;
}

.ict-tabs .card .card-back > p,
.ict-tabs .card2 .card-back > p {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
  color: white;
}

.ict-tabs .card .card-front,
.ict-tabs .card2 .card-front {
  position: relative;
  height: 474px;
  width: 350px;
  border-right: none !important;
  overflow: hidden;
  background-color: black;
  color: white;
}
.ict-tabs .card2 .card {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  /* object-fit: cover; */
  width: 100%;
  background-position-y: bottom !important;
}
.ict-tabs .card .card-back,
.ict-tabs .card2 .card-back {
  overflow: hidden;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  position: absolute;
  height: 578px;
  /* width: 350px; */
  top: 0;
  left: 0;
  color: transparent;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
/* .ict-tabs .card2 .card-front,
.ict-tabs .card2 .card-back {
  width: 500px;
} */
.ict-tabs .card:hover .card-front,
.ict-tabs .card2:hover .card-front {
  transform: rotateY(-180deg);
}

.no-flip{background-size: cover !important;}
.no-flip:hover{transform: rotateY(0deg) !important;}




.ict-tabs .card:hover .card-back,
.ict-tabs .card2:hover .card-back {
  transform: rotateY(0);
  height: 100%;
  display: flex;
  padding: 6rem 2rem;
  color: white;
  justify-content: space-between;
}
.justify-end{justify-content: end !important;}

.ict-tabs .card:nth-child(3n + 1) .card-front,
.ict-tabs .card:nth-child(3n + 1) .card-back,
.ict-tabs .card2:nth-child(3n + 1) .card-front,
.ict-tabs .card2:nth-child(3n + 1) .card-back {
  background-color: var(--clr-primary);
}

.ict-tabs .card:nth-child(3n + 1) .card-back p,
.ict-tabs .card:nth-child(3n + 1) .card-back h3,
.ict-tabs .card2:nth-child(3n + 1) .card-back h3,
.ict-tabs .card2:nth-child(3n + 1) .card-back p {
  color: #000;
}
/* .ict-tabs .card:nth-child(3n + 1) .core-books-card-back-separator {
  background-color: #ffd900bb;
}
.ict-tabs .card:nth-child(3n + 2) .core-books-card-back-separator {
  background-color: #ff5500ab;
}
.ict-tabs .card:nth-child(3n + 3) .core-books-card-back-separator {
  background-color: #00c3ffb6;
} */
.core-books-card-back-separator {
  /* width: 100%;
  height: 1px;
  margin-top: 1rem;
  color: var(--clr-white) !important; */
}

.ict-tabs .card:nth-child(3n + 2) .card-front,
.ict-tabs .card:nth-child(3n + 2) .card-back,
.ict-tabs .card2:nth-child(3n + 2) .card-front,
.ict-tabs .card2:nth-child(3n + 2) .card-back {
  background-color: var(--clr-secondary);
}

.ict-tabs .card:nth-child(3n + 3) .card-front,
.ict-tabs .card:nth-child(3n + 3) .card-back,
.ict-tabs .card2:nth-child(3n + 3) .card-front,
.ict-tabs .card2:nth-child(3n + 3) .card-back {
  background-color: var(--clr-ternary);
}
.core-books-card-back h3,
.elective-card-back h3 {
  font-family: Gilroy-Bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.76px;
  text-align: left;
}
.core-books-card-back p,
.elective-card-back p {
  font-family: Gilroy-Regular;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
}
.elective-card-back .icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 1rem;
}
.elective-card-back .icons img {
  width: 60px;
  /* margin-top: 2rem; */
}
.core-books-card-front-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70px;
  background-color: black;
  justify-content: center;
}
.core-books-card-front-footer h3 {
  font-family: Gilroy-Bold;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.28px;
  text-align: left;
}
.core-books-card-front-footer p {
  font-family: Gilroy-Regular;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
}

/* flip cards */
/* .card {
  perspective: 150rem;
  flex-grow: 1;
  -moz-perspective: 150rem;
  position: relative;
  height: 578px;
  width: 400px;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 3;
}
.card-front > p {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
  color: black;
}
.card-back > p {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
  color: var(--clr-white);
}
.card-front {
  position: relative;
  height: 578px;
  width: 400px;
  border-right: none !important;
  overflow: hidden;
  background-color: black;
  color: var(--clr-white);
}
.card-back {
  overflow: hidden;
  backface-visibility: hidden;

  transform: rotateY(180deg);
  position: absolute;
  height: 578px;
  width: 400px;
  top: 0;
  left: 0;
  color: transparent;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1.5rem 4rem rgba(black, 0.15);
}

.card:hover .card-front {
  transform: rotateY(-180deg);
}
.card:hover .card-back {
  transform: rotateY(0);
  height: 100%;
  display: flex;
  padding: 6rem 2rem;
  color: white;
  justify-content: space-between;
}
.core-books-card-front-header {
  width: 100%;
  height: 500px;
}
.core-books-card-front-header img {
  width: 100%;
  height: 100%;
}
.card-primary .card-front {
  border-bottom: 4px solid #ffda00;
}
.card-primary .card-back {
  background-color: #ffda00;
}
.core-books-card-back h3 {
  font-family: Gilroy-Bold;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.76px;
  text-align: left;
}
.core-books-card-back p {
  font-family: Gilroy-Regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
}
.core-books-card-back-separator {
  width: 100%;
  height: 1px;
  background: #ffe761;
  margin-top: 1rem;
}
.core-books-card-front-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 74px;
  justify-content: center;
}
.core-books-card-front-footer h3 {
  font-family: Gilroy-Bold;
  font-size: 18px;
  font-weight: 400;
  line-height: 22.28px;
  text-align: left;
}
.core-books-card-front-footer p {
  font-family: Gilroy-Regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
} */
/* General styles */
.technology-platform {
  background-color: black;
  display: flex;
  background: url("../img/carousel-section-bg.jpeg");
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--clr-white); /* Default text color */
}
.technology-platform .title {
  font-family: Gilroy-Bold;
  font-size: 45px;
  font-weight: 400;
  line-height: 61.9px;
  text-align: center;
}

.image-content {
  position: relative;
  /* display: inline-block; */

  margin-top: 20rem;
  text-align: center;
}

.image-content img {
  width: 51rem;
  display: block;
  margin: 0 auto;
  position: relative;
}

.inner-content {
  position: absolute;
  top: 263px;
  left: 50%;
  display: flex;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inner-content h3 {
  font-family: Gilroy-Bold;
  font-size: 30px;
  font-weight: 400;
  line-height: 18.9px;
  text-align: center;
  color: var(--clr-secondary);
}
.inner-content p {
  color: black;
  font-family: Gilroy-Regular;
  font-size: 30px;
  font-weight: 400;
  line-height: 60px;
  text-align: center;
}
.inner-content img {
  width: 3rem;
  position: absolute;
  bottom: -61px;
  top: 54px;
  left: 40%;
  transform: rotate(90deg);
}

/* Point specific styles */
.point1 .heading p,
.point2 .heading p,
.point3 .heading p,
.point4 .heading p,
.point5 .heading p {
  position: absolute;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}

.point1 .heading {
  top: -213px;
  left: -68px;
  color: var(--clr-primary);
}

.point1 .description {
  top: -457px;
  left: -19rem;
}
.technology-platform-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 5rem;
}
.point2 .description {
  top: -578px;
  left: -10rem;
}

.point3 .description {
  top: -643px;
  left: 13rem;
}

.point4 .description {
  right: -200px;
  top: -578px;
}

.point5 .description {
  top: -457px;
  right: -278px;
}

.point2 .heading {
  top: -331px;
  left: 27px;
  color: var(--clr-secondary);
}

.point3 .heading {
  top: -412px;
  left: 39%;
  color: var(--clr-ternary);
}

.point4 .heading {
  top: -331px;
  right: -607px;
  color: var(--clr-secondary);
}

.point5 .heading {
  top: -213px;
  right: -732px;
  color: var(--clr-primary);
}

.technology-platform .description {
  display: none;
  position: absolute;
  background-color: #d4f7ff;
  color: black;
  max-width: 50%;
  padding: 1rem;
  z-index: 10;

  transition: transform 0.3s ease;
  transform: translateY(-10px);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.technology-platform .description h3 {
  font-family: Gilroy-Bold;
}
.technology-platform .description p {
  font-family: Noto Sans;
}
.technology-platform .heading:hover + .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(0);
}
.technology-platform .heading {
  position: absolute;
  width: 100%;
}
.technology-platform .heading:hover + .description h3 {
  color: #000;
}
.technology-platform .icon img {
  position: absolute;
  width: 2rem;
}
.point1,
.point2,
.point3,
.point4,
.point5 {
  position: relative;
}
.point1 .icon img {
  top: -123px;
  left: 88px;
}
.point2 .icon img {
  top: -249px;
  left: 220px;
}
.point3 .icon img {
  top: -292px;
  left: 397px;
}
.point4 .icon img {
  top: -249px;
  right: 215px;
}
.point5 .icon img {
  top: -123px;
  right: 82px;
}

/* about links */
.about-links {
  /* flex: 1;

  padding: 20px; */
}
.about-images {
  /* flex: 2; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-images img {
  max-width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.about-images img.active {
  display: block;
  opacity: 1;
}
.about-links ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  margin: 0;
  gap: 1rem;
  flex-direction: column;
}
.about-links li {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  align-items: center;
  position: relative;
  cursor: pointer;
  gap: 10px;
  color: var(--clr-primary);
}

.about-links .arrow {
  opacity: 0;
  transition: opacity 0.3s;
}
.about-links .arrow svg {
  fill: var(--clr-primary);
}
.about-links li.active .arrow {
  opacity: 1;
}

.about-links li:hover {
  color: var(--clr-primary);
}
.about-links li.active {
  font-weight: bold;
  color: var(--clr-primary);
}

/* form contact */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  box-sizing: border-box;
}

.form-section {
  background: url(../img/teaching-section-bg.jpg);
  display: flex;
  flex-wrap: wrap;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  position: relative;
  justify-content: center;
}

.contact-form {
  padding: 20px;
  width: 100%;
  border-radius: 5px;
  color: white;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.contact-form .form-group {
  /* margin-bottom: 1rem; */
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
}
.contact-form .error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-form .button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  background-color: var(--clr-secondary);
  color: white;
  border-radius: 0.25rem;
  cursor: pointer;
}

/* .contact-form .button:hover {
  background-color: #0056b3;
} */

.form-group {
  display: flex;
  width: 49%;
  position: relative;
  justify-content: center;
  flex-direction: column;
}

.field-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-wrapper {
  padding: 5rem 0;
  margin: 0 auto;
  width: 90%;
  /* flex: 1; */
  gap: 4rem;
  display: flex;
  justify-content: space-between;
}
.form-container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 400px;
}

h2 {
  text-align: center;
  margin: 0 0 20px;
}

.form-section {
  padding: 30px 40px;
}

.form-group {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
}

.form-submit button {
  cursor: pointer;
  background-color: #7f45b9;
  border: 2px solid #7f45b9;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 10px;
  margin-top: 20px;
  outline: none;
}
.contact-form {
  padding: 20px;
  width: 100%;
  border-radius: 5px;
  color: white;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  width: 80%;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
}
/* Error styles */
.contact-form .error {
  border-color: red;
}
.map img {
  width: 2rem;
}
.form-wrapper .content h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  line-height: 61.9px;
  text-align: left;
}

.form-wrapper .content p {
  font-family: Gilroy-Light;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
}
.map {
  position: relative;
}

.map .pointer1 {
  position: absolute;

  top: 22%;
  left: 25%;
}
.map .map-image {
  width: 100%;
  /* height: 397px; */
  position: relative;
}
.form-group img {
  width: 18px;
  right: 9px;
  top: 50%;
  position: absolute;
  width: 1rem !important;
  height: 1rem !important;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  width: 80%;
}
.map-container {
  display: flex;
  background: url(../img/engagin-ict-third-sec-bg.png);
  background-repeat: no-repeat;
  object-fit: cover;
  align-items: center;
}
.map-wrapper {
  flex-direction: column;
  padding: 5rem 0;
  width: 90%;
  margin: 0 auto;
  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrapper .info a {
  text-decoration: none;
  color: white;
}
.map-wrapper .info p {
  color: white;
  font-family: Noto Sans;
  font-size: 29px;
  font-weight: 400;
  line-height: 42px;
  text-align: left;
}
.map .pointer2 {
  position: absolute;

  top: 35%;
  right: 41%;
}
.success {
  border-color: green;
}
.map .pointer3 {
  position: absolute;

  top: 40%;
  right: 36%;
}

.map .description {
  display: none;
  position: absolute;
  background-color: #d4f7ff;
  color: black;
  width: 412px;

  padding: 1rem;
  z-index: 10;
  top: -130px;
  transition: transform 0.3s ease;
  transform: translateY(-10px);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.map .description h3 {
  color: #000;
}
.map .pointer3:hover .description,
.map .pointer2:hover .description,
.map .pointer1:hover .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(0);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* engaging ict */
.engaging-ict-third-sec {
  background: url(../img/Besopke-Curation.jpg);
  padding: 15rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  position: relative;
  background-position: center;
  height: 100vh;
}
.engaging-ict-third-sec-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.engaging-ict-third-sec-wrapper .section-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engaging-ict-third-sec-wrapper img {
  width: 100%;
  /* position: relative; */
}
.side-arts-bubbles {
  position: absolute;
  z-index: 10;
  width: 15rem !important;
}
.side-arts-rings {
  position: absolute;
  z-index: 10;
  width: 25rem !important;
  animation: sideArtRound 30s linear infinite;
}
.header {
  position: relative;
  overflow: hidden;
  height: 100%;
  color: #eee;
}
.landing-pages-banner-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgb(1, 2, 7) 100%
  );
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
/* .landing-pages-banner-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: var(--banner-background);
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0);
  background-size: cover;
  background-attachment: fixed;
  animation: grow 60s linear 10ms infinite;
  transition: all 0.2s ease-in-out;
  z-index: -2;
} */
.has-animation p {
}
.has-animation {
  position: relative;
  width: 60%;
  left: 5%;
  top: 35%;

  p,
  img {
    opacity: 0;
  }

  &.animate-in {
    p,
    img {
      animation: textHidden 0.1s 1.1s forwards;
    }
    &:before,
    &:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      z-index: 10;
    }
    &:before {
      background-color: var(--clr-ternary);
    }
    &:after {
      background-color: var(--clr-secondary);
      animation-delay: 0.5s;
    }
  }
  &.animation-ltr.animate-in {
    &:before {
      animation: revealLTR 1.8s ease;
    }
    &:after {
      animation: revealLTR 1s 0.6s ease;
    }
  }
  &.animation-rtl.animate-in {
    &:before {
      animation: revealRTL 1.8s ease;
    }
    &:after {
      animation: revealRTL 1s 0.6s ease;
    }
  }
}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}

@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

.bigger {
  margin: 0;
  font-family: Gilroy-ExtraBold;
  font-size: 96px;
  font-weight: 400;
  line-height: 120px;
  text-align: left;
  color: var(--clr-primary);
  z-index: 1;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.engaging-ict-third-sec-wrapper .content {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  border-radius: 10px;
  padding: 3rem 4rem;
  position: absolute;
  display: flex;
  bottom: -280px;
  width: 60vw;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.feature-section2 {
  background: url(../img/engagin-ict-third-sec-bg.jpg);
  padding: 5rem 0;
  /* display: flex; */
  align-items: center;
  overflow: hidden;
  justify-content: center;
  position: relative;
}
.feature-section2-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0;
  position: relative;
  width: 90%;
  border-radius: 10px;
  margin: 3rem auto;
  padding-bottom: 0rem;
}
.feature-section2 .feature-section-card:nth-child(3n + 2) {
  background-color: #ffcdb4;
}
.feature-section2 .feature-section-card:nth-child(3n + 1) {
  background-color: #fff5b9;
}
.feature-section2 .feature-section-card:nth-child(3n + 3) {
  background-color: #bff0ff;
}
.feature-section2 .feature-section-card {
  justify-content: space-around;
  /* color: white; */
  border-radius: 10px;
  padding: 1rem 2rem;
  width: 33%;
}
.feature-section2 .feature-section-card p {
  font-family: Gilroy-Bold;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}
.feature-section2 .feature-section-card .content p {
  font-family: Gilroy-Bold;
  font-size: 40px !important;
  font-weight: 400;
  line-height: 33.96px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
}
.feature-section2 .feature-section-card .content {
  position: relative;

  height: 7rem;
  width: 7rem;
  border-radius: 100%;
}
.feature-section2 .feature-section-card:nth-child(3n + 1) .content {
  background-color: var(--clr-primary);
}
.feature-section2 .feature-section-card:nth-child(3n + 2) .content {
  background-color: var(--clr-secondary);
}
.feature-section2 .feature-section-card:nth-child(3n + 3) .content {
  background-color: var(--clr-ternary);
}
.feature-section2 .feature-section-card {
  min-height: 350px;
}
/* 
@media (max-width: 1440px) {
  .navbar-links-ul li a {
    font-size: 18px;
  }
  .book-section-static-line {
    top: 21%;
    left: 0%;
  }
  .book-section-text {
    margin-left: 1rem;
  }
  .book {
    margin: 16rem 9rem 10rem 1rem;
    width: 37cqmin;
  }
}

@media (max-width: 1363px) {
  .navbar-links-ul li a {
    font-size: 17px;
  }
} */

.assets-section-container {
  background-image: url(../img/carousel-section-bg.jpeg);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 0;
  overflow: hidden;
  justify-content: center;
  position: relative;
}

.assets-section-container h2 {
  font-family: Gilroy-Bold;
  font-size: 50px;
  font-weight: 400;
  line-height: 89.76px;
  text-align: left;
  color: var(--clr-white);
}
.assets-section-wrapper {
  width: 90%;
  padding: 13rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.second-section-right p strong {
  color: var(--clr-primary);
}
.assets-content .circle {
  position: absolute;
  top: 8%;
  width: 7rem;
  height: 9rem;
  background-repeat: no-repeat;
}
.upcoming-event-video .tabsContent .tab2 .contact-form {
  margin-top: 0 !important;
}

.popup-video-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  /* Semi-transparent black background */
}

/* Styling for popup video */
.popup-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 10px;

  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

video {
  border-radius: 10px;
}

/* Styling for close button */
.close-popup {
  position: absolute;
  top: 21px;
  right: 26px;
  font-size: 50px;
  cursor: pointer;
}
.assets-content .circle6 {
}
.assets-content .circle7 {
}
.assets-content .circle8 {
}
.assets-content .circle9 {
}
.assets-content .circle10 {
}
.assets-content .circle11 {
}
.assets-content .circle12 {
}
.assets-content .content {
  /* position: absolute; */
}
.mobile-view-cards {
  display: none;
}
.mobile-view-card {
  display: none;
  /* display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; */
}

/* .line-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 85%;
} */
.assets-content .icon {
  position: absolute;
  top: 0;
  left: 50%;
  top: 50%;
  width: 40px;
  transform: translate(-50%, -75%);
}

.assets-content img {
  width: 100%;
}

.assets-content .content .description {
  position: absolute;

  width: 100%;
  text-align: center;
  color: var(--clr-white);
}

.list-ui {
  margin: 0px;
  padding: 0px;
  list-style: inside;
}
.list-ui li {
  color: #fff;
  font-size: 18px;
  padding: 10px 0px;
  margin: 0;
}

.flx-11 {
  flex: 11;
}
.diverse-cards-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -30px;
}
.diverse-cards-list .diverse-card {
  width: calc(100% / 3);
  padding: 0 30px;
  margin: 25px 0;
}
.diverse-cards-list .diverse-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}
.diverse-cards-list .diverse-card h3 {
  background: #00c3ff;
  padding: 10px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.objective-students-Sec {
  background-image: url(../img/objective-students-zone-bg.png);
  padding: 5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.objective-students-Sec .objective-students-container {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
}
.objective-students-Sec img {
  display: block;
  margin: 0 auto;
  border-radius: 0;
  text-align: center;
  width: 100%;
}
.disital-assets-libary-box {
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 55px;
  border-radius: 10px;
  margin: 0 auto;
}
.disital-assets-libary-box img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
}
.white-text {
  color: #fff;
}
.yellow-text {
  color: #ffda00;
}
.fnt-i {
  font-style: italic;
}
.align-center {
  text-align: center;
}

.ui-list {
}
.ui-list li {
  color: #fff;
  font-size: 18px;
  list-style: auto;
  padding: 5px 5px;
  line-height: 30px;
}
.ui-list li b {
  color: #ffda00;
}
.founder-section {
  padding: 2rem;
}
.p3rem {
  padding: 0 3rem;
}
.pt10 {
  padding-top: 10rem;
}
/*Mobile Device*/

@media screen and (max-width: 1360px) {
  .social-section-wrapper {
      width: 96%;
  }
}


@media screen and (max-width: 1600px) {
  .navbar-links-ul li {
    padding: 0 13px;
  }
  .navbar-links-ul li a {
    font-size: 18px;
  }
  .second-section-left {
    height: 511px;
  }

  
  .feature-section-card img {
    width: 280px !important;
  }
  .feature-section-card p:first-child {
    font-size: 37px;
  }
  .feature-section-card p:last-child {
    font-size: 22px;
  }
  .kodeit-numbers-wrapper {
    gap: 6rem;
  }
}
@media screen and (max-width: 1550px) {
  
  .book-section-text {
    margin-left: 7rem;
  }
}
/* @media screen and (max-width: 1400px) {
  .second-section-wrapper {
    gap: 4rem;
  }
  .kodeit-numbers-left-left img {
    height: 307px;
    width: 354px;
  }
  
} */
@media screen and (max-width: 1365px) {
}
@media screen and (max-width: 1265px) {
}
@media screen and (max-width: 1200px) {
  .navbar-links-ul li a,
  .navbar-links-button a {
    font-size: 15px;
  }
  .second-section-left #carousel-mobile {
    display: block !important;
    background-color: #ffffff;
  }
  .second-section-left #carousel {
    display: none !important;
  }
  .second-section-left #carousel-mobile {
    display: block !important;
  }
  .navbar-links-ul li {
    padding: 0 8px;
  }
  .book-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .second-section-left {
    height: 350px;
    width: 50%;
  }

  .book {
    margin-top: 3rem;
  }
  .social-section-wrapper {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .feature-section-card img {
    width: 220px !important;
  }

  .kodeit-numbers-wrapper {
    gap: 3rem;
  }
  .form-group {
    width: 40%;
  }
}

@media screen and (max-width: 1165px) {
  .navbar-links-ul li a,
  .navbar-links-button a {
    font-size: 13px;
  }
  .feature-section2 .feature-section-card {
    padding: 1rem 1rem;
    width: 25%;
  }
  .feature-section-card p:last-child {
    font-size: 18px;
  }
  .founder-section .second-section-left {
    width: 40%;
  }
  .founder-section .second-section-left img {
    height: 100%;
  }
  .navbar-links-ul li {
    padding: 0 6px;
  }
  .second-section-right {
    width: 100%;
  }
  .landing-pages-banner {
    display: flex;
    position: relative;
    height: 50vh;
    width: 100%;
  }

  .bigger {
    font-size: 52px;
  }
  .upcoming-event-headline ul {
    flex-direction: column;
    gap: 1rem;
  }
  .second-section-left {
    width: 100%;
  }
  .mobile-view-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
    color: white;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 3rem;
  }
  .image-content {
    display: none;
  }
  .technology-platform-wrapper {
    padding: 5rem 0;
  }
  .mobile-view-cards .mobile-view-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px;
    width: 30%;
    webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    gap: 16px;
    border-radius: 10px;
  }
  .mobile-view-cards .mobile-view-card:hover {
    webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .mobile-view-cards .mobile-view-card h3 {
    color: var(--clr-white);
  }
  .mobile-view-cards .mobile-view-card:nth-child(3n + 1) {
    background-color: var(--clr-primary);
  }
  .mobile-view-cards .mobile-view-card:nth-child(3n + 2) {
    background-color: var(--clr-secondary);
  }
  .mobile-view-cards .mobile-view-card:nth-child(3n + 3) {
    background-color: var(--clr-ternary);
  }
  .second-section-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .kodeit-numbers-wrapper {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .upcoming-event-wrapper {
    flex-direction: column;
  }
  .kodeit-numbers-left-left {
    flex-direction: row;
  }
  .kodeit-numbers-left {
    width: 100%;
  }
  .button-wrapper {
    left: 0 !important;
    margin-left: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .feature-section2 .feature-section-card {
    justify-content: space-around;
    width: 80%;
    gap: 1rem;
  }
  .feature-section2 .feature-section-card {
    min-height: 250px;
  }
  .feature-section2-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 813px) {
  .ict-tabs .cards-section-wrapper {
    justify-content: center;
    flex-direction: column;
  }
  .ict-tabs .card,
  .ict-tabs .card2 {
    flex-grow: 0;
    width: 90%;
  }
  .assets-section {
    display: none;
  }
  .assets-section-mobile-wrapper {
    display: flex;
  }
  .ict-tabs .card .card-front,
  .ict-tabs .card .card-back,
  .ict-tabs .card2 .card-front,
  .ict-tabs .card2 .card-back {
    width: 90%;
  }
  .book-section-text p {
    font-size: 45px;
    line-height: 55.8px;
    text-align: center;
  }
}
@media screen and (min-width: 991px) {
  .menu-toggle,
  .sidebar {
    display: none;
  }
}
@media screen and (max-width: 990px) {
}

@media screen and (max-width: 700px) {
  .kodeit-numbers-wrapper .right-part {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  .assets-section-container h2 {
    font-size: 40px;
    text-align: center;
    /* width: 80%; */
  }
  .kodeit-numbers-left-right ul li {
    width: 45%;
  }
  .form-group {
    width: 90%;
  }
  .teachers-hub-card {
    width: 80%;
  }
  .kodeit-numbers-right {
    width: 100%;
  }
  .kodeit-numbers-left-left .image {
    display: none;
  }
  .about-links ul {
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fnc-slide__inner img {
    width: 70%;
    height: 55%;
  }
}
.button-wrapper {
  width: 90%;
  /* margin: 0 auto; */
  position: relative;
  left: 47%;
  margin-top: 1rem;
}
@media screen and (max-width: 699px) {
  .second-section-right h2 span {
    font-size: 85px;
  }
  .technology-platform .title {
    font-size: 35px;
    line-height: 63.9px;
  }
  .second-section-right h2 {
    font-size: 50px;
    line-height: 63.76px;
  }
  .feature-section2 .feature-section-card {
    min-height: 320px;
  }
  .feature-section2-wrapper {
    margin: 6rem auto;
  }
  .has-animation {
    width: 80%;
    top: 30%;
  }
  .second-section-wrapper {
    gap: 3rem;
  }
  .footer-section {
    /* flex-wrap: wrap; */
    gap: 1rem;
    width: 90%;
  }
  #particles-js {
    /* height: 100%; */
  }
  /* 
  .ict-tabs .card,
  .ict-tabs .card2 {
    flex-grow: 0;
    width: 400px;
  }
  .ict-tabs .card .card-front,
  .ict-tabs .card .card-back,
  .ict-tabs .card2 .card-front,
  .ict-tabs .card2 .card-back {
    width: 400px;
  } */
  .fnc-slide__heading-line {
    font-size: 31px;
    line-height: 60px;
  }
  .strong {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  .assets-section-mobile-wrapper .card .content img {
    width: inherit;
  }
  .footer-section {
    top: 36%;
  }
  .pt10 {
    padding-top: 0rem;
  }
  #modalContent {
    padding: 10px !important;
  }
  .modal-content {
    width: 80% !important;
  }
  .objective-students-Sec img {
    width: 100%;
  }
  .objective-students-Sec .objective-students-container {
    padding: 0rem 0;
  }
  .ict-tabs {
    padding: 2rem 0;
  }
  .ict-tabs-wrapper {
    padding: 0px;
  }
  .p3rem {
    padding: 0rem;
  }
  .technology-platform-wrapper {
    padding: 2rem 0;
  }

  .example-slider .fnc-slide-1 .fnc-slide__inner,
  .example-slider .fnc-slide-1 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs1.jpg");
    background-size: cover;
  }

  .example-slider .fnc-slide-2 .fnc-slide__inner,
  .example-slider .fnc-slide-2 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs2.jpg");
    background-size: cover;
  }
  .example-slider .fnc-slide-3 .fnc-slide__inner,
  .example-slider .fnc-slide-3 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs3.jpg");
    background-size: cover;
  }
  .example-slider .fnc-slide-4 .fnc-slide__inner,
  .example-slider .fnc-slide-4 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs4.jpg");
    background-size: cover;
  }
  .example-slider .fnc-slide-5 .fnc-slide__inner,
  .example-slider .fnc-slide-5 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs5.jpg");
    background-size: cover;
  }
  .example-slider .fnc-slide-6 .fnc-slide__inner,
  .example-slider .fnc-slide-6 .fnc-slide__mask-inner {
    background-position: center center;
    background-image: url("../img/banner-xs5.jpg");
    background-size: cover;
  }

  .future-section-wrapper > h1 {
    font-size: 3rem;
  }
  .second-section-left .owl-carousel .owl-stage-outer {
    /* top: 17%;
    transform: translate(-22%, -11%); */
  }
  .side-arts-bubbles {
    display: none;
  }
  .feature-section {
    padding: 2rem 1rem;
    gap: 1rem;
  }
  .feature-section .owl-nav {
    display: none;
  }
  .book-section {
    padding: 2rem;
  }
  .future-tech {
    padding: 2rem;
  }
  .future-tech h2 {
    padding: 1rem 0;
  }
  .future-tech-section-static-art,
  .static-art-left-banner {
    display: none;
  }
  .social-section {
    padding: 2rem 0;
  }
  .footer-section-static-art {
    display: none;
  }
  .landing-pages-banner {
    height: 20vh;
  }
  .bigger {
    font-size: 30px;
    line-height: 78px;
  }
  .dis-none{display: none;}
  .rem1{padding: 1rem;}
  .second-section {
    padding: 2rem;
  }
  .second-section-wrapper {
    gap: 1rem;
  }
  .second-section-right h2 span {
    font-size: 40px;
  }
  .kodeit-numbers-left-left h2 span {
    font-size: 40px;
  }
  .about-links ul {
    gap: 1rem;
  }
  .kodeit-numbers-right {
    display: none;
  }
  .kodeit-numbers-section {
    padding: 2rem 0;
  }
  .technology-platform .title {
    font-size: 24px;
    line-height: 39.9px;
  }
  .landing-page-container {
    gap: 0;
  }
  .social-section-card {
    width: 100px;
    height: 100px;
  }

  .mobile-view-cards .mobile-view-card {
    width: 100% !important;
  }
  .second-section-left #carousel .owl-dots {
    margin-left: 15%;
    margin-top: 25%;
  }
  .assets-section-mobile-wrapper .card {
    width: 100%;
  }

  .ict-tabs .card2 {
    width: 100%;
  }
  .static-art-left-banner {
    width: 4rem;
  }
  .why-kodeit-wrapper h2,
  .assets-section-container h2 {
    font-size: 30px;
    line-height: 45px;
  }
  .why-kodeit-wrapper h3 {
    font-size: 18px;
  }
  .why-kodeit-wrapper p {
    font-size: 15px;
  }
  #particles-js {
    height: 100%;
  }
  .landing-page-container .section2 h3 {
    color: white;
    font-size: 30px;
    text-align: center;
  }
  .landing-page-container .section2 {
    gap: 1rem;
  }
  .landing-page-container .section2 img {
    width: 5rem;
  }

  .footer-section {
    flex-wrap: wrap;
  }
  .testimonial-item-left {
    height: 120px;
    width: 132px;
  }
  .ict-tabs .card,
  .ict-tabs .card2,
  .ict-tabs .card .card-front,
  .ict-tabs .card .card-back,
  .ict-tabs .card2 .card-front,
  .ict-tabs .card2 .card-back {
    flex-grow: 0;
    width: 100%;
    margin: auto;
  }

  .footer-section li {
    font-size: 15px;
  }
  .teachers-hub-card .content h2 {
    line-height: 30px;
    padding-left: 0px;
    font-size: 24px;
  }
  .teachers-hub-card .content .description p {
    font-size: 16px;
  }
  .feature-section2-wrapper {
    margin: 1rem auto;
    width: 100%;
  }
  .feature-section2 {
    padding: 2rem;
  }
  .feature-section2 .content-upper {
    padding: 2rem 1rem;
    position: inherit;
    top: inherit;
    left: inherit;
    width: 100%;
  }
  .feature-section2 .feature-section-card {
    width: 100%;
  }
  .core-books-card-front-footer {
    text-align: center;
  }
  .navbar-links-button a {
    font-size: 11px;
  }
  .fnc-slide__content {
    top: 30%;
  }
  .navbar-links-button {
    padding: 10px;
  }
  .navbar-logo img {
    height: 48px;
  }
  .fnc-slide__inner img {
    width: 70%;
    height: 45%;
  }
  .side-arts-bubbles {
    width: 10rem !important;
  }
  /* .ict-tabs .card .card-front,
  .ict-tabs .card .card-back,
  .ict-tabs .card2 .card-front,
  .ict-tabs .card2 .card-back {
    width: 333px;
  } */
  .book-section-text p {
    font-size: 35px;
    line-height: 55.8px;
    text-align: center;
  }
  .teachers-hub-card {
    width: 95%;
  }
  .future-section-wrapper > h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: left;
  }
  .future-section-static-lines {
    display: none;
  }
  .future-section-cards div {
    margin-bottom: 24px;
  }
  .side-arts-bubbles {
    width: 11rem !important;
  }
  .common-heading {
    font-size: 40px;
    line-height: 50.8px;
  }
  .feature-section-card img {
    width: 50% !important;
  }
  .feature-section-card p:first-child {
    line-height: 28px;
    font-size: 30px;
  }
  .feature-section-card p:last-child {
    font-size: 16px;
  }
  .side-arts-rings {
    width: 18rem !important;
  }
  .feature-section-static-line {
    display: none;
  }
  .home-carousel {
    padding: 2rem 0;
  }
  .book-section-static-art {
    width: 6rem;
    height: auto;
  }
  .book-section-static-line {
    width: 50%;
    left: 25%;
    height: auto;
  }
  .book-section-text {
    margin-left: 0px;
  }
  .book-section {
    min-height: inherit;
  }
  .fnc-slide__inner .home-banner-static-lines,
  .fnc-slide__mask-inner {
    display: none;
  }
  .book {
    margin: 1rem 15rem 3rem 15rem;
    height: 25vh;
  }
  .upcoming-events {
    padding: 2rem 2rem;
  }
  .back h2,
  .front h2 {
    font-size: 14px;
    color: #000;
    line-height: 30px;
  }
  .upcoming-event-wrapper {
    gap: 1rem;
  }
  .upcoming-event-video-list {
    padding: 2rem 0rem;
  }
  .contact-form {
    margin-top: 2rem;
    padding: 0px;
  }
  .contact-form {
    width: 100%;
  }
  .form-wrapper {
    padding: 0rem;
    width: 100%;
  }
  .form-group {
    width: 100%;
    padding-bottom: 0px;
  }
  .engaging-ict-third-sec {
    height: 36vh;
  }
  .engaging-ict-third-sec-wrapper .content {
    padding: 2rem;
    position: inherit;
    width: inherit;
  }
  .engaging-ict-third-sec-wrapper .section-content {
    position: inherit;
  }
  .map-wrapper {
    padding: 2rem 0;
  }
  .form-section .content-upper {
    text-align: center;
    padding: 2rem;
    position: inherit;
    width: 100%;
    top: 0px;
  }
  .upcoming-event-wrapper {
    width: 100%;
  }
  .future-section-wrapper {
    width: 100%;
    padding: 2rem 2rem;
  }
  .home-carousel {
    padding: 2rem 2rem;
  }

  .owl-carousel .owl-item img {
    width: 100%;
  }
  .teaching-section-static-art {
    width: 7rem;
  }
  .second-section-right p,
  .kodeit-numbers-left-left p,
  .right-part p {
    font-size: 18px;
  }
  .footer-banner {
    height: initial;
  }
  .map .description {
    width: 215px;
    top: -150px;
  }
  .map:nth-child(1) .description {
    left: -80px !important;
  }
  .map .description {
    left: -250px;
  }
  .second-section-right h2,
  .technology-platform-wrapper h2,
  .feature-section2 h2,
  .form-section .content-upper h3,
  .engaging-ict-third-sec-wrapper h2,
  .kodeit-numbers-left-left h2 {
    font-size: 30px;
    margin: 0px;
    line-height: 38px;
  }
  .kodeit-numbers-left-left h3 {
    font-size: 22px;
  }
  .second-section-right h3 {
    font-size: 16px;
  }
  .future-section-wrapper > h3 {
    margin-bottom: 0.5rem;
  }
  .common-heading {
    font-size: 34px;
  }
  .upcoming-events h2 {
    padding-bottom: 1rem;
  }
  .future-tech video {
    width: 100%;
    height: auto;
  }
  .founder-section .second-section-wrapper {
    padding: 2rem 0;
  }
  .assets-section-container {
    padding: 2rem;
  }
  .second-section-wrapper {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .kodeit-numbers-left-right ul li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .future-section-card1,
  .future-section-card2,
  .future-section-card3 {
    margin: 0;
    padding: 0;
  }
  .map img {
    width: 21px;
  }

  .feature-section-card img {
    width: 179px !important;
  }
  .future-section-static-lines {
    right: -90%;
  }
  .testimonial-item-left {
    margin-left: 50%;
    transform: translate(-50%);
  }
  .teaching-section-static-line {
    display: none;
  }
  .testimonial-item-wrapper {
    display: inline-block;
  }
  .testimonial-item-left {
    height: 200px;
    margin-left: 50%;
    transform: translate(-50%);
    width: 200px;
    margin-bottom: 1rem;
  }
  .teaching-section-static-line {
    display: none;
  }
  #particles-js {
    height: 60%;
  }
  .footer-banner h2 {
    font-size: 30px;

    line-height: 40px;
  }
  .future-section-cards {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .future-section-cards div {
    width: 100%;
  }
  .upcoming-event-video-list,
  .upcoming-events-video,
  .upcoming-events-video,
  .upcoming-event-wrapper,
  .testimonial-item-wrapper {
    flex-direction: column;
  }

  /* .common-heading {
    font-size: 50px;
  } */

  .testimonial-item-left {
    flex: 0;
    height: 131px;
    width: 132px;
    border-radius: 100% !important;
  }
  .testimonial-item-right {
    flex: 0;
  }

  #testimonials-owl-carousel .item {
    padding: 50px 40px;
  }
}

@media (max-width: 990px) {
  .navbar-links {
    display: none;
  }
  .mobile-view-cards .mobile-view-card {
    width: 48%;
  }
  .teachers-hub-card .content {
    font-size: 15px;
  }
  /* .teachers-hub-card .content .description p {
    font-size: 12px;
    line-height: 22px;
  } */
  .map:nth-child(1) .description {
    left: -150px;
  }
  .map .description {
    left: -200px;
  }
  .teachers-hub-card .content > h2 {
    font-size: 17px;
    margin-bottom: 1rem;
  }
  .testimonial-item-left {
    height: 200px !important;

    width: 200px !important;
    margin-bottom: 1rem;
  }
  .why-kodeit-cards-wrapper {
    flex-direction: column;
  }
  .mobile-view-home-car {
    display: block;
  }
  .home-carousal-desktop {
    display: none;
  }
  .home-carousel-static-line {
    display: none;
  }
  /* .form-group {
    width: 50%;
  } */
  #contactForm {
    width: 100%;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .sidebar {
    right: -250px;
  }
}
@media (min-width: 991px) {
  .testimonial-item-left {
    height: 200px;
  }
}
@media (max-width: 1399px) {
  .testimonial-item-left {
    height: 300px;
    width: 200px;
  }
  .point1 .description {
    top: -457px;
    left: -11rem;
  }
  .point5 .description {
    top: -457px;
    right: -188px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-item-left {
    height: 220px;
    width: 300px;
  }
  .point4 .description {
    right: -130px;
  }

  .point1 .description {
    top: -457px;
    left: -9rem;
  }
  .point5 .description {
    top: -457px;
    right: -150px;
  }
  .upcoming-events-video,
  .upcoming-event-video-data {
    flex-direction: column;
  }
  /* .landing-page-container .section2 img {
    width: 12rem;
  } */
}

@media (min-width: 1399.98px) {
  .second-section-wrapper {
    gap: 4rem;
  }
  .testimonial-item-left {
    height: 400px;
    width: 400px;
  }
  .point1 .description {
    top: -457px;
    left: -11rem;
    .kodeit-numbers-left-left img {
      height: 307px;
      width: 354px;
    }
    .navbar-links-ul li a,
    .navbar-links-button a {
      font-size: 16px;
    }
    .second-section-left {
      height: 400px;
    }
    .second-section-left {
      width: 40%;
    }
    .kodeit-numbers-left-left img {
      height: 263px;
      width: 325px;
    }

    .book-section-text {
      margin-top: 3rem;
    }
    .book-section-text p {
      font-size: 50px;
    }
    .navbar-links-ul li {
      padding: 0 10px;
    }
    
    .feature-section-card img {
      width: 240px !important;
    }

    .feature-section-card p:first-child {
      font-size: 37px;
    }
    .feature-section-card p:last-child {
      font-size: 20px;
    }

    .teachers-hub-features-wrapper {
      justify-content: center;
    }
  }
}
@media (min-width: 1400px) {
  
  .book-section-text {
    margin-left: 7rem;
  }
}
@media (max-width: 375px) {
  .social-section-card {
    width: 100px;
    height: 100px;
  }
}
.phone-input {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 1rem;
  input {
    width: 100%;
  }
}
.mobile-code {
  input {
    width: 80%;
  }
}

.back h2,
.front h2 {
  font-size: 20px;
  color: #000;
  line-height: 30px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  border-radius: 0px;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-bottom: 10px solid #ff5500;
}
#modalContent h3 {
  color: #000;
}
#modalContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.loader-1 .loader-outter {
  position: absolute;
  border: 4px solid var(--clr-secondary);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: fixed;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  /* margin: 75px; */
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, 50%);
  display: inline-block;
  vertical-align: middle;
}
@-webkit-keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
 
@keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
 
@-webkit-keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
 
@keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
 
.loader-1 .loader-inner {
  position: absolute;
  border: 4px solid var(--clr-secondary);
 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}



.on-load .modal-content{margin: 12% auto;padding: 0px; position: relative; border: none;}

.on-load .close{    position: absolute;
  background: #ff5500;
  color: #fff;
  border: 0;
  height: 40px;
  width: 40px;
  font-weight: 500;
  right: 0rem;
}

.event-wp{padding-top: 3rem;align-items: stretch;
  width: 100%;
  height: 100%;
  margin-top: 0;}
.event-wp form{padding-top: 2rem;}