  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root{
    --main-color: #FFD700;
    --main-color2:  #1B252F;
    --main-background:#F6FAFF;
    --main-background2:#fff;
    --main-transition: 0.5s ease-in-out;
    --main-font-family:'Montserrat, "Open Sans", Helvetica, Arial, sans-serif' !important;
    --main-font-family2: 'GESS Two', Arial, sans-serif;
}   
html{
overflow-x: hidden;
}
.body {
    margin: 0px;
    font-family: var(--main-font-family);
}
.container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
    overflow: auto;
}
@media screen and (max-width:750px) {
    .header{
        z-index: 10;
        width: 100%;
        margin: 0px;
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--main-transition);
    }
    .logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: 0px;
        padding: 20px;
        width: 200px;
        height: 100px;
    }
        .logo img{
          width: 180px;
          height: 145px;
            
        }
    .header .links {
        position: relative;
        z-index: 10;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .header .links .icons {
        position: absolute;
        left: 5px;
        top: -30px;
        width: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: left;
        margin-bottom: 7px;
        z-index: 10;
    }
    .header .links .icons span {
        background-color: var(--main-color);
        margin-bottom: 5px;
        height: 3px;
        width: 30px;
        z-index: 20;
        cursor: pointer;
    }
    .header .links .icons span:first-child {
        width: 100%;
    }
    .header .links .icons span:nth-child(2) {
        width: 50%;
        transition: 0.3s;
    }
    .header .links .icons span:last-child {
        width: 100%;
    }
    .header .links:hover .icons span:nth-child(2) {
        width: 100%;
    }
    .header .links .navbar {
        list-style: none;
        position: absolute;
        margin-top: 15px;
        text-transform: capitalize;
        padding: 0px 0px;
        border-radius: 15px;
        background-color:var(--main-color2);
        right: 10px;
        left: 5px;
        font-size: 30px;
        min-width: 200px;
        top: calc(100%+35px);
        z-index: 1;
        display: none;
    }
    .header .links .navbar.active {
        display: inline-block;
    }
    
    .header .links ul li a {
      position: relative;
        display: block;
        padding: 15px;
        text-decoration: none;
        color: var(--main-color);
        transition: 0.3s;
    }
    .header .links ul li a::before {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        bottom: 5px;
        opacity: 0;
        border-radius: 25px;
        background-color: #FFD700;
        transition: all 0.5s ease-in-out;
    }
    
    .header .links ul li:hover a::before {
        opacity: 1;
    }
    .features .container .feat {
        align-items: center;
    }
        .header.sticky {
            padding: 5px 10px;
            background: var(--main-color2);
    
        }
    
        .header.sticky .links ul li a {
            color: var(--main-color);
        }
}

@media screen and (min-width:750px) {
    .header {
        top: 0%;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        display: flex;
        z-index: 2;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        width: 100%;
        margin: auto;
        right: 0px;
        background-size: cover;
        height: 100px;
        transition: var(--main-transition);
    }
    .logo {
        display: flex;
        height: 100%;
        width: 300px;
        margin-top: 0px;
        padding: 20px;
        align-items: center;
        text-align: center;
        border-radius: 0px 25px 25px 0px;
    }
    .logo img{
        width: 140px;
        height: 100px;
    }
    .header .links {
        display: flex;
        justify-content: space-between;
    }
    .header .links .navbar {
        display: flex;
        list-style: none;
        margin-right: 30px;
    }
    .header .links .navbar li a {
        display: flex;
        flex: 1;
        justify-content: center;
        text-align: center;
        align-items: center;
        text-transform: capitalize;
        font-size: 25px;
        text-decoration: none;
        padding: 10px 30px;
        position: relative;
        height: fit-content;
        width: fit-content;
        border: 0px solid;
        color: var(--main-color);
        transition: var(--main-transition);
    }
    .header .links .navbar li a::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: 0;
        opacity: 0;
        border-radius: 25px;
        background-color: #FFD700;
        transition: all 0.5s ease-in-out;
    }
    .header .links ul li:hover a::before {
        opacity: 1;
    }
    .header.sticky{
        padding: 5px 10px;
        background: var(--main-color2);
        
    }
        .header.sticky .links ul li a{
        color:var(--main-color);
        }
}

