
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --blue:#0C9DB3;
    --light:#6cc0d3;
    --white:#ffffff;
    --gradient:linear-gradient(90deg, var(--blue), var(--light));
}

*{
    font-family: 'Jost';
    margin:0; padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none; border:none;
  
}
.black-txt{
  color: #000 !important;
}
*::selection{
    background:var(--white);
    color:black;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background:#ffffff;
}

section{
    min-height: 38vh;
    padding: 27px 9%;
    padding-top: 19.5rem;
    padding-bottom: 2rem;
}

.btne{
    display: inline-block;
    margin: 0px 12px;
    padding: 1.5rem 2rem;
    border-radius:5px;
    background: var(--blue);
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
}

.btne:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 2px;
  color: #0C9DB3;
}

.btn{
  display: inline-block;
  margin: 0px 12px;
  padding: 1.5rem 2rem;
  border-radius:5px;
  background: var(--blue);
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
}

.btn:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 2px;
  color: #0C9DB3;
}

.heading{
    text-align: center;
    background:var(--gradient);
    color:#ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding:1rem;
}

header{
    position: fixed;
    top:0; left:0;
    width:100%;
    background:#ffffff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    padding:0rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
    font-size: 2rem;
    color:var(--blue);
}

header .logo span{
    color:var(--light);
}

header .navbar a{
    font-size: 1.7rem;
    margin-left: 2rem;
    color:var(--blue);
    
}

header .navbar a.active,
header .navbar a:hover{
  color:var(--blue);
  border-bottom: .2rem solid var(--black);
  padding:.7rem 0;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
    color:var(--red);
    border-bottom: .2rem solid var(--red);
    padding:.7rem 0;
}
header .navbar ul li a:hover{
    color:var(--red);
    border-bottom: .2rem solid var(--red);
    padding:.7rem 0;
}
header input{
    display: none;
}

header label{
    font-size: 3rem;
    color:var(--blue);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.home{
    display: flex;
    align-items:inherit;
    justify-content: center;
    background:url(../images/home-bg-img.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .image img{
    width: 26vw;
    animation: float 3s linear infinite;
}

@keyframes float{
    0%, 100%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-3.5rem);
    }
}

.home .content h3{
    font-size: 5.5rem;
    color:#000000;
    
}

.home .content h3 span{
    color:var(--light);
    
}

.home .content p{
  
    align-items: center;
   justify-content: center;
    font-size:18px;
    color:#000000;
    padding:1rem 0;
    margin: 7px 264px 52px -3px;
}

.features .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.features .box-container .box{
    flex:1 1 30rem;
    background:#fff;
    border-radius: .5rem;
    border:.1rem solid var(--blue);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    margin:1.5rem;
    padding:3rem 2rem;
    border-radius: .5rem;
    text-align: center;
    transition: .2s linear;
}

.features .box-container .box h3{
    font-size: 2rem;
    color:#333;
    padding-top: 1rem;
}

.features .box-container .box p{
    font-size: 1.3rem;
    color:#666;
    padding: 1rem 0;
}


 @media (max-width:1200px){
    
    html{
        font-size: 55%;
    }

}

@media (max-width:991px)
{
  section{
        padding:0 3%;
        padding-top: 7.5rem;
        padding-bottom: 2rem;
      }
      header label{
        visibility: visible;
        opacity: 1;
    }

    header .navbar{
        position: absolute;
        top:100%; left: 0;
        width:95%;
        background:#fff;
        padding:1rem 2rem;
        border-top: .1rem solid rgba(0,0,0,.2);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: .2s linear;
    }

    header .navbar a{
        display: block;
        margin:2rem 0;
        font-size: 2rem;
    }

    header input:checked ~ .navbar{
        transform: scaleY(1);
        opacity: 1;
    }

    header input:checked ~ label::before{
        content:'\f00d';
    }

    .home{
        flex-flow: column-reverse;
    }

    .home .image img{
        width:60%;
        margin: 75px 4px 8px 52px;
    }

    .home .content h3{
        font-size: 3.6rem;
    }

    .home .content p{
        font-size: 1.5rem;
        margin: 21px 18px 35px 22px;
    }

}

@media (max-width:768px){

    header label{
        visibility: visible;
        opacity: 1;
    }

    header .navbar{
        position: absolute;
        top:100%; left: 0;
        width:100%;
        background:#fff;
        padding:1rem 2rem;
        border-top: .1rem solid rgba(0,0,0,.2);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: .2s linear;
    }

    header .navbar a{
        display: block;
        margin:2rem 0;
        font-size: 2rem;
    }

    header input:checked ~ .navbar{
        transform: scaleY(1);
        opacity: 1;
    }

    header input:checked ~ label::before{
        content:'\f00d';
    }

    .home{
        flex-flow: column-reverse;
    }

    .home .image img{
        width:60%;
        margin: 75px 4px 8px 52px;
    }

    .home .content h3{
        font-size: 3.6rem;
    }

    .home .content p{
        font-size: 1.5rem;
        margin: 21px 18px 35px 22px;
    }
}
 
@media (max-width:450px){
    
    html{
        font-size: 50%;
    }

    

    /* .about .column .content .buttons a:last-child{
        margin: 1rem 0;
    } */

} 

.bannerl {
  background:#0C9DB3;
  
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  background-attachment: fixed;
  text-align: center;
}

.bannerl .content span{
  font-family: 'Jost';
  font-weight: 500;
  
  justify-content: left;
  font-size: 3rem;
  color: #ffffff;
}

.bannerl .content h3 {
  font-size: 2.5rem;
  color: rgb(0, 0, 0);
  margin-top: 1rem;
  margin-bottom: .5rem;
}





.key .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  
  .key .content ul {
    list-style: none;
    padding: 0;
  }
  
  .key .content ul li {
    padding-left: 28px;
    position: relative;
  }
  
  .key .content ul li+li {
    margin-top: 10px;
  }
  
  .key .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
  }
  
  .key .content p:last-child {
    margin-bottom: 0;
  }
  
  .key .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
  }
  
  .key .content .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
  }

  #service {
    display: -ms-grid;
    display: grid;
    place-items: center;
    min-height: 100vh;
    width: 100vw;
    background: #ffffff;
    margin: -202px -5px -27px -3px;

  }
  /* work*/   #service .heading {
    font-size: 4rem;
    padding-top: 5rem;
    margin: 26rem 0px 4rem 0rem;
    color: rgb(0, 0, 0);
    text-align: center;
    position: relative;
  }
  
  #service .heading::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: .3rem;
    width: 60%;
    border-radius: 5rem;
    background:#0C9DB3;
  }
  
  #service .box-container {
    width: 70%;
  }
  
  #service .box-container .box {
    background: #fff;
    max-width: 52rem;
    border-radius: 3.5rem;
    -webkit-box-shadow: 0 0 0.3rem rgb(0, 0, 0);
    box-shadow: 0 0 0.3rem #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    color: #0C9DB3;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 1rem 1rem;
    margin: 2rem;
    clear: both;
}
  
  #service .box-container .box img {
    height: 7rem;
    margin-right: 4rem;
  }
  
  #service .box-container .box .info {
    padding-left: 2.5rem;
    border-left: 0.4rem solid #08a5bd;
  }
  
  #service .box-container .box .info h2 {
    font-size: 2rem;
    color: #0C9DB3;
  }
  
  #service .box-container .box .info p {
    font-size: 1.5rem;
    color: rgb(12, 12, 12);
  }
  
  #service .box-container .box:nth-child(2) {
    float: right;
  }
  #service .box-container .box:nth-child(4) {
    float: right;
  }
  #service .box-container .box:nth-child(6) {
    float: right;
  }

 .headings {
    font-size: 4rem;
    padding-top: 5rem;
    margin: 2rem 0;
    color:var(--blue);
    text-align: center;
    position: relative;
  }
  
   
.proins .box .exp-box{
    padding:0 1.8rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    
    border-left: .2rem solid var(--blue);
    position: relative;
}

 .proins .box .exp-box h3{
    color:#000000;
    font-size: 1.5rem;
}


 .proins .box .exp-box::before{
    content:'';
    position: absolute;
    top:0; left: -1rem;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    background: var(--black);
}


.proins  .box{
    flex: 1 1 40rem;
    background-color: var(--white);
    border:#0C9DB3 solid 2px;
    /* border: #000 2px; */
    border-radius: 0.5rem;
    box-shadow: 0 0.7rem 1rem rgba(0, 0, 0, 0.1);
    padding: 4.5rem 2.5rem;
    margin: 1.5rem;

}

/*this is css of about the course page*/

