@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ------NAV BAR--------- */

nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background-color: #f4faff;
  padding: 28px 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

/* a:active {
  color: #03a4ee;} */

.logo {
  width: 204px;
  height: 44.2px;
}

.icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.icons i {
  font-size: 24px;
  color: #012f3c;
}

/* -------------SEARCH IN NAV BAR------------------ */

.openBtn {
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: #f4faff;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type="text"] {
  padding: 15px;
  font-size: 20.5px;
  border: none;
  float: left;
  width: 80%;
  background: #f4faff;
}

.overlay input[type="text"]:hover {
  background: #f1f1f1;
}

.overlay button {
  float: left;
  width: 20%;
  padding: 19px;
  background: #012f3c;
  font-size: 16px;
  border: none;
  cursor: pointer;
  color: #03a4ee;
}

.overlay button:hover {
  background: #03a4ee;
}

.overlay i {
  color: #f4faff;
}

/* ------------------Menu----------------- */

.hz-menu ul {
  font-size: 16px;
  display: flex;
  /* align-items: center; */
  flex-direction: row;
  gap: 38px;
  list-style-type: none;
  padding: 5px;
  margin: 0;
}

.hz-menu ul li a {
  position: relative;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  color: #012f3c;
  text-decoration: none;
}

.hz-menu ul li a:hover {
  color: #03a4ee;
}

.hz-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: 0.3s;
  border-radius: 10px;
  /* background-color: #f2f2fc; */
  z-index: -1;
  transform: scale(0.5, 0.5);
  opacity: 0;
}

.hz-menu ul li a:hover::after {
  transform: scale(1, 1);
  opacity: 1;
}

.bar-icon {
  display: none;
}