/*end header*/
/*start landing*/
.main-landing{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: "Tenor Sans", sans-serif;
    text-transform: capitalize;
}
.main-landing .indexhero  {
    position: relative;
    width: 100%;
    height: 750px;
    padding: 4rem 0;
    background-color: #1b252f6a;
  }
.main-landing .indexhero #video-parallax{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }

  .main-landing .indexhero .indexcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    height: 750px;
    margin: 0px auto;
    padding: 0;
    z-index: 10;
    
  }
  .indexhero .indexcontainer:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 250px;
    background: var(--main-background);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
  
  .indexhero .indexcontainer .hero-content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-top: -150px;
  }
  .indexhero .indexcontainer .hero-content .buttons{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  
  .indexhero .indexcontainer .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--main-background);
  }
  
  .indexhero .indexcontainer .hero-content p {
    font-size: 1.1rem;
    color: var(--main-background);
    margin-bottom: 2rem;
  }
  
  .indexhero .indexcontainer .hero-content .cta-primary,
  .indexhero .indexcontainer .hero-content .cta-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 10px;
    border: none;
  }
  
  .indexhero .indexcontainer .hero-content .cta-primary {
    background-color:  var(--main-color);
    color: var(--main-color2);
    margin-bottom: 15px;
  }
  
  .indexhero .indexcontainer .hero-content .cta-secondary {
    margin-bottom: 15px;
    background-color: transparent;
    color: var(--main-background);
    border: 1px solid #FFD700;
  }
  @media screen and (max-width:600px){
    .indexhero .indexcontainer .hero-content h1{
      font-size: 21px;
    }
    .indexhero .indexcontainer .hero-content p{
      font-size: 16px;
    }
  }
  
.main-landing .hero-1{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    margin-top: 0;
    background-color: var(--main-background);
}
.main-landing .hero-1 h1{
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1B252F;
}
.main-landing .hero-1 .secfeild{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;   
    overflow: hidden;
}
.main-landing .hero-1 .secfeild .sec-fld{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: var(--main-background2);
    border: 0 solid;
    border-radius: 10px;
    margin: 15px ;
    padding: 10px;
    width: 400px;
    transform: translateY(200%);
    transition: var(--main-transition);
    
    height: fit-content;
    box-shadow: 0 0.1px 25px rgba(0, 0, 0, 0.1);
}
.main-landing .hero-1 .secfeild .sec-fld.openup{
  transform: translateY(0);
}
.main-landing .hero-2{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #f6faff;
    padding: 4rem 0;
}
.main-landing .hero-2 .about-adan{
    display: flex;
    justify-content: flex-start;
    align-items: right;
    text-align: right;
    flex-wrap: wrap;
    color: #1B252F;
}
.main-landing .hero-2 .about-adan2{
    display: flex;
    justify-content: flex-start;
    align-items: left;
    text-align: left;
    flex-wrap: wrap;
    color: #1B252F;
}
.main-landing .hero-2 .about-adan h1{
    font-size: 2.5rem;
    margin: 2rem;
}
.main-landing .hero-2 .about-adan p{
    font-size: 1.4rem;
    display: flex;
    margin: 1rem;
}

.main-landing .hero-2 .about-adan2 h1{
    font-size: 2.5rem;
    margin: 2rem;
}
.main-landing .hero-2 .about-adan2 p{
    font-size: 1.4rem;
    display: flex;
    margin: 1rem;
}
@media screen and (max-width:600px){
  .main-landing .hero-2 .about-adan2 h1{
    font-size:30px;
    font-weight: 500;
}
  .main-landing .hero-2 .about-adan2 p{
    font-size:14px;
    
}
}
.main-landing .hero-3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--main-background2);
}
.main-landing .hero-3 .why-adan{
  display: flex;
  justify-content: center;
  align-items:center;
  flex-direction: row;
  color: #1B252F;
  padding: 2rem 0.5rem;
}
.main-landing .hero-3 .why-adan .wd-side{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 10px;
}
.main-landing .hero-3 .why-adan .wd-side img{
  display: flex;
  width: 500px;
  height: 700px;
  border-radius: 15px;
  box-shadow: 0 0.3px 25px rgba(0, 0, 0, 0.2);
}

