/* ----- RESET ----- */

body{
  background-color:hwb(0 100% 0%);
  color: #0a4e14;
	overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

* {
  box-sizing: none;
  margin: 0;
  padding: 0;
}

a{
  cursor: pointer;
}

p{
  text-align: justify;
}

h2{
  font-size: 40px;
  padding: 1rem 0;
}

h3{
  padding: 1rem 0;
}

h4{
  margin-top: 1rem;
}

.container{
  width: 70%;
  padding-top: 2rem;
}

span{
  font-weight: 800;
  padding: 1rem 0;
  font-size: 1.1rem;
}

.navbar-check{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fafafa;
  padding-top: 1rem;
  font-size: .9rem;
}

@media screen and (max-width: 700px){
  .navbar-check>p{
    font-size: .6rem;
    }
  } 

@media screen and (max-width: 500px){
  .navbar-check{
  display: none;
  }
}

/* ---------- NAVBAR ----------- */


.cont-nav{
  padding: 0px 50px;
  max-width: 1140px;
}

.navbar{
  display: flex;
  justify-content: space-between;
  background-color: rgb(255, 140, 0);
  padding: 1rem;
}

.footer{
  text-align: center;
  background-color: rgb(255, 140, 0);
  color: white;
  padding: 1rem;
  margin-top: 20px;
}

a:link, a:visited, a:active{
  text-decoration-color: none;
  text-decoration: none;
  color: black;
}

.p-link:link, .p-link:visited, .p-link:active{
  text-decoration-color: none;
  text-decoration: none;
  color: #06a04a;
  font-weight: 600;
}

.footer>a:link, .footer>a:visited, .footer>a:active{
  text-decoration: underline;
  color: white;
}


@media screen and (max-width: 700px){

.navbar{
  padding: 0.5rem;
}
.navbar>img{
  width: 100px;
}

} 

/* ------ HERO IMAGE -------- */

.hero-image{
  background-image: linear-gradient(rgba(0, 0, 0, 0.223), rgba(0, 0, 0, 0.181)), url("../images/background-hero2.jpg");
  height: 25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 70px;
}

/* --- MORE INFO BOXES --- */

.more-info{
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 20px;
}

.more-info2{
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  margin: auto;
  border-radius: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.side-form{
  display: flex;
  gap: 15px;
}

.side-1>h3{
font-size: 35px;
}

.side-1{
  padding: 1rem;
  width: 60%;
}

.side-2{
background-image: url("../images/form.svg");
  background-repeat: no-repeat;
background-position: center;
text-align: center;
height: 15rem;
}

.side-3{
  background-image: url("../images/background-image2.jpg");
  background-repeat: no-repeat;
background-position: center;
background-size: cover;
width: 100%;
height: 30rem;
position: relative;
border-radius: 20px 0px 0px 20px;
}

.side-4{
  padding: 2rem;
}

.hero-text2 {
  text-align: center;
  font-size: 27px;
  font-weight: 600;
  width: 20rem;
  margin-top: 3rem;
  color: white;
}

.form-control{
  margin-bottom: 0.5rem;
}

/* ------ buttons ------ */

.section-button{
  background-color: orange;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 800;
  width: 80%;
  font-size: 20px;
  margin: auto;
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  transition: .5s all;
  cursor: pointer; 
}

.section-button:hover{
  background-color: rgb(220, 143, 0);
}

.more-info-button{
  color: white;
  background-color: orange;
  padding: 0.5rem 2rem;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  transition: .5s all;
  z-index: 10;
  cursor: pointer;
}

.more-info-button:hover{
  background-color: rgb(183, 119, 0);
}

/* ------ reviews -------- */

.reviews-container{
  display: flex;
  gap: 20px;
  padding-bottom: 2.5rem;
  margin: auto;
}

.review-box{
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  width: 32%;
  text-align: center;
  padding: 1rem;
  border-radius: 20px;
}

.review-box>p{
  padding: 1rem;
  text-align: justify;
}

.review-title{
  text-align: center;
}

.img-trust{
  display: flex;
  margin: auto;
}

#date{
  text-align: right;
  color:#0a4e14c4
}

@media screen and (max-width: 1200px){


.reviews-container{
  flex-direction: column;
}

.review-box{
  width: 100%;
}


}
@media screen and (max-width: 700px){

  .container{
    width: 100%;
    padding-top:0.3rem;
  }

.more-info{
  flex-direction: column;
  height: auto;
}

.side-1{
  width: 100%;
}

.side-3{
  display: none;
}

} 