/* --------animation---------- */
/* Define the keyframes animation for bounce effect */
@keyframes bounceAnimation {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Apply the animation to the icon */
.animated-icon {
  transition: transform 0.3s ease-in-out;
}

/* Add bounce animation on hover */
.animated-icon:hover {
  animation: bounceAnimation 1s infinite;
}

/* --------animation---------- */

/* -----------NAV BAR DROPDOWN------------- */

.dropdown {
  display: flex;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

.dropdown__arrow img {
  margin-left: 5px;
  margin-bottom: 3px;
}

.dropbtn {
  display: flex;
  /* background-color: #04aa6d; */
  color: #012f3c;
  /* padding: 12px 16px; */
  font-size: 16px;
  border: none;
  font-weight: 600;
}

.dropdown-content {
  display: none !important;
  position: absolute;
  top: 90%;
  right: 0%;
  transform: translate(12%, 0%);
  background-color: #f4faff;
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

.dropdown-content a {
  color: #012f3c;
  padding: 5px 10px !important;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

.dropdown-content a:hover {
  background-color: #f2f2fc;
}

.dropdown:hover .dropdown-content {
  display: block !important;
  padding-top: 50px;
}

@media screen and (max-width: 1200px) {
  .logo {
    width: 180px;
    height: 36px;
  }

  .hz-menu ul {
    gap: 20px;
  }
  .hz-menu ul a {
    font-size: 14px !important;
  }

  .icons {
    gap: 28px;
  }

  .icons i {
    font-size: 20px;
  }
  .dropbtn {
    padding-top: 2px !important;
  }
}

@media screen and (max-width: 992px) {
  .bar-icon {
    display: block;
  }

  .hz-menu {
    display: none;
  }
  .hz-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    position: absolute;
    top: 95%;
    left: 00%;
    background: rgb(255, 255, 255);
    /* height: 40vh; */
    width: 70%;
    /* text-align: center; */
    padding: 20px 0 20px 110px;
    transition: all 0.3s ease;
  }
  .dropdown-content {
    background-color: #f4faff;
    min-width: 200px;
    /* transform: translate(10%, -60%); */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 5px !important;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 155px;
    height: 32px;
  }
  .icons {
    gap: 20px;
  }
  .icons i {
    font-size: 18px;
  }
  .hz-menu ul {
    gap: 20px;
    top: 100%;
  }
  .hz-menu ul a {
    font-size: 14px !important;
  }
  .dropdown-content a {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  nav {
    padding: 28px 50px;
  }
  .logo {
    width: 105px;
    height: 25px;
  }

  .hz-menu ul {
    gap: 15px;
  }
  .hz-menu ul a {
    font-size: 12px !important;
  }
  .dropdown-content a {
    font-size: 12px;
  }
  .dropdown__arrow img {
    margin-left: 5px;
    margin-bottom: 10px;
  }
  .hz-menu ul {
    padding: 20px 0 20px 50px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    width: 50%;
  }
  .dropdown-content {
    min-width: 125px;
  }
}

@media screen and (max-width: 350px) {
  .line {
    display: none;
  }
  .icons {
    gap: 15px;
  }
  .icons i {
    font-size: 15px;
  }
  .logo {
    width: 80px;
    height: 20px;
  }
  .dropdown-content {
    top: 250%;
    right: 0%;
    transform: translate(-20%, 0%);
  }
}

/* ---------------------VIDEO hero-section------------------ */

video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(80%);
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #f4faff;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caption h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 5px;
}

.caption h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}

.caption .text {
  margin: 20px 20px 0;
}

.small-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  padding-bottom: 15px;
}

.line {
  border: 1px solid #f4faff;
  width: 124px;
  height: 1px;
  margin: 0 40px 10px;
}

/* ----------ENROLL NOW BUTTON / hero-section---------- */

.cta {
  position: relative;
  margin: auto;
  padding: 10px 30px 5px;
  transition: all 0.2s ease;
  border: none;
  background: none;
}

.cta:before {
  content: "";
  position: absolute;
  top: -5%;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #03a4ee;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  /* letter-spacing: 0.05em; */
  color: #faf4f4f4;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  margin-bottom: 3px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #faf4f4f4;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #03a4ee;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* ----------ENROLL NOW BUTTON / hero-section---------- */

@media screen and (max-width: 1200px) {
  .caption {
    padding: 10px;
  }

  .caption h1 {
    font-size: 37px;
  }
  .caption h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .caption {
    padding: 0px;
  }
  .caption .text {
    margin: 20px 0px 0;
  }
  .line {
    margin: 0 20px;
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .caption {
    padding: 5px;
  }

  .caption h1 {
    font-size: 25px;
    margin-bottom: 3px;
  }
  .caption h3 {
    font-size: 14px;
  }

  .caption .text {
    margin: 10px 10px 0;
  }
  .line {
    width: 70px;
    margin: 0 20px;
  }
  .cta {
    padding: 8px 30px 8px;
  }
  .cta:before {
    top: -4%;
    left: 0px;
    border-radius: 45px;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 600px) {
  video {
    height: 70vh;
  }
  .caption {
    padding: 5px;
    top: 40%;
  }

  .caption h1 {
    font-size: 15px;
    margin-bottom: 2px;
  }
  .caption h3 {
    font-size: 8px;
  }

  .caption .text {
    margin: 5px 5px 0;
  }

  .line {
    margin: 0px 10px 7px;
    width: 25px;
    border: 0.1px solid #f4faff;
  }
  .cta {
    padding: 4px 9px;
  }
  .cta:before {
    border-radius: 50px;
    height: 25px;
    top: 15%;
    width: 25px;
  }
  .cta span {
    font-size: 10px;
  }
  .cta svg {
    margin-bottom: 0;
    margin-left: 0;
  }
  .small-text {
    padding-bottom: 0px;
  }
}
/* ----------COURSES SECTION---------- */

#courses {
  padding: 100px;
  position: relative;
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

h2 {
  font-size: 37px !important;
  text-align: center;
}

.courses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  padding: 100px;
  color: #03a4ee;
  gap: 151px;
}

.course-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-item a {
  color: #03a4ee;
  text-align: center;
  text-decoration: none;
}

.course-title {
  padding-top: 10%;
}

@media screen and (max-width: 1200px) {
  #courses {
    padding: 70px 110px;
  }
  h2 {
    font-size: 30px !important;
  }
  .courses {
    padding: 50px 50px;
    gap: 100px;
  }

  #courses img,
  .top-left,
  .bottom-right {
    width: 110px;
    height: 100px;
  }
  .course-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .courses {
    padding: 30px;
    gap: 60px;
  }

  #courses img,
  .top-left,
  .bottom-right {
    width: 80px;
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
  #courses {
    padding: 50px 110px;
  }
  h2 {
    font-size: 20px !important;
  }
  .courses {
    padding: 25px;
    gap: 50px;
  }

  .courses a {
    font-size: 10px;
  }

  #courses img,
  .top-left,
  .bottom-right {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 600px) {
  #courses {
    padding: 50px;
  }
  .courses {
    grid-template-columns: 2fr 2fr;
  }
  .course-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
/* ----------COURSES SECTION---------- */

/* ----------WHO WE ARE---------- */

.who-we-are h4 {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.who-we-are {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 00px; */
  background: #f4faff;
}

.who-we-are .left-container {
  padding: 100px 0 50px 110px;
  float: left;
  text-align: left;
  max-width: 520px;
}

.who-we-are .left-container h2 {
  text-align: left;
  font-size: 37px !important;
}

.who-we-are .left-container p {
  padding-top: 20px;
  /* padding-bottom: 30px; */
  line-height: 200%;
}

.who-we-are .right-container {
  width: 880px;
  height: 625px;
}

.who-we-are .right-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
}

.button {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  border: none;
  border-radius: 50px;
  transition: 0.5s;
  background: #012f3c;
  color: #f4faff;
  /* box-shadow: 0 0 5px #c5c3c3; */
  /* box-shadow: 0 0 5px #363636, inset 0 0 5px #363636; */
}

.button:hover {
  animation: a 0.5s 1 linear;
}

@keyframes a {
  0% {
    transform: scale(0.7, 1.3);
  }

  25% {
    transform: scale(1.3, 0.7);
  }

  50% {
    transform: scale(0.7, 1.3);
  }

  75% {
    transform: scale(1.3, 0.7);
  }

  100% {
    transform: scale(1, 1);
  }
}

.btn-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -30px;
}

/* Define the keyframes animation for shake effect */
@keyframes shakeAnimation {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Apply the animation to the icon */
.animated-nanro {
  transition: transform 0.3s ease-in-out;
}

/* Add shake animation on hover */
.animated-nanro:hover {
  animation: shakeAnimation 0.5s infinite;
}

.hands-down-icon img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .who-we-are h4 {
    font-size: 14px;
  }
  .who-we-are .left-container {
    padding: 70px 0 50px 110px;
    max-width: 450px;
  }
  .who-we-are .left-container h2 {
    font-size: 30px !important;
  }
  .who-we-are .right-container {
    width: 880px;
    height: 450px;
  }
  .who-we-are .left-container p {
    font-size: 12px;
  }
  .button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .hands-down-icon {
    width: 80px;
    height: 100px;
  }
}

@media screen and (max-width: 768px) {
  .who-we-are {
    gap: 20px;
  }
  .who-we-are h4 {
    font-size: 12px;
  }
  .who-we-are .left-container {
    padding: 50px 0 50px 110px;
    max-width: 300px;
  }
  .who-we-are .left-container h2 {
    font-size: 20px !important;
  }

  .who-we-are .right-container {
    width: 880px;
    height: 535px;
  }

  .button {
    padding: 7px 15px;
    font-size: 10px;
  }

  .hands-down-icon {
    width: 40px;
    height: 60px;
  }
  .who-we-are .btn-icon {
    margin-top: 0px;
  }
}

@media screen and (max-width: 600px) {
  .who-we-are .right-container {
    display: none;
  }
  .who-we-are .left-container {
    padding: 50px;
    max-width: 100%;
  }

  .who-we-are h4 {
    text-align: center;
  }

  .who-we-are .left-container p {
    font-size: 10px;
    padding-top: 20px;
    text-align: justify;
  }
  .who-we-are h4 {
    font-size: 10px;
  }
  .who-we-are .left-container h2 {
    font-size: 16px !important;
    text-align: center;
  }
  .button {
    padding: 5px 10px;
    font-size: 8px;
  }
}

/* ----------WHO WE ARE---------- */

/* ----------products---------- */

#products {
  padding: 100px 110px;
  position: relative;
}
#products h4 {
  font-size: 16px;
  font-weight: 600;
}
#products p {
  font-size: 16px;
}

