* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0; 
    padding: 0;
    
  
}
body {
    max-width: auto;
    margin: 0 auto;
  
}
/* New header styling start */
header{
    width: 100%;
    height: 10px;
    position: absolute;
    top: 25vh;
    z-index: 2;
}
.slideMain{
    position: relative;
    width: 105%
}
.headSlider{
   height: 655px;
   display: none; 
   overflow: hidden;

   @media (max-width: 768px) {
        height: 10%;
        
    }
}
.prev, .next{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    transition: 0.1s;
    user-select: none;
    text-decoration: none;
}
.prev:hover, .next:hover{
    color: #093337;
}
.next{
    right: 0;
}
.prevHighlight, .nextHighlight{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: black;
    transition: 0.1s;
    user-select: none;
    text-decoration: none;
    @media (max-width: 768px) {
        padding: -60%;
        margin-left: 40px;
        
    }
}
.prevHighlight:hover, .nextHighlight:hover{
    color: lightblue;
}
.nextHighlight{
   right: 0;
   @media (max-width: 768px) {
        
    }
}

.dotsbox{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}
.dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.active, .dot:hover{
    border-color: #093337;
}
.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
.txt{
    position: absolute;
    color: #fff;
    top: 48%;
    left: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
}
.headtxt{
    color: #fff;
    margin-left: 8%;
    margin-top: 13%;
    
    @media (max-width: 768px) {
       font-size: 5px;
    }
    
}
.headtxt h1{
    margin-top: -8%;
    font-size: 60px;
    font-weight: 700;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 20px;
    margin-left: -20px;
    @media (max-width: 768px) {
        margin-left: 5px;
        font-size: 20px;
        text-align: center;
    }
    
}
.headtxt p{
    font-size: 25px;
    margin-left: -20px;
    @media (max-width: 768px) {
        font-size: 30px;
    }
}
@-webkit-keyframes posi{
    from {left: 25%;}
    to{left: 15%;}
}
@keyframes posi{
    from {left: 25%;}
    to{left: 15%;}
}
@-webkit-keyframes fade{
    from {opacity: 0.8;}
    to{opacity: 1;}
}

@keyframes fade{
    from {opacity: 0.8;}
    to{opacity: 1;}
}
.headSlider img{
    transform: scale(1.5, 1.5);
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 40s;
    animation-name: zoomin;
    animation-duration: 40s;
}
@-webkit-keyframes zoomin{
    from{transform: scale(1, 1);}
    to{transform: scale(1.5, 1.5);}
}
@keyframes zoomin{
    from{transform: scale(1, 1);}
    to{transform: scale(1.5, 1.5);}
}

.navbar {
    background-color: #fff;
    top: 0;
    z-index: 1000;
    position: fixed;
    overflow: visible;
    height: 25%;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.1);
}
#sidebarNav{
    position: fixed;
    top: -38px;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    display: none;
    background-color: #fff;
    box-shadow: -10px 0 10px rgb(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
}
#sidebarNav ul{
    display: grid;
    align-items: start;
    justify-content: start;
}
#sidebarNav li{
    width: 100%;
}
#sidebarNav a{
    width: 100%;
}
.menu-button{
    display: none;
}
#menu-button-display{
    @media (max-width: 768px) {
        padding-top: 25px;
        width:150%;
        height: 150%;
    }

}
.navButtons ul li{
    list-style: none;
    position: relative;
    float: left;
}
.navButtons a{
    display: block;
    text-decoration: none;
    transition: all 0.25s ease;
}
.navButtons li:hover a{
    background: lightgray;
}
.submenu{
    left: 0;
    opacity: 0;
    position: absolute;
    margin-top: -8px;
    visibility: hidden;
    z-index: 1;
    margin-left: -32%;
}
.submenu li{
    margin: 5px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    
}
.submenu li a{
    padding: 4px;
    border-radius: 6%;
}
.navButtons li:hover ul.submenu{
    opacity: 1;
    top: 50px;
    visibility: visible;
}
.signIn{
    border: none;
    padding: 3px;
    background-color: transparent;
    color: #000000;
    margin-left: 8px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}