.about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    margin-top: -13rem;
  }
  
  .about .video-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
  }
  
  .about .video-container video {
    border-radius: 1rem;
    margin: 53px 0px;
    width: 100%;
    border: #0C9DB3 solid 5px;
  }
  
  .about .video-container .controls {
    text-align: center;
    padding: 2rem 0;
  }
  
  .about .video-container .controls span {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: #0C9DB3;
    cursor: pointer;
    margin: .7rem;
  }
  
  .about .video-container .controls span:hover {
    background: rgb(0, 0, 0);
  }
  
  .about .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    margin-bottom: 5rem;
  }
  
  .about .content span {
    font-family: 'Jost';
    color: var(--blue);
    font-size: 5rem;
    font-weight: bold;
  }
  
  .about .content h3 {
    font-family: 'Jost';
    color: var(--blue);
    font-size: 4rem;
    margin-top: .5rem;
  }
  
  .about .content p{
    font-family: 'Jost';
    padding: 1rem 2px;
    font-size: 1.7rem;
    color: var(--black);
    line-height: 2;
  }
  .about .content .btnabt{
    display: inline-block;
    margin: 29px 65px;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    background: var(--blue);
    font-size: 1.9rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
  }
  
  .about .content .btnabt:hover{
    transform: scale(1.1);
    background:var(--white);
    border: #0C9DB3 solid 2px;
    color: #0C9DB3;
  }
@media(max-width:991px){

  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .about .video-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
  }
  
  .about .video-container video {
    border-radius: 1rem;
    margin: 53px 0px;
    width: 100%;
  }
  
  .about .video-container .controls {
    text-align: center;
    padding: 2rem 0;
  }
  
  .about .video-container .controls span {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: #0C9DB3;
    cursor: pointer;
    margin: .7rem;
  }
  
  .about .video-container .controls span:hover {
    background: rgb(0, 0, 0);
  }
  
  .about .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    margin-bottom: 5rem;
  }
  
  .about .content span {
    font-family: 'Jost';
    color: var(--blue);
    font-size: 5rem;
    font-weight: bold;
  }
  
  .about .content h3 {
    font-family: 'Jost';
    color: var(--blue);
    font-size: 4rem;
    margin-top: .5rem;
  }
  
  .about .content p{
    font-family: 'Jost';
    padding: 1rem 2px;
    font-size: 1.7rem;
    color: var(--black);
    line-height: 2;
  }
  .about .content .btnabt{
    display: inline-block;
    margin: 29px 65px;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    background: var(--blue);
    font-size: 1.9rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
  }
  
  .about .content .btnabt:hover{
    transform: scale(1.1);
    background:var(--white);
    border: #0C9DB3 solid 2px;
    color: #0C9DB3;
  }

}
  



  
/*THIS IS WHY USPAGE CSS */

.wtc .box-containers{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 107px 4px 0px 15px;
}

 .wtc .box-containers .boxe{
    flex:1 1 27rem;
    margin:1rem;
    padding:1rem;
    background:#fff;
    border:.1rem solid rgba(0,0,0,.2);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
    text-align:left;
    padding-bottom: 3rem;
}


.wtc .box-containers .boxe:hover{
    border:.2rem solid var(--blue);
}

.wtc .box-containers .boxe .titles{
    color:var(--blue);
    font-size: 2.6rem;
    padding-top: 1rem;
}

.wtc .box-containers .boxs .price{
    justify-content: left;
    font-size: 4rem;
    color:var(--light);
    padding:1rem 0;
}

.wtc .box-containers .boxe .price span{
    font-size: 2rem;
}

.wtc .box-containers .boxe ul{
  padding: 15px 0px 0px 21px;
  justify-content: left;
}

.wtc .box-containers .boxe ul li{
    font-size: 1.7rem;
    color:rgb(0, 0, 0);
    padding:.5rem 0;
    justify-content: left;
}

.wtc .box-containers .boxe ul li .fa-check{
    color:(--blue);
}

.wtc .box-containers .boxe ul li .fa-times{
    color:tomato;
}
/* .whyy .hed {
    font-size: 4rem;
    font-family: 'Jost';
    padding-top: 5rem;
    margin: 3rem 0px -8rem 1rem;
    color:var(--white);
    text-align: center;
    background-color:var(--white);
} */
.hed{
    text-align: center;
    background:var(--white);
    color: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding: 1rem;
}
/*Why Pursue This Course From Bisjhintus css*/
.whypur{
  background:#ffffff;
}
.whypur .heading{
  color: #0C9DB3;
  margin: 10px 10px 10px 10px;
}

.whypur .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding:2rem 0;
}

.whypur .row .image{
  flex:1 1 37rem;
  height:35rem;
  text-align: center;
  
}

.whypur  .row .image img{
  height: 60vh;
  width: 27vw;
  margin:-6px 2px 8px 136px;
  border: #0C9DB3 solid 3px;
}

.whypur  .row .content{
  padding: 2rem 1rem;
  flex: 1 1 37rem;
  background-color: #0C9DB3;
  border-radius: 5px;
}



.whypur  .row .content p{
  font-size: 1.7rem;
  color:rgb(0, 0, 0);
  padding:1rem 0;
}

.whypur  .row .content ul li{
  margin-left: 2rem;
  font-size: 1.5rem;
  color:#ffffff;
  padding:.5rem 0;
}

@media (max-width:991px){
  .whypur  .row .image img{
    height: 31vh;
    width: 64vw;
    margin:0px 2px 8px 3px;
  }
  .whypur  .row .content{
    padding: 2rem 1rem;
    flex: 1 1 37rem;
    margin: 169px 25px 16px 25px;
    background-color: #0C9DB3;
    border-radius: 5px;

  }
  .whypur  .row .content ul li{
    margin-left: 2rem;
    font-size: 1.7rem;
    color:#ffffff;
    padding:.5rem 0;
  }

  
}

/* @media (max-width:764px){
  .whypur  .row .image img{
    height: 31vh;
    width: 64vw;
    margin:0px 2px 8px 3px;
  }
} */
/* .why{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
    background-color:var(--blue);
}
#why .heading {
    font-size: 4rem;
    padding-top: 5rem;
    margin: 26rem 0px 4rem 0rem;
    color: rgb(0, 0, 0);
    text-align: center;
  }
.why .image{
    flex:1 1 23rem;
}

.why .image img{
    width: 86%;
    padding: 1rem;
    margin: -51px 0px -85px 105px;

}


.why .textarea{
    flex: 1 1 35rem;
    padding: 3rem 4rem;
    border: 0.1rem solid rgba(0,0,0,.2);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    border-radius: 0.5rem;
    background: #fff;
    color: #0C9DB3;
    font-size: 17px;
}

.why .heading h1{
    text-align:center;
    padding:0;
    padding-bottom: 2rem;
    color: #000000;
}
.why .textarea .inputBox i{
  color: #0C9DB3;

}


.why .textarea .inputBox ul li{
    color: #000000;
    text-align: left;
    font-family: 'Jost';
    padding: 0;
    padding-bottom: 2rem;
}


.why .textarea .inputBox{
    position: relative;
}

.contact form .inputBox label{
    position: absolute;
    top:1.7rem; left:0;
    font-size: 1.7rem;
    color:#666;
    transition: .2s linear;
}

.why .textarea .inputBox input:focus ~ label,
.why .textarea .inputBox input:valid ~ label,
.why .textarea .inputBox textarea:focus ~ label,
.why .textarea .inputBox textarea:valid ~ label{
    top:-.5rem;
    font-size: 1.5rem;
    color:var(--light);
}

 */


.review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  
  .review .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
  }
  
  .review .content span {
    font-family: 'Jost';
    font-size: 5rem;
    font-weight: 600;
    color: #0C9DB3;
  }
  
  .review .content h3 {
    font-family: 'Jost';
    font-size: 3rem;
    color: #fff;
  }
  
  .review .content p {
    font-size: 1.4rem;
    color: #aaa;
    padding: 1rem 0;
    line-height: 2;
  }
  
  .review .box-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .review .box-container .box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border-radius: 1rem;
    padding: 2rem;
    background:var(--blue);

    border: 0.2rem solid rgb(0, 0, 0);
  }
  
  .review .box-container .box:hover {
    border: 0.2rem solid #000000;
    background: #ffffff;
    color: #000000;
    
  }
  
  .review .box-container .box p {
    font-family: 'Jost';
    font-size: 1.75rem;
    padding-bottom: 1rem;
    line-height: 2;
    color: #ffffff;
  }

  .review .box-container .box p:hover {
    font-family: 'Jost';
    font-size: 1.75rem;
    padding-bottom: 1rem;
    line-height: 2;
    color: #000000;
  }
  
  .review .box-container .box .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  
  .review .box-container .box .user img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
  }
  
  .review .box-container .box .user h3 {
    font-size: 1.7rem;
    color: #fff;
  }
  
  .review .box-container .box .user span {
    color: #aaa;
    font-size: 1.5rem;
  }

