@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-bg:  #1b4a55;
    --light-bg: #DAF0EE;
    --text-color: #f9bd39;
    --text-dark-teal: #345349;
    --white: #fff;
    --black: #000;
}

body {
  font-family: inherit;
  /* background-color: var(--white); */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='3000' preserveAspectRatio='none' viewBox='0 0 1440 3000'%3e%3cg clip-path='url(%26quot%3b%23SvgjsClipPath1263%26quot%3b)' fill='none'%3e%3ccircle r='108.995' cx='148.5' cy='2420.76' fill='rgba(169%2c 198%2c 39%2c 0.14)'%3e%3c/circle%3e%3ccircle r='65.905' cx='411.06' cy='1672.88' fill='rgba(67%2c 70%2c 139%2c 0.17)'%3e%3c/circle%3e%3ccircle r='143.52' cx='520.57' cy='1341.17' fill='rgba(198%2c 39%2c 163%2c 0.11)'%3e%3c/circle%3e%3ccircle r='130.39' cx='1111.11' cy='1949.28' fill='rgba(67%2c 70%2c 139%2c 0.17)'%3e%3c/circle%3e%3ccircle r='101.155' cx='667.35' cy='2647.64' fill='rgba(39%2c 198%2c 115%2c 0.13)'%3e%3c/circle%3e%3ccircle r='139.86' cx='410.51' cy='74.88' fill='rgba(198%2c 39%2c 163%2c 0.11)'%3e%3c/circle%3e%3ccircle r='77.145' cx='803.34' cy='9.92' fill='rgba(198%2c 39%2c 39%2c 0.13)'%3e%3c/circle%3e%3ccircle r='43.135' cx='1258.03' cy='1934.65' fill='rgba(198%2c 39%2c 39%2c 0.13)'%3e%3c/circle%3e%3ccircle r='111.72' cx='807.94' cy='645.68' fill='rgba(67%2c 70%2c 139%2c 0.17)'%3e%3c/circle%3e%3ccircle r='133.175' cx='736.01' cy='2139.41' fill='rgba(198%2c 39%2c 39%2c 0.13)'%3e%3c/circle%3e%3ccircle r='90.475' cx='633.43' cy='2606.96' fill='rgba(169%2c 198%2c 39%2c 0.14)'%3e%3c/circle%3e%3ccircle r='68.59' cx='1241.29' cy='2086.36' fill='rgba(169%2c 198%2c 39%2c 0.14)'%3e%3c/circle%3e%3ccircle r='113.395' cx='977.74' cy='1172.26' fill='rgba(39%2c 198%2c 115%2c 0.13)'%3e%3c/circle%3e%3ccircle r='70.015' cx='1045.32' cy='1908.08' fill='rgba(67%2c 70%2c 139%2c 0.17)'%3e%3c/circle%3e%3ccircle r='50.42' cx='1023.74' cy='1211.38' fill='rgba(198%2c 39%2c 39%2c 0.13)'%3e%3c/circle%3e%3c/g%3e%3cdefs%3e%3cclipPath id='SvgjsClipPath1263'%3e%3crect width='1440' height='3000' x='0' y='0'%3e%3c/rect%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  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{
    /* width: 300px;
    height: 200px; */
    /* border: 2px solid red; */
    /* z-index: 999; */
}

.logo img{
  width: 250px;
  height: 230px;
    position: relative;
    top: 20px;
    right: 40px;
    /* border: 2px solid green; */
}

@media only screen and (max-width: 500px) {
    .logo{
        /* width: 100px;
        height: 100px; */
        /* top: 5px;
        right: 50px; */
    }
    .logo img{
        width: 150px;
        height: 150px;
          position: relative;
          top: 5px;
          /* left: 0px; */
      }
}
@media only screen and (min-width: 501px) and (max-width: 1100px) {
    .logo{
        /* width: 200px;
        height: 200px;
        top: 5px;
        right: 20px; */
    }
    .logo img{
        width: 200px;
        height: 200px;
          /* position: relative;
          top: 60px;
          left: 0px; */
      }
}
#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: 120px;
  padding: 3rem 2rem;
  /* background-color: transparent; */
}

