/* # fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* # variables */
:root{
    --hue: 200;
    --saturation: 70%;
    --lightness: 55%;
    --main-color: hsl(var(--hue), var(--saturation), var(--lightness));

    /* text colors */
    --text-white: hsl(0, 0%, 100%);
    --text-light-gray: hsl(0, 0%, 96%);
    --text-x-dark-gray: hsl(0, 0%, 10%);
    --text-dark-gray: hsl(0, 0%, 20%);

    /* bg colors */
    --body-bg-color: hsl(var(--hue), 60%, 94%);
    --bg-color: hsl(var(--hue), 60%, 96%);
    --bg-white: hsl(0, 0%, 100%);

    /* border colors */
    --border-color: hsl(var(--hue), 48%, 88%);

    /* shadow */
    --shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.3);
    --focus-shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.6);

    /* font size */
    --fs-4xl: 50px;
    --fs-3xl: 35px;
    --fs-2xl: 26px;
    --fs-xl: 20px;
    --fs-lg: 18px;
    --fs-md: 16px;
    --fs-sm: 14px;
}

/* # base */
html{ 
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::before,
::after{
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: var(--fs-md);
    line-height: 1.5;
    color: var(--text-dark-gray);
    background-color: var(--body-bg-color);
    -webkit-text-size-adjust: 100%;
    -webkit-top-highlight-color: transparent;
}
a{
    color: var(--main-color);
    text-decoration: none;
}
ul{
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    color: var(--text-x-dark-gray);
    line-height: 1.3;
}
p{
    margin-bottom: 15px;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
::selection{
    color: var(--text-white);
    background-color: var(--main-color);
}
::-webkit-scrollbar{
    width: 5px;
}
::-webkit-scrollbar-track{
    background-color: var(--body-bg-color);
}
::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}
.page-wrapper{
    overflow: hidden;
}
.container{
    /* background-color: red; */
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}
/* # grid */
.grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}
/* # section */
.section-padding{
    padding: 60px 0;
}
.section-title{
    text-align: center;
    margin-bottom: 45px;
}
.section-title .title{
    display: inline-block;
    font-size: var(--fs-lg);
    font-weight: 400;
    text-transform: capitalize;
    color: var(--main-color);
    padding: 0 40px;
    position: relative;
}
.section-title .title::before,
.section-title .title::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 34px;
    background-color: var(--main-color);
    top: 50%;
    transform: translateY(-50%);
}
.section-title .title::before{
    left: 0;
}
.section-title .title::after{
    right: 0;
}
.section-title .sub-title{
    font-size: var(--fs-3xl);
    text-transform: capitalize;
}

/* # buttons */
button{
    cursor: pointer;
}
.btn{
    display: inline-block;
    padding: 10px 28px;
    background-color: var(--main-color);
    color: var(--text-white);
    font-weight: 500;
    font-size: var(--fs-md);
    text-transform: capitalize;
    line-height: 1.5;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: 30px;
    vertical-align: middle;
    transition: all 0.3s ease;
}
.btn:hover{
    background-color: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
}

#status {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}

#status.success {
  background-color: rgb(211, 250, 153);
  animation: status 10s ease forwards;
}

#status.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 10s ease forwards;
}

@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

#statusZ {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}

#statusZ.success {
  background-color: rgb(211, 250, 153);
  animation: status 10s ease forwards;
}

#statusZ.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 10s ease forwards;
}

@keyframes statusZ {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}


/* # forms */
.input-box{
    margin-bottom: 20px;
}
::placeholder{
    color: var(--text-dark-gray);
    opacity: 1;
}
.input-control{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: var(--text-x-dark-gray);
    padding: 0 20px;
}
.input-control:focus{
    outline: 1px solid var(--border-color);
}
textarea.input-control{
    display: block;
    height: 150px;
    padding-top: 15px;
    resize: none;
}