.signUp{
   border: none;
   padding: 3px; 
   background-color: transparent;
   color: black;
   margin-left: 8px;
   margin-right: 10px;
   border: none;
   border-radius: 10px;
   font-weight: 600;
}
.signIn:hover,
.signUp:hover{
    border: 2px solid lightgray;
}
.logoDiv {
    margin-left: 3%;
    margin-bottom: 2%;
}
.logoDiv button{
  @media (max-width: 768px) { 
        display: none;   
    }  
}
.img-fluid {
    width: 8%;
    margin-top: -2%;
}
.SubscribeBtn {
    background-color: transparent;
    border-radius: 8px;
    border: 2px solid darkgray;
    margin-left: 68vw;
    padding: 2px;
}

.SubscribeBtn:hover {
    transform: scale(1.1);
}
.upperLine {
    border-top: 1px solid darkgrey;
    width: 100%;
    margin-top: -8vh;
}
.navButtons {
    margin-top: 2%;
    margin-left: 10%;
}
.video-container {
    position: relative;
    margin: 0 auto;
   
}

.video-container video {
    width: 40%;
    height: 50%;
    margin-left: 30%;
    

    @media (max-width: 768px) { 
        width: 100%;
         height: 100%; 
         margin-left: 8px;
         
    }  
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    border: none;
    outline: none;
}

.play-button i {
    pointer-events: none;
}


.play-button1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    border: none;
    outline: none;
}

.play-button1 i {
    pointer-events: none;
}
.navButtons a:hover {
    background-color: darkgrey;
    border-radius: 12px;
    transform: scale(1.3);
}

.navButtons i:hover {
    transform: scale(1.3);
}
.no-underline {
    text-decoration: none;
    color: black;
    text-align: left;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;

}
.aiImage{
   margin-left: 22%; 
   @media (max-width: 768px) { 
        
        margin-left: 12%;
        margin-top: -45px;
    }  
}
.aiImage video{
    @media (max-width: 768px) { 
        width: 90%; 
    } 
}
.barsMenu {
    display: none;
    cursor: pointer;
}
.header {
    width: 100%;
    height: 85vh;
    background-image: url('pictures/blurry\ 2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 11.5%;
    flex: 1;
    flex-shrink: 0;
    overflow: hidden;
}
.faIcons{
    margin-left: 20vw;
}
.headCaption {
    margin-left: auto;
}
.headCaption h1{
    color: #fff; 
    font-size: 90px;
    margin-left: 10%; 
    margin-top: 2%; 
    position: absolute;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.headListCont{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 25px;
    @media (max-width: 768px) {
        font-size: 20px;
    }
}
.headCaption p{
    color: #fff;
    position: absolute;
    text-align: center;
    margin-top: 26%;
    margin-left: 10%;
    font-weight: 500;
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.headCaption h3{
    color: #fff; 
    font-size: 45px;
    margin-left: 10%; 
    margin-top: 29%; 
    position: absolute;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.subsBtnLanding{
    margin-top: 27%;
    margin-left: 44%;
    width: 10%;
    color: #fff;
    padding: 10px;
    background-color: transparent;
    border-radius: 10px;
}
.responses{
    width: auto;
    height: 80%;
    background-image: url(pictures/responses.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
}
.cardResponses{
    float: inline-end;
    background-color: #093337;
    padding: 40px;
    margin-right: 100px;
    margin-top: 30px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.5);
}
.cardResponses h3,
.cardResponses p{
    color: #fff;
    text-align: center;
    
}
.cardResponses h3{
    font-size: 45px;
}
.inputTxt{
    width: 90%;
    height: 17vh;
    text-align: start;
    font-weight: 600;
    color: #fff;
    background-color: #0b252b;
    border: hidden;
    margin-left: 20px;
}
.inputNameTxt{
   width: 90%; 
   height: 8vh;
   font-weight: 600;
   color: #fff;
   background-color: #0b252b;
   border: hidden;
   margin-left: 20px;
}
.responseBtn{
    background-color: #fff;
    color: #093337;
    width: 60%;
    height: 5vh;
    text-align: center;
    margin-left: 20%;
    font-weight: 600;
    border: hidden;
}
.slideHead {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}
.aboutUs{
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 85%;
    

    @media (max-width: 768px) {
        height: 100%;
        margin-top: 60vh;  
    }
}
.aboutUs h1{
    position: relative;
    font-size:50px;
    top: 5vh;
    margin-bottom: 70px;
    left: 0;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    @media (max-width: 768px) {
        font-size:40px;
        margin-top: 70%;
    }
}
.aboutUs p{
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    @media (max-width: 768px) {
        font-size: 1.2rem;
        text-align: center;
    }
   
}

.aboutUsSection{
    max-width: 70%;
    margin-left: 15%;
    margin-top: 60%;
    
}
.imgAboutUs{
    margin-right: 5%;
    margin-top: 40px;
}
#readMoreBtn{
    background-color: transparent; 
    border-color: black; 
    border-radius: 0; 
    font-weight: 600;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    width: 17%;
    @media (max-width: 768px) {
        width: 100%;
        font-size: 1.1rem;
    }
}
#aitexting{

   font-weight: 700; color: #fff; margin-bottom: 20px;
    @media (max-width: 768px) {
        font-size: 15px;
        margin-bottom: 70px;
        margin-left: -70px;

    }
}
#slidesheight3 h3{
    margin-left: -60%;
    @media (max-width: 768px) {
        font-size: 15px;
        margin-bottom: 58px;
        margin-left: -90px;

    }
}
#slidesheight2{
    display: block; 
    background-color: lightblue; 
    background-image: url(pictures/2nd\ slide\ \(1\)last.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;  
}
#slidesheight2 h1{

    @media (max-width: 768px) {
        margin-top: -40px;
        margin-left: -50px;
    }

}
#slidesheight1 h1{

    @media (max-width: 768px) {
        margin-top: -50px;
        margin-left: -90px;
    }

}