.menu {
  position: relative;
  background: transparent;
  color: var(----dark-bg);
  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;
  }
}


.home-section{
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: url("/asset/images/mainbg.gif");
    background-size: cover;
    box-shadow: inset 0 0 50px 20px #fff;
}

.home-section h1{
    font-size: 70px;
    width: 80%;
    margin: 0 auto;
}

.home-section .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
  }
.home-section .hero .box {
    position: relative;
    width: 380px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

.home-section .hero .box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
      from var(--a),
      #ff0000,
      #2bff00,
      #0026ff,
      #ff00f2,
      #04ddfa
    );
    /* border-radius: 20px; */
    animation: rotate 6s linear infinite;
  }
  .home-section .hero .box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
      from var(--a),
      rgba(0, 255, 255, 0)
    );
    animation: rotate 4s linear infinite;
    filter: blur(40px);
    opacity: 0.75;
  }
  .home-section .hero .box style {
    position: absolute;
    inset: 4px;
    background: #fff;
    color: #ff0;
    font-size: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-section .hero .box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    z-index: 10;
    margin: 30px;
  }

  @property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
  @keyframes rotate {
    0% {
      --a: 0;
    }
    0% {
      --a: -360deg;
    }
  }

  @media only screen and (max-width: 500px) {
    .home-section{
      height: auto;
    }
    .home-section h1{
      font-size: 30px;
      width: 100%;
      margin: 0;
      padding-left: 10px;
    }
    .home-section .hero  .box {
      font-size: 12px;
    }
    .home-section .hero  .box {
      width: 250px;
      padding: 0px;
    }
  }

  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .home-section h1{
      font-size: 30px;
      width: 100%;
      margin: 0;
      padding: 0 20px;
    }
    .home-section .hero  .box {
      font-size: 15px;
    }
  }
.about-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 100px 0;
}

.about-section .about-head{
    width: 60%;
    text-align: center;
    margin-bottom: 50px;
}

.about-section .about-head p{
    font-size: 20px;
}

.about-section .about-head .consensus{
  /* line-height: 50px; */
}

.about-section .about-head .consensus .Quant{
  color: #1b4a55;
  font-size: 1.2em;
  font-weight: 900;
}

.about-section .about-head .consensus .Quant .nique{
  color: #f9bd39;
}

.about-section .about-head .consensus .consensus-logo{
  width: 150px;
  position: relative;
  top: 5px;
}

.about-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    margin: 0 200px;
}

.about-section .box-container .box{
    text-align: justify;
    box-shadow: 0px 0px 20px 1px #dddddd;
    padding: 50px 70px;
    border-radius: 20px;
    background-color: #ffffff7d;
}

.about-section .box-container h3{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.about-section .box-container .box img{
    width: 50px;
}

.about-section .box-container .box h1{
    position: absolute;
    font-size: 150px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 100;
}

.about-section .box-container .box .first{
    color: rgba(139, 248, 131, 0.216);
}

.about-section .box-container .box .second{
    color: rgba(248, 131, 131, 0.14);
}

.about-section .box-container .box .third{
    color: rgba(131, 160, 248, 0.156);
}

@media only screen and (max-width: 500px) {
  .about-section .about-head{
    width: 95%;
    text-align: center;
    margin-bottom: 50px;
  }

  .about-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
    width: 100%;
  }
  .about-section .box-container .box{
    padding: 50px 20px;
  }
}

@media only screen and (min-width: 500px) and (max-width: 1100px){
  .about-section .about-head{
    width: 95%;
    text-align: center;
    margin-bottom: 50px;
  }
  .about-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
  }
  .about-section .box-container .box{
    padding: 50px 20px;
  }
}

.course-section{
    margin: 100px 0;
}

.course-section h1{
    text-align: center;
}

.course-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin: 50px 200px;
}

.course-section .box-container .box{
    background-color: #ffffff6e;
    box-shadow: 0 0 50px 1px #d7d7d7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.course-section .box-container .box img{
    width: 70px;
    /* border: 2px solid #e3e3e3; */
    border-radius: 10px 0 10px 0;
    padding: 10px;
}

.course-section .box-container .box .image1{
    box-shadow: inset 0 0 5px 1px rgb(255, 156, 156), 0 0 5px 1px rgb(255, 156, 156);
}

