* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --dark-blue: #497b8d;
  --main-color: #00b0f0;
  --second-color: #ec008c;
  --bg-color: #fff;
  --text-color: #000;
  --second-bg-color: #7ed6f7;
  --second-cl-ligh: #ff9fd9;
  --other-color: rgb(255, 208, 236);
  --other-with-color: rgb(63, 63, 63);
  --other: #ffffff;
  --hd-color: #00000027;
  --white-sd: #CDF6FD;

  --h1-font: 85.8px;
  --h2-font: 40px;
  --h3-font: 35px;
  --p-font: 13px;
  --italic: italic;
}
/* body */

body {
  color: var(--text-color);
  background: var(--other);
  font-family: 'Poppins', sans-serif;
}

/* Header */

header{
  width: 100%;
  margin: auto;
}

/* Nav */

.nav1 .a{
  color: transparent;
}
.nav1{
  display: flex;
  height: 100px;
  justify-content: center;
}

.nav1 ul{
  display: flex;
  list-style: none;
  margin-right: 50px;
  margin-top: 30px;
}
.nav1 .menu{
  margin-top: -55px;
}
/* Logo */

.logo{
  margin: 15px;
  width: 200px;
  height: 65px;
  cursor: pointer;
}

/* All Certifications Box */

  .all-courses-box{
    width: 150px;
    margin-right: 700px;
    height: 40px;
    background: var(--main-color);
    border-radius: 10px;
  }
.all-courses-box a{
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: var(--other);
}
.all-courses-box a .folder{
  margin-top: 9px;
  margin-right: 10px;
}
.all-courses-box a h3{
  margin-top: 11px;
  font-size: 14px;
}
/* Search */
  .nav1 form{
    display: none;
  }

.search{
  width: max-content;
  display: flex;
  align-content: center;
  border-radius: 10px;
  background: var(--other);
  border: 1px solid var(--main-color);
  margin-right: 300px;
}
.search-input{
  font-size: 16px;
  font-family: "lexend", sans-serif;
  color: var(--other-with-color);
  margin-left: 14px;
  outline: none;
  border: none;
  background: transparent;
  width: 300px;
}
.search-input::placeholder, .search-icon{
  color: var(--main-color);
  padding: 5px;
}
.search-icon{
  border: 1px solid var(--main-color);
  border-radius: 5px;
}

/* Button */

.nav1 button{
height: 40px;
width: 100px;
background: var(--main-color);
border: 2px solid var(--main-color);
margin-left: -90px;
display: inline-block;
color: var(--other);
font-size: 18px;
font-weight: 400;
transition: all ease .50s;
border-radius: 5px;
cursor: pointer;
}
.nav1 button:hover{
transform: translateX(5px);
background: transparent;
border: 2px solid var(--main-color);
color: var(--main-color);
}


/* Second Navigation Bar */

.nav2{
  background: var(--main-color);
  text-align: center;
}
.nav2 ul{
  display: inline-flex;
  list-style: none;
  color: var(--other);
}
.nav2 ul li{
  margin: 15px;
  padding: 15px;
}
.nav2 ul .category p{
  margin-top: 20px;
  margin-bottom: -35px;
  margin-left: -45px;
  font-style: var(--italic);
  font-size: 13px;
}
.nav2 ul li a{
  text-decoration: none;
  color: var(--other);
}
.nav2 ul li:hover{
  background: var(--second-bg-color);
  border-radius: 3px;
}
.or{
  display: flex;
}

/* Sub Menu Category */

.sub-menu{
  display: none;
}
.nav2 ul li:hover .sub-menu{
  display: block;
  position: absolute;
  background: var(--main-color);
  margin-top: 15px;
  margin-left: -15px;
  border-radius: 10px;
  box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
}
.nav2 ul li:hover .sub-menu ul{
  display: block;
  margin: 10px;
}
.nav2 ul li:hover .sub-menu ul li{
  padding: 10px;
  border-bottom: 1px dotted var(--other);
  border-radius: 3px;
  text-align: left;
}
.bi-caret-left-fill{
  float: left;
  margin-right: 10px;
}


