@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('asset/bootstrap-icons.css');
/*-------------------------------------*/
img {max-width:100%;}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #1b1b1b;
  color: #FFF;
  overflow-x: hidden;
  margin: 0;
  padding: 5vh 2.6vw;

}
/******page_container*******/
#page_container{
  position: relative;
  width: 100%;
  height: 90vh;
  top: 0;
  bottom: 0;
  background-image: url("../images/bg-desktop.jfif");
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  transition: all 3s ease;
  background-position: center;
}
#outercontent{
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
}
#innercntent{
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90vh;
}
/************ header ***************/
#header{
  padding: 10px;
}
#header img{
  margin: 0;padding: 0;
  height: 150px;
}

/************* indexcontent ***************/
#indexcontent{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#indexcontent #lefttext{width: 55%;}
#indexcontent #lefttext h5{
  color: #DDD;
  font-size: 1.2rem;
  opacity: 0.7;
}
#indexcontent #lefttext h2{
  color: #FFF;
  font-size: 5rem;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  font-weight: 700;
}
#indexcontent #lefttext p{
  color: #DDD;
  font-size: .9rem;
  opacity: 0.8;
}
#indexcontent form{
  width: 30%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
}
#indexcontent form h4{
  color: #DDD;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.45);
}
#indexcontent form input.validinput{display: none;}
#indexcontent form input{
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
}
#indexcontent form input:hover {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1);
}
#indexcontent form .form-control {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
}
#indexcontent form .btn {
  color: #ddd;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/************* Footer ***************/
#footer{
  padding: 10px;
}
#socialmediafooter {margin-top: 20px;}
#socialmediafooter a{
  font-size: 18px;
  text-decoration: none;
  color: #FFF;
  margin: 5px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 3s ease;
}
#socialmediafooter a:hover{
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
}

@media only screen and (max-width: 992px) {
  #indexcontent{flex-direction: column;}
  #indexcontent #lefttext{width: 100%;}
  #indexcontent form{width: 100%;}
  #page_container{
  background-image: url("../images/bg-tablet.jfif");
  }
}

@media only screen and (max-width: 768px) {
  #page_container{min-height: 90vh;height: inherit;}
  #indexcontent #lefttext h2 {font-size: 2.5rem;}
  #page_container{
    background-image: url("../images/bg-mobile.jfif");
    }
}


