* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
    --green: #12cb22;
    --color: rgb(63 63 63);
    }

 

body{
  font-family: 'Heebo', sans-serif;
  background-color: var(--white);
  color:  #111;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}

h1{

  /*color: #a6a4a4;
  font-weight:600;*/
background: rgb(33,174,46);
background: linear-gradient(0deg, rgba(33,174,46,1) 24%, rgba(25,151,51,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;



}

h3{

 font-size: 16px;
  font-weight: 300;
  line-height: 1.35em;
}

header img{

  width: 60vw;
}

header{

  width: 100%;
}

/* Header */
.header{
    
    background-color: var(--white);
    box-shadow: 1px 1px 5px 0px var(--gray);
    position: fixed;
    top: 0;
    width: 100%;

}

/* Logo */
.logo{
    display: inline-block;
    font-size: 60px;
    margin-left: 10px;
    margin-top: 10px;
   margin-bottom: 10px;

}

/* Nav menu */
.nav{
    width: 50%;
    height: 40%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 10px;
    color: var(--white);
}
.menu a:hover{
    background-color: var(--gray);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 50px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--black);
    display: block;
    height: 2px;
    position: relative;
    width: 20px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--black);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

#service-img2{

  width: 100%;
}



/* Services section */

.services{
    
    color: var(--black);
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 32px;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    
    }

.services-grid{

  padding-top: 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 1em;
  font-weight: 300;

  }

.bar{

  background-color: #FEDE00;
  width: 25%;
  height: 2px;
  margin: 0 auto;
  margin-bottom: 40px;

}

/*Grid settings while in mobile mode */

.grid{

  
  
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
  


}
.item1{
  grid-row-start:1;
  grid-column-start: 1;
  grid-column-end:4;
  margin: 0 auto;
  

}
.item2{
  grid-row-start:2;
  grid-column-start: 1;
  grid-column-end:4;
  margin: 0 auto;
}
.item3{
  grid-row-start:3;
  grid-column-start: 1;
  grid-column-end:4;
  
  margin: 0 auto;
  
}
.wordbox{

  background-color: #ededed;
  border-radius: 10px;
  padding-top:20px;
  padding-bottom: 10px;
  padding-left:10px;
  padding-right: 10px;
  width:95%;
  margin: 0 auto;
  text-align: left;
}

/* Second Background image in Desktop 


.background-section2{

 The image used 
  background-image: url("images/bc5.jpg");



  Set a specific height 
  
  height: 15vw;
  background-position: center;
  
  flex-direction: row;
  flex-wrap: wrap;

  padding: 1rem 0;
  gap: 1.6em;
  

  
}
*/

.bar2{
  background-color: #FEDE00;
  width: 20%;
  height: 2px;
  margin: 0 auto;
  margin-bottom: 10px;

}


.bar3{
  background-color: #FEDE00;
  width: 40%;
  height: 2px;
  margin: 0 auto;
  margin-bottom: 40px;

}

#service-img3{

  width: 100%;
}


.grid2{

  
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
}


.item4{
  
  grid-column-start: 1;
  grid-column-end:3;
  grid-row-start: 2;
  margin: 0 auto;
  
}


.item5{
  grid-row-start: 1;
  grid-column-start: 1;
  grid-column-end: 3;
  margin: 0 auto;
  align-items: center;  
  
}

.item5 h3{

  
  margin: 0 auto;
}



.wordbox2{

  
  padding-top:10px;
  padding-bottom: 10px;
  width:95%;
  margin: 0 auto;
  text-align: left;
}

p{
    
    text-indent: 50px
}



/* Responsiveness */
@media (min-width: 768px) {

    .header{

      position: relative;
    }

    .flex {
        display: flex;
    }

    .align-center {
      align-items: center;
      }

    .space-between {
        justify-content: space-between;
      }



    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;

    }
    .menu li{
        float: left;
    }
    .menu a{
    color: var(--black);
    }
    
    .menu a:hover{
        background-color: transparent;
        color: var(--green);

    }

    .hamb{
        display: none;
    }
    header img{

        width: 20vw;
    }
    
    .services{
    
    
    font-size: 28px;
    line-height: 72px;
   
    
    }


#service-img2{

  display: none;
}

h3{

font-size: .60em;
  line-height: 1.45em;
}


   /* background image used on the website */