/* second Sub Menu */

/* second Sub Menu */
.uk-course .hover-me:hover .sub-menu-1{
  display: block;
  position: relative;
  margin-left: 200px;
  margin-top: -80px;
  background: var(--white-sd);
}
.uk-course .sub-menu-1{
  width: 400px;
  margin-left: 350px;
}
.uk-course .hover-me:hover .sub-menu-1 .sec1{
  width: 100%;
}
.sub-menu-1{
  display: none;
  width: 800px;
  border-radius: 10px;
  box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
}
.active1 .hover-me:hover .sub-menu-1{
  display: block;
  position: absolute;
  margin-left: 200px;
  margin-top: -250px;
  background: var(--white-sd);
}
.active1 .sub-menu{
  width: 300px;
}
.active1 .sub-menu .hover-me .sub-menu-1{
  width: 500px;
}
.active .hover-me:hover .sub-menu-1{
  display: block;
  position: absolute;
  margin-left: -810px;
  margin-top: -200px;
  background: var(--white-sd);
}
.hover-me:hover .sub-menu-1 .section{
  display: flex;
}
.active .hover-me:hover .sub-menu-1 .sec1{
  width: 300px;
}
.hover-me:hover .sub-menu-1 .sec1 ul li a{
  color: var(--other-with-color);
}
.hover-me:hover .sub-menu-1 .sec1 ul li{
  border-bottom: 1px dotted var(--other-with-color);
}
.active1 .hover-me:hover .sub-menu-1 .sec2{
  padding: 30px;
}
.active .hover-me:hover .sub-menu-1 .sec2{
  margin-left: 50px;
  padding: 30px;
  width:  60%;
}
.active .hover-me:hover .sub-menu-1 .sec2 .secd{
  margin-bottom: 50px;
}
.active1 .hover-me:hover .sub-menu-1 .sec2 .secd p span{
  color: var(--main-color);
  font-size: 16px;
}
.active1 .hover-me:hover .sub-menu-1 .sec2 .secd button{
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  background: var(--other);
  border-radius: 5px;
  margin: 10px 140px;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  transition: all ease .50s;
  cursor: pointer;
}
.active1 .hover-me:hover .sub-menu-1 .sec2 .secd button:hover{
  background: transparent;
  transform: scale(1.1);
  color: var(--main-color);
  box-shadow: 0px 0px 50px -25px var(--main-color);
}
.hover-me:hover .sub-menu-1 .sec2 .secd h3{
  color: var(--other-with-color);
  text-align: center;
  margin-left: -20px;
}
.hover-me:hover .sub-menu-1 .sec2 .secd p{
  color: var(--other-with-color);
  font-size: 14px;
  font-style: normal;
  justify-content: baseline;
}
.active1 .sub-menu .hover-me .sub-menu-1 .section .sec2 .secd a{
  color: var(--main-color);
}
.mobile .bi-list, 
.mobile .sub-menu .hover-me a,  
.mobile .active .hover-me:hover .sub-menu-1, 
.mobile .hover-me:hover .sub-menu-1 .sec2 .secd h3, 
.mobile .hover-me:hover .sub-menu-1 .sec2 .secd p, 
.mobile .hover-me:hover .sub-menu-1 .sec1 ul li a, 
.mobile .hover-me:hover .sub-menu-1 .sec1 ul li{
  color: transparent;
  background: transparent;
  border: none;
  box-shadow: 0px 29px 51px 2px rgba(0, 0, 0, 0);
}

/* section Content */

.content{
    width: 1349px;
    padding: 40px 80px 0 80px;
    margin: auto;
    justify-content: center;
}

/*  head  */

