/*HERO PC CSS*/
html{
  scroll-behavior: smooth;
}

body{
  font-family: Poppins;
  color: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 425px){

}

.header{
  height: 100vh;
  width: 100%;
  background-color: #E7B024;
  background-image: url(hero-1.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__top-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5%;
  height: 20vh;
  flex-wrap: wrap;
}

.header_h1{
  font-size: 3.4em;
  font-weight: 600;
}

.header__link-bar{
  display: flex;
  justify-content: space-between;
}

.header__links{
  display: block;
  margin-left: 40px;
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: normal;
  border-bottom: 2px solid rgba(0,0,0,0);
  transition: .2s;
}

.header__links:hover{
  border-bottom: 2px solid white;
}

.header__content{
margin-left:  5%;
margin-bottom: 10%;
}

.header_h2{
  font-size: 3.5em;
  line-height: 84px;
  font-weight: 800;
}

.header_h3{
  font-size: 3.2em;
  font-weight: 600;
  line-height: 75px;
}

.header_button{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7B024;
  border-radius: 35px;
  color: white;
  font-weight: 600;
  line-height: 52px;
  font-size: 1.5em;
  width: 220px;
  height: 55px;
  text-decoration: none;
  margin-top: 20px;
}

.header_button::after{
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  margin-left: 10px;
}

.section-one{
  height: 100vh;
  width: 100%;
  background-color: #1f1f1f;
  position: relative;
}

.section-one__button{
  position: absolute;
  bottom: 50px;
  right: 50px;
  color: white;
  display: block;
  font-size: 2.5em;
  background-color: #E7B024;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
}

.section-one__content{
  padding: 10% 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  height: 60%;
}

.content__yellow-box{
  margin-top: 20px;
  background-color: #E7B024;
  width: 300px;
  height: 20vh;
}

.content__image{
  background-color: black;
  width: 300px;
  height: 20vh;
  transition: .2s;
}

.content__image:active, .content__image:hover{
margin-left: -10px;
margin-top: -10px;
}