#slidesheight1{
    display: block; 
    background-image: url(pictures/1st\ slide\ V3-01\ final.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50; 
}
#slidesheight3{
  display: block; 
  background-image: url(company\ logos/slide2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#slidesheight3 .headtxt h3{
    text-align: center;
}


#digitizingcontent{

    font-weight: 700; color: #fff; margin-bottom: 20px;
    @media (max-width: 768px) {
        margin-top: -15px;
         font-size: 15px;
        margin-bottom: 60px;
        margin-left: 10%;
    }
}
#reahlogosid{


    @media (max-width: 768px) {
      width:45%;
        height: 40%;
    }

}
.productHead h1{
    font-size: 50px;
    color: #000000;
    margin-bottom: 4%;
    margin-top: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    @media (max-width: 768px) {
       font-size: 40px;
    }
    
}
.innerContMission{
    display: flex;
}
.mainMissionSec{
    background-color: #eef2f7;
    width: 70%; 
    border-radius: 10px;
    display: flex;
    padding: 30px; 
    align-items: center; 
    justify-content: center;
    margin-top: 5%;
    margin-bottom: 100px;
    margin: 40px; 
    margin-left: auto;
    margin-right: auto;

    @media (max-width: 768px) {
        width: 80%; 
    }
}
.missionImage{
    padding-left: 0;
    width: auto;
    margin-left: -20%;
    margin-top: 20px;
     @media (max-width: 768px) {
        margin-left: 50px;
        
    }
}
.userReview {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    width: 55%;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
    padding-left: 12px;
    margin-left: 35%;

    @media (max-width: 768px) {
        margin-left: 0; 
        
    }
}
.userReview h4{
    margin-top: 35px;
    font-weight: 700;
}
.missionInfo{
    color: #000000;
    
}
.missionInfo h3{
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
   font-weight: 600;
   font-size: 30px;
   
}
.missionInfo p{
     font-size: 1.1rem;
     line-height: 1.4;
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
     justify-content: center;
}
.missionSubSection{
    width: 80%; 
}
.missionSection{
    text-align: center;
    margin-right: 10%;
    margin-top: 75px;
}
.missionSection h1{
   font-size: 60px;
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.missionSection p{
    text-align: center;
    font-size: 15px;
}
.humanInt{
    margin-top: -20%;
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.FAQ{
    background-color: #eef2f7;
    margin: 40px;
    padding: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    @media (max-width: 768px) {
        width: 100%;

    }
    
}
#highligthfirst{


    @media (max-width: 768px) {
        margin-left: 20px;

    }
}
#xuserreview p{

    @media (max-width: 768px) {
        font-size: 1.2rem;
     width: 180%;
        margin-right: -20px;
        padding-bottom: 10px;

    }
}
#myfirstcovid{
    @media (max-width: 768px) {
       font-size: 1.2rem;
       padding-right: 10px;

    }

}
#aboutusID{


    @media (max-width: 768px) {
        font-size: 20px;
        text-align: justify;

    }

}
.togglereadmoreid{

    @media (max-width: 768px) {
        font-size: 23px;

    }
}
#highligthright{

    @media (max-width: 768px) {
        margin-right: -10px;

    }

}
#thechev{

    @media (max-width: 768px) {
        margin-right: -20px;

    }

}
.faqquestions{
    @media (max-width: 768px) {
        margin-left: -45px;
        width: 140%;
    }
}
.wrapper {
  max-width: 60%;
  height: 10%;
  margin: auto;
}