.head .head-first-sec{
    width: 60%;
}
.head .head-first-sec .h7{
    font-size: 25px;
    padding: 0 0 15px 0;
}
.head .head-first-sec h1{
    padding: 0 0 15px 0;    
    font-size: 25px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.head .head-first-sec p{
    font-size: 14px;
}
span{
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
}

/* us */

.us{
    display: flex;
}
.us .us-1{
    width: 33.33333%;
    border-radius: 10px;
    box-shadow: 0px 0px 50px -25px var(--other-with-color);
    padding: 30px;
    margin: 30px;
    transition: all ease .40s;
}
.us .us-1 h1{
    color: var(--main-color);
}
.us .us-1:hover{
    transform: scale(1.1);
    background: var(--white-sd);
    box-shadow: 0px 0px 50px -25px var(--main-color);
}

/* our team */
.Team{
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-container{
    max-width: 1120px;
    width: 100%;
    padding-bottom: 50px;
}
.slide-content{
    margin: 0 40px;
}
.title{
    text-align: center;
    padding: 20px;
    font-size: 30px;
    color: var(--main-color);
}
.card-wrapper{
    display: flex;
    padding-bottom: 20px;
}
.card{
    width: 328px;
    border-radius: 25px;
    background: var(--other);
    height: 300px;
    border: 2px solid var(--hd-color);
    margin-right: 40px;
    margin-bottom: 20px;
    transition: all ease .40s;
}
.card:hover{
    transform: scale(1.1);
    background: var(--white-sd);
    box-shadow: 0px 0px 50px -25px var(--main-color);
}
.image-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 14px;
}
.name{
  font-size: medium;
}
.card-image{
    position: absolute;
    height: 100px;
    border-radius: 25px;
    box-shadow: 0px 0px 50px -25px var(--main-color);
    width: 100px;
    background: var(--other);
    padding: 3px;
}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--main-color);
}
.position{
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 5px;
}
.social-links a{
    size: 10px;
    color: var(--other-with-color);
    text-align: center;
    text-decoration: none;
}
.social-links i{
    margin: 15px;
    transition:  ease-in-out .40s;
}
.social-links i:hover{
    background: var(--main-color);
    padding: 10px;
    border-radius: 20%;
    color: var(--other);
    transform: scale(1.1);
}

/* Learn More BTN */