.slider {
  margin-bottom: 30px;
  position: relative;
}
.slider .owl-item.active.center .slider-card {
  transform: scale(1.15);
  opacity: 1;
  background: white; /* fallback for old browsers */
  /* background: -webkit-linear-gradient(to bottom, #ff5e62, white);  */
  /* background: linear-gradient(to bottom, #ff5e62, white);  */
  color: #000000;
}
#products .slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 50px 15px 90px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px -10px rgb(0 0 0 / 10%);
  transform: scale(0.9);
  opacity: 1;
  transition: all 0.3s;
}
.slider-card img {
  border-radius: 10px 10px 0px 0px;
}

#products .slider-card img {
  aspect-ratio: 576 / 500;
}

/* .owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}
.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
} */

.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  position: relative;
  /* margin-top: 0px; */
}
.slider {
  margin-bottom: 30px;
  position: relative;
  .owl-item.active {
    &.center {
      .slider-card {
        transform: scale(1.15);
        opacity: 1;
      }
    }
  }
}

.owl-nav {
  .owl-prev {
    position: absolute;
    top: calc(50% - 50px);
    left: 0;
    opacity: 0.7;
    font-size: 30px !important;
    z-index: 1;
  }
  .owl-next {
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
    opacity: 0.7;
    font-size: 30px !important;
    z-index: 1;
  }
}
@media screen and (max-width: 1200px) {
  #products h2 {
    font-size: 30px;
  }
  #products h4 {
    font-size: 14px;
  }
  #products p {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  #products {
    padding: 50px 0;
  }
  #products h2 {
    font-size: 20px;
  }
  #products h4 {
    font-size: 12px;
  }
  #products p {
    font-size: 10px;
    /* padding: 0 15px; */
  }
  .view-all {
    margin-top: -50px;
  }
  .slider {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  #products h2 {
    font-size: 16px;
  }
  #products h4 {
    font-size: 10px;
  }

  #products .slider-card {
    margin: 50px 50px;
  }

  .owl-carousel {
    padding: 0;
  }
}

