*{
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
}
body{
    width: 100vw;
    
    overflow-x: hidden;
}
header{
    background-color: #8FEE13;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

}
.header-contact-links{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.header-contact-links>div>a{
    text-decoration: none;
    color: #000000;

}
.header-social-links{
    width: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.header-social-links>div>a{
    text-decoration: none;
    color: #000000;
}

nav{
    background-color: #FFFFFF;
    height: 10rem;
    position: sticky;
    top: 0;
    left: 0;
    height: 4rem;
    color: #9A188A;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border-bottom: .04rem solid #000000;
    z-index: 10;
}
.nav-mobile{
    display: none;
    
}
.nav-main{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 80%;

}
.nav-main>a{
    text-decoration: none;
}
.nav-mobile>a{
    text-decoration: none;
}
.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.logo>img{
    width: 4rem;
    height: 4rem;

}
.logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #000000;
}
.logo-text>:first-child{
    /* color: #9A188A; */
}
.logo-text>:last-child{
    color: #9A188A;
    font-size: .8rem;
    /* font-weight: 600; */
}
.nav-main>ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.nav-main>ul>li>a{
    text-decoration: none;
    color: #000000;
    padding: 1rem;
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    border-radius: .3rem;

}

.active>a{
    color: #8FEE13;
}
.nav-main>ul>li>a:hover{
    color: #8FEE13;
}

.dropitem {
    color: #000000;
    padding: 1rem;
    font-size: 1rem;
    border: none;
}

.dropdown-nav {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.dropdown-item-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-item-content a {
    color: #000000;
    padding: .6rem .7rem;
    text-decoration: none;
    display: block;
}

.dropdown-item-content a:hover{
    background-color: #8FEE13;
}

.dropdown-nav:hover .dropdown-item-content{
    display: block;
}

.dropdown-nav:hover .dropitem{
    background-color: #FFFFFF;
}





.nav-cta{
    padding: .5rem;
    background-color: #8FEE13;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: .4rem;
    font-family: "Raleway", sans-serif;
    box-shadow: .05rem .05rem .05rem #000000;

}



.hamburger-menu {
    display: none;
    position: fixed;
    top: .4rem;
    right: .4rem;
    z-index: 130;
    padding: 1rem;
    /* background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0rem 0rem .1rem rgba(3, 9, 114, 0.2); */
}

.hamburger-menu-icon {
    display: block;
    cursor: pointer;
    color: #000000;
    font-size: 1.5rem;
}

.hamburger-menu-icon {
display: block;
cursor: pointer;
color: #000000;
font-size: 1.5rem;
position: relative;
}

.line {
    display: block;
    width: 24px;
    height: .1rem;
    background-color: #000000;
    margin: 4px auto;
    transition: all 0.3s ease; /* Adding smooth transition */
}

.hamburger-menu.open .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}





main{
    /* background-color: aqua; */
    /* height: auto; */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 0 2rem 0;
}
.hero-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    margin: 3rem 0rem 4rem 0rem;
    /* height: auto; */
}
.hero-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.main-hero{
    font-size: 3rem;
    padding: .7rem .7rem .2rem .7rem;
    font-weight: 900;
    margin-bottom: 0rem;
    
}
.hero-detail{
    width: 80%;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem;
    margin: .5rem 0;

}
.hero-button>a{
    text-decoration: none;
    font-size: 1.8rem;
    background-color: #8FEE13;
    color: #000000;
    padding: .8rem 1rem;
    border-radius: .7rem;
    font-weight: 900;
    margin: .4rem 0;

}
.hero-image>img{
    height: 22rem;
    object-fit: cover;
    border-radius: 1rem;
    filter: hue-rotate(40deg);
}

.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    margin: 0rem 0rem 4rem 0rem;
    overflow-y: visible;


}
.services>h1{
    margin: 3rem 0;
    font-weight: 800;
    font-size: 3rem;
    color: #313030;

}
.services>div{
    display: grid;
    grid-template-columns: auto auto auto auto;
    row-gap: 5%;
    column-gap: 2.5%;
    width: 100%;
}
.service-container{
    /* height: 18rem; */
    height: auto;
    width: auto;    
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 1.2rem 0 rgba(0, 0, 0, 0.19);
    border-radius: .8rem;
}