.learn-more-btn{
    display: none;
    justify-content: center;
}
.learn-more-btn button{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--other);
    font-size: 18px;
    font-weight: 400;
    border: 2px solid var(--main-color);
    transition: all ease .50s;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    margin-top: 20px;
}
.learn-more-btn button:hover{
    transform: scale(1.1);
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

/* other section */
.other-sec{
    padding: 20px;
    padding-top: 50px;
    display: none;
}
.other-sec .sec-1{
    display: flex;
}
.other-sec .sec-1 .l-sec{
    width: 60%;
}
.other-sec .sec-1 .l-sec h2,.other-sec h2{
    padding: 0 0 20px 0;   
    color: var(--main-color); 
    font-size: 25px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.other-sec .sec-1 .l-sec p{
    font-size: 16px;
    padding: 0 0 20px 0; 
}
.other-sec .sec-2{
    display: flex;
}
.other-sec .sec-2 .sec-0{
    width: 33.33333%;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    transition: all ease .40s;
}
.other-sec .sec-2 .sec-0 .nub-1{
    display: flex;
    padding-bottom: 20px;
}
.other-sec .sec-2 .sec-0 .nub-1 p{
    padding-left: 20px;
}
.other-sec .sec-2 .sec-0 .nub-1 i{
    color: var(--main-color);
}

/* Footer */
footer{
    width: 100%;
    margin: auto;
    background-color: var(--main-color);
  }
  footer .content{
    display: flex;
    justify-content: center;
  }
footer .content .middle{
  width: 1300px;
  padding: 20px 20px 0 20px;
}
  footer .content .middle .mid{
    display: flex;
  }
footer .content .middle .mid .parts{
  border-radius: 10px;
  width: 300px;
  padding: 10px;
  margin: 5px;
  transition: all ease .40s;
}
  footer .content .middle .mid .parts .logo{
    margin-left: -20px;
    width: 200px;
    height: 100px;
    cursor: pointer;
  }
  footer .content .middle .mid .parts h3{
    margin-bottom: 20px;
    color: var(--other);
  }
  .soc-links a{
    size: 10px;
    color: var(--other);
    text-align: center;
    text-decoration: none;
    margin: 5px;
  }
  footer .content .middle .mid .soc-links i{
    transition:  ease-in-out .40s;
  }
  footer .content .middle .mid .soc-links i:hover{
    background: var(--second-bg-color);
    padding: 10px;
    border-radius: 20%;
    color: var(--other);
    transform: scale(1.1);
  }
  footer .content .middle .mid .parts1{
    width: 18%;
  }
  footer .content .middle .mid .parts ul{
    list-style: none;
  }
  footer .content .middle .mid .parts ul li{
    margin: 10px;
    transition:  ease-in-out .40s;
  }
  footer .content .middle .mid .parts ul li:hover{
    transform: scale(1.1);
  }
  footer .content .middle .mid .parts ul li a{
    text-decoration: none;
    color: var(--other);
    padding: 10px;
  }
  footer .content .middle .mid .parts ul li a:hover{
    background: var(--second-bg-color);
    border-radius: 3px;
    color: var(--other);
  }
  footer .content .middle .mid .parts ul li a i{
    margin-right: 5px;
  }
  footer .content .middle .mid .parts ul li button{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white-sd);
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 400;
    border: 2px solid var(--main-color);
    transition: all ease .50s;
    text-decoration: none;
    margin-left: 20px;
    margin-top: 20px;
  }
  footer .content .middle .mid .parts ul li button:hover{
    transform: scale(1.1);
    background: transparent;
    border: 2px solid var(--bg-color);
    color: var(--other);
  }
  @media screen and (max-width: 1000px) {
    /* Header */
    header{
      width: 100%;
      margin: auto;
    }
    /* Top Nav */
    .nav1{
      height: 80px;
      justify-content: left;
    }
    .nav1 .logo{
      width: 150px;
      height: 50px;
    }
    .nav1 ul .active{
      margin-top: -5px;
    }
    .nav1 ul .active .a{
      margin-left: 350px;
      color: var(--main-color);
      font-weight: 800;
      font-size: 20px;
      cursor: pointer;
    }
    .nav1 .a:hover{
      border-radius: 3px;
      background: var(--white-sd);
      padding: 2.5px 10px;
    }
    .nav1 .menu{
      display: none;
      margin-left: 200px;
    }
    .nav1 ul{
      display: block;
    }
    .nav1 ul li:hover .menu{
      display: block;
      position: absolute;
      background: var(--bg-color);
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
      margin-top: 5px;
      border-radius: 10px;
      padding-bottom: 10px;
      width: 200px;
      margin-right: 200px;
      border: 2px solid var(--white-sd);
    }
    .nav ul li:hover .menu ul{
      display: block;
      margin: 0 10px;
    }
    .nav1 ul li:hover .menu ul li{
      padding: 5px 20px;
      border-radius: 3px;
      text-align: left;
    }
    .nav1 ul li:hover .menu ul .all-courses-box{
      margin-left: 15PX;
      box-shadow: 0px 29px 51px 2px var(--white-sd);
    }
    .nav1 ul li:hover .menu ul button{
      margin-left: 65PX;
      box-shadow: 0px 29px 51px 2px var(--white-sd);
    }
    .nav1 ul li:hover .menu .search{
      display: none;
    }
    /* Second Nav */
    .or{
      display: none;
    }
    .category{
      margin-left: 0px;
      height:70px;
      margin-top: 10px;
      justify-content: left;
    }
    .category .hover-me:hover .sub-menu-1{
      display: none;
    }
    .bi-caret-right-fill{
      display: none;
    }
    .active1, .active1 .category{
      display: none;
    }
    .mobile{
      margin-left: 300px;
      margin-top: 5px;
    }
    .nav2 ul li:hover .sub-menu{
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
    }
    .mobile .bi-list{
      color: var(--bg-color);
    }
    .mobile .sub-menu .hover-me a{
      color: var(--other);
      font-size: 13px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec1 ul li{
      border-bottom: 1px dotted var(--other-with-color);
    }
    .mobile .hover-me:hover .sub-menu-1 .sec2 .secd h3{
      color: var(--other-with-color);
      font-size: 14px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec2 .secd p{
      color: var(--other-with-color);
      font-size: 10px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec1 ul li a{
      color: var(--other-with-color);
      font-size: 10px;
    }
    .mobile .active .hover-me:hover .sub-menu-1{
      display: block;
      position: absolute;
      margin-left: -570px;
      margin-top: -140px;
      background: var(--white-sd);
    }
    .sub-menu-1{
      width: 550px;
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
    }
    .hover-me:hover .sub-menu-1 .sec2{
      padding: 0px;
      margin-left: 0px;
    }
    .hover-me:hover .sub-menu-1 .sec2 .secd{
      margin-bottom: 0px;
    }
    .active .hover-me:hover .sub-menu-1 .sec1{
      width: 200px;
    }
    .nav2 ul li{
      margin: 10px;
      padding: 10px;
    }
    /*content */
    .content{
      width: 750px;
      padding: 30px 0 0 30px;
      margin: auto;
      justify-content: center;
    }
    /*  head  */
    .head{
      display: flex;
    }
    .head .head-first-sec{
        width: 80%;
    }
    .head .head-first-sec .h7{
        font-size: 18px;
    }
    .head .head-first-sec h1{   
        font-size: 20px;
        font-weight: 800;
    }
    .head .head-first-sec p{
        font-size: 10px;
    }
    span{
        color: var(--main-color);
        font-size: 12px;
        font-weight: 600;
    }
        /* us */
    
    .us{
      display: flex;
    }
    .us .us-1{
      width: 33%;
    }
    .us .us-1 h1{
      font-size: 20px;
    }
    .us .us-1 p{
      font-size: 10px;
    }
    .us .us-1 span{
      font-size: 10px;
    }
    /* our team */
    .Team{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .slide-container{
      max-width: 1120px;
      width: 100%;
    }
    .slide-content{
      margin: 10px 10px;
    }
    .title{
      text-align: center;
      padding: 20px;
      margin-left: -100px;
      font-size: 20px;
      color: var(--main-color);
    }
    .card-wrapper{
      display: flex;
      padding-bottom: 0px;
    }
    .card{
      width: 63%;
      margin-bottom: 20px;
    }
    .card-content h1{
      font-size: 20px;
    }
    .card-content h2{
      font-size: 16px;
    }
    .card-content i{
      font-size: 15px;
      margin: 10px;
    }
    /* Learn More BTN */
    
    .learn-more-btn{
      display: flex;
      justify-content: center;
      margin-left: -100px;
    }
    /* other section */
    .other-sec{
      width: 750px;
      padding: 30px 30px 20px 30px;
    }
    .other-sec .sec-1{
      display: flex;
    }
    .other-sec .sec-1 .l-sec{
      width: 100%;
    }
    .other-sec .sec-1 .l-sec h2,.other-sec h2{
      padding: 0 0 20px 0;   
      color: var(--main-color); 
      font-size: 16px;
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
    }
    .other-sec .sec-1 .l-sec p{
      font-size: 12px;
      padding: 0 0 20px 0; 
    }
    .other-sec .sec-2{
      display: flex;
    }
    .other-sec .sec-2 .sec-0{
      width: 100%;
      border-radius: 10px;
      padding: 0px;
      margin: 5px;
      transition: all ease .40s;
    }
    .other-sec .sec-2 .sec-0 .nub-1{
      display: flex;
      padding-bottom: 15px;
    }
    .other-sec .sec-2 .sec-0 .nub-1 p{
      padding-left: 15px;
      font-size: 12px;
    }
    .other-sec .sec-2 .sec-0 .nub-1 i{
      color: var(--main-color);
      font-size: 12px;
    }
    /*footer*/
  
    footer{
      width: 100%;
      height: 100%;
      margin: auto;
      background-color: var(--main-color);
    }
    footer .content{
      display: flex;
      justify-content: center;
    }
    footer .content .middle{
      width: 750px;
      padding: 30px 0 0 30px;
    }
    footer .content .middle .mid{
      display: flex;
    }
    footer .content .middle .mid .parts{
      width: 100%;
      padding: 1px;
    }
    footer .content .middle .mid .parts .logo{
      width: 150px;
      height: 80px;
    }
    footer .content .middle .mid .parts h3{
      font-size: 15px;
    }
    footer .content .middle .mid .parts a{
      font-size: 13px;
    }
    footer .parts{
      border-radius: 10px;
      padding: 0px;
      margin: 0px;
      transition: all ease .40s; 
  }
  }
  
  @media (max-width: 663px) {
    /* Header */
    header{
      width: 100%;
      margin: auto;
    }
    /* Top Nav */
    .nav1{
      height: 80px;
    }
    .nav1 .logo{
      width: 150px;
      height: 50px;
    }
    .nav1 ul .active{
      margin-top: -5px;
    }
    .nav1 ul .active .a{
      margin-left: 150px;
      color: var(--main-color);
      font-weight: 800;
      font-size: 20px;
      cursor: pointer;
    }
    .nav1 .a:hover{
      border-radius: 3px;
      background: var(--white-sd);
      padding: 2.5px 10px;
    }
    .nav1 .menu{
      display: none;
      margin-left: -10px;
    }
    .nav1 ul{
      display: block;
    }
    .nav1 ul li:hover .menu{
      display: block;
      position: absolute;
      background: var(--bg-color);
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
      margin-top: 5px;
      border-radius: 10px;
      padding-bottom: 10px;
      width: 200px;
      margin-right: 200px;
      border: 2px solid var(--white-sd);
    }
    .nav ul li:hover .menu ul{
      display: block;
      margin: 0 10px;
    }
    .nav1 ul li:hover .menu ul li{
      padding: 5px 20px;
      border-radius: 3px;
      text-align: left;
    }
    .nav1 ul li:hover .menu ul .all-courses-box{
      margin-left: 15PX;
      box-shadow: 0px 29px 51px 2px var(--white-sd);
    }
    .nav1 ul li:hover .menu ul button{
      margin-left: 65PX;
      box-shadow: 0px 29px 51px 2px var(--white-sd);
    }
    .nav1 ul li:hover .menu .search{
      display: none;
    }
    /* Second Nav */
    .or{
      display: none;
    }
    .category{
      height:70px;
      margin-top: 0px;
      margin-left: -100px;
    }
    .hover-me:hover .sub-menu-1{
      display: none;
    }
    .bi-caret-right-fill{
      display: none;
    }
    .mobile{
      margin-left: -10px;
      margin-top: 5px;
    }
    .nav2 ul li:hover .sub-menu{
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
    }
    .mobile .bi-list{
      color: var(--bg-color);
    }
    .mobile .sub-menu .hover-me a{
      color: var(--other);
      font-size: 13px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec1 ul li{
      border-bottom: 1px dotted var(--other-with-color);
    }
    .mobile .hover-me:hover .sub-menu-1 .sec2 .secd h3{
      color: var(--other-with-color);
      font-size: 14px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec2 .secd p{
      color: var(--other-with-color);
      font-size: 10px;
    }
    .mobile .hover-me:hover .sub-menu-1 .sec1 ul li a{
      color: var(--other-with-color);
      font-size: 13px;
    }
    .mobile .active .hover-me:hover .sub-menu-1{
      display: block;
      position: absolute;
      margin-left: -570px;
      margin-top: -140px;
      background: var(--white-sd);
    }
    .sub-menu-1{
      width: 550px;
      box-shadow: 0px 29px 51px 2px rgba(0,0,0,0.32);
    }
    .hover-me:hover .sub-menu-1 .sec2{
      padding: 0px;
      margin-left: 0px;
    }
    .hover-me:hover .sub-menu-1 .sec2 .secd{
      margin-bottom: 0px;
    }
    .active .hover-me:hover .sub-menu-1 .sec1{
      width: 200px;
    }
    .nav2 ul li{
      margin: 10px;
      padding: 10px;
    }


.content{
  width: 450px;
  padding: 30px 0 0 30px;
  margin: auto;
  justify-content: center;
}
/*  head  */
.head{
  display: block;
}
.head .head-first-sec{
    width: 80%;
}
.head .head-first-sec .h7{
    font-size: 18px;
}
.head .head-first-sec h1{   
    font-size: 20px;
    font-weight: 800;
}
.head .head-first-sec p{
    font-size: 10px;
}
span{
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
}
    /* us */

.us{
  display: block;
}
.us .us-1{
  width: 63%;
}
.us .us-1 h1{
  font-size: 20px;
}
.us .us-1 p{
  font-size: 10px;
}
.us .us-1 span{
  font-size: 10px;
}
/* our team */
.Team{
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-container{
  max-width: 1120px;
  width: 100%;
}
.slide-content{
  margin: 10px 10px;
}
.title{
  text-align: center;
  padding: 20px;
  margin-left: -100px;
  font-size: 20px;
  color: var(--main-color);
}
.card-wrapper{
  display: block;
  padding-bottom: 0px;
}
.card{
  width: 73%;
  margin-bottom: 20px;
}
.card-content h1{
  font-size: 20px;
}
.card-content h2{
  font-size: 16px;
}
.card-content i{
  font-size: 15px;
  margin: 10px;
}
/* Learn More BTN */

.learn-more-btn{
  display: flex;
  justify-content: center;
  margin-left: -100px;
}
/* other section */
.other-sec{
  width: 450px;
  padding: 30px 0 0 30px;
}
.other-sec .sec-1{
  display: block;
}
.other-sec .sec-1 .l-sec{
  width: 65%;
}
.other-sec .sec-1 .l-sec h2,.other-sec h2{
  padding: 0 0 20px 0;   
  color: var(--main-color); 
  font-size: 16px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.other-sec .sec-1 .l-sec p{
  font-size: 12px;
  padding: 0 0 20px 0; 
}
.other-sec .sec-2{
  display: block;
}
.other-sec .sec-2 .sec-0{
  width: 65%;
  border-radius: 10px;
  padding: 0px;
  margin: 5px;
  transition: all ease .40s;
}
.other-sec .sec-2 .sec-0 .nub-1{
  display: flex;
  padding-bottom: 15px;
}
.other-sec .sec-2 .sec-0 .nub-1 p{
  padding-left: 15px;
  font-size: 12px;
}
.other-sec .sec-2 .sec-0 .nub-1 i{
  color: var(--main-color);
  font-size: 12px;
}
    /*footer*/
  
    footer{
      width: 100%;
      margin: auto;
      background-color: var(--main-color);
    }
    footer .content{
      display: flex;
      justify-content: center;
    }
    footer .content .middle{
      width: 450px;
      padding: 30px 0 0 30px;
    }
    footer .content .middle .mid{
      display: block;
    }
    footer .content .middle .mid .parts{
      width: 100%;
      padding: 1px;
    }
    footer .content .middle .mid .parts .logo{
      width: 150px;
      height: 80px;
    }
    footer .content .middle .mid .parts h3{
      font-size: 15px;
    }
  }