/* ----------products---------- */

/* ----------WHY PlayBotics Lab---------- */

.why-nan-robotics h4 {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.why-nan-robotics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 00px; */
  background: #f4faff;
}

.why-nan-robotics .right-container {
  padding: 100px 110px 0 0;
  float: right;
  text-align: left;
  width: 600px;
}

.why-nan-robotics .right-container h2 {
  text-align: left;
  font-size: 37px !important;
}

.why-nan-robotics .right-container p {
  padding-top: 20px;
  /* padding-bottom: 30px; */
  line-height: 200%;
}

.why-nan-robotics .left-container {
  width: 840px;
  height: 586px;
  float: left;
}

.why-nan-robotics .left-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 0, 100% 0, 60% 100%, 0% 100%);
}

.why-nan-robotics .btn-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -50px;
  float: right;
}

.hands-left-icon img {
  width: 100%;
  height: 100%;
}

.elon-text {
  background-color: #03a4ee;
  color: #f4faff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1200px) {
  .why-nan-robotics h4 {
    font-size: 14px;
  }
  .why-nan-robotics .right-container {
    padding: 70px 110px 0 0px;
  }
  .why-nan-robotics .right-container p {
    font-size: 12px;
  }
  .why-nan-robotics .right-container h2 {
    font-size: 30px !important;
  }
  .why-nan-robotics .left-container {
    width: 600px !important;
    height: 470px !important;
  }
  .why-nan-robotics .btn-icon {
    margin-top: -30px;
  }
  .hands-left-icon {
    width: 80px;
    height: 100px;
  }
}

@media screen and (max-width: 992px) {
  .why-nan-robotics .left-container {
    width: 550px !important;
  }
}
@media screen and (max-width: 768px) {
  .why-nan-robotics h4 {
    font-size: 12px;
  }
  .why-nan-robotics .right-container {
    padding: 50px 110px 0 0px;
    width: 490px;
  }
  .why-nan-robotics .right-container p {
    font-size: 10px;
  }
  .why-nan-robotics .right-container h2 {
    font-size: 20px !important;
  }
  .why-nan-robotics .left-container {
    width: 500px !important;
    height: 430px !important;
  }
  .why-nan-robotics .btn-icon {
    margin-top: 0px;
  }
  .hands-left-icon {
    width: 40px !important;
    height: 60px !important;
  }
}

