@import url('https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet');

*{
    font-family: "Andika", sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

:root {
  /* --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #2b72fb;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */

    /* --bg1: #94D1BE;
    --bg2: #DAF0EE;
    --text-bg1: #9DB5B2;
    --text-title: #94D1BE;
    --main-bg: #FFFFFF; */

    --dark-bg: #94D1BE;
    --light-bg: #DAF0EE;
    --text-color: #6F584B;
    --text-dark-teal: #345349;
    --white: #fff;
    --black: #000;
}

body {
  font-family: inherit;
  background-color: var(--white);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: transparent;
  border: 2px solid var(--text-color);
  color: var(--black);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--white);
  }

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.logo{
    position: relative;
    /* top: 0px; */
    right: 40px;
    background-image: url('/Asset/images/blob.svg');
    width: 200px;
    height: 200px;
    z-index: 999;
}

.logo img{
  width: 100px;
  height: 100px;
    position: relative;
    top: 60px;
    left: 50px;
}

@media (max-width: 500px) {
    .logo{
        width: 200px;
        height: 200px;
        top: 5px;
        right: 50px;
    }
    .logo img{
        width: 100px;
        height: 100px;
          position: relative;
          top: 60px;
          left: 50px;
      }
}
@media only screen and (min-width: 501px) and (max-width: 1100px) {
    .logo{
        width: 200px;
        height: 200px;
        top: 5px;
        right: 20px;
    }
    .logo img{
        width: 100px;
        height: 100px;
          position: relative;
          top: 60px;
          left: 50px;
      }
}
#nav-menu {
  border-bottom: #eeee;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1600px; */
  width: 100%;
  margin: 0 auto;
  column-gap: 0rem;
  height: 90px;
  padding: 3rem 2rem;
  background-color: var(--dark-bg);
}

.menu {
  position: relative;
  background: var(----dark-bg);
  color: #6F584B;
  z-index: 999;
}

@media only screen and (max-width: 500px) {
    .menu{
        background-color: var(--dark-bg);
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .menu{
        background-color: var(--dark-bg);
    }
}
.menu-bar li:first-child .dropdown {
  flex-direction: initial;
}

.menu-bar li:first-child ul:nth-child(1) {
  border-right: var(--border);
}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--text-dark-teal);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.nav-start{
    justify-content: space-between;
    width: 100%;
    z-index: 999;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--text-dark-teal);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 50%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

.search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 1100px) {
  #hamburger {
    display: block;
  }

  .container {
    padding: 1.2rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}

@media (max-width: 600px) {
  .right-container {
    display: none;
  }
}

footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    color: var(--text-dark-teal);
    background-color: #94D1BE;
}