.background-section{

 /*The image used*/ 
  background-image: url("images/bc5.jpg");
   */Set a specific height*/ 
  width: 100%;
  height: 40vw;

  padding-top: 20px;

/*Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 90%;  
  
}
/* switching the display of the images */

.item1{
  grid-row-start:1;
  grid-column-start: 1;
  grid-column-end:2;
  margin: 0 auto;
  

}
.item2{
  grid-row-start:1;
  grid-column-start: 2;
  grid-column-end:3;
  margin: 0 auto;
}
.item3{
  grid-row-start:1;
  grid-column-start: 3;
  grid-column-end:4;
  
  margin: 0 auto;
  
}

/* Services section */

.services-grid{

  padding-top: 20px;
  font-family: 'Heebo', sans-serif;
  font-size: 2em;
  font-weight: 300;

  }

.bar{

 
  width: 16%;
  height: 2px;
  
}

.bar2{
  
  width: 25%;
  

}

/*about section */

.grid2{

  width: 100%;
  padding: 10px;
}

.item4{
  
  grid-column-start: 1;
  grid-column-end:2;
  grid-row-start: 1;
  margin: 0 auto;
  
}


.item5{
  grid-row-start: 1;
  grid-column-start: 2;
  grid-column-end: 3;
  margin: 0 auto;
  align-items: center;  
  
}

.bar3{
  background-color: #FEDE00;
  width: 35%;
  height: 2px;
  

}

#service-img3{

  margin-top: 65px;
}




}





.description-container{

  
  
  width: 100%;
  height: auto;
  text-align: center;
  margin:0 auto;  
  padding: 20 0 20 0;
  


}




.serv-img{

padding: 10px;
width: 100%;


}


/* grid with about and sac tower section */

#service-img{

  width: 100%; 

}
  


/* contact form code */

.form-container{

        background: var(--main-white);


}



.form{

  width:  100%;
  max-width:800px;
  text-align: center;
  
  margin:0 auto;
  padding:20px 15px 80px 15px;
  /*max-width:calc(100vw - 40px);*/
  box-sizing:border-box;
  font-family: 'Heebo', sans-serif;
  

  
}



 .success{
    background: #9fd2a1;
    padding:  5px 10px;
    tex-align:  center;
    color:  #326b07;
    border-radius:  3px;
    font-synthesis: 14px;
    margin-top: 10px;
  }

.alert{
  margin: 0 auto;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.form input[type=text] {

  
  padding:10px;
  margin:  0 15px 0 0;
  box-sizing:border-box;
  background:none;
  outline:none;
  resize:none;border:0;
  font-size: 1em;  
  font-family: 'Heebo', sans-serif;
  transition:all .3s;
  border-bottom:1px solid #111;
  font-weight: 300;  
  width:  340px;
  
  
}

.form input[type=email] {

  
  padding:10px;
  margin:  0 15px 0 0;
  box-sizing:border-box;
  background:none;
  outline:none;
  resize:none;border:0;
  font-size: 1em;  
  font-family: 'Heebo', sans-serif;
  transition:all .3s;
  border-bottom:1px solid #111;
  font-weight: 300;  
  width:  340px;
  
  
}

.form input:focus{

  border-bottom:2px solid #111;
  

}

.form .submit{
  
  padding:16px 100px;
  margin:40px 0 0;
  font-family: 'Heebo', sans-serif;
  border:2px solid #12cb22;
  border-radius: 2px;
  
  background:var(--main-gray);
  color:#111;
  cursor:pointer;
  transition:all .3s

}
.submit{
  font-size: 1em;
}
.submit:hover{

  background: #58bb11;
  color:#111;
  border-color:#111;
}

.form span{

  /*margin:0 5px 0 15px*/
}

.text-area textarea{


  font-family: 'Heebo', sans-serif;   
  font-weight:  300;
  outline:  none;
  overflow:  auto;
  margin:  0 15px 0 0;
  padding:  10px;
  resize:  none;
  width:  340px;
  background: var(--main-white);  
  font-size:  1em;  

}

.text-area textarea:focus{

  border:2px solid #78788c;


}

.text-area{

  padding-top: 40px;
}

/* footer code */

footer{

  padding-top:  40px;
  padding-bottom:  20px;
  background-color:  #fff;
  font-family: 'Poppins', sans-serif;   
  font-weight:  600;
  font-size:  1em;
  text-align:  center;
}

footer a{

  color:  #111;
}