.wrapper h1 {
  text-align: center;
  font-size: 50px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

  @media (max-width: 768px) {
       font-size: 40px;
    }
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  text-align: justify;
  align-items: center;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  
}

.accordion i {
  font-size: 1.4rem;
 
}

.active,
.accordion:hover {
  background-color: #f1f7f5;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #f1f7f5;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: justify;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;

   @media screen and (max-width: 768px) {       
            font-size: 1.2rem;
        }

}
.faq .active {
  border: none;
}
.gradient-footer {
    background-color: #fff;
    color: white;
    width: 100%;
    min-height: 50vh;
    position: relative;
    margin-top: 0%;
    border-top: 2px solid darkgray;
    border-top-left-radius: 10%;
    border-top-right-radius: 10%;
    overflow: hidden;

    @media screen and (max-width: 768px) {       
            padding: 20px;
            min-height: 132vh;
        }
}
#socialFooter{
    display: flex; 
    margin-top: -8%; 
    position: absolute; 
    background-color: #fff;
    width: 100%;    
}

.closedIcon{
    position: absolute;
    margin-top: 24%;
    margin-left: 43%;
    @media screen and (max-width: 768px) {       
            margin-top: 120%;
            width: 100%;
            margin-left: 25%;
            padding-bottom: 40px;
        }
}
#iconsInner{
    @media (max-width: 768px) {
       position: absolute;
       margin-top: 12%; 
       margin-left: 2%; 
      display: none;
    } 
}
.ourProductive{
    background-image: url(pictures/productBackground.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    margin-bottom: 60px;
    min-height: 60%;
    overflow: hidden;
}
.btn-primary{
    border-radius: 0;    
}
.btn-primary:hover{
    background-color: transparent;
    border-color: #093337;
}

.btn.btn-primary.btnC9X,
.btn.btn-primary.btnXSL,
.btn.btn-primary.btnGame,
.btn.btn-primary.btnATM{
    height: 50%;
    width: 110%;
    @media (max-width: 768px) {
        margin-left: -50px;
        width: 330px;
    }
}
.btn.btn-primary.btnC9X:active,
.btn.btn-primary.btnXSL:active,
.btn.btn-primary.btnGame:active,
.btn.btn-primary.btnATM:active{
    background-color: transparent;
    border-color: #9ab0c5;
}
.serviceBtns button,
.serviceBtns2 button {
    margin: 30px auto; 
    
    background-color: transparent;
    border-width: 2px;
    border-color: #fff;
    font-size: 20px;
    font-weight: 800;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

     @media (max-width: 768px) {
        width: 70%;
     }
    
}
.serviceBtns{
   @media (max-width: 768px) {
        margin-bottom: -15px;
     } 
}
.serviceBtns button p,
.serviceBtns2 button p{
    font-size: 1.1rem;

    @media (max-width: 768px) {
        font-size: 1.2rem;
     }
}
#servUpperId{
    display:flex; 
    justify-content: space-between; 
    margin-left: auto;
    margin-right: auto;

    @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 20px;
        margin-left: -8%;  
    }
}
#teamPicsInner{
   display: flex; 
   color: #000000;

   @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 20px; 
    }
}
.serviceBtns{
    align-items: center;
    justify-content: center;
    margin-left: 17%;
    width: 30%;
 
    @media (max-width: 768px) {
        margin-left: auto;
        margin-right: 43%;
        
    }
    
}