@media screen and (max-width: 600px) {
  .why-nan-robotics h4 {
    font-size: 10px;
    text-align: center;
  }

  .why-nan-robotics .right-container h2 {
    font-size: 16px !important;
    text-align: center;
  }
  .why-nan-robotics .left-container {
    display: none;
  }
  .why-nan-robotics .right-container {
    padding: 50px 50px 0;
    width: 100%;
  }
  .why-nan-robotics .right-container p {
    text-align: justify;
    padding-top: 20px;
  }
  .why-nan-robotics .hands-left-icon {
    display: none;
  }
}

/* ----------WHY PlayBotics Lab---------- */

/* ----------ENROL NOW---------- */

.enroll-now {
  padding: 200px 110px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}

.enroll-now .left-container .enroll-logo {
  width: 350px;
  height: 76px;
}

.enroll-now p {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #012f3c;
  margin-top: -5px;
}

.enroll-now .right-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.enroll-now button {
  background: #03a4ee;
  color: #f4faff;
  box-shadow: 0 0;
  /* position: relative; */
  z-index: 997;
}

.left {
  position: absolute;
  left: 0%;
  bottom: 20%;
}

.right {
  position: absolute;
  right: 0%;
  bottom: 20%;
}

.enroll-now img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .enroll-now .left-container .enroll-logo {
    width: 300px;
    height: 70px;
  }
  .enroll-now h4 {
    font-size: 20px;
  }

  .enroll-now p {
    font-size: 14px;
  }
  .right,
  .left {
    width: 80px;
    height: 100px;
  }
}

@media screen and (max-width: 992px) {
  .enroll-now .left-container .enroll-logo {
    width: 250px;
    height: 50px;
  }

  /* .right,
  .left {
    width: 40px;
    height: 50px;
    bottom: 0 !important;
  } */
}

@media screen and (max-width: 768px) {
  .enroll-now {
    padding: 50px 110px;
    gap: 10px;
  }
  .enroll-now .left-container .enroll-logo {
    width: 200px;
    height: 40px;
  }
  .enroll-now p {
    margin-bottom: 5px;
  }
  .enroll-now h1 {
    font-size: 20px;
  }
  .enroll-now h4 {
    font-size: 14px;
  }
  .enroll-now p {
    font-size: 10px;
  }

  .left {
    left: 10%;
  }

  .right {
    right: 10%;
  }
  .right,
  .left {
    width: 40px;
    height: 50px;
    bottom: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .enroll-now {
    padding: 50px;
  }
  .enroll-now .left-container .enroll-logo {
    width: 100px;
    height: 20px;
  }
  .enroll-now p {
    margin-bottom: 5px;
  }
  .enroll-now h1 {
    font-size: 16px;
  }
  .enroll-now h4 {
    font-size: 10px;
  }
}
/* ----------ENROL NOW---------- */

/* ----------how it works---------- */

.how-it-works h2,
.how-it-works h4 {
  text-align: left;
}
.how-it-works h4 {
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.how-it-works {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 00px; */
  background: #f4faff;
  position: relative;
}

.how-it-works .left-container {
  padding: 100px 0 50px 110px;
  float: left;
  text-align: left;
  width: 520px;
}

.how-it-works .left-container p {
  padding-top: 20px;
  /* padding-bottom: 30px; */
  line-height: 200%;
}

.how-it-works .right-container {
  width: 713px;
  height: 400px;
  background: white;
  margin: 100px 0;
}

.how-it-works .infographic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 65px 110px;
  animation: updown 5s infinite alternate;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(-5%);
  }
}

@media screen and (max-width: 1200px) {
  .how-it-works .left-container {
    padding: 70px 0 50px 110px;
  }

  .how-it-works .left-container p {
    font-size: 12px;
  }

  .how-it-works .right-container {
    /* width: 550px;
    height: 350px; */
    background: white;
    margin: 80px 0;
  }
  .how-it-works .infographic {
    padding: 65px 110px 65px;
  }
}

