*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s linear;
    outline: none;
    scroll-behavior: smooth;
   
}
*::selection{
    background-color: rgb(50, 205, 153);
    color: #fff;
}
body{
    background-color: rgb(15, 23, 43);
    font-family: 'Open Sans', sans-serif;
}

/* GoTop Button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: rgb(50, 205, 153);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#myBtn:hover {
  background-color: rgb(50, 205, 153);
  color: #fff;
}

/* Start Header */
header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url(./images/d3.jpg);
    background-position: center;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 91%, 49% 100%, 0 89%, 0 0);
}
nav{
    padding: 2% 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
nav .logo{
    font-size: 30px;
    cursor: pointer;
}
nav .logo span{
    color: rgb(50, 205, 153);
}
nav .links{
    padding-left: 0;
}
nav .links li{
    display: inline-block;
    margin-left: 1rem;
    font-size: 1.2rem;
}
nav .links li a{
    color: #fff;
}
/* .links .active{
    color: rgb(50, 205, 153);
} */
nav .links li a:hover{
    padding: 0 10px;
    border-radius: 5px;
    background: rgb(50, 205, 153);
}
header .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
header .content h1{
    font-size: 120px;
    text-transform: uppercase;
    color: #fff;
}
.btn{
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 0.3rem solid rgb(50, 205, 153);
    color: rgb(50, 205, 153);
    margin-top: 1.8rem;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
}
.btn:hover{
    background-color: rgb(50, 205, 153);
    color: #fff;
}
nav .open,.close{
    font-size: 1.8rem;
    cursor: pointer;
    color: rgb(50, 205, 153);
    display: none;
}
@media (max-width:850px) {
    nav .links{
        height: 25rem;
        width: 60%;
        position: fixed;
        top: 0;
        right:0;
        border-radius: 12px;
        background-color: #fff;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
    }
    nav .links li{
        font-size: 18px;
        margin: 0.5rem;
    }
    nav .links li a{
        color: #000;
    }
    nav .open,nav .links .close{
        display: block;
        position: absolute;
        top: 1.8rem;
        right: 1.8rem;
    }
    header .content h1{
        font-size: 60px;
    }
}
/* Start About */
.about .row{
    background: linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url(./images/1.jpg);
    background-position: center;
    background-size: cover;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px;
    padding: 2% 6%;
}

.about .row .image{
    flex: 1 1 40rem;
    margin: auto;
    padding: 2rem;
}
/*  */
.about .row .content{
    flex: 1 1 40rem;
    padding: 2rem;
    text-align: center;
    color: white;
}
.about .row .content h1{
     color: rgb(50, 205, 153);
    font-size: 3.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 2.2rem;
}
.about .row .content p{
    line-height: 1.7;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

@media (max-width:850px) {
    .about .row{
        background: linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
        url(./images/1.jpg);
        width: 100%;
        background-position: center;
        background-size: cover;
        border-bottom-right-radius: 100px;
        border-top-left-radius: 100px;
        /* min-height: 100vh; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: auto;
        padding: 2% 6%;
    }
}
/* Start Services */
.services{
    min-height: 100vh;
    text-align: center;
    padding: 2% 6%;
}
.services h1{
    font-size: 3.8rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 1.8rem;
}
.services .container{
    display: flex;
    flex-basis: 30%;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.services .container .box{
    width: 200px;
    height: 31rem;
    margin: 1rem;
    position: relative;
    overflow: hidden;
    flex-basis: 30%;
    cursor: pointer;
}
.services .container .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services .container .box .info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: bottom;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all ease 0.7s;
}
.services .container .box:hover .info{
    transform: translate(-50%, -50%) scale(1);
}
.services .container .box .info h3{
    font-size: 3rem;
    color: rgb(50, 205, 153);
    margin-bottom: 1.2rem;
}
.services .container .box .info p{
    line-height: 2;
    color: #fff;
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 1.2rem;
}
@media (max-width:850px) {
    .services .container{
        display: flex;
        flex-basis: 30%;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        flex-direction: column;
    } 
    .services .container .box{
        width: 100%;
        height: 31rem;
        margin: 1rem;
        position: relative;
        overflow: hidden;
        flex-basis: 30%;
    }
   
}
/* Start Trainers */
.trainers{
    min-height: 100vh;
    text-align: center;
    padding: 2% 6%;
    margin-bottom:2%;
}
.trainers h1{
    font-size: 3.8rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 1.8rem;
}
.trainers p{
    font-size: 1.5rem;
    color: rgb(192, 190, 190);
}
.trainers .items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.trainers .items .item{
    height: 35rem;
    width: 24rem;
    flex-basis: 22%;
    margin: 5rem 1rem;
}
.trainers .item img{
    width: 100%;
    height: 100%;
    border-radius: .6rem;
    object-fit: cover;
}
.trainers .item .inner{
    position: relative;
    z-index: 9999;
    padding: 0 1rem;
}
.trainers .item:hover{
    transform: translateY(-20px);
}
.trainers .item .inner .info{
    background-color: rgb(50, 205, 153);
    padding: 1.2rem 1rem;
    border-radius: 0.6rem;
    margin-top: -2.5rem;
}
.trainers .item:hover .info{
    transform: translateY(-30px);
}
.trainers .item .inner .info h4{
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #000;
}
.trainers .item .inner .info p{
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-top: .6rem;
}
.trainers .item .inner .info .links{
    margin-top: 1rem;
}
.trainers .item .inner .info .links a{
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    border-radius: 50%;
    color: rgb(50, 205, 153);
    text-align: center;
    line-height: 2rem;
    margin-left: 0.3rem;
    font-size: 1.1rem;
}
.trainers .item .inner .info .links a:hover{
    box-shadow: 0 0 .6rem #000;
}
@media (max-width:850px) {
    .trainers .items{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
}
/* training videos */
.training-videos{
    min-height: 100vh;
    text-align: center;
    padding: 2% 6%;
}
.training-videos h1{
    font-size: 3.8rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 1.8rem;
}
.training-videos p{
    font-size: 1.5rem;
    color: rgb(192, 190, 190);
}
.training-videos .items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.training-videos .items .item{
    height: 35rem;
    width: 24rem;
    flex-basis: 30%;
    margin: 5rem 1rem;
}
.training-videos .item video{
    width: 100%;
    height: 100%;
    border-radius: .6rem;
    object-fit: cover;
}
.training-videos .item .inner{
    position: relative;
    z-index: 9999;
    padding: 0 1rem;
}
.training-videos .item:hover{
    transform: translateY(-20px);
}
.training-videos .item .inner .info{
    background-color: rgb(50, 205, 153);
    padding: 1.2rem 1rem;
    border-radius: 0.6rem;
    margin-top: -2.5rem;
}
.training-videos .item:hover .info{
    transform: translateY(-30px);
}
.training-videos .item .inner .info h4{
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #000;
}
.training-videos .item .inner .info p{
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-top: .6rem;
}
.training-videos .item .inner .info .links{
    margin-top: 1rem;
}
.training-videos .item .inner .info .links a{
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    border-radius: 50%;
    color: rgb(50, 205, 153);
    text-align: center;
    line-height: 2rem;
    margin-left: 0.3rem;
    font-size: 1.1rem;
}
.training-videos .item .inner .info .links a:hover{
    box-shadow: 0 0 .6rem #000;
}
@media (max-width:850px) {
    .training-videos .items{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
}
/* Start Plan */
.pricing_table{
    min-height: 100vh;
    padding: 2% 6%;
    text-align: center;
}
.pricing_table h1{
    font-size: 3.8rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 2.2rem;
}
.pricing_table .pricing_card{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.pricing_card .pricing_box{
    width: 30rem;
    box-shadow: 2px 2px 6px #000;
    margin-bottom: 4rem;
    flex-basis: 33%;
    background: white;
}
.pricing_card .pricing_box:hover{
    transform: translateY(-30px);
}
.pricing_box h2{
    font-size: 1.7rem;
    margin-bottom: 3rem;
    background-color: rgb(50, 205, 153);
    padding: 1.2rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.pricing_box h3{
    margin-top: 2rem;
    font-size: 3.5rem;
    color: rgb(50, 205, 153);
}
.pricing_box h3 sup{
    font-size: 1.7rem;
}
.pricing_box h3 span{
    font-size: 2.3rem;
}
.pricing_box p{
    font-size: 2.3rem;
    color: #333;
}
.pricing_box ul{
    padding: 2rem;
}
.pricing_box ul li{
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.pricing_box .btn{
    margin-bottom: 2rem;
}
@media (max-width:850px) {
    .pricing_table .pricing_card{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
        flex-direction: column;
    }
    .pricing_card .pricing_box{
        width: 100%;
        box-shadow: 2px 2px 6px #000;
        margin-bottom: 4rem;
        flex-basis: 33%;
        background: white;
    }
}
/* testimonials */
.testimonials{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    color: rgb(50, 205, 153);
}
.testimonials-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
   text-align: left;
   background: #fff3f3;
   padding: 25px;
   cursor: pointer;
   display: flex;
   color: rgb(2, 2, 2);
}
.testimonials-col img{
    height: 50px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
    display: block;
    /* clip-path:circle(0 50%); */
}
.testimonials-col h3{
    text-align: left;
    margin-top: 15px;
}
.testimonials p{
    padding: 1rem;
}
.testimonials-col p{
    padding: 0;
}
.testimonials .fa{
    color: rgb(50, 205, 153);
}
.testimonials .far{
    color: rgb(50, 205, 153);
}
.testimonials h1{
    font-size: 3.5rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 2.2rem;
}
@media(max-width: 700px){
    .testimonials-col img{
        margin-left: 0px;
        margin-right: 50px;
    
    }
}
/* Start Register */
#map{
    margin:auto;
    height: 100vh;
    width: 50%;
}
.contact{
    /* background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url(./images/d1.jpg);
    min-height: 100vh; */
    width: 100%;
    display: flex;
    background-position: center;
    background-size: cover;
    text-align: center;
}
.register{
   
    min-height: 100vh;
    width: 50%;
   }
.register h1{
    font-size: 3.5rem;
    padding: 0.5rem;
    display: inline-block;
    color: rgb(50, 205, 153);
    border-bottom: .3rem solid rgb(50, 205, 153);
    margin-bottom: 2.2rem;
}
.register form{
    padding: 2% 6%;
    margin: 0 auto;
}
.register form .input_box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.register form .input_box input,textarea{
    height: 2rem;
    width: 49%;
    background-color: transparent;
    color: #f9f7f7;
    padding: 2rem 1rem;
    margin: 1rem 0;
    font-size: 2rem;
    border: 1px solid #ddd;
}
.register form textarea{
    height: 20rem;
    width: 100%;
    resize: none;
    padding: 1rem;
}
@media (max-width:1100px) {
    .register form .input_box input{
        width: 100%;
    }
}
@media (max-width:850px) {
    .contact{
        /* background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url(./images/d1.jpg);
        min-height: 100vh; */
        width: 100%;
        display: flex;
        background-position: center;
        background-size: cover;
        text-align: center;
        flex-direction: column;
    }
    .register{
   
        min-height: 100vh;
        width: 100%;
       }
       #map{
        margin:auto;
        height: 100vh;
        width: 100%;
    }
}
/* Start Footer */
.footer{
    /* position: absolute; */
    bottom: 0;
    margin-top: 70px;
    width: 100%;
    background: rgb(131,243,178);
    padding: 20px 0 30px;
    /* border-top-left-radius: 125px; */
    font-size: 13px;
    line-height: 15px;
}
.footer-rows{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-section{
    flex-basis: 25%;
    padding: 10px;
}
.footer-section:nth-child(2),.footer-section:nth-child(3){
    flex-basis: 15%;
}
.footer-logo{
    width: 120px;
    margin-bottom: 30px;
}
.footer-section h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email{
width: fit-content;
border-bottom:1px solid rgb(51, 51, 189) ;
margin: 20px 0;
}
.footer-section ul li{
    list-style: none;
    margin-bottom: 12px;
}
.footer-section ul li a{
    text-decoration: none;
    color: black;
}
.footer-section form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:1px solid black ;
    margin-bottom: 50px;

}
.footer-section form .far{
    font-size: 18px;
    margin-right: 10px;

}
.footer-section form input{
    width: 100%;
    background: transparent;
    color: black;
    border-width: 0;
    outline: none;
}
.footer-section form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.footer-section form button .fas{
    font-size: 10px;
    color: black;
}
.socialmedia .fab{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: white;
    background: black;
    margin-right: 15px;
    cursor: pointer;
}
.socialmedia .fab:hover {
    box-shadow: 0 0 0.6rem #000;
}
footer hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid black;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 10px;
    height: 100%;
    background: #ffff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;

}
@keyframes moving {
0%{
    left: -20px;
}    
100%{
    left: 100%;
}    
}