/*who can enroll */

  .servi{
    width: 100vw;
    text-align: center;
    background: #0C9DB3;
  }
  
  .servi .row{
    margin: 5rem 81px;
    padding: 0px 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .servi .row .image img{
    margin: 105px 25px 0px 25px;
    width:27vw;
    height:50vh;
  }
  
  .servi .row .content{
    text-align:center;
    padding: 16px 0px;
    margin: 0px -144px 0px 57px;
  }
  
  .servi .row .content h3{
    font-size: 4rem;
    color: var(--white);
    padding: 42px 59px;

  }
  .servi .row .content .inputBox{
     margin: 10px 10px 10px 10px;
  }
  .servi .row .content .inputBox ul li{
    color: #ffffff;
    text-align: left;
    font-family: 'Jost';
    padding: 5px 0px;
    padding-bottom: 2rem;
    font-size: 18px;
  }
  
  
  @media (max-width:768px){

    html{
      font-size: 50%;
    }
  
    .servi .row content{
      flex-flow: column-reverse;
    }
  
    .servi .row:nth-child(even){
      flex-flow: column;
    }
  
    .servi .row .image img{
      width: 60vw;
      height: 50vw;
      padding: 23px -5px 77px 147px;
    }
    .servi .row .content h3{
      font-size: 25px;
      margin: -28px 32px;
    }
  
    .servi .row .content .inputBox ul li{
      padding: 3px 88px;
      font-size: 12px;
    }
  }



.symtoms{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 10px 10px 10px 10px;
}

.symtoms .content{
    flex:1 1 40rem;
}

.symtoms .image{
    flex:1 1 40rem;
}

.symtoms .image img{
    width:35vw;
    height:55vh;
    border: #0C9DB3 solid 3px;
}
.symtoms .content .heading{
  font-size: 4rem;
  color:#0C9DB3;
  padding:1rem 1rem;
}

.symtoms .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.symtoms .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.symtoms .content ul .two{
    padding-left: 4.5rem;
}

.symtoms .content ul li{
    margin-left: 2rem;
    font-size: 1.8rem;
    color:rgb(0, 0, 0);
    padding: .5rem 0;
}


@media (max-width:991px){
  .symtoms{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin:38px 17px 38px 17px;
  }

.symtoms .content{
    flex:1 1 40rem;
}

.symtoms .image{
    flex:1 1 40rem;
}

.symtoms .image img{
  width: 69vw;
  height: 45vh;
  margin: 28px 17px 16px 131px;
}
.symtoms .content .heading{
  font-size: 4.5rem;
  color:#0C9DB3;
  padding:2rem 0rem;
}

.symtoms .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.symtoms .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.symtoms .content ul .two{
    padding-left: 4.5rem;
}

.symtoms .content ul li{
    margin-left: 4rem;
    font-size: 2.8rem;
    color:#000000;
    padding: 1.5rem 0;
}


}

@media (max-width:768px){
  .symtoms{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 10px 10px 10px 10px;
}

.symtoms .content{
    flex:1 1 40rem;
}

.symtoms .image{
    flex:1 1 40rem;
}

.symtoms .image img{
  width: 100vw;
  height: 44vh;
  margin: 20px 0px 9px 0px;
}
.symtoms .content .heading{
  font-size: 3rem;
  color:#0C9DB3;
  padding:1rem 1rem;
}

.symtoms .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.symtoms .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.symtoms .content ul .two{
    padding-left: 4.5rem;
}

.symtoms .content ul li{
    margin-left: 2rem;
    font-size: 1.8rem;
    color:rgb(0, 0, 0);
    padding: .5rem 0;
}
}


  /*this is end of who can enroll*/


  .service{
    width: 100vw;
    text-align: center;
  }
  
  .service .row{
    margin: 5rem 81px;
    padding: 0px 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service .row .image img{
    width:55vw;
    height:55vh;
  }
  
  .service .row .content{
    text-align: left;
    padding: 12px 1rem;
    margin: -65px -144px -81px -77px;
  }
  
  .service .row .content h3{
    font-size: 4rem;
    color: var(--blue);
    padding: 42px 59px;

  }
  
  .service .row .content .inputBox ul li{
    text-align: left;
    padding: 5px 64px;
    padding-bottom: 2rem;
    font-size: 15px;
  }
  
  .service a .btn{
    display: inline-block;
    margin: 1rem 17rem;
    padding: 1.6rem 4rem;
    border-radius: 1rem;
    background: var(--gradient);
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
  }

  @media (max-width:768px){

    html{
      font-size: 50%;
    }
  
    .service .row content{
      flex-flow: column-reverse;
    }
  
    .service .row:nth-child(even){
      flex-flow: column;
    }
  
    .service .row .image img{
      width: 60vw;
      height: 50vw;
      padding: 23px -5px 77px 147px;
    }
    .service .row .content h3{
      font-size: 25px;
      margin: -28px 32px;
    }
  
    .service .row .content .inputBox ul li{
      padding: 3px 88px;
      font-size: 12px;
    }
    .abt .row{
      flex-flow: column-reverse;
      padding:0 2rem;
    }
  
    .abt .row .image img{
      width: 100vw;
    }
    .note{
      font-size: 1.5rem;
      color: var(--blue);
      padding-top: 1rem;
      margin: 1rem 0px 0rem 0rem;
      text-align: center;
      position: relative;
    }

     .headin{
      font-size: 3rem;
      padding-top: 3rem;
      margin: 2rem 0px 5rem 0rem;
      color: rgb(0, 0, 0);
      text-align: center;
      position: relative;
}

  }
    
    .abt{
      min-height: 95vh;
      width: 100vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .abt .row{
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding:0 4rem;
    }
    
    .abt .row .content{
      text-align: left;
    }
    
    .abt .row .image img{
      width: 50vw;
    }
    
    .abt .row .content h3{
      font-family: 'Jost';
      font-size: 4.5rem;
      color: var(--blue);
      margin: 16px 151px;

    }
    
    .abt .row .content p{
       justify-content: left;
       font-family: 'Jost';
       font-size: 23px;
       color: rgb(0, 0, 0);
       padding: 1rem 131px;
    }
    .btna{
      display: inline-block;
    margin: 51px 468px;
    padding: 2.5rem 4rem;
    border-radius: 15px;
    background: var(--blue);
    font-family: 'Jost';
    font-size: 1.9rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
    align-items: center;
    }
    
    .btna:hover{
      transform: scale(1.1);
      background:var(--white);
      border: #0C9DB3 solid 3px;
      color: #0C9DB3;
    }
    
    @media (max-width:768px){
      .abt{
        min-height: 95vh;
        width: 100vw;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      
      .abt .row{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding:0 4rem;
      }
      
      .abt .row .content{
        text-align: left;
      }
      
      .abt .row .image img{
        width: 50vw;
      }
      
      .abt .row .content h3{
        font-family: 'Jost';
        font-size: 3.5rem;
        color: var(--blue);
        margin: 19px 3px;
  
      }
      
      .abt .row .content p{
         justify-content: left;
         font-family: 'Jost';
         font-size: 15px;
         color: rgb(0, 0, 0);
         padding: 1rem 4px;
      }
      .btna{
      display: inline-block;
      margin: 51px 468px;
      padding: 2.5rem 4rem;
      border-radius: 15px;
      background: var(--blue);
      font-family: 'Jost';
      font-size: 1.9rem;
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
      transition: all .3s linear;
      align-items: center;
      }
      
      .btna:hover{
        transform: scale(1.1);
        background:var(--white);
        border: #0C9DB3 solid 3px;
        color: #0C9DB3;
      }
      
    }
    
    @media (min-width:800px)and (max-width:881px){
      .abt{
        min-height: 95vh;
        width: 100vw;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .abt .row{
        flex-flow: column-reverse;
        padding:0 2rem;
      }
      
      .abt .row{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding:0 4rem;
      }
      
      .abt .row .content{
        text-align: left;
      }
      
      .abt .row .image img{
        width: 50vw;
      }
      
      .abt .row .content h3{
        font-family: 'Jost';
        font-size: 4rem;
        color: var(--blue);
        padding: 19px 0px 22px 20px;
        margin: 37px 150px;
  
      }
      
      .abt .row .content p{
        justify-content: left;
        font-family: 'Jost';
        font-size: 2.5rem;
        color:#000000;
        margin: 17px 66px;
        padding: 1rem 1px;
      }
      .btna{
        display: inline-block;
      margin: 51px 468px;
      padding: 2.5rem 4rem;
      border-radius: 15px;
      background: var(--blue);
      font-family: 'Jost';
      font-size: 1.9rem;
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
      transition: all .3s linear;
      align-items: center;
      }
      
      .btna:hover{
        transform: scale(1.1);
        background:var(--white);
        border: #0C9DB3 solid 3px;
        color: #0C9DB3;
      }
      
    }
    

    .swiper{
      width: 100%;
    }
    
    .swiper-wrapper{
      width: 100%;
      height: 35em;
      display: flex;
      align-items: center;
    }
    
    .card{
      width: 20rem;
      height: 90%;
      background-color: #fff;
      border-radius: 2em;
      box-shadow: 0 0 2em rgba(0, 0, 0, .2);
      padding: 2rem 1em;
    
      display: flex;
      align-items: center;
      flex-direction: column;
    
      margin: 0 2rem;
    }
    
    .swiper{
      width: 900px;
    }
    
    .card{
      position: relative;
      background: #fff;
      border-radius: 20px;
      margin: 20px 0;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .card::before{
      content: "";
      position: absolute;
      height: 40%;
      width: 100%;
      background: #FF676D;
      border-radius: 20px 20px 0 0;
    }
    
    .card .card-content{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px;
      position: relative;
      z-index: 100;
    }
    
    section .card .image{
      height: 140px;
      width: 140px;
      border-radius: 50%;
      padding: 3px;
      background: #FF676D;
    }
    
    section .card .image img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #fff;
    }
    
    .card .media-icons{
      position: absolute;
      top: 10px;
      right: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .card .media-icons i{
      color: #fff;
      opacity: 0.6;
      margin-top: 10px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .card .media-icons i:hover{
      opacity: 1;
    }
    
    .card .name-profession{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
      color: ;
    } 
    
    .name-profession .name{
      font-size: 20px;
      font-weight: 600;
    }
    
    .name-profession .profession{
      font-size:15px;
      font-weight: 500;
    }
    
    .card .rating{
      display: flex;
      align-items: center;
      margin-top: 18px;
    }
    
    .card .rating i{
      font-size: 18px;
      margin: 0 2px;
      color: #FF676D;
    }
    
    .card .button{
      width: 100%;
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
    }
    
    .card .button button{
      background: #FF676D;
      outline: none;
      border: none;
      color: #fff;
      padding: 8px 22px;
      border-radius: 20px;
      font-size: 14px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .button button:hover{
      background: #6616d0;
    }
    
    .swiper-pagination{
      position: absolute;
    }
    
    .swiper-pagination-bullet{
      height: 7px;
      width: 26px;
      border-radius: 25px;
      background: #FF676D;
    }
    
    .swiper-button-next{
      margin-left:100px;
      opacity: 0.7;
      color: #FF676D;
      transition: all 0.3s ease;
    }
    .swiper-button-prev{
      margin: 150px;
      opacity: 0.7;
      color: #FF676D;
      transition: all 0.3s ease;
    }
    .swiper-button-next:hover, .swiper-button-prev:hover{
      opacity: 1;
      color: #FF676D;
    }




    /*devang code*/
    /* .sec {
      position: relative;
      height: 430px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 100px;
    }
    .swiper {
      width: 65%;
      align-self: center;
    }
    .container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .card-swipe {
      height: 50vh;
      position: relative;
      background: #0c9db3;
      border-radius: 20px;
      margin: 5px 0;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .card-swipe::before {
      content: "";
      position: absolute;
      height: 40%;
      width: 100%;
      background: #0c9db3;
      border-radius: 20px 20px 0 0;
    }

    .card-swipe .card-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 6px;
      position: relative;
      z-index: 100;
    }

    .card-swipe .name-profession {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
      color: black;
    }

    .name {
      font-size: 1.5em;
      font-weight: 700;
      margin-top: 5px;
    }
    .time {
      font-size: 30px;
      font-weight: 500;
    }
    .swiper-button-next,
    .swiper-button-prev {
      opacity: 0.7;
      color: #000;
      transition: all 0.3s ease;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      opacity: 1;
      color: rgb(38, 38, 38);
    }
    .swiper-button-next {
      margin-right: 90px;
    }
    .swiper-button-prev {
      margin-left: 90px;
    }
    .employe-test img {
      border: #ffffff solid 5px;
      width: 11.8em;
      height: 11.8em;
      border-radius: 50%;
    }
    .employe-test img:hover {
      border: #000000 solid 5px;
      width: 12em;
      height: 12em;
      border-radius: 50%;
    }
    .card-content .icons a{
      margin-top: 4rem;
      padding:0 1rem;
      font-size: 2rem;
      color:#0C9DB3;
    }
    .card-content .icons a:hover{
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .sec {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 670px;
        margin-top: 0px;
        padding: 0;
      }
      .swiper {
        width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .card-swipe {
        height: 40vh;
        width: 80vw;
      }
      .swiper-button-next {
        margin-right: 5rem;
      }
      .swiper-button-prev {
        margin-left: 5rem;
      }
    } */

    .team{
      min-height: 100vh;
      width:100vw;
      text-align: center;
      background-color:var(--blue);
    }
    
    .team .heading{
      color:var(--white);
    }
    
    
    
    .team .row{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .team .row .card{
      height:35rem;
      width:25rem;
      background:var(--white);
      border: #0C9DB3 solid 3px;
      border-radius: 10px;
      text-align: center;
      margin:7rem 2rem;
      position: relative;
      overflow: hidden;
    }
    
    .team .row .card .image{
      margin:1rem 0;
      padding-top: 4rem;
    }
    
    .team .row .card .image img{
      height:13rem;
      width:13rem;
      border-radius: 50%;
      border:.5rem solid #0C9DB3;
      box-shadow: 0 0 .5rem rgba(0,0,0,.3);
      object-fit: cover;
    }
    
    .team .row .card .info h3{
      font-size: 2rem;
      color:rgb(0, 0, 0);
    }
    
    .team .row .card .info span{
      font-size: 1.8rem;
      color:#000000;
    }
    
    .team .row .card .info .icons a{
      margin-top: 4rem;
      padding:0 1rem;
      font-size: 2rem;
      color:#0C9DB3;
    }
    
    .team .row .card .info .icons a:hover{
      color:var(--gradient);
    }
    

    .abtr{
      min-height: 95vh;
      width: 100vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .abtr .row{
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding:0 4rem;
    }
    
    .abtr .row .content{
      text-align: left;
    }
    
    .abtr .row .image img{
      width: 50vw;
    }
    
    .abtr .row .content h3{
      font-family: 'Jost';
      font-size: 4.5rem;
      color: var(--blue);
      margin: 16px 151px;

    }
    
    .abtr .row .content p{
       justify-content: left;
       font-family: 'Jost';
       font-size: 23px;
       color: rgb(0, 0, 0);
       padding: 1rem 131px;
    }
    .btna{
      display: inline-block;
    margin: 51px 468px;
    padding: 2.5rem 4rem;
    border-radius: 15px;
    background: var(--blue);
    font-family: 'Jost';
    font-size: 1.9rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
    align-items: center;
    }
    
    .btna:hover{
      transform: scale(1.1);
      background:var(--white);
      border: #0C9DB3 solid 3px;
      color: #0C9DB3;
    }
    
    @media (max-width:768px){
      .abtr{
        min-height: 95vh;
        width: 100vw;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      
      .abtr .row{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding:0 4rem;
      }
      
      .abtr .row .content{
        text-align: left;
      }
      
      .abtr .row .image img{
        width: 50vw;
      }
      
      .abtr .row .content h3{
        font-family: 'Jost';
        font-size: 4rem;
        color: var(--blue);
        padding: 14px 0px 27px 1px;
        margin: 6px 7px;
  
      }
      
      .abtr .row .content p{
         justify-content: left;
         font-family: 'Jost';
         font-size: 15px;
         color: rgb(0, 0, 0);
         padding: 1rem 4px;
      }
      .btna{
        display: inline-block;
      margin: 51px 468px;
      padding: 2.5rem 4rem;
      border-radius: 15px;
      background: var(--blue);
      font-family: 'Jost';
      font-size: 1.9rem;
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
      transition: all .3s linear;
      align-items: center;
      }
      
      .btna:hover{
        transform: scale(1.1);
        background:var(--white);
        border: #0C9DB3 solid 3px;
        color: #0C9DB3;
      }
      
    }
    
    @media (min-width:800px)and (max-width:881px){
      .abtr{
        min-height: 95vh;
        width: 100vw;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .abtr .row{
        flex-flow: column-reverse;
        padding:0 2rem;
      }
      
      .abtr .row{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding:0 4rem;
      }
      
      .abtr .row .content{
        text-align: left;
      }
      
      .abtr .row .image img{
        width: 50vw;
      }
      
      .abtr .row .content h3{
        font-family: 'Jost';
        font-size: 4.5rem;
        color: var(--blue);
        padding: 19px 20px 22px 20px;
        margin: 37px 150px;
  
      }
      
      .abtr .row .content p{
        justify-content: left;
        font-family: 'Jost';
        font-size: 2.5rem;
        color:#000000;
        margin: 17px 66px;
        padding: 1rem 179px;
      }
      .btna{
        display: inline-block;
      margin: 51px 468px;
      padding: 2.5rem 4rem;
      border-radius: 15px;
      background: var(--blue);
      font-family: 'Jost';
      font-size: 1.9rem;
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
      transition: all .3s linear;
      align-items: center;
      }
      
      .btna:hover{
        transform: scale(1.1);
        background:var(--white);
        border: #0C9DB3 solid 3px;
        color: #0C9DB3;
      }
      
    }



    /* .team .row .card::before, .team .row .card::after{
      content: '';
      position: absolute;
      border-radius: 50%;
      height:15rem;
      width:15rem;
      z-index: -1;
    }
    
    .team .row .card::before{
      background:var(--blue);
      top:-3rem; right: -4rem;
    } */
    
    /* .team .row .card::after{
      background:var(--light);
      bottom:-3rem; left: -4.3rem;
    } */


    .note{
      font-size: 2.5rem;
      color: var(--blue);
      padding-top: 1rem;
      margin: 1rem 0px 0rem 0rem;
      text-align: center;
      position: relative;
    }

     .headin{
      font-size: 4.5rem;
      padding-top: 3rem;
      margin: 2rem 0px 5rem 0rem;
      color:#000000;
      text-align: center;
      position: relative;
}
    

    .icons-container{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
      gap:4.5rem;
  }
  
  .icons-container .icons{
      display: flex;
      align-items: center;
      gap:1.5rem;
      padding:2rem 0;
  }
  
  .icons-container .icons i{
      font-size: 3.5rem;
      color:#0C9DB3;
  }
  
  .icons-container .icons h3{
      font-size: 2.2rem;
      color:var(--black);
      padding-bottom: .5rem;
  }
  
  .icons-container .icons p{
      font-size: 1.4rem;
      color:var(--light-color);
  }

  .btni{
    display: inline-block;
    margin: 51px 468px;
    padding: 1.5rem 7rem;
    border-radius: 15px;
    background: var(--blue);
    font-family: 'Jost';
    font-size: 2.1rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
    align-items: center;
  }
  
  .btni:hover{
    transform: scale(1.1);
    background:var(--white);
    border: #0C9DB3 solid 3px;
    color: #0C9DB3;
  }

  /*how to sharpen  */
  .sharp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 10px 10px 10px 10px;
}

.sharp .content{
    flex:1 1 40rem;
}

.sharp .image{
    flex:1 1 40rem;
}

.sharp .image img{
    width:35vw;
    height:55vh;
    border: #0C9DB3 solid;
}
.sharp .content .heading{
  font-size: 3rem;
  color:#0C9DB3;
  padding:1rem 0rem;
}

.sharp .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.sharp .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.sharp .content ul .two{
    padding-left: 4.5rem;
}

.sharp .content ul li{
    margin-left: 2rem;
    font-size: 1.8rem;
    color:rgb(0, 0, 0);
    padding: .5rem 0;
}


@media (max-width:991px) and (min-width:800px){
  .sharp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 10px 10px 10px 10px;
}

.sharp .content{
    flex:1 1 40rem;
}

.sharp .image{
    flex:1 1 40rem;
}

.sharp .image img{
  width: 72vw;
  height: 43vh;
  margin: 64px 15px 5px 15px;
}
.sharp .content .heading{
  font-size: 4rem;
  color:#0C9DB3;
  padding:1rem 1rem;
}

.sharp .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.sharp .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.sharp .content ul .two{
    padding-left: 4.5rem;
}

.sharp .content ul li{
    margin-left: 2rem;
    font-size: 2.5rem;
    color:#000000;
    padding: .5rem 0;
}


}
@media (max-width:768px){
  .sharp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 10px 10px 10px 10px;
}

.sharp .content{
    flex:1 1 40rem;
}

.sharp .image{
    flex:1 1 40rem;
}

.sharp .image img{
  width: 100vw;
  height: 44vh;
  margin: 12px 0px 9px 8px;
}
.sharp .content .heading{
  font-size: 3rem;
  color:rgb(0, 0, 0);
  padding:1rem 1rem;
}

.sharp .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.sharp .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.sharp .content ul .two{
    padding-left: 4.5rem;
}

.sharp .content ul li{
    margin-left: 2rem;
    font-size: 1.8rem;
    color:rgb(0, 0, 0);
    padding: .5rem 0;
}


}
  /* .servs{
    width: 100vw;
    text-align: center;
  }
  
  .servs .row{
    margin: 5rem 81px;
    padding: 0px 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .servs .row .image img{
    width:57vw;
    height:70vh;
  }
  
  .servs .row .content{
    text-align:center;
    padding: 16px 0px;
    margin: 0px -144px 0px 57px;
  }
  
  .servs .row .content h3{
    font-size: 3.5rem;
    color: var(--blue);
    padding: 37px 0px;

  }
  .servs .row .content .inputBox{
     margin: 10px 10px 10px 10px;
  }
  .servs .row .content .inputBox ul li{
    text-align: left;
    font-family: 'Jost';
    padding: 5px 0px;
    padding-bottom: 2rem;
    font-size: 15px;
  }
  .servs .row .content .inputBox i{
    color: #0C9DB3;
  }
  
  
  @media (max-width:768px){

    html{
      font-size: 50%;
    }
  
    .servs .row content{
      flex-flow: column-reverse;
    }
  
    .servs .row:nth-child(even){
      flex-flow: column;
    }
  
    .servs .row .image img{
      width: 60vw;
      height: 50vw;
      padding: 23px -5px 77px 147px;
    }
    .servs .row .content h3{
      font-size: 25px;
      margin: -28px 32px;
    }
  
    .servs .row .content .inputBox ul li{
      padding: 3px 88px;
      font-size: 12px;
    }
  } */

  /*how to sharpen*/

  .satisfy{
    display: block;
    justify-content: left;
    align-items: center;
    margin: 99px 0px 12px -3px;
    padding: 77px 12px 46px 75px;
    background-color: #0C9DB3;
    font-size: 14px;
    color: #ffffff;
  }
  .satisfy a .btn{
    display: inline-block;
    align-items:right;
    justify-content: center;
    margin: 1rem 17rem;
    padding: 1.6rem 4rem;
   border-radius: 1rem;
    background: var(--gradient);
    font-size: 1.7rem;
   color: #fff;
   cursor: pointer;
   box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
   transition: all .3s linear;
  }



  .satisv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    margin-top: -13rem;
  }
  
  .satisv .video-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 4rem;
            flex: 1 1 4rem;
  }
  
  .satisv .video-container video {
    border-radius: 1rem;
    margin: 53px 0px;
    width: 68%;
  }
  
  .satisv .video-container .controls {
    text-align: center;
    padding: 2rem 0;
  }
  
  .satisv .video-container .controls span {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: #0C9DB3;
    cursor: pointer;
    margin: .7rem;
  }
  
  .satisv .video-container .controls span:hover {
    background: rgb(0, 0, 0);
  }
  
  .satisv .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    margin-bottom: 5rem;
  }
  


.testimonials{
    padding-bottom: 2.2em; 
    text-align: center;
    color: rgb(0, 0, 0);
}
.testimonials h1{
    
  color: #000000;
  font-size: 3.3em;
  PADDING: 21PX 0PX;

}
.testimonials .test-body{

  border: #ffffff solid 4px;
  padding: 1em;
}
.testimonials .item{ 
    text-align: center;
    padding: 31px 0px 0px 33px;
    margin: 1px 14px 28px -3px;
    background-color: #0C9DB3;
    border: #ffffff solid 4px;
    border-radius: 15px;
}

.testimonials img{
  border: #ffffff solid 5px;
  width: 11.8em;
  height: 11.8em;
  border-radius: 50%;
}
.testimonials img:hover{
  border: #000000 solid 5px;
  width: 12em;
  height: 12em;
  border-radius: 50%;
}
.testimonials .name{
  margin: 22px;
  color:var(--white);
  font-size: 25px;
  font-weight: 600;
}
.testimonials p{
  max-width: 30em;
  margin: 18px 38px 28px;
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
}

@media (min-width:768px){
    .testimonials{
        font-size: 1.2em;

    }
    .testimonials .test-body{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .testimonials p{
        text-align: left;
        padding: 1.2em;
    }
    
    
}
@media only screen and (max-width:991px) and (min-width:810px){
  .testimonials{
      font-size: 1.2em;

  }
  .testimonials .test-body{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  .testimonials p{
      text-align: left;
      padding: 1.2em;
  }
  
  
}
@media (min-width:770px)and(max-width:809px){
  .testimonials{
      font-size: 1.2em;

  }
  .testimonials .test-body{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  .testimonials p{
      text-align: left;
      padding: 1.2em;
  }
  
  
}
 .hedc{
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  
}
.hedc .btnc{
  display: inline-block;
  margin: 0px 68px 10px -240px;
  padding: 1.5rem 5rem;
  border-radius: 15px;
  background: var(--blue);
  font-family: 'Jost';
  font-size: 2.3rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
}

 .hedc .btnc:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}

.container{
  margin:20px auto;
  max-width: 700px;
}

.hedc .heading{
  justify-content: left;
  font-size: 38px;
  margin: 9px 5px 3px 6px;
  padding: 22px 40px 37px 20px;
  color: #000000;
  
}


.banner {
  background:#ffffff;
  
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  background-attachment: fixed;
  text-align: center;
}

.banner .content span{
  justify-content: left;
  font-size: 2rem;
  color: #29d9d5;
}

.banner .content h3 {
  font-size: 4.5rem;
  color: rgb(0, 0, 0);
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.banner .content p{
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #aaa;
  line-height: 2;
}
.banner .content .btn{
  display: inline-block;
margin: 44px 0px 5px 0px;
padding: 1.5rem 2rem;
border-radius: 5px;

background: var(--blue);
font-size: 1.8rem;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
transition: all .3s linear;
}

.banner .content .btn:hover{
transform: scale(1.1);
background:var(--white);
border: #0C9DB3 solid 2px;
color: #0C9DB3;
}

.bannere {
  background:#0C9DB3;
  
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  margin-top:35px;
  background-attachment: fixed;
  text-align: center;
}

.bannere .content span {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 500;
  font-family: 'Jost';

}

.bannere .content h3 {
  font-size: 4rem;
  color: rgb(0, 0, 0);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.bannere .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #aaa;
  line-height: 2;
}
.bannere .content .btn{
      display: inline-block;
    margin: 44px 0px 5px 0px;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    border: #ffffff solid 3px;
    background: var(--blue);
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
}

.bannere .content .btn:hover{
transform: scale(1.1);
background:var(--white);
border: #0C9DB3 solid 2px;
color: #0C9DB3;
}

.headingb{
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  color: #000000;
  font-size: 4rem;
  margin: 2.5rem 1rem;
  font-family: 'Jost';
  font-weight: 500;

}
.container .accordion-container{
  padding:0 20px;
}

.container .accordion-container .accordion{
  margin-bottom: 20px;
  cursor: pointer;
}

.container .accordion-container .accordion.active .accordion-heading{
  background:var(--blue);
  border-radius: 10px;
}

.container .accordion-container .accordion.active .accordion-heading h3{
  color:#fff;
}

.container .accordion-container .accordion.active .accordion-heading i{
  color:#fff;
  transform: rotate(180deg);
  transition: transform .2s .1s;
}

.container .accordion-container .accordion.active .accordion-content{
  display: block;
  border-radius: 23px;
}

.container .accordion-container .accordion .accordion-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:10px;
  background: var(--white);
  border:2px solid var(--blue);
  color: #0C9DB3;
  font-size: 14px;
  padding:15px 20px;
  border-radius: 12px;
}

.container .accordion-container .accordion .accordion-heading h3{
  font-size: 18px;;
}

.container .accordion-container .accordion .accordion-heading i{
  font-size: 25px;;
}

.container .accordion-container .accordion .accordion-content{
  padding:15px 20px;
  border:2px solid #000;
  font-size: 15px;
  background: #fff;
  border-top: 0;
  display: none;
  animation: animate .2s linear backwards;
  line-height: 2;
  transform-origin: top;
}

.hedx{
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 20vh;
  background-color: #0C9DB3;
  
}
.hedx .btnx{
  display: inline-block;
  margin: 0px 68px 10px -240px;
  padding: 1.5rem 5rem;
  border-radius: 15px;
  background: var(--blue);
  border: #ffffff solid 5px;
  font-family: 'Jost';
  font-size: 2.3rem;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
}

 .hedx .btnx:hover{
  transform: scale(1.1);
  background:var(--white);
  color: #000000;
}

.hedx .heading{
  justify-content: left;
  font-size: 38px;
  margin: 41px 547px 31px -76px;
  padding: 23px 273px 37px 223px;
  color: #ffffff;
  
}

@keyframes animate {
  0%{
    transform: scaleY(0);
  }
}







.prevent{
  background:rgb(255, 255, 255);
}

.prevent .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding:2rem 0;
}

.prevent .row .image{
  flex:1 1 37rem;
  height:35rem;
  text-align: center;
}

.prevent .row .image img{
  height:100%;
  width:100%;
  margin: 15px 0px 0px 0px;
  border: #0C9DB3 solid;
}

.prevent .row .content{
  padding:2rem 0;
  flex:1 1 37rem;
}

.prevent .row .content .heading{
  font-size:3rem;
  color:#0C9DB3;
}

.prevent .row .content p{
  font-size: 1.7rem;
  color:rgb(0, 0, 0);
  padding:1rem 0;
}

.prevent .row .content ul li{
  margin-left: 2rem;
    font-size: 1.8rem;
    color: rgb(0, 0, 0);
    padding: 1.2rem 0.8rem 0.4rem;
}
.prevent .row .content .btn{
  display: inline-block;
  margin: 36px 13px 16px 18px;
  padding: 1.5rem 2rem;
  border-radius: 5px;
  background: var(--blue);
  font-size: 1.8rem;
  color: #ffffff solid;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
}

.prevent .row .content .btn:hover{
transform: scale(1.1);
background:var(--white);
border: #0C9DB3 solid 2px;
color: #0C9DB3 solid;
}






.exper{
  background:rgb(255, 255, 255);
}

.exper .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding:2rem 0;
}

.exper .row .image{
  flex:1 1 37rem;
  height:35rem;
  text-align: center;
}

.exper .row .image img{
  height: 85%;
    width:85%;
    margin: 3px 66px 9px 0px;
    border: #0C9DB3 solid;
}

.exper .row .content{
  padding:2rem 0;
  flex:1 1 37rem;
  margin: 25px 72px 6px 0px;
}

.exper .row .content .heading{
  font-size:3rem;
  color:#0C9DB3;
}

.exper .row .content p{
  font-size: 1.7rem;
  color:rgb(0, 0, 0);
  padding:1rem 0;
}

.exper .row .content ul li{
  margin-left: 2rem;
    font-size: 1.8rem;
    color: rgb(0, 0, 0);
    padding: 1.2rem 0.8rem 0.4rem;
}

.exper .row .content .btn{
  display: inline-block;
  margin: 36px 13px 16px 18px;
  padding: 1.5rem 2rem;
  border-radius: 5px;
  background: var(--blue);
  font-size: 1.8rem;
  color: #ffffff solid;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
}

.exper .row .content .btn:hover{
transform: scale(1.1);
background:var(--white);
border: #0C9DB3 solid 2px;
color: #0C9DB3 solid;
}






.whskill{
  width: 100vw;
  text-align: center;
}

.whskill .row{
  margin: 5rem 81px;
  padding: 0px 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whskill .row .image img{
  width:37vw;
  height:54vh;
}

.whskill .row .content{
  text-align: left;
  padding: 12px 1rem;
  margin: -65px -144px -81px -77px;
}

.whskill .row .content h3{
  font-size: 4rem;
  color: var(--blue);
  padding: 42px 59px;

}

.whskill .row .content .inputBox ul li{
  text-align: left;
  padding: 3px 8px;
  padding-bottom: 1rem;
  margin: 3px 0px 1px 100px;
  font-size: 16px;

}

.whskill .row .btna{
  display: inline-block;
  margin: 12px 308px;
 padding: 2.5rem 4rem;
 border-radius: 15px;
 background: var(--blue);
font-family: 'Jost';
font-size: 1.9rem;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
transition: all .3s linear;
align-items: center;
}

.whskill .row .btna:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}

@media (max-width:768px){

  html{
    font-size: 50%;
  }

  .whskill .row content{
    flex-flow: column-reverse;
  }

  .whskill .row:nth-child(even){
    flex-flow: column;
  }

  .whskill .row .image img{
    width: 55vw;
    height: 43vw;
    padding: 23px -5px 77px 147px;
  }
  .whskill .row .content h3{
    font-size: 18px;
    margin: 0px 74px;
  }

  .whskill .row .content .inputBox ul li{
    padding: 3px 4px;
    font-size: 12px;
    margin: -11px 0px 14px 153px;
  }
}

/*this is why bisjhintus*/
.learn{
  width: 100vw;
  text-align: center;
  align-items: center;
  margin: 163px 91px 106px 0px;
}

.learn .row{
  margin: 5rem 81px;
  padding: 0px 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn .row .image img{
  width:35vw;
  height:60vh;
}

.learn .row .content{
  text-align: left;
  padding: 12px 1rem;
  margin: -65px -144px -81px -77px;
}

.learn .row .content h3{
  font-size: 4rem;
  color: var(--blue);
  padding: 42px 59px;

}

.learn .row .content .inputBox ul li{
  text-align: left;
  padding: 6px 5px 1rem;
  margin: 17px 106px 9px 74px;
  font-size: 17px;

}

.learn .row .btna{
  display: inline-block;
  margin: 12px 308px;
 padding: 2.5rem 4rem;
 border-radius: 15px;
 background: var(--blue);
font-family: 'Jost';
font-size: 1.9rem;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
transition: all .3s linear;
align-items: center;
}

.learn .row .btna:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}

@media (max-width:768px){

  html{
    font-size: 50%;
  }

  .learn .row content{
    flex-flow: column-reverse;
  }

  .learn .row:nth-child(even){
    flex-flow: column;
  }

  .learn .row .image img{
    width: 55vw;
    height: 43vw;
    padding: 23px -5px 77px 147px;
  }
  .learn .row .content h3{
    font-size: 18px;
    margin: 0px 74px;
  }

  .learn .row .content .inputBox ul li{
    padding: 3px 4px;
    font-size: 12px;
    margin: -11px 0px 14px 153px;
  }
}




  .com{
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100vw;
    text-align: center;
  }
  
  .com .row{
    margin: 5rem 81px;
    padding: 0px 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .com .row .image img{
    width: 37vw;
    height: 51vh;
    margin: 127px 26px 0px 26px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-self: center;
    align-items: center;
  }
  
  .com .row .content{
    text-align: left;
    padding: 12px 1rem;
    
  }
  
  .com .row .content h3{
    font-size: 4rem;
    color: var(--blue);
    padding: 26px 7px;
  
  }
  
  .com .row .content .inputBox img{
    width:37vw;
    height:54vh;
  
  }
  
  .com a .btng{
    display: inline-block;
    margin: 25px 65px;
    padding: 1.5rem 2rem;
    border-radius:5px;
    background: var(--blue);
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
  }
  
  .com a .btng:hover{
    transform: scale(1.1);
    background:var(--white);
    border: #0C9DB3 solid 2px;
    color: #0C9DB3;
  }
  
  @media (max-width:768px){
  
    html{
      font-size: 50%;
    }
    .com{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
    }
  
    .com .row content{
      flex-flow: column-reverse;
    }
  
    .com .row:nth-child(even){
      flex-flow: column;
    }
  
    .com .row .image img{
      width: 55vw;
      height: 43vw;
    }
    .com .row .content h3{
      font-size: 4rem;
      padding: 24px 41px;
      margin: 57px 66px 72px 53px;
    }
  
    .com .row .content .inputBox img{
      width: 55vw;
      height: 43vw;
      margin: -55px -59px 103px 90px;
    }
    .com a .btng{
      display: inline-block;
      margin: 25px 65px;
      padding: 1.5rem 2rem;
      border-radius:5px;
      background: var(--blue);
      font-size: 1.4rem;
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
      transition: all .3s linear;
    }
    
    .com a .btng:hover{
      transform: scale(1.1);
      background:var(--white);
      border: #0C9DB3 solid 2px;
      color: #0C9DB3;
    }

  }


.project{
    background:rgb(255, 255, 255);
   
}

.project .heading{
    color:#0C9DB3;
}

.project .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    width: 90%;
    margin:0 auto;
}

.project .box-container .box{
   
    height: 35rem;
    
    
    margin:1rem;
}

.project .box-container .box img{
    height:100%;
    width:100%;
    
}
.certificate{
    background:rgb(255, 255, 255);
}
.certificate .headingw{
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
  font-size: 4rem;
  font-weight: 500;
  font-family: 'Jost';
  color: #000000;
}
.certificate .headingw span{
 font-size: 2.5rem;
 font-family: 'Jost';
  color: #0C9DB3;

}

.certificate .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
}

.certificate .row .image{
    flex:1 1 37rem;
    height:35rem;
    text-align: center;
}

.certificate .row .image img{
    height:100%;
    width:100%;
    /* object-fit: cover; */
}

.certificate .row .content{
    padding:2rem 0;
    flex:1 1 37rem;
}

.certificate .row .content .heading{
    color:#0C9DB3;
}

.certificate .row .content p{
    font-size: 1.7rem;
    color:#000000;
    padding:1rem 19px;
}

.certificate .row .content ul li{
    margin-left: 2rem;
    font-size: 1.5rem;
    color:#aaa;
    padding:.5rem 0;
}
.bannert{
  display: flex;
  justify-content:center;
  justify-items: center;
  align-items: center;
}
.bannert .btn{
  display: inline-block;
    margin: 44px 0px 5px 0px;
    padding: 1.5rem 5rem;
    border-radius: 5px;
    background: var(--blue);
    font-size: 2.2rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
}

.bannert  .btn:hover{
transform: scale(1.1);
background:var(--white);
border: #0C9DB3 solid 2px;
color: #0C9DB3;
}
  
  /* .service{
    not necessarry

    width: 100vw;
    text-align: center;
  }
  
  .service .row{
    margin:2rem 0;
    padding:0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service .row .image img{
    width: 37vw;
    height: 56vh;
    margin: 81px 16px 7px 2px;
  }
  
  .service .row .content{
    text-align: left;
    padding:0 3rem;
  }
  
  .service .row .content h3{
    font-size: 3rem;
    margin: 127px 0px -9px 71px;
    color: var(--blue);
  }
  
  .service .row .content p{
    font-size: 1.7rem;
    color: #000000;
    padding: 0px 22px 12px 76px;
    margin: 0px 23px 10px 63px;
}
 .service .row .content a .btnj{
  margin: 17px 200px;
  padding: 1.5rem 2rem;
  border-radius:5px;
  background: var(--blue);
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
}

 .service .row .content a .btnj:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 2px;
  color: #0C9DB3;
}

@media (max-width:768px){
   
  .service .row{
    flex-flow: column-reverse;
  }

  .service .row:nth-child(even){
    flex-flow: column;
  }

  .service .row .image img{
    width: 81vw;
    height: 25vh;
  }

  .service .row .content{
    padding:0;
  }


  .service .row .content h3{
    font-size: 3rem;
    margin: 48px 0px -6px 17px;
    color: var(--blue);
  }  

  
  .service .row .content p{
    font-size: 1.7rem;
    color: #000000;
    padding: 0px 22px 12px 76px;
    margin: 0px 106px 9px 2px;
}
.service .row .content a .btnj{
  margin: 17px 200px;
  padding: 1.5rem 2rem;
  border-radius:5px;
  background: var(--blue);
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
}

 .service .row .content a .btnj:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 2px;
  color: #0C9DB3;
}

} */



.aa_h2 {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
	font-size: 4rem;
    font-weight: 600;
    color: #000000;
    padding: 19px 14px 42px 0px;
    
    justify-content: center;
    text-transform: uppercase;
}
table {
	background: #fff;
}
table,
thead,
tbody,
tfoot,
tr,
td,
th {
  text-align: center;
    margin: auto;
    border: 3px solid var(--light);
    border-radius: 4px;
    padding: 3rem 21px 20px 14px;
    width: 55%;
    font-size: 18px;
    font-weight: 500;
    color: #0C9DB3;
}
.table {
	display: table;
	width: 50%;
}
.tr {
	display: table-row;
}
.thead {
	display: table-header-group;
}
.tbody {
	display: table-row-group;
}
.tfoot {
	display: table-footer-group;
}
.col {
	display: table-column;
}
.colgroup {
	display: table-column-group;
}
.td,
.th {
	display: table-cell;
	width: 50%;
}
.caption {
	display: table-caption;
}

.table,
.thead,
.tbody,
.tfoot,
.tr,
.td,
.th {
	text-align: center;
	margin: auto;
	padding: 1rem;
}
.table {
	background: #fff;
	margin: auto;
	border: none;
	padding: 0;
	margin-bottom: 5rem;
}

.th {
	font-weight: 700;
	border: 1px solid var(--light);
	  &:nth-child(odd) {
		border-right: none;
   }
}
.td {
	font-weight: 300;
	border: 1px solid var(--blue);
	border-top: none;
	 &:nth-child(odd){
		border-right: none;
	}
}

.aa_htmlTable {
	background:var(--white);
	padding: 5rem;
	display: table;
	width: 100%;
	height: 100vh;
	vertical-align: middle;
  margin: 128px 0px 0px 0px;
}

.contact{
  background-color: #ffffff;

}
.contact .heading{
  color: #000000;
  font: size 4rem;
  font-family: 'Jost';
  font-weight: 500;
}

.contact .box-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.contact .box-container .box{
  flex:1 1 11rem;
  margin:1rem;
  padding:3rem 1rem;
  background:white;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border-radius: .5rem;
  text-align: center;
}

.contact .box-container .box i{
  height: 6rem;
  width:6rem;
  line-height: 6rem;
  border-radius: 50%;
  font-size: 3rem;
  background:rgb(228, 219, 219);
  color:var(--blue);
}

.contact .box-container .box h3{
  color:var(--blue);
  padding:1rem 0;
  font-size: 2rem;
}

.contact .box-container .box p{
  font-size: 1.5rem;
  color:var(--black);
}

.contact .box-container .box a:link{
  color: #000000;
}


footer
.line {
  border: 1px solid #ececf4;
  background-color: #ececf4;
  width: 90vw;
  height: 0px;
  margin-bottom: 20px;
  align-self: center;
}
.footer {
  display: flex;
  flex-direction: column;
  padding-top: 5em;
  padding-left: 4em;
  padding-right: 4em;
}
.footer-upper,
.footer-lower {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.img {
  display: flex;
  flex-direction: column;
  padding: 1em;
}
.main-logo {
  width: 200px;
  height: 200.5px;
}
.footer .footer-upper .img .share a{
  padding-right: .5rem;
  color: #0C9DB3;
}

.footer .footer-upper .img .share{
  padding-top: 1rem;
}

.footer .footer-upper .img .share a{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid #0C9DB3;
  color: #0C9DB3;
  margin-right: .5rem;
  margin-bottom: 1.1rem;
  text-align: center;
}

.footer .footer-upper .img .share a:hover{
  background: #0C9DB3;
  color: #111;
}

.grey {
  color: #808080;
  border: #808080 2px solid;
  padding: 0.5rem;
  border-radius: 50%;
}
.grey:hover {
  color: #fff;
  background: #0c9db3;
  border: #0c9db3 2px solid;
}
.list-one ul{
  list-style: none;
}
.list-one {

  
  display: flex;
  flex-direction: column;
  padding: 1rem 0rem;
  font-size: 18px;
  color: #000000;
  font-family: 'Jost';
}
.lis-one-head {
  color: #0c9db3;
  font-size: 2.1rem;
  font-family: 'Jost';
  font-weight: 500;
  text-align: start;
  margin-bottom: 0.1rem;
}
.footer-link {
  display: inline-block;
  color: #69697b;
  line-height: 1.222em;
  text-decoration: none;
  white-space: nowrap;
}
.foot-list {
  text-align: start;
  margin-bottom: 0.5em;
}
.footer-link:hover {
  color: #0c9db3;
  text-decoration: none;
}
.mt {
  margin-top: 2.8em;
}
.para-one {
  text-align: start;
  color: #69697b;
  font-size: 16px;
}
.para-two {
  text-align: start;
  color: #69697b;
  font-size: 18px;
}
.para-two-txt {
  text-align: start;
}
.startup-img {
  margin-top: 1.2em;
}

@media only screen and (min-device-width: 800px) and (max-width: 992px) {
  .img {
      padding: 5px !important;
  }
  .footer {
      padding-top: 5em;
      padding-left: 10px !important;
      padding-right: 10px !important;
  }
}

@media only screen and (max-width: 768px),
  (min-device-width: 768px) and (max-device-width: 800px) {
  
  /*footer*/
  .line {
      border: 1px solid #ececf4;
      align-self: center;
      width: 70vw;
      height: 0px;
      margin-bottom: 3px;
  }
  .footer-upper,
  .footer-lower {
      display: flex;
      flex-direction: column !important;
  }
  .img {
      align-items: center;
      justify-content: center;
  }
  /*footer end*/


}








/* .footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box .logo {
  padding-bottom: 1rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #fff;
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
  padding: 2rem 0;
  line-height: 2;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: #0C9DB3;
}

.footer .box-container .box .share {
  padding: 2px 55px 15px 0px;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid #29d9d5;
  color: #0C9DB3;
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background: #0C9DB3;
  color: #111;
}

.footer .box-container .box .links {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  padding: 1rem 31px;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #0C9DB3;
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
  color: #0C9DB3;
}
.footer .box-container .boxs{
  padding: 0px 25px 28px 58px;
  margin: 26px 25px 0px 26px;

}
.footer .box-container .boxs .cols .contact-details{
  
    display: inline-flex;
    justify-content:left;
    color: #000000;
    padding: 0px 31px 7px 24px;
    margin: 2px 14px 0px 84px;
}
.footer .box-container .boxs .cols .contact-details i{
    margin-right:15px;

}
.footer .box-container .boxs .cols h3{
  color: #0C9DB3;
  font-size: 19px;
  margin: 10px 16px 18px 178px;

}
.footer .box-container .boxs .cols .contact-details h2{
  color: #000000;
  padding: 5px 9px 31px 8px;
  margin: 22px 0px 12px 68px;

}
.footer .box-container .boxs .cols .contact-details p{
  font-size: 10px;
  justify-content: center;
  color: #000000;
  padding: 11px 32px 3px 0px;
  margin: 13px 27px 12px 28px;
  align-items: center;
  flex: auto;
}
.footer .box-container .box form .email {
  width: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #29d9d5;
  background: none;
  font-size: 1.5rem;
  text-transform: none;
  color: #aaa;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
}
.footer .box-container .boxc img{
    width: 11vw;
    height: 18vh;
    margin: 194px 24px 22px -370px;
}
.credit {
  background: rgb(255, 255, 255);
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  color: rgb(0, 0, 0);
}

.credit span {
  color: #0C9DB3;
} */

@media (max-width:768px){
  .btna{
    display: inline-block;
  margin: 51px 82px;
  padding: 2.5rem 4rem;
  border-radius: 15px;
  background: var(--blue);
  font-family: 'Jost';
  font-size: 1.9rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
  }
  
  .btna:hover{
    transform: scale(1.1);
    background:var(--white);
    border: #0C9DB3 solid 3px;
    color: #0C9DB3;
  }
  .btne{
    display: inline-block;
    margin: 0px 82px;
    padding: 1.5rem 2rem;
    border-radius:5px;
    background: var(--blue);
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    transition: all .3s linear;
}

.btne:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 2px;
  color: #0C9DB3;
}


.btni{
  display: inline-block;
  margin: 51px 82px;
  padding: 1.5rem 7rem;
  border-radius: 15px;
  background: var(--blue);
  font-family: 'Jost';
  font-size: 2.1rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
}

.btni:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}

.whskill .row .btna{
  display: inline-block;
  margin: 12px 68px;
 padding: 2.5rem 4rem;
 border-radius: 15px;
 background: var(--blue);
font-family: 'Jost';
font-size: 1.9rem;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
transition: all .3s linear;
align-items: center;
}

.whskill .row .btna:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}
  
.hedx{
  display: flex;
  
}
.hedx .btnx{
  display: inline-block;
  
  padding: 1.5rem 5rem;
  border-radius: 15px;
  background: var(--blue);
  border: #ffffff solid 5px;
  font-family: 'Jost';
  font-size: 2.3rem;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
}

 .hedx .btnx:hover{
  transform: scale(1.1);
  background:var(--white);
  color: #000000;
}

.hedx .heading{
  justify-content: left;
  font-size: 38px;
  margin: 41px 547px 31px -76px;
  padding: 23px 273px 37px 223px;
  color: #ffffff;
  
}
.hedc{
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-items: center;

  
}
.hedc .heading{
  justify-content: left;
  font-size: 38px;
  margin: 9px 547px 31px -76px;
  padding: 22px 453px 37px 223px;
  color: #000000;
  
}
.hedc .btnc{
  display: inline-block;
  margin: 0px 68px 10px -240px;
  padding: 1.5rem 5rem;
  border-radius: 15px;
  background: var(--blue);
  font-family: 'Jost';
  font-size: 2.3rem;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
  transition: all .3s linear;
  align-items: center;
}

 .hedc .btnc:hover{
  transform: scale(1.1);
  background:var(--white);
  border: #0C9DB3 solid 3px;
  color: #0C9DB3;
}

}






































