
.main-section{
  /* width: 100vw;
  height: 650px; */
  overflow-x: hidden;
}
.bg-image{
  background-image: url("../images/showcase.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
h1{
  font-size: 54px;
  color: #ddd;;
  margin: 16px 0;
}
h1 span{
  color: #f7c08a;
}
.bg-image p{
  color: #ddd;
  font-size: 16px;
  margin: 16px 0;
}
.bg-image a{
  display: block;
  background-color: #333;
  padding: 16px;
  margin-top: 10px;
}
.bg-image a:hover{
  background-color: #f7c08a;
  color: #333;
}
.second-section{
  width: 100vw;
  margin: 0;
  height: 400px;
  display:flex
}
.section-1{
  background-image: url(../images/test-bg.jpg);
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
}
.section-2{
  display: inline-block;
  width: 50%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  
}

.section-2 h4{
   font-size: 22px;
   text-transform: capitalize;
   color: #ddd;;

}
h4 span{
  color:  #f7c08a;
}
.section-2 p{
  line-height: 1.5;
  text-align: center;
  color: white;
  margin-bottom: 22px;
  padding:  0 32px;
}
.section-2 a{
  background-color: #ddd;
  color: #333;
  display: block;
  padding: 16px;
  font-size: 18px;
}
.section-2 a:hover{
  background-color: #f7c08a;
}
@media (max-width:450px){
  .bg-image{
    height: 80vh;
  } 
  .bg-image h1{
       font-size: 2rem;
   }
   .bg-image p{
     text-align: center;
   }
   .section-1{
     display: none;
   }
   .section-2{
     width: 100%;
   }
}