.course-section .box-container .box .image2{
    box-shadow: inset 0 0 5px 1px rgb(170, 255, 168), 0 0 5px 1px rgb(170, 255, 168);
}

.course-section .box-container .box .image3{
    box-shadow: inset 0 0 5px 1px rgb(160, 176, 255), 0 0 5px 1px rgb(160, 176, 255);
}

.course-section .box-container .box .image4{
    box-shadow: inset 0 0 5px 1px rgb(255, 253, 149), 0 0 5px 1px rgb(255, 253, 149);
}

.course-section .box-container .box p{
    margin: 20px;
    font-size: 20px;
}

.course-section .box-container .box:hover .content{
    transform: translateY(0);
    /* box-shadow: inset 0 0 20px 1px #060606; */
}

.course-section .box-container .box .content{
    padding:2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fdcd65;
    transform: translateY(100%);
    transition: transform .3s ease-in;
    padding: 20px;
}

  .course-section .box-container .box .content button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
   }
   
.course-section .box-container .box .content button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .course-section .box-container .box .content button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
       to left,
       #1b4a55 0%,
       #0d2429 8%,
       #0d2429 92%,
       #1b4a55 100%
     );
   }
   
   .course-section .box-container .box .content button .front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #f9bd39;
    background: #1b4a55;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .course-section .box-container .box .content button:hover {
    filter: brightness(150%);
   }
   
   .course-section .box-container .box .content button:hover .front {
    transform: translateY(-6px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .course-section .box-container .box .content button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
   }
   
   .course-section .box-container .box .content button:hover .shadow {
    transform: translateY(4px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .course-section .box-container .box .content button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
   }
   
   .course-section .box-container .box .content button:focus:not(:focus-visible) {
    outline: none;
   }

   @media only screen and (max-width: 500px) {
    .course-section .box-container{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
      gap: 1rem;
      margin: 0;
    }
   }
   @media only screen and (min-width: 500px) and (max-width: 1100px){
    .course-section .box-container{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
      gap: 1rem;
      margin: 10px;
    }
   }

   .count-section{
    background-color: #1b4a55;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    border-radius: 10%;
   }

   .count-section .box{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
   }

   .count-section h1{
    font-size: 30px;
    color: #fff;
   }

   .count-section .box h1{
    font-size: 80px;
    color: #f9bd39;
   }

   .count-section h2{
    font-size: 80px;
    color: #fff;
   } 

   .count-section .box p{
    font-size: 20px;
    color: #fff;
   }

   @media only screen and (max-width: 500px) {
    .count-section{
      border-radius: 0;
    }
    .count-section h1{
      text-align: center;
    }
    .count-section .box{
      flex-direction: column;
      align-items: center;
      text-align: center;
     }
     .count-section .box h1{
      font-size: 40px;
     }
     .count-section h2{
      font-size: 30px;
     } 
   }
   @media only screen and (min-width: 500px) and (max-width: 1100px){
    .count-section h1{
      text-align: center;
    }
    .count-section .box{
      align-items: center;
      text-align: center;
     }
     .count-section .box h1{
      font-size: 40px;
     }
     .count-section h2{
      font-size: 30px;
     } 
   }

.client-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-section .box-container{
   width: 80%;
}

.client-section .box-container .image {
    display: inline-block;
    margin: 20px 50px;
}

.client-section .box-container .image img{
    width: 100px;
}

.marquee-container, .marquee-container1{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content, .marquee-content1 {
    display: inline-block;
}

::-webkit-scrollbar {
    display: none;
}

@media only screen and (max-width: 500px) {
  .client-section .box-container .image img{
    width: 50px;
  }
  .client-section .box-container .image {
    margin: 0px 20px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 1100px){
  .client-section .box-container .image {
    margin: 0px 20px;
  }
}

.testimonial-section{
    padding:0 100px;
    text-align: center;
}

.testimonial-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap:1rem;
    margin: 50px 0;
}

.testimonial-section .box-container .box{
    text-align: center;
    padding:0rem 2rem;
    padding-bottom: 2rem;
    background-color: #99e5f745;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px #cbcbcb;
}

.testimonial-section .box-container .box p{
    font-size: 1rem;
    line-height: 1.8;
    padding:2rem 0;
}

.testimonial-section .box-container .box img{
    width: 100px;
    height: 100px;
}

.testimonial-section .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-section .box-container .box h3{
    padding:1rem 0;
    font-size: 1.2rem;
}

@media only screen and (max-width: 500px) {
  .testimonial-section{
    padding:0;
  }
  .testimonial-section .box-container{
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap:2rem;
    margin: 10px;
  }
}

.dodo-section{
    height: 70vh;
    display: flex;
    margin: 100px 0;
}

.dodo-section .image-part{
    width: 60%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1055%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(27%2c 74%2c 85%2c 1)'%3e%3c/rect%3e%3cpath d='M0%2c423.453C78.079%2c422.565%2c139.306%2c360.717%2c201.35%2c313.307C258.803%2c269.405%2c316.765%2c224.151%2c346.858%2c158.405C376.965%2c92.628%2c382.623%2c17.994%2c369.044%2c-53.06C355.844%2c-122.133%2c309.606%2c-176.177%2c271.609%2c-235.351C226.86%2c-305.04%2c200.642%2c-393.903%2c126.492%2c-430.792C49.151%2c-469.269%2c-51.677%2c-475.439%2c-127.39%2c-433.851C-201.392%2c-393.203%2c-218.472%2c-297.156%2c-255.201%2c-221.133C-282.693%2c-164.229%2c-301.045%2c-106.919%2c-315.107%2c-45.306C-330.462%2c21.973%2c-361.369%2c89.83%2c-341.236%2c155.837C-320.175%2c224.883%2c-261.118%2c273.375%2c-204.316%2c317.922C-142.752%2c366.203%2c-78.233%2c424.343%2c0%2c423.453' fill='%23123037'%3e%3c/path%3e%3cpath d='M1440 1222.673C1562.044 1218.358 1648.731 1110.586 1753.251 1047.4279999999999 1861.3519999999999 982.106 2029.221 966.4929999999999 2064.602 845.246 2101.178 719.903 1942.459 619.386 1915.433 491.64300000000003 1891.15 376.865 1982.883 243.77999999999997 1916.837 146.81799999999998 1851.2930000000001 50.59300000000002 1710.285 52.34300000000002 1597.237 24.499000000000024 1489.136-2.1269999999999527 1381.486-32.438999999999965 1272.047-11.995999999999981 1155.2730000000001 9.817000000000007 1027.961 46.55899999999997 959.4839999999999 143.63099999999997 892.037 239.243 945.967 371.053 921.168 485.403 893.653 612.28 766.123 725.9300000000001 806.44 849.337 846.283 971.296 1001.645 1004.957 1112.183 1070.093 1218.17 1132.548 1317.057 1227.02 1440 1222.673' fill='%23256473'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1055'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: inset 0 0 50px 1px #000;
}

.dodo-section .image-part .image{
    height: 350px;
    position: relative;
    top: 33%;
    left: 32.5%;
    overflow: hidden;
    /* box-shadow: 0 0 50px 10px #000; */
}

.dodo-section .content .logo-dodo{
    height: 80px;
    bottom: 22%;
    right: 61.5%;
    position: relative;
}

.dodo-section .content{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 50px;
}

.dodo-section .content button {
    position: relative;
    top: 10%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
   }
   
   .dodo-section .content button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .dodo-section .content button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
       to left,
       #1b4a55 0%,
       #0d2429 8%,
       #0d2429 92%,
       #1b4a55 100%
     );
   }
   
   .dodo-section .content button .front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #f9bd39;
    background: #1b4a55;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .dodo-section .content button:hover {
    filter: brightness(150%);
   }
   
   .dodo-section .content button:hover .front {
    transform: translateY(-6px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .dodo-section .content button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
   }
   
   .dodo-section .content button:hover .shadow {
    transform: translateY(4px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .dodo-section .content button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
   }
   
   .dodo-section .content button:focus:not(:focus-visible) {
    outline: none;
   }

   @media only screen and (max-width: 500px) {
    .dodo-section{
      height: auto;
      flex-direction: column;
      margin: 0;
    }
    .dodo-section .image-part{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      height: 300px;
    }

    .dodo-section .image-part .image{
      height: 170px;
      top: 13%;
      left: 0%;
    }
    
    .dodo-section .image-part .logo-dodo{
        height: 50px;
        top: 8%;
        left: 0%;
    }
    .dodo-section .content{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: justify;
      padding: 50px;
    }
    .dodo-section .content button {
      margin-top: 20px;
     }
   }
   @media only screen and (min-width: 500px) and (max-width: 1100px){
    .dodo-section{
      height: auto;
      flex-direction: column;
      margin: 0;
    }
    .dodo-section .image-part{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      height: 450px;
    }

    .dodo-section .image-part .image{
      height: 250px;
      width: 500px;
      top: 13%;
      left: 0%;
    }
    
    .dodo-section .image-part .logo-dodo{
        height: 50px;
        width: 150px;
        top: 8%;
        left: 0%;
    }
    .dodo-section .content{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: justify;
      padding: 50px;
    }
    .dodo-section .content button {
      margin-top: 20px;
     }
   }

   .team-section{
    margin-bottom: 50px
   }

   .team-section h1{
    text-align: center;
    margin: 20px 0;
   }

   .team-section .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 2rem;
        margin: 0 200px;
        flex-wrap: wrap;
   }

   .team-section .box-container.board{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2rem;
    margin: 0 400px;
    flex-wrap: wrap;
    }

   .team-section .box-container .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    width: 100%;
   }

   .team-section .box-container .box .middle div{
    border: 2px solid #1b4a55;
    padding: 20px;
    border-radius: 50%;
   }

   .team-section .box-container .box .middle img{
    width: 150px;
    border-radius: 50%;
   }

   .team-section .box-container .box .top{
    /* box-shadow: 0 0 500px 1px #e6e6e6; */
    width: 100%;
    height: 40%;
    border-radius: 10px;
    /* background-color: #ffffff60; */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #5a595730;
   }

   .team-section .box-container .box .middle{
    position: absolute;
    top: 25%;
   }

   .team-section .box-container .box .bottom{
    width: 100%;
    height: 40%;
    box-shadow: 0 0 500px 1px #e6e6e6;
    border-radius: 10px;
    background-color: #5a595730;
    display: flex;
    align-items: flex-end;
    justify-content: center;
   }

   .team-section .box-container .box .bottom a{
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
   }

   .team-section .box-container .box .bottom:hover a{
    background-color: #f9bd39;
   }

   .team-section .box-container .box:hover .top{
    background-color: #1b4a55;
    color: #f9bd39;
   }

   .team-section .box-container .box:hover .bottom{
    background-color: #1b4a55;
   }

   .team-section .box-container .box:hover .middle div{
    border: 2px solid #f9bd39;
   }

   @media only screen and (max-width: 500px) {
    .team-section .box-container{
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
      gap: 1rem;
    }
    .team-section .box-container{
      margin: 0 10px;
     }
     .team-section .box-container.board{
      margin: 0 10px;
      }
   }
   @media only screen and (min-width: 500px) and (max-width: 1100px){
    .team-section .box-container{
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
      gap: 1rem;
      
    }
    .team-section .box-container{
      margin: 0 10px;
     }
     .team-section .box-container.board{
      margin: 0 10px;
      }
   }

   .tinycode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
   }

   .tinycode-section .logo-kid{
    width: 200px;
    margin-bottom: -100px;
   }

   .tinycode-section .kid-content{
    display: flex;
    justify-content: center;
    align-items: center;
   }

   .tinycode-section .kid-content .kid-button{
    width: 30%;
    text-align: center;
   }

   .tinycode-section .kid-content img{
    width: 600px;
   }

   .tinycode-section .kid-content .kid-button p .yellow{
    color: #fed303;
    font-weight: 900;
    font-size: 1.2em;
   }

   .tinycode-section .kid-content .kid-button p .green{
    color: #3edfaf;
    font-weight: 900;
    font-size: 1.2em;
   }

   .tinycode-section .kid-content .kid-button p .orange{
    color: #ff7827;
    font-weight: 900;
    font-size: 1.2em;
   }

   .tinycode-section .kid-content{
    display: flex;
    align-items: center;
   }

   .tinycode-section .kid-content .kid-button button {
    margin-top: 50px;
    position: relative;
    top: 10%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
   }

   .tinycode-section .kid-content .kid-button button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .tinycode-section .kid-content .kid-button button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
       to left,
       #1b4a55 0%,
       #0d2429 8%,
       #0d2429 92%,
       #1b4a55 100%
     );
   }
   
   .tinycode-section .kid-content .kid-button button .front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #f9bd39;
    background: #1b4a55;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .tinycode-section .kid-content .kid-button button:hover {
    filter: brightness(150%);
   }
   
   .tinycode-section .kid-content .kid-button button:hover .front {
    transform: translateY(-6px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .tinycode-section .kid-content .kid-button button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
   }
   
   .tinycode-section .kid-content .kid-button button:hover .shadow {
    transform: translateY(4px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   .tinycode-section .kid-content .kid-button button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
   }
   
   .tinycode-section .kid-content .kid-button button:focus:not(:focus-visible) {
    outline: none;
   }

  @media only screen and (max-width: 500px) {
    .tinycode-section{
      margin-bottom: 50px;
    }
    .tinycode-section .logo-kid{
      width: 100px;
      margin-bottom: 0;
     }
     .tinycode-section .kid-content{
      flex-direction: column-reverse;
     }
     .tinycode-section .kid-content img{
      width: 300px;
     }
     .tinycode-section .kid-content .kid-button{
      width: 95%;
      text-align: justify;
     }
     .tinycode-section .kid-content .kid-button button {
      margin: 20px auto;
     }
  }
  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .tinycode-section{
      margin-bottom: 50px;
    }
    .tinycode-section .logo-kid{
      width: 200px;
      margin-bottom: 0;
     }
     .tinycode-section .kid-content{
      flex-direction: column-reverse;
     }
     .tinycode-section .kid-content img{
      width: 500px;
     }
     .tinycode-section .kid-content .kid-button{
      width: 70%;
      text-align: center;
     }
     .tinycode-section .kid-content .kid-button button {
      margin: 20px auto;
     }
  }

   .contact-section h1{
    text-align: center;
    margin-bottom: -100px;
  }

   .contact-section .contact-data{
    display: flex;
    align-items: center;
    justify-content: center;
   }

   .contact-section .contact-data .cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-section .contact-data .cards .red {
    background-color: #ffd06c;
  }
  
  .contact-section .contact-data .cards .blue {
    background-color: #1b4a55;
  }

  
  .contact-section .contact-data .cards .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 150px;
    width: 400px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }
  
  .contact-section .contact-data .cards .card p.tip {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: lowercase;
  }
  
  .contact-section .contact-data .cards .card:hover {
    transform: scale(1.1, 1.1);
  }
  
  .contact-section .contact-data .cards:hover > .card:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }

  @media only screen and (max-width: 500px) {
    .contact-section .contact-data{
      flex-direction: column;
     }
     .contact-section .contact-data .contact-side{
      width: 300px;
     }
     .contact-section .contact-data .cards .card {
      height: 100px;
      width: 100%;
      padding: 20px;
      }
      .contact-section .contact-data .cards .card p.tip {
        font-size: 1em;
      }
  }
  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .contact-section .contact-data{
      flex-direction: column;
     }
     .contact-section .contact-data .contact-side{
      width: 600px;
     }
  }

  .footer-section{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='200' preserveAspectRatio='none' viewBox='0 0 1440 200'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1179%26quot%3b)' fill='none'%3e%3cpath d='M 0%2c2 C 288%2c19.2 1152%2c70.8 1440%2c88L1440 200L0 200z' fill='rgba(27%2c 74%2c 85%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c179 C 288%2c168.8 1152%2c138.2 1440%2c128L1440 200L0 200z' fill='rgba(116%2c 168%2c 180%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1179'%3e%3crect width='1440' height='200' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
    position: relative;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
  }

  .footer-section .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 20px;
  }
  
  .footer-section .wrapper .icon {
    text-decoration: none;
    width: 3.625rem;
    height: 3.625rem;
    border-radius: 14px;
    /* background-color: hsla(209 20% 70% / 20%); */ /* For dark theme */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
      rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  }
  
  .footer-section .wrapper .icon > i {
    color: #f9bd39;
    font-size: 1.5rem;
    transition: all 0.2s;
  }
  
  .footer-section .wrapper .icon:hover > i {
    scale: 1.2;
    color: #f1f1f1;
  }
  
  .footer-section .wrapper .icon:before {
    background: var(--color);
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    left: -110%;
    top: 80%;
    transform: rotate(45deg);
  }
  
  .footer-section .wrapper .icon:hover:before {
    animation: slide 0.7s forwards;
  }
  
  @keyframes slide {
    50% {
      left: 10%;
      top: -40%;
    }
  
    100% {
      left: -15%;
      top: -15%;
    }
  }
  
  .footer-section .wrapper .icon:has(.fa-instagram) {
    --color: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  }
  .footer-section .wrapper .icon:has(.fa-linkedin-in) {
    --color: #0077b5;
  }
  .footer-section .wrapper .icon:has(.fa-youtube) {
    --color: #ff0000;
  }
  .footer-section .wrapper .icon:has(.fa-facebook) {
    --color: #1da1f2;
  }

  .footer-section h4{
    color: #fff;
    font-size: 1.2em;
  }

  @media only screen and (max-width: 500px) {
    .footer-section{
      background-repeat: no-repeat;
      background-position: 0%;
      /* background-size: 300%; */
      margin-bottom: 70px;
    }
    .footer-section .wrapper .icon {
      width: 2.625rem;
      height: 2.625rem;
      border-radius: 7px;
    }
    .footer-section h4{
      text-align: center;
    }
  }


  .menu-bar li a.active {
    background-color: #1b4a55;
    color: #f9bd39;
    border-radius: 4px;
    padding: 15px;
  }

  #nav-menu{
    /* position: fixed; */
    width: 100%;
    /* background-color: #fff; */
    /* z-index: 999; */
    padding-bottom: 20px;
  }

  .product-section{
    margin: 100px 0;
  } 

  .product-section h1{
    text-align: center;
  } 

  .product-section p{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
  } 

  .product-section .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1rem;
    margin: 0 50px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  } 


  .product-section .box-container .box{
    background-color: #f0f0f09c;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px #c9c9c9;
  } 

  .product-section .box-container .box:hover{
    background-color: #1b4a55;
    color: #f9bd39;
  } 

  @media only screen and (max-width: 500px) {
    .product-section p{
      width: 95%;
      font-size: 15px;
    } 
    .product-section .box-container .box h1{
      font-size: 1em;
    } 
  }
  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .product-section p{
      width: 90%;
    } 
    .product-section .box-container .box h1{
      font-size: 1em;
    } 
  }

  .consensus-sticky{
    /* width: 300px; */
    border: 2px solid rgb(164, 150, 1);
    text-align: center;
    position: fixed;
    top: 80%;
    right: 0%;
    padding: 10px;
    background-color: #ffffff;
    z-index: 999;
    border-radius: 20px 0 0 20px;
  }

  .consensus-sticky .Quant{
    color: #1b4a55;
    font-size: 1.2em;
    font-weight: 900;
  }
  
  .consensus-sticky .Quant .nique{
    color: #f9bd39;
  }
  
  .consensus-sticky .consensus-logo{
    width: 150px;
    position: relative;
    top: 5px;
  }

  
  @media only screen and (max-width: 500px) {
    .consensus-sticky{
      border-radius: 10px 0 0 10px;
    }
    .consensus-sticky .Quant{
      font-size: 1em;
    }
    
    .consensus-sticky .consensus-logo{
      width: 120px;
    }
  }
  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .footer-section{
      margin-bottom: 50px;
    }
  }


  .training{
    /* border: 2px solid green; */
    margin: 0 200px;
    text-align: center;
  }

  .training p{
    margin-top: 10px;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
  }

  @media only screen and (max-width: 500px) {
    .training{
      margin: 0 15px;
    }
    .training p{
      font-size: 15px;
    }
  }
  @media only screen and (min-width: 500px) and (max-width: 1100px){
    .training{
      margin: 0 40px;
    }
  }