@media screen and (max-width: 992px) {
  .how-it-works .right-container {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .how-it-works .right-container {
    background: #f4faff;
    height: 150px;
  }
  .how-it-works .infographic {
    padding: 0 110px 0 0;
  }
  .how-it-works h4 {
    font-size: 12px;
    font-weight: 600;
  }
  .how-it-works .left-container {
    padding: 50px 0 50px 110px;
  }
  .how-it-works .left-container p {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works h2,
  .how-it-works h4 {
    text-align: center;
  }
  .how-it-works h4 {
    font-size: 10px;
  }
  .how-it-works .right-container {
    display: none;
  }
  .how-it-works .left-container {
    padding: 50px;
    width: 100%;
  }
  .how-it-works .left-container p {
    text-align: justify;
    padding-top: 20px;
  }
}

/* ----------how it works---------- */

/* ----------testimonials---------- */

#testimonials {
  background-image: url("testimonials-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 110px;
  position: relative;
}

/* .slider {
  padding-bottom: 100px;
  position: relative;
} */
#testimonials .slider .owl-item.active.center .slider-card {
  transform: scale(1.15);
  opacity: 1;
  color: #012f3c;
}
/* #testimonials .slider-card {
  background: #f4faff;
  padding: 0px;
  margin: 50px 25px;
  border-radius: 10px;
  box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
  transform: scale(0.9);
  opacity: 0.7;
  transition: all 0.3s;
} */

#testimonials .image-container {
  /* height: 250px;
  width: 400px; */
  position: relative;
}
#testimonials .image-container .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 576 / 400;
}

#title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 52px 0  0 0; */
}

#title .circle {
  height: 150px;
  width: 150px;
  border-radius: 150px;
  background-color: #012f3c;
  position: relative;
}

#title .quote {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 28%;
  right: 28%;
}

.slider-card .quote-icon {
  position: absolute;
  top: 84%;
  left: 5%;
}
.slider-card .circle {
  height: 70px;
  width: 70px;
  border-radius: 70px;
  background-color: #012f3c;
  position: relative;
}

.quote {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 23%;
  right: 22%;
}

.quote img {
  height: 100%;
  width: 100%;
}

.slider-card img {
  border-radius: 10px 10px 0px 0px;
}

#testimonials .text {
  padding: 20px;
  line-height: 130%;
}

#testimonials p {
  font-size: 16px;
}

#testimonials h1 {
  font-size: 37px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  color: #f4faff;
}

#testimonials .slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 50px 15px 90px 15px;
  border-radius: 10px;
  box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.3s;
}

#testimonials .owl-nav .owl-prev {
  /* position: absolute;
  top: calc(50% - 100px);
  left: 0px;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1; */
  color: #f4faff;
}
#testimonials .owl-nav .owl-next {
  /* position: absolute;
  top: calc(50% - 100px);
  right: 0px;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1; */
  color: #f4faff;
}
@media screen and (max-width: 1200px) {
  .slider-card .quote-icon {
    position: absolute;
    top: 75%;
    left: 5%;
  }
}

@media screen and (max-width: 992px) {
  /* .slider-card {
    margin: 40px 10px;
  } */
  /* #testimonials .image-container {
    height: 150px;
    width: 300px;
  } */
  #title .circle {
    height: 100px;
    width: 100px;
    border-radius: 100px;
  }
  #title .quote {
    height: 50px;
    width: 50px;
  }
  .slider-card .circle {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }
  .quote {
    height: 30px;
    width: 30px;
  }
  #testimonials h1 {
    font-size: 30px;
  }
  .slider-card .quote-icon {
    position: absolute;
    top: 90%;
    left: 5%;
  }
}