/* # header */
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 0;
    /* background-color: red; */
}
.header::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: -1;
    transform: translateY(calc(-100% - 10px));
    transition: transform 0.5s ease;
}
.header.bg-reveal::before{
    transform: translateY(0);
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*.header .logo a{
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    transform: scaleY(0.9);
    letter-spacing: 2px;*/
}
.header .logo span{
    font-size: 12px;
    display: block;
    font-weight: 400;
    color: var(--text-x-dark-gray);
    letter-spacing: 1px;
}
 /* what i add*/
 .navbar{
       display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    color: white;


 }

.toggle-button {
   position: fixed;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 15px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
}

.navbar-links {
    height: 100%;

}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}



.navbar-links li{
    display: inline-block;
    margin-left: 35px;
}
.navbar-links a{
    text-transform: capitalize;
    font-size: var(--fs-md);
    color: var(--text-x-dark-gray);
    font-weight: 400;
    padding: 10px 0;
    transition: color 0.3 ease;
}
.navbar-links a:hover{
    color: var(--main-color);
}



.navbar-linksZ {
    height: 100%;

}

.navbar-linksZ ul {
    display: flex;
    margin: 0;
    padding: 0;
}



.navbar-linksZ li{
    display: inline-block;
    margin-left: 35px;
}
.navbar-linksZ a{
    text-transform: capitalize;
    font-size: var(--fs-md);
/*    color: var(--text-x-dark-gray);
*/    font-weight: 400;
    padding: 10px 0;
    transition: color 0.3 ease;
}
.navbar-linksZ a:hover{
    color: var(--main-color);
}