#reahAboutUs{
    @media (max-width: 768px) {
       font-size: 20px;
        text-align: justify;

    }


}
.serviceBtns2{
    width: 30%; 
    margin-right: 17%;
}

.serviceBtns,
.serviceBtns2{
    padding: 0;
    margin-top: 2%;   
}

.row{
    margin-top: -2px;
}

.facebook:hover,
.instagram:hover,
.twitter:hover,
.youtube:hover,
.linkedin:hover,
.logo:hover {
    transform: scale(1.2);
}
.facebook img {
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s ease-in-out;
}

.instagram img {
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s ease-in-out;
    margin-left: 10px;
}

.twitter img {
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s ease-in-out;
    margin-left: 10px;
}

.youtube img {
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s ease-in-out;
    margin-left: 10px;
    position: absolute;
}

.linkedin img {
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s ease-in-out;
    margin-left: 45px;
    position: absolute;
}
.quickLinks {
    color: black;
    margin-left: 43%;
    margin-right: auto;
    margin-top: 20px;
    line-height: 1;
    position: absolute;

    @media (max-width: 768px) {
       margin-bottom: -25px;
    }
}
.quickLinks a{
    font-size: 13px;
    color: #000000;
    text-decoration: none;
}

.Address {
    color: black;
    margin-left: 70%;
    margin-right: auto;
    margin-top: 20px;
    position: absolute;
    line-height: 1;
}
.Address a{
    font-size: 13px;
    color: #fff;
}
.qrcode {
    color: black;
    margin-left: auto; 
    margin-right: 90px;
    margin-top: 10%;
    width: 5%;
    position: absolute;
    right: 0; 
}
.logo{
    margin-right: 20px;
    margin-top: 15px;
    position: absolute;
}
.SubscribeBtn i.fas.fa-bell {
    animation: flashBell 1s infinite; 
}
.Contacts{
    color: black;
    margin-left: 16%;
    margin-right: auto;
    margin-top: 20px;
    line-height: 1; 
    position: absolute;
}
.Contacts a{
    font-size: 13px;
    text-decoration: none;
    color: black;
}
.footer-company-name{
    font-size: 10px;
    color: black;
    margin-left: -22%;
    margin-top: 20px;

     @media screen and (max-width: 768px) { 
         margin-left: -12%;
    }
    
}
.footer-company-name a{
    text-decoration: none;
    color: black;
}

.iconMission{
    font-size: 40px;
    margin: 20px auto;
    padding: 20px;
    height: 80px;
    width: 80px;
    color: black;
}