@media screen and (max-width: 768px) {
  #testimonials {
    padding: 50px 0;
  }
  /* .slider {
    padding-bottom: 50px;
  } */
  /* .slider-card {
    margin: 20px 5px;
  } */
  /* #testimonials .image-container {
    height: 90px;
    width: 200px;
  } */
  #title .circle {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }
  #title .quote {
    height: 25px;
    width: 25px;
  }
  .slider-card .circle {
    height: 25px;
    width: 25px;
    border-radius: 25px;
  }
  .quote {
    height: 15px;
    width: 15px;
  }
  #testimonials h1 {
    font-size: 20px;
  }
  #testimonials p {
    font-size: 10px;
  }
  #testimonials .text {
    padding: 0px 20px 5px;
    line-height: 100%;
    margin-top: -10px;
  }
  /* #testimonials .mb-4 {
    margin-bottom: 0.5rem !important;
  }
  #testimonials .pt-5 {
    padding-top: 0.5rem !important;
  } */
}
@media screen and (max-width: 600px) {
  #testimonials h1 {
    font-size: 16px;
  }

  #testimonials {
    padding: 50px 0 50px 0px;
  }
  #testimonials .slider-card {
    margin: 50px 50px 90px;
  }
  .slider-card .quote-icon {
    position: absolute;
    top: 93%;
    left: 5%;
  }
}

/* ----------testimonials---------- */

/* ----------PARTNER/ENROL---------- */
.partner-enroll h3 {
  font-weight: 600;
}

.partner-enroll p {
  font-weight: 600;
  font-size: 16px;
  /* text-align: center; */
  color: #012f3c;
}

.partner-enroll {
  /* padding: 100px 110px; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  background: #f4faff;
}

.partner-enroll .right-container {
  /* width: 680px; */
  height: 350px;
  background: white;
  /* margin: 100px 0; */
}

.partner-enroll .right-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-enroll .left-container {
  /* text-align: left; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  padding-left: 5%;
  /* position: relative; */
  width: 650px;
}

.partner-enroll .button {
  background: #03a4ee;
  color: #f4faff;
  box-shadow: 0 0;
}

.partner-enroll .hands-right-icon {
  position: absolute;
  left: 0;
  top: 50%;
}

.partner-enroll .hands-right-icon img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .partner-enroll p {
    font-size: 14px;
  }
  .partner-enroll h1 {
    font-size: 30px;
  }
  .partner-enroll .right-container {
    /* width: 500px; */
    height: 350px;
  }
  .partner-enroll .left-container {
    padding: 50px 110px;
    padding-bottom: 50px;
  }
  .hands-right-icon {
    width: 80px;
    height: 100px;
  }
}
@media screen and (max-width: 992px) {
  .partner-enroll {
    /* gap: 10%; */
  }
  .partner-enroll p {
    font-size: 14px;
  }
  .partner-enroll .right-container {
    /* height: 300px; */
  }
  .partner-enroll .left-container {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .partner-enroll h1 {
    font-size: 20px;
  }
  .partner-enroll p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .hands-right-icon {
    width: 40px;
    height: 50px;
  }

  .partner-enroll .right-container {
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .partner-enroll .right-container {
    width: 200px;
    height: 100px;
  }
  .partner-enroll h1 {
    font-size: 16px;
  }
  .partner-enroll .left-container {
    padding: 50px;
  }
}

/* ----------PARTNER/ENROL---------- */

/* ----------BLOGS---------- */
#blogs {
  padding: 110px;
  position: relative;
  /* background: #000; */
}

.blog-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 0px 50px 0px;
  color: #03a4ee;
}

#blogs .cards {
  width: 350px;
  /* height: 460px; */
  border-radius: 10px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

#blogs .image-container {
  width: 350px;
  height: 250px;
}
#blogs .image-container img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  /* aspect-ratio: 800 / 450; */
}

.blog-title {
  padding-top: 35px;
}

.blog-text {
  padding-top: 5px;
}

#blogs a {
  color: #012f3c;
  text-align: left;
  text-decoration: none;
  padding: 10px 0px;
}

#blogs h4 {
  font-size: 21px;
  font-weight: 600;
}

#blogs .view-all {
  margin-top: 0px;
}