.main-landing .hero-3 .why-adan .wd-side h1{
  font-size: 2.5rem;
  margin: 2rem;
}
.main-landing .hero-3 .why-adan .wd-side p{
  font-size: 1.4rem;
  display: flex;
  width: 80%;
  margin: 1rem;
}
@media screen and (max-width: 600px) {
  .hero-content h1{
    font-size: 30px;
    font-weight: 500;
  }
  .hero-content p{
    font-size: 16px;
  }
  .main-landing .hero-1 h1{
    font-size: 30px;
  }
  .main-landing .hero-1 .secfeild .sec-fld{
    width: 80%;
  }
  .main-landing .hero-1 .secfeild .sec-fld h1{
    font-size: 25px;
  }
  .main-landing .hero-1 .secfeild .sec-fld p{
    font-size: 17px;
  }
  .main-landing .hero-2 .about-adan h1{
    font-size: 25px;
  }
  .main-landing .hero-2 .about-adan p{
    font-size: 15px;
  }
  .main-landing .hero-3 .why-adan .wd-side{
    width: 85%;
  }
  .main-landing .hero-3 .why-adan{
    flex-wrap: wrap;
  }
  .main-landing .hero-3 .why-adan .wd-side{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-landing .hero-3 .why-adan .wd-side h1{
    font-size: 20px;
  }
  .main-landing .hero-3 .why-adan .wd-side p{
    font-size: 15px;
  }
  .main-landing .hero-3 .why-adan .wd-side img{
    width: 80%;
    height: 250px;
  }
}
/*end landing*/
/*start footer*/
.footer{
    display: flex;
    justify-content: center;
    align-items:flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    height:fit-content;
    font-family: "Tenor Sans", sans-serif;
    width: 100%;
    background-color: black;
    padding: 2rem 0;
    overflow: hidden;
    z-index: 10;
  }
.footer .footbar{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-transform: capitalize;
  flex-direction: column;
  margin: 20px ;
  padding: 2rem 1rem;
  color: #FFD700;
  background: var(--main-color2);
  border-radius: 15px;
  transform: scale(0);
  transition: var(--main-transition);
  transition-delay: 0.4s;
  box-shadow: 0 0.5px 10px rgba(80, 100, 228, 0.5);
}
.footer .footbar.show-animate{
  transform: scale(1);
}
.footer .footbar a{
  text-decoration: none;
}
.footer .footbar h1{
  font-size: 25px;
  font-weight: bold;
}
.footer .footbar img{
  height: 160px;
  width: 160px;
  border-radius: 15px;
}
.footer .footbar h3{
  font-size: 20px;
  font-weight: bold;
  margin: 5px;
}
.footer .footbar p {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.footer .footbar p img{
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

.footer .footbar .nav-menu{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
}
.footer .footbar .nav-menu p{
  font-size: 20px;
  margin: 10px 15px;
}
.footer .footbar .nav-menu p a{
  text-decoration: none;
  color: #FFD700;
  position: relative;
  width: fit-content;
  padding: 5px;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}
.footer .footbar .nav-menu p a::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  opacity: 0;
  border-radius: 25px;
  background-color: #FFD700;
  transition: all 0.5s ease-in-out;
}
.footer .footbar .nav-menu p:hover a::before{
  opacity: 1;
}

.footer .footbar .social-media i {
  margin-left: 10%;
  margin-right: 10%;
  width: 100px;
  font-size: 50px;
  color: #FFBA08;
  cursor: pointer;
}


.footer .footbar .social-media .fa-facebook {
  position: relative;
  width: 280px;
  height: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.footer .footbar .social-media .fa-facebook::after {
  content: "facebook";
  position: absolute;
  font-family: "Tenor Sans", sans-serif;
  font-size: 35px;
  font-weight: 800;
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
  align-items: center;
  width: 0px;
  height: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto;
  transition:all 0.5s ease-in-out;
}

.footer .footbar .social-media .fa-facebook:hover::after {
  width: 90%;
}
.footer .footbar .social-media .fa-instagram {
  position: relative;
  width: 280px;
  height: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.footer .footbar .social-media .fa-instagram::after {
  content: "Instagram";
  position: absolute;
  font-family: "Tenor Sans", sans-serif;
  font-size: 35px;
  font-weight: 800;
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
  align-items: center;
  width: 0px;
  height: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto;
  transition:all 0.5s ease-in-out;
}

.footer .footbar .social-media .fa-instagram:hover::after {
  width: 90%;
}

.footer .footbar .social-media .fa-linkedin {
  position: relative;
  width: 280px;
  height: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.footer .footbar .social-media .fa-linkedin::after {
  content: "linkedin";
  position: absolute;
  font-family: "Tenor Sans", sans-serif;
  font-size: 35px;
  font-weight: 800;
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
  align-items: center;
  width: 0px;
  height: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto;
  transition:all 0.5s ease-in-out;
}

.footer .footbar .social-media .fa-linkedin:hover::after {
  width: 90%;
}

.footer .footbar .social-media .fa-x-twitter {
  position: relative;
  width: 280px;
  height: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.footer .footbar .social-media .fa-x-twitter::after {
  content: "x-twitter";
  position: absolute;
  font-size: 35px;
  font-weight: 800;
  font-weight: 300;
  text-transform: capitalize;
  font-family: "Tenor Sans", sans-serif;
  text-align: center;
  align-items: center;
  width: 0px;
  height: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto;
  transition:all 0.5s ease-in-out;
}

.footer .footbar .social-media .fa-x-twitter:hover::after {
  width: 90%;
}

.footer .footbar .social-media .fa-square-whatsapp {
  position: relative;
  width: 280px;
  height: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.footer .footbar .social-media .fa-square-whatsapp::after {
  content: "whats app";
  position: absolute;
  font-size: 35px;
  font-weight: 800;
  font-weight: 300;
  text-transform: capitalize;
  font-family: "Tenor Sans", sans-serif;
  text-align: center;
  align-items: center;
  width: 0px;
  height: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto;
  transition:all 0.5s ease-in-out;
}

.footer .footbar .social-media .fa-square-whatsapp:hover::after {
  width: 95%;
}

/*end footer*/
/* start services*/
.main-serv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 25px auto;
    font-family: "Tenor Sans", sans-serif;
}

.main-serv .serv-landing{
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 700px;
}
.main-serv .serv-landing .image-slider{
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 700px;
}
.main-serv .serv-landing .image-slider .slide{
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 700px;
  opacity: 0;
  left: 0;
  transform: translateX(-100%);
}
.main-serv .serv-landing .image-slider .slide.active{
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease-in-out;
}
.main-serv .serv-landing .image-slider .slide.active .info{
  transform: none;
}
.main-serv .serv-landing .image-slider .slide img{
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
}
.main-serv .serv-landing .image-slider .slide .info{
  position: absolute;
  z-index: 1;
  top: 40%;
  right: 10%;
  padding: 25px;
  width: 500px;
  background-color: var(--main-background2);
  border-radius: 10px;
  transform: translateY(150%);
  transition: var(--main-transition);
  box-shadow: 0 0.3px 10px rgba(0, 0, 0, 0.2);
}
.main-serv .serv-landing .image-slider .slide .info h1{
  font-size: 30px;
  font-weight: 600;
  color: var(--main-background2);
  text-transform: uppercase;
  color: var(--main-color2);
}
.main-serv .serv-landing .image-slider .slide .info p{
  color: var(--main-background2);
  font-size: 17px;
  width: 60%;
  background: rgb(0, 0, 0,0.1);
  box-shadow: 0 0.3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  font-weight: 900;
  border-radius: 5px;
  color: var(--main-color2);
}
.main-serv .serv-landing .image-slider .navigation{
  display: flex;
  justify-content: center;
  flex-direction: row;
  z-index: 2;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.main-serv .serv-landing .image-slider .navigation .btn{
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
}
.main-serv .serv-landing .image-slider .navigation .btn.active{
  box-shadow: 0 0.3px 10px rgba(0, 0, 0, 0.2);
  background: var(--main-color);
}
.main-serv .serv-landing-serv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-transform: capitalize;
    color: #1B252F;
}
.main-serv .serv-landing-serv .serv-servicse{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 25px auto;
    margin: 50px 10px;
    flex-wrap: wrap;
}
.main-serv .serv-landing-serv .serv-servicse .service-ex{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: #f6faff;
    border: 0 solid;
    border-radius: 10px;
    margin: 15px ;
    padding: 20px;
    width: 300px;
    height: 650px;
    box-shadow: 0 0.1px 25px rgba(0, 0, 0, 0.1);
}
.main-serv .serv-landing-serv .serv-servicse .service-ex h1{
    display: flex;
    font-size: 23px;
    font-weight: bold;
}
.main-serv .serv-landing-serv .serv-servicse .service-ex p{
    display: flex;
    font-size: 13px;
}
.main-serv .serv-landing-serv .serv-servicse .service-ex button{
    position: absolute;
    bottom: 10px;
    display: flex;
    font-size: 20px;
    color: #FFD700;
    border: #FFD700 1px solid;
    border-radius: 10px;
    cursor: pointer;
    background-color:#1b252f;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}
.main-serv .serv-landing-serv .serv-servicse .service-ex button:hover{
    background-color: #FFD700;
    color: #1B252F;
    box-shadow: 0 0.9px 25px rgba(0, 0, 0, 0.3);
}
.main-serv .serv-landing-serv .serv-servicse .service-ex button:hover a{
    color: #1B252F;
}
.main-serv .serv-landing-serv .serv-servicse .service-ex button a{
  text-decoration: none;
    color: #FFD700;
}
@media screen and (max-width:600px){
  .main-serv .serv-landing .image-slider .slide .info{
    width: 90%;
    height:500px;
    top: 15%;
    right: 5%;
  }
  .main-serv .serv-landing .image-slider .slide .info h1{
    font-size: 19px;
    font-weight: 500;
  }
  .main-serv .serv-landing .image-slider .slide .info p{
    font-size: 15px;
  }
}
/* end services*/
/* start about*/
.about-landing{
  display: flex;
  width: 100%;
  height: 800px;
  position: relative;
}
.about-landing #about-video{
  position: fixed;
    right: 0;
    top: 0;
    width: 100%; 
    background-repeat:no-repeat ;
    background-size: cover;
    z-index: -1;
}
.about-story{
  width: 100%;
  margin: 0;
  background: var(--main-background);
}
/* start timeline*/
.main-time-line{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: var(--main-background2);
}
.main h1 {
    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 50px;
    color: #1B252F;
    text-align: center;
    width: 100%;
}

.main h1 span {
    color: #FFD700;
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 100px auto;
}

.container {
    padding: 10px 50px;
    position: relative;
    width: fit-content;
    animation: movedown 1s linear forwards;
    opacity: 0;
    margin: auto;
    overflow: hidden;
}

@keyframes movedown {

    0% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }

}

.container:nth-child(1) {   animation-delay: 0.5s ;   }
    
.container:nth-child(2) {   animation-delay: 1.5s ;   }

.container:nth-child(3) {   animation-delay: 2.5s ;   }

.container:nth-child(4) {   animation-delay: 3.5s ;   }

.container:nth-child(5) {   animation-delay: 4.5s ;   }

.container:nth-child(6) {   animation-delay: 5.5s ;   }

.container:nth-child(7) {   animation-delay: 6.5s ;   }


.text-box {
    padding: 20px 30px;
    background: #fff;
    position: relative;
    width: 450px;
    border-radius: 15px;
    font-size: 15px;
    box-shadow: 0 0.1px 25px rgba(0, 0, 0, 0.1);
}

.htmltext {
    color: #1B252F;
}

.javascripttext {
    color: #1B252F;
}


.reactjstext {
    color: #1B252F;
}

.nodejstext {
    color: #1B252F;
}

.expressjstext {
    color: #1B252F;
}

.mongodbext {
    color: #1B252F;
}

.phptext {
    color: #1B252F;

}

.company {
    color: #1B252F;
    font-weight: bold;
    letter-spacing: .1rem;
}

.htmlcard {
    border: 1px solid #FFD700;
}

.javascriptcard {
    border: 1px solid #FFD700;
}

.reactjscard {
    border: 1px solid #FFD700;
}

.nodejscard {
    border: 1px solid #FFD700;
}

.expressjscard {
    border: 1px solid #FFD700;
}

.mongodbcard {
    border: 1px solid #FFD700;
}

.phpcard {
    border: 1px solid #FFD700;
}

.left-container {
    left: -44%;
    width: fit-content;
}

.right-container {
    left: 44%;
    width: fit-content;
}



.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: #1B252F;
    top: 0;
    left: 50%;
    z-index: 1;
    animation: moveline 6s linear forwards;
}

@keyframes moveline {

    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow {
    height: 0;
    width: 100px;
    position: absolute;
    top: 38px;
    z-index: -1;
    right: -15px;
}


.right-container-arrow {
    height: 0;
    width: 100px;
    position: absolute;
    top: 38px;
    z-index: -1;
    left: -15px;
}

.htmlarrow {
    border: 5px solid #1B252F;
}

.javascriptarrow {
    border: 5px solid #1B252F;
}

.reactjsarrow {
    border: 5px solid #1B252F;

}

.nodejsarrow {
    border: 5px solid #1B252F;
}

.expressjsarrow {
    border: 5px solid #1B252F;
}

.mongodbarrow {
    border: 5px solid #1B252F;

}

.phparrow {
    border: 5px solid #1B252F;
}


/* Responsive Timeline */

@media screen and (max-width: 900px) {

    .timeline {
        margin: 50px auto;
    }

    .timeline::after {
        left: 5px;
    }

    .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .text-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 70%;
        font-size: 13px;
    }

    .text-box small {
        margin-bottom: 10px;
    }

    .right-container {
        left: 0;
    }
    .left-container {
        left: 0;
    }

    

    .left-container-arrow,
    .right-container-arrow {
        left: -15px;
    }
    
}

/* end timeline*/
ol {
    list-style: none;
  }
.structure-container {
    width: 100%;
    padding: 20px 10px;
    margin:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--main-background);
  }
  
  .structure-container .rectangle {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0.5px 15px rgba(0, 0, 0, 0.1);
  }
  
  
  /* LEVEL-1 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto 40px;
    background: #FFD700;
  }
  
  .level-1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 37px;
    background: #1B252F;
  }
  
  
  /* LEVEL-2 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-2-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .level-2-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 23%;
    width: 46.5%;
    height: 2px;
    background: #1B252F;
  }
  
  .level-2-wrapper::after {
    display: none;
    content: "";
    position: absolute;
    left: -22px;
    bottom: -20px;
    width: calc(100% + 20px);
    height: 2px;
    background: #1B252F;
  }
  
  .level-2-wrapper li {
    position: relative;
  }
  
  .level-2-wrapper > li::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 51%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #1B252F;
  }
  
  .level-2 {
    width: 70%;
    margin: 0 auto ;
    background: #FFD700;
  }
  
  .level-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #1B252F;
  }
  
  .level-2::after {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 20px;
    height: 2px;
    background: #1B252F;
  }
  
  
  /* LEVEL-3 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-3-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .level-3 {
    margin-bottom: 20px;
    background: #FFD700;
  }
  
  
  /* LEVEL-4 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-4-wrapper {
    position: relative;
    ;display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
  }
  
  .level-4-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0px;
    width: 2px;
    height: calc(100% + 20px);
    background: #1B252F;
  }
  
  .level-4-wrapper li + li {
    margin-top: 20px;
  }
  
  .level-4 {
    font-weight: normal;
    width: 120px;
    margin-left: 35px;
    background: #FFD700;
  }
  
  .level-4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 17px;
    height: 2px;
    background: #1B252F;
  }
  
  
  /* MQ STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  @media screen and (max-width: 700px) {
    .container {
      max-width: 100%;
      padding: 20px 10px;
      margin: 20px auto;
    }
    .container .level-1{
      width: 85%;
    }
    .rectangle {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }
    .container .level-2 {
      display: flex;
      width: 80%;
      margin-left: -35px;
      background: #FFD700;
    }
    .container .level-3{
      display: flex;
      width: 150px;
      margin-left: -165px;
      background: #FFD700;
    }
    .container .level-4{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 180px;
      height: 120px;
      margin-left: -180px;
      background: #FFD700;
    }
    .level-4-wrapper::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -147px;
      width: 2px;
      height: calc(100% + 20px);
      background: #1B252F;
    }
    
    .level-1 {
      margin-bottom: 20px;
    }
  
    .level-1::before,
    .level-2-wrapper > li::before {
      display: none;
    }
    
    .level-2-wrapper,
    .level-2-wrapper::after,
    .level-2::after {
      display: block;
    }
  
    .level-2-wrapper {
      width: 90%;
      margin-left: 10%;
    }
  
    .level-2-wrapper::before {
      left: -20px;
      width: 2px;
      height: calc(100% + 40px);
    }
  
    .level-2-wrapper > li:not(:first-child) {
      margin-top: 50px;
    }
  }
  /* structure english*/
  .con-main-structure{
    width: 100%;
    padding: 25px 10px;
    background: var(--main-background);
  }
  ol {
    list-style: none;
  }
.container-english {
    max-width: 1000px;
    padding: 20px 10px;
    margin: 20px auto;
    text-align: center;
  }
  
.container-english 
  .rectangle {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0.5px 15px rgba(0, 0, 0, 0.1);
  }
  
  
  /* LEVEL-1 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-english .level-1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto 40px;
    background: #FFD700;
  }
  
  .container-english .level-1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #1B252F;
  }
  
  
  /* LEVEL-2 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-english .level-2-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .container-english .level-2-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 28.5%;
    width: 48%;
    height: 2px;
    background: #1B252F;
  }
  
  .container-english .level-2-wrapper::after {
    display: none;
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: calc(100% + 20px);
    height: 2px;
    background: #1B252F;
  }
  
  .container-english .level-2-wrapper li {
    position: relative;
  }
  
  .container-english .level-2-wrapper > li::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 51%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #1B252F;
  }
  
  .container-english .level-2 {
    width: 70%;
    margin: 0 auto ;
    background: #FFD700;
  }
  
  .container-english .level-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #1B252F;
  }
  
  .container-english .level-2::after {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 20px;
    height: 2px;
    background: #1B252F;
  }
  
  
  /* LEVEL-3 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-english .level-3-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .container-english .level-3 {
    margin-bottom: 20px;
    background: #FFD700;
  }
  
  
  /* LEVEL-4 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-english .level-4-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
  }
  
  .container-english .level-4-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 35px;
    width: 2px;
    height: calc(100% + 20px);
    background: #1B252F;
  }
  
  .container-english .level-4-wrapper li + li {
    margin-top: 20px;
  }
  
  .container-english .level-4 {
    font-weight: normal;
    width: 160px;
    background: #FFD700;
  }
  
  .container-english .level-4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 17px;
    height: 2px;
    background: #1B252F;
  }
  
  
  /* MQ STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  @media screen and (max-width: 700px) {
    .container {
      max-width: 100%;
      padding: 20px 10px;
      margin: 20px auto;
    }
    .container .level-1{
      width: 85%;
    }
    .rectangle {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }
    .container .level-2 {
      display: flex;
      width: 80%;
      margin-left: -35px;
      background: #FFD700;
    }
    .container .level-3{
      display: flex;
      width: 150px;
      margin-left: -165px;
      background: #FFD700;
    }
    .container .level-4{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 180px;
      height: 120px;
      margin-left: -180px;
      background: #FFD700;
    }
    .level-4-wrapper::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -147px;
      width: 2px;
      height: calc(100% + 20px);
      background: #1B252F;
    }
    
    .level-1 {
      margin-bottom: 20px;
    }
  
    .level-1::before,
    .level-2-wrapper > li::before {
      display: none;
    }
    
    .level-2-wrapper,
    .level-2-wrapper::after,
    .level-2::after {
      display: block;
    }
  
    .level-2-wrapper {
      width: 90%;
      margin-left: 10%;
    }
  
    .level-2-wrapper::before {
      left: -20px;
      width: 2px;
      height: calc(100% + 40px);
    }
  
    .level-2-wrapper > li:not(:first-child) {
      margin-top: 50px;
    }
  }
  
  
  
  
  /* structure english*/
  /* start news*/
  .adan-news{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background: var(--main-background2);
  }
  .adan-news h1{
    font-size: 50px;
    font-weight: bold;
    color: var(--main-color2);
  }
  /* end news*/
  
  
  
  
  
  
/* end about*/
/* start contact*/
.main-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Tenor Sans", sans-serif;
    width: 100%;
}
.main-contact .con-landing{
    display: flex;
    width: 100%;
}
.main-contact .con-landing img{
    display: flex;
    width: 100%;
    height: 600px;
}
.main-contact .con-body{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-transform: capitalize;
    background-color: #f6faff;
}
.main-contact .con-body h1{
    font-size: 50px;
    font-weight: bold;
    width: 100%;
}
.main-contact .con-body .con-form{
    position: relative;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 25px;
    height: 800px;
    width: 500px;
    border: 0px solid;
    border-radius: 15px;
    box-shadow: 0 0.5px 25px rgba(0, 0, 0, 0.1);
}
.main-contact .con-body .con-form .form-lab{
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    margin-bottom: 30px;
}
.main-contact .con-body .con-form .form-lab label {
    font-size: 20px;
    font-weight: bold;
    right: 0;
    width: 120px;
    text-align: center;
    align-items: center;
}
.main-contact .con-body .con-form .form-lab input ,textarea {
    font-size: 20px;
    width: 200px;
    height: 30px;
    padding: 20px 15px;
    margin: 20px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}
.main-contact .con-body .con-form .form-lab button{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    display: flex;
    font-size: 20px;
    width: 150px;
    height: 45px;
    color: #FFD700;
    border: #FFD700 1px solid;
    border-radius: 10px;
    cursor: pointer;
    background-color: #1B252F;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}
.main-contact .con-body .con-form .form-lab button:hover{
    background-color: #FFD700;
    color: #1B252F;
    box-shadow: 0 0.9px 25px rgba(0, 0, 0, 0.3);
}
.main-contact .con-body .con-address{
    display: flex;
    justify-content:center;
    align-items: flex-start;
    flex-direction: column;
    margin: 25px;
    padding: 20px;
    margin-bottom: 50px;
    color: #1B252F;
}
.main-contact .con-body .con-address h1{
    font-size: 50px;
    font-weight: bold;
    width: 100%;
}
.main-contact .con-body .con-address h3{
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.main-contact .con-body .con-address p{
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-contact .con-body .con-address p img{
    width: 25px;
    height: 25px;
    margin-left: 10px;
}
.main-contact .con-body .con-address .adan-mail{
    text-transform: lowercase;
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
}
.main-contact .con-body .con-address .whatsapp{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.main-contact .con-body .con-address i{
    color: rgb(14, 218, 150);
    font-size: 50px;
    font-weight: 500;
    margin: 5px;
}
.main-contact .con-body .con-address button{
    display: flex;
    align-items: center;
    width: 150px;
    height: 45px;
    color: #FFD700;
    border: #FFD700 1px solid;
    border-radius: 10px;
    cursor: pointer;
    background-color: #1B252F;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}
.main-contact .con-body .con-address button a{
    text-decoration: none;
    color: #FFD700;
}
.main-contact .con-body .con-address button:hover{
    background-color: #FFD700;
    color: #1B252F;
    box-shadow: 0 0.9px 25px rgba(0, 0, 0, 0.3);
}
.main-contact .con-body .con-address button:hover a{
    color: #1B252F;
}
@media screen and (max-width:500px){
    .main-contact .con-body .con-form{
        width: 90%;
    }
    .main-contact .con-body .con-form h1{
        font-size: 25px;
    }
    .main-contact .con-body .con-form .form-lab label{
        font-size: 15px;
    }
    .main-contact .con-body .con-form .form-lab input ,textarea{
        width: 130px;
        font-size: 15px;
    }
}

/* end contact*/
