*{
    margin:0;
    padding: 0;
}
body{
    background-color: rgba(0,0,0,.05);
}
header{
    margin:2vh 15vw;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.header-top{
  background-color: rgba(0,0,0,.02);
  border-top:3px solid red;
  display:flex;
  padding:5px 10px;
  color:rgba(0,0,0,0.6);
  font-family: 'Open Sans', sans-serif;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}
.header-top-left{
  display: flex;
}
.header-top-left p{
  margin-right:10px;
  font-weight: 400;
  cursor: pointer;
}
.header-top-left a{
  color:rgba(0,0,0,0.5);
  text-decoration: none;
  margin-right:10px;
  transition:all .3s ease;
  font-weight: 600;
}
.header-content.fab{
  font-size: 14px;
  margin-right: 7px;
  cursor: pointer;
}
.header-content:hover{
  color: rgb(0,0,0);
}

.header-med{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.img-logo{
  border:5px solid red;
  padding:10px 7px 7px 7px;
  height:140px;
}
.line-logo{
  font-family: 'Playfair Display', serif;
  display:inline-block;
  justify-content: center;
  padding:40px 10px;
  margin-left: 7px;
  border: 5px solid red;
}

/* navbar */
.navbar1{
    overflow: hidden;
    background-color: #333;
    border-bottom: 5px solid red;
  }
  .navbar1 a {
    float: left;
    font-size: 14px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .dropdown1 {
    float: left;
    overflow: hidden;
  }
  .dropdown1 .dropbtn1 {
    font-size: 14px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    text-transform: uppercase;
  }
  .navbar1 a:hover, .dropdown1:hover .dropbtn1 {
    background-color: red;
  }
  .dropdown-content1 {
    display: none;
    position: absolute;
    border-top:1px solid red;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content1 a {
    float: none;
    color: #fff;
    background-color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .dropdown1:hover .dropdown-content1 {
    display: block;
  }

  main{
    margin:2vh 15vw;
    display: flex;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  }  
  .main-left{
    width:35%;
    padding:20px;
  }
  .main-left-1{
    border:2px solid #eee;
    padding:5px;
    margin:5px 5px 20px 5px;
    border-bottom: 5px solid red;
  }
  .main-left-heading{
    font-size: 14px;
    margin-left: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .o-register{
    color:#fff;
    border:none;
    border-radius: 2px;
    background-color: red;
    padding:10px 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin:15px;
  }
  .fa-angle-double-right{
    border-radius: 2000px;
    padding:5px;
    box-shadow:1px 0 10px rgba(0,0,0,0.5);
  }
  .register-text{
    font-size: 13px;
    font-weight: 700;
    margin-top:10px;
    padding:10px;
  }
  .main-left-icons{
    padding:15px 50px;
    display: flex;
    text-align: center;
    justify-content: space-around;
  }
  .main-left-icons .fab{
    font-size: 30px;
    cursor: pointer;
  }
  .fa-facebook-square{
    color:#3b5998;
  }
  .fa-twitter-square{
    color:#00acee;
  }
  .fa-youtube-square{
    color:red;
  }
  .fa-instagram-square{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
            /* Also define standard property for compatibility */
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .main-left-icons .fab:hover{
    transform: scale(1.3);
  }
  
  .main-left-content p{
    font-size: 12px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
  }
  
  .main-right{
    padding:20px;
    width:60%;
    border:2px solid #eee;
    margin-top: 45px;
  }
  .main-right-header{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
  }
  hr{
      margin:2px 0;
  }
  .overview{
      border-top: 3px solid #eee;
      border-bottom: 3px solid #eee;
      padding:20px 0;
      margin-bottom: 0;
  }
  .b-list{
      padding: 10px 0;
  }
  .b-img{
      width: 100%;
  }
footer{
  background:linear-gradient(90deg, rgba(255,0,0,1) 12%, rgba(255,255,255,1) 49%, rgba(0,57,255,1) 100%);
}
.footer-body{
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 20px;
}
.fab{
  font-size: 33px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.fa-phone-alt{
  font-size: 32px;
  color:green;
}
.fa-phone-alt:hover{
  border: 4px solid green;
  border-radius: 10px;
  background-color: green;
  color: #fff;
  font-size: 26px;
  padding: 2px;
}
.fa-whatsapp{
  font-size: 36px;
  margin-right: 20px;
  color: green;
}
.fa-whatsapp:hover{
  border: 4px solid green;
  border-radius: 10px;
  background-color: green;
  color: #fff;
  font-size: 31px;
}
.fa-envelope{
  color: red;
}
.fa-envelope:hover{
  border: 4px solid red;
  border-radius: 10px;
  background-color: red;
  color: #fff;
  font-size: 28px;
}
.fa-map-marker-alt{
  color: red;
}
.fa-map-marker-alt:hover{
  border: 4px solid red;
  border-radius: 10px;
  background-color: red;
  color: #fff;
  font-size: 28px;
}

@media only screen and (max-width: 1000px) {
  header{
    margin:2vh 2vw;
  }
  .img-logo{
    height:120px;
  }
  .line-logo{
    padding:40px 10px;
    font-size: 1.3rem;
  }
  main{
    margin:2vh 2vw;
    flex-direction: column-reverse;
  }  
  .main-left{
    width:100%;
  }
  .main-right{
    width:100%;
  }
}