@media screen and (max-width: 1200px) {
  #blogs {
    padding: 70px 110px;
  }
  .blog-container {
    padding: 50px 0px 30px 0px;
  }
  #blogs .cards {
    width: 250px;
    /* height: 360px; */
  }
  #blogs .image-container {
    width: 250px;
    height: 150px;
  }
  .blog-title {
    padding-top: 20px;
  }
  #blogs h4 {
    font-size: 18px;
  }
  .blog-text,
  .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  #blogs .cards {
    width: 200px;
  }
  #blogs .image-container {
    width: 200px;
  }

  #blogs h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #blogs {
    padding: 50px 110px;
  }
  .blog-container {
    padding: 40px 0px 0px 0px;
  }
  #blogs .cards {
    width: 150px;
    height: 250px;
  }
  #blogs .image-container {
    width: 150px;
    height: 100px;
  }
  .blog-title {
    padding-top: 10px;
  }
  #blogs h4 {
    font-size: 12px;
  }
  .blog-text,
  .date {
    font-size: 10px;
  }
  #blogs .view-all {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  #blogs {
    padding: 50px;
  }
  .blog-container {
    padding: 20px 0px 0px 0px;
  }
  #blogs .image-container {
    width: 130px;
    height: 100px;
  }
  #third-blog {
    display: none;
  }

  #blogs h4 {
    font-size: 10px;
  }
}
@media screen and (max-width: 375px) {
  #second-blog {
    display: none;
  }
  #blogs .image-container,
  #blogs .cards {
    width: 100%;
  }
}
/* ----------BLOGS---------- */

/* ----------FOOTER---------- */
#footer {
  display: flex;
  align-items: flex-end;
  background-image: url("footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer {
  color: #012f3c;
  font-size: 16px;
}

.row {
  padding: 100px 110px;
  margin-right: 0 !important;
}

.row.primary {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  align-items: stretch;
  gap: 78px;
  position: relative;
}

.column {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2em;
  min-height: 15em;
}
#footer h3 {
  width: 100%;
  text-align: left;
  color: #012f3c;
  font-size: 21px;
  /* white-space: nowrap; */
  font-weight: 600;
}
#footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 24px 0 0 0;
}
#footer .text {
  padding: 0 20px;
  line-height: 0%;
}
#footer li:not(:first-child) {
  margin-top: 0.8em;
}
#footer ul li a {
  color: #012f3c;
  text-decoration: none;
}
#footer ul li a:hover {
  color: #2a8ded;
}
.about p {
  text-align: justify;
  /* line-height: 2; */
  margin: 24px 0;
}

div.social {
  display: flex;
  justify-content: space-around;
  font-size: 1.8em;
  flex-direction: row;
  /* margin-top: 0.5em; */
}
.social i {
  color: #012f3c;
}

.copyright {
  margin: 20px 110px;
  padding: 10px 0 !important;
  border-top: 1px solid #012f3c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}

.copyright:hover {
  color: #27bcda;
}

.copyright p {
  margin: 0;
}

.highlight {
  color: #3a62b2;
}

.location,
.phone,
.mail {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.robot {
  position: absolute;
  bottom: 0%;
  right: 0;
  height: 265px;
  width: 120px !important;
  padding-right: 0 !important;
  filter: brightness(80%);
  overflow: hidden;
}

.robot img {
  width: 100%;
  height: 100%;
}

#progress {
  position: fixed;
  bottom: 2px;
  right: 0px;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #f4faff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #012f3c;
}

@media screen and (max-width: 1200px) {
  footer {
    font-size: 14px;
  }
  .row.primary {
    grid-template-columns: 3fr 1.5fr 1fr 1fr;
    gap: 50px;
  }

  #footer h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  footer {
    font-size: 12px;
  }
  .row.primary {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
  .row {
    padding: 70px 110px;
  }
  #footer h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  #footer ul {
    margin: 20px 0 0 0;
  }

  div.social {
    font-size: 2em;
  }
  .copyright {
    font-size: 0.5em;
  }
}

@media screen and (max-width: 850px) {
  .row.primary {
    grid-template-columns: 2fr 1fr !important;
  }
  .row {
    padding: 50px 110px 0;
  }
  .robot {
    position: absolute;
    bottom: 0%;
    right: 0;
    height: 200px;
    width: 100px !important;
    padding-right: 0 !important;
    filter: brightness(80%);
    overflow: hidden;
  }
}

@media screen and (max-width: 600px) {
  .row.primary {
    grid-template-columns: 1fr !important;
  }
  .row {
    padding: 50px;
  }
  .copyright {
    margin: 0 50px;
  }
  #footer .column {
    min-height: 0;
  }
  #footer ul {
    margin: 10px 0 0 0;
  }
}
/* ----------FOOTER---------- */