.service-icon>img{
    /* height: 5rem; */

    width: 100%;
    object-fit: cover;
    border-radius: .8rem;

}
.service-name{
    /* font-size: 1.2rem; */
    text-align: center;
    padding: .5rem;
    font-weight: 600;
    margin: 1rem 0;
    
}
.service-name>b{
    font-size: 1.5rem;
    font-weight: 900;
}
.service-info>a{
    margin: 1.5rem 0;
    padding: .8rem;
    background-color: #8FEE13;
    color: #000000;
    font-weight: 700;
    border-radius: .5rem;
    text-decoration: none;
}


.Why-us-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0rem 4rem 0rem;
    /* background-color: #8FEE13; */
}
.Why-us-heading{
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.Why-us-container>div>h1{
    
    font-weight: 800;
    font-size: 3rem;
    color: #313030;
}


.Why-us{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: #8FEE13;
    border-top: #313030 solid .1rem;
    border-bottom: #313030 solid .1rem;
    padding: 3rem .5rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 1.2rem 0 rgba(0, 0, 0, 0.19);
    
}

.why-qualities{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 1rem;
    color: #313030;
}

.about{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4rem 0rem 4rem 0rem;
}
.about>h1{
    margin: 0 0 2rem 0;
    font-weight: 800;
    font-size: 3rem;
    color: #313030;
}
.about-detail{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}
.about-detail>img{
    /* width: 30rem; */
    width: 50%;
    border-top-left-radius: .8rem;
    
}
.about-content{
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 2rem;
    text-align: center;
}
.about-content>h2{
    margin: 0;
    font-size: 2.2rem;
    color: #000000;
    background-color: #8FEE13;
    padding: 1rem;
    border-top-right-radius: .8rem;

}
.about-detail2{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
}
.about-detail2>div{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #8FEE13;
    height: 10rem;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    
}
.about-detail2>div:first-child{
    border-bottom-left-radius: .8rem;

}
.about-detail2>div:last-child{
    border-bottom-right-radius: .8rem;
    
}

.reviews{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4rem 0rem 4rem 0rem;
}

.reviews>h1{

    margin: 0 0 2rem 0;
    font-weight: 800;
    font-size: 3rem;
    color: #313030;
    text-align: center;

}

.client-review-container{
    width: 80%;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1%;
}

.client-review{
    height: auto;
    width: auto;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 1.2rem 0 rgba(0, 0, 0, 0.19);
    padding: 1rem;
    border-radius: .8rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.client-review>div{
    background-color: #8FEE13;
    border-radius: .8rem; 
    margin: .3rem 1rem .3rem .3rem;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.client-review>div>span{
    font-size: .8rem;
    font-weight: 800;
}

.client-review>div>i{
    font-size: 5rem;
    color: #313030;
    border: #313030 1rem;
    
    
}
.client-review>p>i{
    color: #45a049;    
}

.service-gap{
    display: none;
}

.end-cta{
    width: 80%;
    margin: 3rem 0;
}

.form-container {
    max-width: 100%;
    margin: 4rem auto;
    padding: 3rem; /* Increased padding for better spacing */
    border-radius: .8rem;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 1.2rem 0 rgba(0, 0, 0, 0.19);
    display: grid;
    gap: 1.5rem; /* Increased gap for better separation */
  }
  .form-container>h1{
    margin: 0;
    font-weight: 800;
    font-size: 3rem;
    color: #313030;
    text-align: center;
  }
  .form-container>h1>span{
    color: #45a049;
  }
  .cta-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-form-group>label {
    display: block;
    font-weight: bold;
  }
  .cta-form-group>input[type="number"]{
    padding: .8rem;
    border: .05rem solid #ccc;
    border-radius: .4rem;
    /* width: 100%; */
  }
  
  
  .cta-form-group>input[type="text"],
  .cta-form-group>input[type="email"],
  .cta-form-group>input[type="tel"],
  .cta-form-group>textarea {
    /* width: calc(100% - 2.1rem); */
    /* width: 100%; */
    padding: .8rem; /* Increased padding for better readability and spacing */
    border: .05rem solid #ccc;
    border-radius: .4rem;
    transition: border-color 0.3s ease;
    margin: .4rem 0; /* Added margin for spacing */
    resize: vertical;
  }
  .cta-form-group>textarea {
    grid-column: span 2;
  }

  .cta-form-group>select{
    padding: .8rem;
    border: .05rem solid #ccc;
    border-radius: .4rem;
    width: 100%;
    grid-column: span 2;
  }

  .cta-form-group>input[type="text"]:focus,
  .cta-form-group>input[type="email"]:focus,
  .cta-form-group>input[type="tel"]:focus{

    outline: none;
    border-color: #4CAF50;
    grid-column: span 1;
  }
  .cta-form-group>textarea:focus {
    outline: none;
    border-color: #4CAF50;
    grid-column: span 2;
  }

  .cta-form-group>input[type="radio"]{
    grid-column: span 1;
    padding: .8rem;
    width: 20%;

  }
  
  .cta-form>button {
    grid-column: span 2; /* Make the button span across both columns */
    padding: .8rem 1.8rem; /* Increased padding for better button appearance */
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: .4rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: .7rem; /* Added margin at the top for spacing */
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .cta-form>button:hover {
    background-color: #45a049;
  }




  .contact{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 1rem;

    }
    .contact-headings{
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact h1{
        font-weight: 900;
        text-align: center;
        font-size: 3rem;
        padding: 1rem 0;
        

    }
    .contact-container{
        position: relative;
        width: 90%;
        padding: 1.2rem;
        
        background-color: none;
        box-shadow: 0px 0px 1.2rem 0px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin: 1.2rem 0;
        border-radius: .6rem;
    }
    .contact-info{
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
    }
    .contact-info-card{
        width: 80%;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: .6rem;
        padding: 1rem 0;
        border-radius: .6rem;
        box-shadow: 0px 0px 1.2rem 0px rgba(0, 0, 0, 0.2);
        transition: .3s;
    }
    .contact-info-card i{
        font-size: 1.2rem;
        color: #FFFFFF;
        pointer-events: none;
        text-align: center;
        margin: .3rem;
        background-image: -moz-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -webkit-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -ms-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        border-radius: 50%;
        padding: .6rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contact-info-card .contact-info-text{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    .contact-info-card .contact-info-text h3{
        padding: .3rem;
        font-size: 2rem;
        font-weight: 700;
        pointer-events: none;
        /* color: #000000; */
        color: #313030;
    }
    .contact-info-card .contact-info-text p{
        font-size: 1.2rem;
        
        pointer-events: none;
        text-align: start;
        padding: .3rem;
    }
    .contact-info-card .contact-info-text p a{
        text-decoration: none;
        color: #000;
        pointer-events: none;
        text-align: start;
        padding: .3rem;
        font-weight: 600;
    
    }


    .contact-form{
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: .6rem;
        box-shadow: 0px 0px 1.2rem 0px rgba(0, 0, 0, 0.2);
        transition: .3s;
    }
    .contact-form form{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;        
    }
    .contact-form form div{
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    .contact-form form div input{
        width: 100%;
        height: 3rem;
        border: none;
        outline: none;
        border-bottom: .1rem solid #8FEE13;
        margin: .6rem;
        padding: .6rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        transition: .3s;
    }
    .contact-form form div input:focus{
        border-bottom: .1rem solid #8FEE13;
    }
    .contact-form form div textarea{
        width: 100%;
        height: 6rem;
        resize: vertical;
        border: none;
        outline: none;
        border-bottom: .1rem solid #8FEE13;
        margin: .6rem;
        padding: .6rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
        transition: .3s;
    }
    .contact-form form div textarea:focus{
        border-bottom: .1rem solid #8FEE13;
    }
    .contact-form>form>div>button{
        width: 100%;
        height: 3rem;
        border: none;
        outline: none;
        border-radius: .4rem;
        margin: .7rem 0;
        padding: .7rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: #FFFFFF;
        background-image: -moz-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -webkit-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -ms-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        transition: .3s;
    }
    .contact-form form div button:hover{
        background-image: -moz-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -webkit-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        background-image: -ms-linear-gradient(-176deg, #8FEE13 0%, #000000 100%);
        color: #FFFFFF;
    }








  


footer{
    background-color: rgb(222, 247, 229);
    /* height: 15rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    
}
.footer-container{
    width: 80%;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3%;
}
.footer-container>div>a{
    text-decoration: none;
}
.footer-logo{
    background-color: #FFFFFF;
    padding: .4rem 1rem;
    border-radius: .4rem;
    width: 55%;
   

}
.footer-social-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
    background-color: #FFFFFF;
    border-radius: .4rem;
    margin: 1rem 0;
    padding: .4rem;
}
.footer-social-links>div>a{
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
}
.footer-social-links>div>a:hover{
    color: #45a049;
}
.footer-links{
    text-align: left;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.footer-links>h3{
    text-align: left;
    font-size: 1.6rem;
    font-weight: 900;
}
.footer-links>ul>li{
    list-style-type: none;
}
.footer-links>ul>li>a{
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}
.footer-links>ul>li>a:hover{
    color: #45a049;
}
.footer-button-cta>div>a>div{
    
    padding: .5rem;
    background-color: #8FEE13;
    box-shadow: .05rem .05rem .05rem #000000;
    border-radius: .4rem;
    margin: .1rem 0;
    text-align: center;

}
.footer-button-cta>div>a{
    text-decoration: none;    
    color: #000000;
    font-size: 1.2rem;
    font-weight: 800;    
    font-family: "Raleway", sans-serif;
}

.lost-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.sign{
    font-size: 10rem;
    font-weight: 900;
    text-shadow: .1rem .1rem .2rem #000000;

}
.sign-1{
    color: #4CAF50;
}
.sign-2{
    color: #9A188A;
}
.sign-3{
    color: #4CAF50;
}
.lost-page>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    text-align: center;
}
.lost-page>div>h1{
    padding: 0 2rem;
}
.lost-page>div>h2{
    margin: 3rem 0;
    padding: 0 .2rem;
}
.lost-page>div>h2>a{
    padding: .5rem;
    background-color: #8FEE13;
    box-shadow: .05rem .05rem .05rem #000000;
    border-radius: .4rem;
    margin: .1rem 0;
    text-align: center;
    text-decoration: none;
    color: #000000;
    font-weight: 800;
    height: auto;
    
}


@media only screen and (max-width: 1024px) {
    .partner-nav,.resources-nav,.nav-cta{
        display: none;
    }
    .hero-section{
        width: 95%;
    }
    .hero-image>img{
        height: 15rem;
    }
    .main-hero{
        font-size: 2.7rem;
        padding: .5rem .5rem .2rem .5rem;
        font-weight: 900;
        margin-bottom: 0rem;
        
    }
    .client-review{
        flex-direction:  column;
    }

}


@media only screen and (max-width: 769px) {
    header{
        display: none;
    }
    nav{
        background-color: #FFFFFF;
        height: 10rem;
        position: sticky;
        top: 0;
        left: 0;
        height: 4rem;
    }
    .nav-main{
        display: none;
    }
    /* .logo-mobile{
        position: sticky;
        height: 4rem;

    } */
    .nav-mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
       
    }
    .nav-mobile>ul{
        list-style: none;
    }
    .navphone{
        display: none;
        width: 100%;
        position: fixed;
        /* position: sticky; */
        top: 4rem;
        padding: 1rem;

    }
    .navphone>li{
        text-align: left;
    }

    .navphone>li>a{
        text-decoration: none;
        color: #000000;
        padding: 1rem;
        font-size: 1rem;
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        border-radius: .3rem;    
        text-align: left;
    }
    .navphone>li>a:hover{
        color: #000000;
        background-color: #8FEE13;
    }
    .hamburger-menu {
        display: block;
    }

    .navphone.show{
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto;
        gap: 1rem;
        background-color: #FFFFFF;
        border-top:  .02rem solid #8FEE13;
        color: #9A188A;
        z-index: 130;
    }


    .hero-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 95%;
        margin: 1.5rem 0rem 2rem 0rem;
        /* height: auto; */
    }
    .main-hero{
        font-size: 2.5rem;
    }
    .hero-image{
        display: none;
    }


    .services{
        width: 100%;
        margin-bottom: 3rem;
    }
   

    .services>h1{
        margin: 2rem 0;
        font-size: 2.5rem;
    }

    .services>div{
        width: 95%;
        display: grid;
        grid-template-columns: auto auto;
        row-gap: 5%;
        column-gap: 2.5%;
        margin-bottom: 2rem;
    
    }

    #service-page>div{
        display: grid;
        grid-template-columns: auto;
        gap: 2.5%;
        
    }
    .service-container{
        /* height: 15rem; */
        height: auto;
        width: auto;
        
    }
    .service-gap{
        height: 50vh;
        width: 100%;
        border-color: #000;
    }

    .Why-us{
        flex-direction: column;
        padding: 1.5rem .3rem;
    }
    .Why-us-container>div>h1{
        font-size: 2.5rem;        
    }
    .why-qualities{
        width: 90%;
        font-size: 1rem;
        padding: 1rem;
        padding: .5rem;
        margin: 0 .8rem;
    }





    .about>h1{
        font-size: 2.5rem;
    }
    .about-detail{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-detail>img{ 
        width: 100%;
        border-top-left-radius: .8rem;
        border-top-right-radius: .8rem;
        
    }
    .about-content{

        width: 90%;
        font-size: 1rem;
        /* display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        gap: 1rem;*/
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        
    }
    .about-content>h2{
        width: 100%;
        margin: 0;
        font-size: 2rem;
        color: #000000;
        background-color: #8FEE13;
        padding: 1rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: .8rem;
        border-bottom-left-radius: .8rem;
    
    }
    .about-detail2{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        
    }
    .about-detail2>div{
        margin: .3rem 0;
        padding: 1rem;
        background-color: #8FEE13;
        height: 4rem;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        
    }
    .about-detail2>div:first-child{
        border-top-left-radius: .8rem;
        border-top-right-radius: .8rem;
        border-bottom-left-radius: 0rem;
    
    }
    .about-detail2>div:last-child{
        border-bottom-right-radius: .8rem;
        border-bottom-left-radius: .8rem;
        
    }




    .contact{
        width: 100%;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
    }

    .contact h1{
        font-weight: 800;
        text-align: center;
        font-size: 2.5rem;
        padding: 0rem 0;
    }
    .contact-container{
        width: 90%;
        flex-direction: column;
        box-shadow: none;
    }
    .contact-info{
        width: 100%;
    }
    .contact-info-card{
        width: 100%;
    }
    
    .contact-form{
        width: 100%;
    }
    .contact-form form{
        width: 100%;
    }
    .contact-info-card{
        width: 100%;
    }
    .contact-form form div input{
        width: 90%;
    }
    .contact-form form div textarea{
        width: 90%;
    }
    .contact-form form .input-group button{
        width: 90%;
    }





    

    .client-review-container{
        grid-template-columns: auto;
        gap: 1%;
    }

    .client-review{
        height: auto;
        width: auto;
        background-color: #FFFFFF;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 1.2rem 0 rgba(0, 0, 0, 0.19);
        padding: .7rem;
        padding: .7rem;
        border-radius: .8rem;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        flex-direction:  column;
        align-items: center;
        justify-content: center;
    }

    .reviews>h1{

        margin: 0 0 2rem 0;
        font-weight: 800;
        font-size: 2.5rem;
        color: #313030;
    
    }

    .end-cta{
        width: 100%;

    }
    .form-container {
        box-shadow: none;
        padding: 1rem;
    }
    .form-container>h1{
        font-size: 2rem;
    }

    .cta-form-group {
        grid-template-columns: 1fr;
        gap: .5rem;        
    }






    


    .footer-container{
        width: 80%;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3%;
    }
    .footer-logo{      
        width: 92%;     
    
    }
    .footer-social-links{
        width: 100%;
    }
}