.col-md-3{
    border: 2px solid gainsboro;
    margin: 20px;
    background-color: #edf2fb;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.col-md-3 h3{
    color: black;
    font-family: "Times New Roman", Times, serif;
}
.col-md-3 p{
    color: black;
    font-family: "Times New Roman", Times, serif;
}
.col-md-3:hover{
    box-shadow: 5px 7px 9px -3px rgba(0,0,0,0.5);
    cursor: pointer;
}
#barsHidden{
    display:none;
}
.highlightsSubSection{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    margin-bottom: 5%;
}
.highlightsSubSection .col-sm-4{
    margin-right: -10%;
}
.highlightsSubSection .col-sm-4 h4{
    font-size: 20px;
    color: #093337;
    font-weight: 700;
    text-align: center;
}
.highlightsSubSection .col-sm-4 p{
    font-size: 15px;
    color: #093337;
    text-align: center;  
}
.ourHighlightsSec{
    margin-left: 100px;
    height: 66%;
    width: 85%;
    background-image: url(pictures/board.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}

.backHighDiv h1{
    text-align: center;
    color: black;
    font-size: 50px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    @media (max-width: 768px) {
        font-size: 40px;
    }
   
}
.highlightsVid{
    margin-right: 10%;
    margin-top: -10vh;
    margin-bottom: -10vh;
}
.topLn{
    border-top: 2px solid lightgray;
    width: 70%;
    justify-content: center;
    align-self: center;
    margin-left: 15%;
    margin-bottom: -5%;
    margin-top: 6%;
}

.highlightsInfo h1{
    font-size: 75px;
    color: black;
    margin-bottom: 18px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.highlightsInfo p{
    font-weight: 500;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.highlightsInfo{
    margin-left: 10%;
    padding-right: 20px;
    text-align: center;
    width: 35%;
    margin-right: 3%;
}
.teamhead h1{
    text-align: center;
    margin-top: 15px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 50px;
    color: #000000;

     @media (max-width: 768px) {
        font-size: 40px;
    }
}
.teamhead p{
    color: #000000;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}
.teamPics{
    align-items: center;
    display: table;
    margin-left: 20%;

    @media (max-width: 768px) {
        margin-left: auto;
        margin-right: auto;
    }
}
.ourTeamSubSec{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.teamimages{ 
    @media (max-width: 768px) {
        width: 70%;
        height: 50%;
    }
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 50%;
    max-width: 810px;
    margin: 0 auto;
    margin-bottom: 8%;
    margin-left: auto;
    margin-right: auto;
    
     @media (max-width: 768px) {
        width: 90%;
        height: 90%;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;

}

.carousel-slide {
    flex: 0 0 100%;
    align-items: center;
    margin-left: 10%;
    
}

.carousel-slide .card {
    background-color: #eef2f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    text-align: center;
    height: auto;
    height: 250px;
    font-size: 1.1rem;
    line-height: 1.4;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #000000;

    @media (max-width: 768px) {
        font-size: 20px;
        width: 90%;
        height: 90%;
    }
}
.carousel-slide .card h4{
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 32px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

#picResize{
    height: 70%;
}
.imgCard{
    width: auto;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}
.imgCard img{
    border-radius: 50%;
}
.imgCard h5,
.imgCard p{
    color: #000000;
}

#cardInfo h5,
#cardInfo p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    @media (max-width: 768px) {
        font-size: 1.2rem;  
    }
}
.reviewsSubSection{
    width: 80%;
    margin: 20px auto;
    display: flex;
}
.review {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.reviewMainSec h1{
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 50px;
}
.review .author {
    font-weight: bold;
    color: #333;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.review .date {
    color: #666;
    font-size: 0.9em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.review .content-1 {
    margin-top: 10px;
    color: #333;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media only screen and (min-width: 3000px) {
    .navButtons ul {
        display: flex;
        align-items: center;   
    }

    .navButtons ul li {
        margin-left: 20px;
    }
    .navButtons .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        background-color: #fff;
        padding: 10px;
        border: 1px solid lightgray;
    }

    .navButtons ul li:hover .submenu {
        display: block;
    }

    .navButtons i {
        display: inline-block;
        margin-left: 40px;
    }

    .barsMenu {
        display: none;
    }
    .gradient-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px; 
    }

    #footertxt {
        width: 30%;
    }

    .qrcode {
        width: 20%; 
    }

    #socialFooter {
        width: 30%; 
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .closedIcon {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .copyrights {
        position: static; 
        margin-left: auto; 
        margin-right: auto; 
        margin-top: 20px; 
    }
    
}
@media (max-width: 400px){
    #sidebarNav{
        width: 100%;
        height: 100%;
    }
}
@media(max-width: 800px){
    .navbar{
        width: 100%;
    }
    header{
        width: 100%;
        display: grid;
    }


    .SubscribeBtn,
    .signIn,
    .signUp,
    .faIcons,
    .hideOnMobile{
        display: none;
    }
    .logoDiv a{
        float: inline-end;
    }
   
    #sidebarNav ul{
        margin-top: 40px;
    }
    .menu-button {
        display: block;
    }
    .aboutUsSection {
        flex-direction: column;
        justify-content: center;
    }
    .imgAboutUs{
        margin-left: 20%;
        @media (max-width: 768px) {
            margin-left: -30%;
        }

    }
    .missionImage{

        @media (max-width: 768px) {
            margin-left: -15%;
            width: 10%;
            height: 10%;
        }

    }
    .headtxt{
        width: 100%;
        height: auto;  
        margin-top: 25%;
        @media (max-width: 768px) {
            font-size: 30px;
        }
    }
    #headtxt2{
        text-align: center;
    }
    .headtxt h1{
        font-size: 45px;
        margin-top: -20%;
        @media (max-width: 768px) {
            font-size: 30px;
            margin-left: 10px;

        }
    }
    .headtxt p{
        font-size: 18px;
    }
    .headtxt h3{
        font-size: 26px;
    }
    .aboutUsSection{
        margin-top: 80%;
    } 
    .headSlider{
        width: 100%;
        height: auto;

    }
    #slidesheight2{
        @media (max-width: 768px) {
            width: 100%;
            height: 110%;
        }
    }

    .secSlide{
        flex-direction: column;
    }
    .imgCircleHeader img{
        visibility: hidden;
    }
    .serviceBtns button,
    .serviceBtns2 button{
        margin-left: auto;
        
    }
     .Address,
    .Contacts,
    .quickLinks {
        position: relative;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .Address,
    .Contacts,
    .quickLinks {
        margin-left: auto;
        margin-right: auto;
    }
    #footertxt{
        margin-bottom: -40vh;
        padding-bottom: 20vh;
    }
    
    .qrcode {
        margin-left: auto;
        margin-right: 25%;
        width: 50%;
        align-items: center;
        margin-top: 55%;  
    }
    .gradient-footer{
       width: 100%;
        height: auto;
    }
    #socialFooter{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50%;  
        height: 5%;
    }
}
@media(max-width: 1278px){
    .logoDiv button{
        width: 14%;
        margin-left: 20px;
    }
    #sideMain ul{
        margin-left: -22%;
    }
    .serviceBtns button,
    .serviceBtns2 button{
        margin-left: 40%;
        
    }
}
@media screen and (min-width: 1024px) {
    .aboutUs {
        margin-left: auto;
        margin-right: auto;
        max-width: 60%;
    }
}
.faIcons {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.iconList {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.iconList li {
    margin-left: 21px; 
}

.iconList li:first-child {
    margin-left: 4vw;
}

.iconList li a {
    text-decoration: none;
}
#highligthfirstid{
    @media (max-width: 768px) {
        margin-right: 10%;
        margin-left: 10%;
        font-size: 1.2rem;
    }

}
#discoverid{
    @media (max-width: 768px) {
        margin-top: -12%;
        margin-left: -20%;
        
    }
}

