@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "montserrat";
}
header{
  background-color: #fff;
  width: 1440px;
  max-width: 100%;
  height: 150px;
  margin: 0 auto;
}
/*style hamburger menu layout */
.hamburger{
  display: none;
  cursor: pointer;
}
.bar{
  background-color: #000;
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}
@media(max-width: 768px){
  .hamburger{
    display: block;
    margin-right: 1.2em;
  }
  .nav-container{
   display: block;
  }
  
  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-container {
    position: absolute;
    left: -100%;
    top: 70px;
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .nav-list{
    margin: 1em 0;
  }
  .nav-container.active{
    left: 0;
  }
}
/* nav-wrapper style*/
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo{
  align-items: center;
}
.nav-container {
  list-style: none;
}
.nav-list a{
  text-decoration: none;
  color: #000;
}
.nav-list{
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
}
.nav-list{
  margin: .4em;
}
.nav-list li a:hover{
  border-bottom: 3px solid #941B0C;
  transition: 0.3s;
}
.nav-container {
  margin-right: 1em;
}
/* section layout style */
section{
  background-color: #699F6EB8;
}
.wrapper{
  display: flex;
  justify-content: space-evenly;
}
.market-img,.tect-img{
  margin-top: 5em;
}
.analysis-img,.rays-img{
  margin-top: 5em;
}
.container{
  display: flex;
  justify-content: space-evenly;
}
.market-pic,.soil-pic{
  width: 500px;
  height: 400px;
}
.soil-pic{
  border-radius: 10px;
}
.market-text,.tech-text,.rays-text,.soil-text{
  text-align: center;
  margin-top: .7em;
  margin-bottom: .4em;
}
.click{
  background-color: #A8D75CE0;
  display: block;
  margin: 0 auto;
  padding: .9em 2.5em;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 2em;
}
.click:hover{
  opacity: .5;
  outline: 3px solid #699F6EB8;
}
@media only screen and (max-width: 400px){
  .logo{
    width: 120px;
    }
    .market-pic,.tech-pic,.soil-pic,.rays-pic{
      width: 300px;
      height: 280px;
    }
    .wrapper{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .container{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  }
@media only screen and (max-width: 768px){
  .logo{
    width: 120px;
    }
    .wrapper{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .container{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  }