/* # home */
.home{
    padding: 100px 0 60px;
}
.home-text,
.home-img{
    grid-column: span 6;
    align-self: center;
}
.home-text h1{
    font-size: var(--fs-4xl);
    margin: 0 0 20px;
    text-transform: capitalize;
}
.home-text p{
    margin: 0 0 30px;
}
.home-img{
    position: relative;
}
.home-img .circle-wrap{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
}
.home-img .circle{
    height: 350px;
    width: 350px;
    background-color: var(--main-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.home-img img{
    max-width: 270px;
    display: block;
    margin: auto;
}

/* # about */


.about .section-title{
    text-align: left;
    margin: 0 0 15px;
}
.about-img,
.about-text{
    grid-column: span 6;
}
.container .img-box1{
    grid-column: span 3;
    text-align: center; 
    height: 110px;
    width: 110px;
    border-radius: 50%;
    margin: 0 0 20px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    overflow: hidden;
}
.about-img .img-box{
    max-width: 400px;
    margin: auto;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: relative;
}
.about-img .img-box img{
    border-radius: 50%;
}
.about-img .box{
    height: 125px;
    width: 125px;
    background-color: var(--main-color);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 0 40px;
    padding: 15px;
}
.about-img .box-1{
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
.about-img .box span{
    color: var(--text-white);
    font-weight: bold;
    font-size: var(--fs-3xl);
    margin: 0 0 5px;
    line-height: 1;
}
.about-img .box p{
    font-size: var(--fs-sm);
    text-transform: uppercase;
    color: var(--text-light-gray);
    margin: 0;
}
/* # services */
.services-item{
    grid-column: span 3;
    text-align: center; 
}
.services-item .img-box{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    padding: 8px;
    overflow: hidden;
}
.services-item .img-box img{
    border-radius: 50%;
    transition: transform 0.5s ease;
}
.services-item:hover .img-box img{
    transform: scale(1.5);
}
.services-item h3{
    text-transform: capitalize;
    font-size: var(--fs-xl);
    font-weight: 500;
}
/* # pricing */
.pricing-item{
    grid-column: span 4;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.pricing-header h3{
    text-transform: capitalize;
    margin: 0 0 20px;
    font-size: var(--fs-2xl);
    font-weight: 600;
}
.pricing-header .price{
    height: 140px;
    width: 140px;
    box-shadow: inset var(--shadow);
    margin: auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
}
.pricing-header .price span{
    font-size: var(--fs-3xl);
    color: var(--main-color);
    font-weight: bold;
    line-height: 1.3;
}
.pricing-body{
    padding: 30px 0;
    text-align: left;
}
.pricing-body li{
    text-transform: capitalize;
    position: relative;
    padding-left: 27px;
}
.pricing-body li+li{
    margin-top: 10px;
}
.pricing-body li i{
    position: absolute;
    left: 0;
    top: 5px;
    font-size: var(--fs-sm);
}
/* # team */
.team-item{
    grid-column: span 4;
}
.team-item .img-box{
    max-width: 350px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    margin: auto;
    border-radius: 50%;
    padding: 15px;
}
.team-item img{
    border-radius: 50%;
    transition: filter 0.5s ease;
}
.team-item:hover img{
    filter: grayscale(50%);
}
.team-item .detail{
    background-color: var(--main-color);
    width: 85%;
    max-width: 260px;
    padding: 15px;
    margin: -12px auto 0;
    text-align: center;
    text-transform: capitalize;
    z-index: 1;
    border-radius: 0 40px;
    transition: border-radius 0.5s ease;
}
.team-item:hover .detail{
    border-radius: 40px 0;
}
.team-item h3{
    margin: 0 0 5px;
    color: var(--text-white);
    font-size: var(--fs-xl);
    font-weight: 500;
}
.team-item p{
    margin: 0;
    color: var(--text-light-gray);
}
/* # contact */
.contact-grid{
    max-width: 1000px;
    margin: auto;
}
.contact-info{
    grid-column: span 5;
}
.contact-form{
    grid-column: span 7;
}
.contact-info-item{
    position: relative;
    padding: 20px 0 20px 70px;
}
.contact-info-item + .contact-info-item{
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
}
.contact-info-item i{
    height: 50px;
    width: 50px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 20px;
}
.contact-info-item h3{
    margin: 0;
    font-size: var(--fs-xl);
    font-weight: 500;
    text-transform: capitalize;
}
.contact-info-item p:last-child{
    margin: 0;
}

/* # footer */
.footer{
    padding: 50px 0;
    background-color: var(--main-color);
    text-align: center;
}
.footer h3{
    color: var(--text-white);
    font-size: var(--fs-2xl);
    margin: 0 0 15px;
    font-weight: 500;
    text-transform: capitalize;
}
.footer .social-links div{
    padding-top: 15px
}
.footer .social-links a{
    height: 40px;
    width: 40px;
    display: inline-flex;
    background-color: var(--bg-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}
.footer .social-links a:hover{
    background-color: transparent;
    color: var(--text-white);
    border-color: initial;
}



@media only screen and (max-width: 915px) and (min-width: 280px) {
    .containerZ {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
      .navbar {
         position: absolute;
        right: 0px;
        height: : 70vh;
        top: 6vh;             
        background-color: var(--body-bg-color);
        align-items: center;
        width: 50%
        padding-left: 60px;

    }

    .toggle-button {
        display: flex;
    }

   .navbar-links {
        display: none;
        width: 100%;

    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

}

@media only screen and (min-width: 280px) and (max-width: 915px){

    /*.container{
        display: none;
    }*/
#myBtn {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 0px;
  z-index: 99;
  font-size: 6px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;

}

#myBtn:hover {
  background-color: #555;
}

    .containerZ{
    /* background-color: red; */
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
    }

    .containerZ .img-box1Z{
    grid-column: span 3;
    text-align: center; 
    height: 110px;
    width: 110px;
    border-radius: 50%;
    margin: 0 0 20px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    overflow: hidden;
    }
    .about-imgZ .img-boxZ{
    max-width: auto;
    margin: auto;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: center;
    }
    .about-imgZ .img-boxZ img{
    border-radius: 50%;
    }   
    .about-imgZ .boxZ{
    height: 125px;
    width: 125px;
    background-color: var(--main-color);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 0 40px;
    padding: 15px;
    }
    .about-imgZ .box-1Z{
    
     height: 100px;
    width: 100px;
    background-color: var(--main-color);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 0 40px;
    padding-top: 10px;
    left: 1vh

    }
    .about-imgZ .boxZ span{
    color: var(--text-white);
    font-weight: bold;
    font-size: var(--fs-3xl);
    margin: 0 0 5px;
    line-height: 1;
    }
    .about-imgZ .boxZ p{
    font-size: var(--fs-sm);
    text-transform: uppercase;
    color: var(--text-light-gray);
    margin: 0;
    }

    .about-textZ{
    grid-column: span 6;
    }   

    .section-paddingZ{
    padding: 60px 0;
    }
    .about{
        display: none;
    }

    .pricing{
    display: none;
      }
/*The service section*/
    .services{
    display: none;
         }

.section-paddingZ{
    padding: 60px 0;
}
.section-titleZ{
    text-align: center;
    margin-bottom: 45px;
}
.section-titleZ .titleZ{
    display: inline-block;
    font-size: var(--fs-lg);
    font-weight: 400;
    text-transform: capitalize;
    color: var(--main-color);
    padding: 0 40px;
    position: relative;
}
 
.section-titleZ .sub-titleZ{
    font-size: var(--fs-3xl);
    text-transform: capitalize;
}

 .services-itemZ{
    grid-column: span 3;
    text-align: center; 

}
.services-itemZ .img-boxZ{
     height: 140px;
    width: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    padding: 8px;
    overflow: hidden;
    position: relative;
}
.services-itemZ .img-boxZ img{
    border-radius: 50%;
    transition: transform 0.5s ease;
}
.services-itemZ:hover .img-boxZ img{
    transform: scale(1.5);
}
.services-itemZ h3{
    text-transform: capitalize;
    font-size: var(--fs-xl);
    font-weight: 500;
}
   
/*The pricing section*/

.pricing-itemZ{
    grid-column: span 4;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.pricing-headerZ h3{
    text-transform: capitalize;
    margin: 0 0 20px;
    font-size: var(--fs-2xl);
    font-weight: 600;
}
.pricing-headerZ .priceZ{
    height: 140px;
    width: 140px;
    box-shadow: inset var(--shadow);
    margin: auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
}
.pricing-headerZ .priceZ span{
    font-size: var(--fs-3xl);
    color: var(--main-color);
    font-weight: bold;
    line-height: 1.3;
}
.pricing-bodyZ{
    padding: 30px 0;
    text-align: left;
}
.pricing-bodyZ li{
    text-transform: capitalize;
    position: relative;
    padding-left: 27px;
}
.pricing-bodyZ li+li{
    margin-top: 10px;
}
.pricing-bodyZ li i{
    position: absolute;
    left: 0;
    top: 5px;
    font-size: var(--fs-sm);
}
/*header*/
/*.headerZ{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 0;
     }*/
.navbarZ {
         position: absolute;
        right: 0px;
        height: : 70vh;
        top: 6vh;             
        background-color: var(--body-bg-color);
        align-items: center;
        width: 50%
        padding-left: 60px;
        display: flex;

    }

    .toggle-buttonZ {
        display: flex;
    }

   .navbar-linksZ {
        display: flex;
        width: 100%;
    }

    .navbar-linksZ ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-linksZ ul li {
        text-align: center;
    }

    .navbar-linksZ ul li a {
        padding: .5rem 1rem;
        margin-top: -200;

    }

    .navbar-linksZ.active {
        display: flex;
    }

#statusZ {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}

#statusZ.success {
  background-color: rgb(211, 250, 153);
  animation: statusZ 10s ease forwards;
}

#statusZ.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: statusZ 10s ease forwards;
}

@keyframes statusZ {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}






.team{
    display: none;
}

.contact{
    display: none;
}
.home{
            display: none;
        }

.page-wrapper{
    display: none;
}

}





    @media only screen and (min-width: 916px){
        .homeZ{
            display: none;
        }

        .aboutZ{
    display: none;
}

.servicesZ{
    display: none;
}

.pricingZ{
    display: none;
}

.teamZ{
    display: none;
}

.contactZ{
    display: none;
}


.page-wrapperZ{
    display: none;
}
           } 