#kslTxt{
    @media (max-width: 768px) {
       font-size: 15px;
       margin-left: 35px;  
    }
}
#africanid{
    @media (max-width: 768px) {
        margin-top: -10%;
        margin-left: -20%;
        font-size: 30px;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 56%;
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 9999;
    color: #fff;
    width: 250px;
    height: 180px;

    @media (max-width: 768px) {
        position: relative;
        left: 14%;
        top: -180px;    
    }
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000000;
    cursor: pointer;
    font-size: 30px;
}
.pop1{
    @media (max-width: 768px) {
       position: relative;
        left: 35%;
        top: -300px;
    }
}
.popup3{
     display: none;
    position: fixed;
    top: 56%;
    left: 78%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 9999;
    color: #fff;
    width: 250px;
    height: 180px;

    @media (max-width: 768px) {
         margin-left: -50%;
    }
}
.aiVideo {
    display: none;
    position: relative;
    width: 30%;
    height: 35%;
    margin-bottom: -14%;
    left: 78%;
    top: -200px;

     @media (max-width: 768px) {
        position: relative;
        left: auto;
        right: auto;
        top: -50vh;
        width: 100%;  
        margin-bottom: -50%;
    } 
}

.aiVideo1 {
    display: none;
    position: relative;
    width: 25%;
    height: 35%;
    margin-bottom: -18%;
    left: 75%;
    top: -350px;

     @media (max-width: 768px) {
        position: relative;
        left: 14%;
        right: auto;
        top: -60vh;
        width: 80%;
        margin-bottom: -50%;  
    } 
}

.aiVideo2 {
    display: none;
    position: relative;
    width: 20%;
    height: 35%;
    margin-bottom: -11%;
    left: 74%;
    top: -400px;

     @media (max-width: 768px) {
        position: relative;
        left: 10%;
        right: auto;
        top: -130vh;
        width: 78%;   
    } 
}
.aiVideo3 {
    display: none;
    position: relative;
    width: 28%;
    height: 32%;
    margin-bottom: -18%;
    left: 75%;
    top: -350px;

     @media (max-width: 768px) {
        position: relative;
        left: 10%;
        right: auto;
        top: -70vh;
        width: 78%; 
    } 
}