@media (max-width: 500px) {
    footer{
        font-size: 10px;
        flex-direction: column;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1100px) {
    footer{
        font-size: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}

footer .left-section{
    width: 30%;
    display: flex;
    justify-content: space-evenly;
}

@media (max-width: 500px) {
    footer .left-section{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1100px) {
    footer .left-section{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

footer .right-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
}

footer .right-section .social-icons{
    margin-left: 4px;
}

footer .right-section .social-icons a{
    scale: 1.5;
    margin-right: 10px;
}

.home{
    display: flex;
    align-items: center;
    flex-direction: column;
    /* background-color: #94D1BE; */
    /* width: 95%; */
    /* bottom: 20px; */
    /* height: 90vh; */
    /* background-image: url('/Asset/images/sdf1.gif'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--text-color);
}

.home .image {
    position: absolute;
    width: 250px;
    height: 250px;
}

/* Specify fixed positions for each image */
.home .image:nth-child(1) {
    top: 40%;
    left: 5%;
}

.home .image:nth-child(2) {
    top: 10%;
    left: 85%;
}

.home .content{
    width: 100%;
    padding: 0 20%;
    background-color: var(--dark-bg);
    text-align: center;
}

.home .content h3{
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home .content p{
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.8;
    padding:1rem 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 500px) {
    .home .content h3{
        font-size: 2rem;
        text-align: center;
    }
    .home .content p{
        font-size: 1rem;
        text-align: center;
    }
    .home{
        margin: 0;
    }
    .home .image {
        display: none;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .home .content h3{
        font-size: 4rem;
    }
    .home .content p{
        font-size: 2rem;
    }
    .home .image {
        width: 200px;
        height: 200px;
    }

    .home .image:nth-child(1) {
        top: 100%;
        left: 0%;
    }
    
    .home .image:nth-child(2) {
        top: 40%;
        left: 75%;
    }
}


.home-video .demo-video{
    border: 2px solid #000;
    margin: 50px auto;
    width: 60%;
    height: 500px;
}

.home-video .demo-video iframe{
    width: 100%;
    height: 500px;
}

@media only screen and (max-width: 500px) {
    .home-video .demo-video{
        width: 90%;
        height: 165px;
    }
    
    .home-video .demo-video iframe{
        width: 100%;
        height: 165px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .home-video .demo-video{
        width: 80%;
        height: 350px;
    }
    
    .home-video .demo-video iframe{
        width: 100%;
        height: 350px;
    }
}

.pre-program{
    background-image: url('/Asset/images/learn-to-code.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    height: 250px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pre-program .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.474);
}

.pre-program .content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.pre-program .content h3{
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase !important;
}

@media only screen and (max-width: 500px) {
    .pre-program{
        font-size: 10px;
        height: 100px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .pre-program{
        font-size: 20px;
        height: 150px;
    }
}

.features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features .title{
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    /* margin: 20px; */
    text-align: center;
    width: 100%;
    background-color: var(--dark-bg);
}

.features .unique-data{
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
    background-color: var(--dark-bg);
}

.features .feature-data-image{
    display: flex;
    justify-content: center;
    /* background-color: #94D1BE; */
}

.features .feature-data-image img{
    width: 100%;
}

.features .image {
    position: absolute;
    width: 250px;
    height: 250px;
    top: 223%;
    left: 80%;
}

@media only screen and (max-width: 500px) {
    .features .unique-data{
        width: 100%;
        padding: 10px;
    }
    .features .title{
        font-size: 40px;
    }
    .features .image {
        width: 70px;
        height: 70px;
        top: 244%;
        left: 60%;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .features .unique-data{
        width: 100%;
        padding: 10px;
    }
    .features .title{
        font-size: 40px;
    }
    .features .image {
        width: 100px;
        height: 100px;
        top: 318%;
        left: 80%;
    }
}

.programs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 50px;
}

.programs .title{
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    /* margin: 20px; */
    text-align: center;
}

.programs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

.programs .box-container .box{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* border: 2px solid var(--medium-grey); */
    border-radius: 10px;
    padding: 10px;
    /* box-shadow: 1px 1px 10px 4px rgba(117, 117, 117, 0.5), inset 5px 5px 200px 50px var(--bg2); */
    background-color: var(--light-bg);
}

.programs .box-container .box:hover img{
    scale: 1.1;
}

.programs .box-container .box img{
    width: 300px;
    height: 300px;
    margin: 10px 0;
}

.programs .box-container .box h2{
    margin: 10px 0;
}

.programs .box-container .box p{
    margin: 10px 0;
}

.programs .box-container .box a{
    margin-top: 20px;
    font-size: 25px;
}

@media only screen and (max-width: 500px) {
    .programs .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 1rem;
    }
    .programs .box-container .box img{
        width: 200px;
        height: 200px;
    }
    .programs .title{
        font-size: 40px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .programs .box-container{
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1rem;
    }
    .programs .box-container .box img{
        width: 300px;
        height: 300px;
    }
    .programs .title{
        font-size: 40px;
    }
}

.contact-us{
    text-align: center;
}

.contact-us .title{
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    background-color: var(--dark-bg);
    margin-top: -10px;
}

.contact-us .contact-data-main{
    background-color: var(--dark-bg);
    height: fit-content;
}

.contact-us .contact-data{
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg);
}

.contact-us .contact-data img{
    width: 700px;
}

.contact-us .contact-data .message-button{
    /* width: 50%;
    height: 50px;
    margin-top: 100px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-us .contact-data .message-button h3{
    width: 50%;
}

.contact-us .contact-data .message-button .click-here{
    border: 2px solid var(--text-color);
    border-radius: 20px;
    color: var(--black);
    font-weight: 900;
    background-color: var(--dark-bg);
    padding: 20px;
    width: fit-content;
    margin: 20px;
    /* top: 65%;
    position: relative; */
}

.contact-us .contact-data .message-button .click-here:hover{
    color: var(--white);
    background-color: var(--text-color);
}

.contact-us .image{
    position: absolute;
    width: 200px;
    height: 200px;
}

.contact-us .image:nth-child(1){
    top: 580%;
    left: 85%;
}
.contact-us .image:nth-child(2){
    top: 685%;
    left: 73%;
}
.contact-us .image:nth-child(3){
    top: 605%;
    left: 10%;
}
.contact-us .image:nth-child(4){
    top: 670%;
    left: 5%;
}
.contact-us .image:nth-child(5){
    width: 230px;
    height: 230px;
    top: 650%;
    left: 36%;
}

@media only screen and (max-width: 500px) {
    .contact-us .contact-data{
        flex-direction: column-reverse;
        align-items: center;
        padding: 10px;
    }
    .contact-us .contact-data img{
        width: 300px;
    }
    .contact-us .contact-data .message-button{
        height: 50vh;    
        background-size: 480px;
    }
    .contact-us .contact-data .message-button h3{
        font-size: 15px;
    }
    .contact-us .contact-data .message-button .click-here{
        padding: 15px;
        /* top: 70%; */
        font-size: 10px;
    }
    .contact-us .title{
        font-size: 40px;
    }

    .contact-us .image{
        position: absolute;
        width: 70px;
        height: 70px;
    }
    
    .contact-us .image:nth-child(1){
        top: 980%;
        left: 75%;
    }
    .contact-us .image:nth-child(2){
        top: 1000%;
        left: 5%;
    }
    .contact-us .image:nth-child(3){
        top: 970%;
        left: 5%;
    }
    .contact-us .image:nth-child(4){
        display: none;
    }
    .contact-us .image:nth-child(5){
        display: none;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .contact-us .contact-data{
        flex-direction: column-reverse;
        align-items: center;
        padding: 10px;
    }
    .contact-us .contact-data img{
        width: 500px;
    }
    .contact-us .contact-data .message-button{
        margin: 0;
    }
    .contact-us .contact-data .message-button h3{
        font-size: 20px;
    }
    .contact-us .contact-data .message-button .click-here{
        padding: 20px;
        font-size: 15px;
    }
    .contact-us .title{
        font-size: 40px;
    }


    .contact-us .image{
        position: absolute;
        width: 120px;
        height: 120px;
    }
    
    .contact-us .image:nth-child(1){
        top: 780%;
        left: 80%;
    }
    .contact-us .image:nth-child(2){
        top: 790%;
        left: 10%;
    }
    .contact-us .image:nth-child(3){
        top: 880%;
        left: 5%;
    }
    .contact-us .image:nth-child(4){
        top: 840%;
        left: 0%;
    }
    .contact-us .image:nth-child(5){
        width: 120px;
        height: 120px;
        top: 860%;
        left: 80%;
    }
}

.products .title{
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    /* margin: 20px; */
    text-align: center;
}

.products .image {
    position: absolute;
    width: 250px;
    height: 250px;
}

/* Specify fixed positions for each image */
.products .image:nth-child(1) {
    top: 140%;
    left: 80%;
    transform: scaleX(-1);
}

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.products .box-container .box{
    text-align: center;
    border:var(--text-dark-teal);
    padding: 2rem;
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 10rem;
    font-size: 2.5rem;
    border:var(--text-dark-teal);
    color: var(--white);
    margin:.3rem;
}

.products .box-container .box .icons a:hover{
    background:var(--text-color);
}

.products .box-container .box .image{
    padding: 2.5rem 0;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box .content h3{
    color: var(--white);
    font-size: 2.5rem;
}

.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}

.mySlides {display: none}
.mySlides img {
    vertical-align: middle;
    width: 600px;
    height: 500px;
}

.mySlides video{
    width: 800px;
    height: 495px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--text-dark-teal);
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: -50px;
  border-radius: 3px 0 0 3px;
}

.prev {
    left: -50px;
    border-radius: 3px 0 0 3px;
  }

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: var(--text-color);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.actives, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


@media only screen and (max-width: 500px) {
    .slideshow-container {
        max-width: 90%;
    }
    .mySlides img {
        vertical-align: middle;
        width: 100px;
        height: 200px;
    }

    .mySlides video{
        width: 100%;
        height: 200px;
    }
    .next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    
    .prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }
    .products .title{
        font-size: 40px;
    }
    .products .image {
        display: none;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .slideshow-container {
        max-width: 90%;
    }
    .next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    
    .prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }
    .products .title{
        font-size: 40px;
    }
    .products .image {
        width: 200px;
        height: 200px;
    }
    
    /* Specify fixed positions for each image */
    .products .image:nth-child(1) {
        top: 150%;
        left: 70%;
        transform: scaleX(-1);
    }

    .mySlides video{
        width: 100%;
        height: 500px;
    }
}

.contact-title{
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    /* margin: 20px; */
}

.phone-call, .whatsapp-call{
    text-align: center;
}

.phone-call .title, .whatsapp-call .title{
    font-size: 30px;
    text-transform: uppercase;
}

.phone-call .button-icon, .whatsapp-call .button-icon{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 50px;
}

.whatsapp-call .button-icon{
    flex-direction: row-reverse;
}

.phone-call .button-icon .icons, .whatsapp-call .button-icon .icons{
    margin-top: 100px;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.phone-call .button-icon .icons a, .whatsapp-call .button-icon .icons a{
    border: 2px solid var(--black);
    border-radius: 20px;
    color: var(--black);
    font-weight: 900;
    background-color: transparent;
    padding: 20px;
    margin: 20px auto;
    position: relative;
}

.phone-call .button-icon .icons a:hover, .whatsapp-call .button-icon .icons a:hover{
    color: var(--white);
    background-color: var(--text-color);
}

.phone-call .button-icon .icons p, .whatsapp-call .button-icon .icons p{
    font-size: 25px;
}

.whatsapp-call .button-icon img{
    width: 600px;
}

.phone-call .image{
    position: absolute;
    width: 220px;
    height: 220px;
}

.phone-call .image:nth-child(1){
    top: 35%;
    left: 8%;
}
.phone-call .image:nth-child(2){
    top: 130%;
    left: 0%;
}
.phone-call .image:nth-child(3){
    top: 140%;
    left: 75%;
}
.phone-call .image:nth-child(4){
    top: 50%;
    left: 80%;
}
.phone-call .image:nth-child(5){
    top: 10%;
    left: 85%;
}

@media only screen and (max-width: 500px) {
    .contact-title{
        font-size: 40px;
    }
    .phone-call .button-icon, .whatsapp-call .button-icon{
        flex-direction: column-reverse;
        align-items: center;
    }
    .phone-call .button-icon .icons, .whatsapp-call .button-icon .icons{
        margin-top: 0px;
        margin-bottom: 250px;
        height: 50px;
    }
    .phone-call .button-icon .icons p, .whatsapp-call .button-icon .icons p{
        font-size: 15px;
    }
    .whatsapp-call .button-icon .icons{
        height: 100px;
    }
    .phone-call .button-icon img{
        width: 350px;
    }
    .whatsapp-call .button-icon img{
        width: 250px;
    }

    .phone-call .image{
        display: none; 
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .phone-call .button-icon, .whatsapp-call .button-icon{
        flex-direction: column-reverse;
        align-items: center;
    }
    .phone-call .button-icon .icons, .whatsapp-call .button-icon .icons{
        margin-top: 0px;
        margin-bottom: 250px;
        height: 50px;
    }
    .whatsapp-call .button-icon .icons{
        height: 100px;
    }
    .phone-call .button-icon img{
        width: 350px;
    }
    .whatsapp-call .button-icon img{
        width: 450px;
    }

    .phone-call .image{
        width: 150px;
        height: 150px;
    }
    
    .phone-call .image:nth-child(1){
        top: 35%;
        left: 0%;
    }
    .phone-call .image:nth-child(2){
        top: 120%;
        left: 0%;
    }
    .phone-call .image:nth-child(3){
        top: 180%;
        left: 75%;
    }
    .phone-call .image:nth-child(4){
        top: 50%;
        left: 80%;
    }
    .phone-call .image:nth-child(5){
        top: 10%;
        left: 75%;
    }
}

.popup, .popup_1, .popup_2, .popup_3, .popup_4, .popup_5, .popup_privacy, .popup_terms {
    display: none;
    position: fixed;
    width: 70%;
    height: 90vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    font-size: 15px;
    padding: 20px;
    box-shadow: 0 0 500px 500px rgba(88, 88, 88, 0.5);
    /* , inset 5px 5px 50px 20px rgb(152, 200, 225);; */
    animation: slideIn 0.4s ease forwards;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-image: url('/Asset/images/popupbg4.png');
    background-position: center;
    background-size: cover;
}

.popup-common .content-popup{
    width: 100%;
    height: 100%;
}

.popup-common .content-popup .popup-title{
    height: calc(100vh - 98%);
}

.popup-common .content-popup .popup-data{
    height: calc(100vh - 40%);
    overflow-y: auto;
    padding: 10px;
}

.popup-common .content-popup .popup-data{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1rem;
}

.popup-common .content-popup .popup-data .week{
    border-radius: 20px;
    background-color: #ffffff77;
    box-shadow:1px 1px 5px 1px rgb(115, 134, 136);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-common .content-popup .popup-data .week h3{
    font-size: 1.2em;
}

.popup-close {
    position: absolute;
    font-size: 30px;
    top: 5px;
    right: 20px;
    cursor: pointer;
}

@keyframes slideIn {
    from {
        /* opacity: 0; */
        top: -100%;
    }
    to {
        /* opacity: 1; */
        top: 50%;
    }
}

@media only screen and (max-width: 500px) {
    .popup, .popup_1, .popup_2, .popup_3, .popup_4, .popup_5, .popup_privacy, .popup_terms {
        width: 95%;
        font-size: 10px;
        flex-direction: column;
    }
    .popup-common .content-popup .popup-data{
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .popup, .popup_1, .popup_2, .popup_3, .popup_4, .popup_5, .popup_privacy, .popup_terms {
        width: 95%;
        font-size: 10px;
        flex-direction: column;
    }
    .popup-common .content-popup .popup-data{
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }
}

.testimonial-title{
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    /* margin: 20px; */
}

.testimonial .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
        gap: 2rem;
}

.testimonial .box-container .box{
    /* border: 5px solid var(--dark-grey); */
    background-color: #ff9e36;
    border-radius: 0 200px 0 200px;
    padding: 50px;
    margin: 50px 100px;
    height: auto;
    color: var(--white);
    box-shadow:5px 5px 50px 10px rgba(0, 0, 0, 0.5), inset 5px 5px 200px 100px rgb(152, 62, 23);
    /* box-shadow: 5px 5px 50px 10px rgb(141, 141, 141); */
}

.testimonial .box-container .box p{
    position: relative;
    font-size: 20px;
    bottom: 70px;
    font-weight: 900;
}

.testimonial .box-container .box h3{
    text-align: right;
    font-size: 30px;
}

.testimonial .box-container .box .image img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    top: -100px;
    border: 5px solid var(--black);
    /* box-shadow:  10ppx rgba(0, 0, 0, 0.5); */
}

.testimonial .box-container .box .image{
    display: flex;
}

.testimonial .box-container .box .image .stud-details{
    position: relative;
    left: 30%;
    margin: 30px;
}

/* .testimonial .box-container .box .right-side .stud-details{
    position: relative;
    left: -10%;
    margin: 30px;
} */

.testimonial .box-container .box .image .stud-details h2{
    font-size: 40px;
    font-weight: 900;
}

.testimonial .box-container .box .image .stud-details span{
    font-size: 25px;
}

/* .testimonial .box-container .box .right-side img{
    left: 70%;
} */

.testimonial .image-ani{
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

@media only screen and (max-width: 500px) {
    .testimonial .image-ani{
        display: none;
    }
    .testimonial-title{
        font-size: 40px;
    }
    .testimonial .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: 1rem;
    }
    .testimonial .box-container .box{
        border-radius: 0 50px 0 50px;
        padding: 10px;
        /* margin: 10px 10px; */
        margin: 10px;
        height: auto;
    }
    .testimonial .box-container .box .image img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        position: relative;
        top: -30px;
    }
    .testimonial .box-container .box p{
        font-size: 10px;
        bottom: 10px;
    }

    .testimonial .box-container .box h3{
        font-size: 15px;
    }

    /* .testimonial .box-container .box .right-side img{
        left: 40%;
    } */

    .testimonial .box-container .box .image{
        display: flex;
    }
    
    .testimonial .box-container .box .image .stud-details{
        position: relative;
        left: 0%;
        margin: 20px;
    }
    
    /* .testimonial .box-container .box .right-side .stud-details{
        position: relative;
        left: -60%;
        margin: 20px;
    } */
    
    .testimonial .box-container .box .image .stud-details h2{
        font-size: 15px;
    }

    .testimonial .box-container .box .image .stud-details h4{
        font-size: 8px;
    }
    
    .testimonial .box-container .box .image .stud-details span{
        font-size: 10px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .testimonial-title{
        font-size: 40px;
    }
    .testimonial .box-container{
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    }
    .testimonial .box-container .box{
        border-radius: 0 50px 0 50px;
        padding: 10px;
        margin: 10px 20px;
        height: auto;
    }
    .testimonial .box-container .box .image img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        position: relative;
        top: -30px;
    }
    .testimonial .box-container .box p{
        font-size: 10px;
        bottom: 10px;
    }

    .testimonial .box-container .box h3{
        font-size: 20px;
    }

    /* .testimonial .box-container .box .right-side img{
        left: 78%;
    } */

    .testimonial .box-container .box .image .stud-details h2{
        font-size: 25px;
    }

    .testimonial .box-container .box .image .stud-details{
        left: 0%;
    }

    .testimonial .box-container .box .image .stud-details h4{
        font-size: 10px;
    }
    
    .testimonial .box-container .box .image .stud-details span{
        font-size: 15px;
    }
}

.student-review .title{
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 40px;
}

.reviewmySlides {display: none;}

.reviewmySlides video{
    width: 500px;
    height: 395px;
}

.slideshow-container-review {
  max-width: 500px;
  position: relative;
  margin: auto;
  scroll-behavior: smooth;
}

.review-prev, .review-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--text-dark-teal);
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.review-next {
  right: -50px;
  border-radius: 3px 0 0 3px;
}

.review-prev {
    left: -50px;
    border-radius: 3px 0 0 3px;
  }

.review-prev:hover, .review-next:hover {
  background-color: var(--text-color);
}

.review-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.actives, .review-dot:hover {
  background-color: #717171;
}

.reviewfade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .review-prev, .review-next {font-size: 11px}
}


@media only screen and (max-width: 500px) {
    .slideshow-container-review {
        max-width: 90%;
    }

    .student-review .title{
        font-size: 30px;
    }

    .reviewmySlides video{
        width: 100%;
        height: 300px;
    }
    .review-next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    
    .review-prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }
    .student-review .image {
        display: none;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
    .slideshow-container-review {
        max-width: 90%;
    }
    .review-next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    
    .review-prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }
    .student-review .title{
        font-size: 40px;
    }
    .student-review .image {
        width: 200px;
        height: 200px;
    }

    .student-review .image:nth-child(1) {
        top: 150%;
        left: 70%;
        transform: scaleX(-1);
    }

    .reviewmySlides video{
        width: 100%;
        height: 500px;
    }
}