*{
    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{
    width:100%;
    padding:20px;
    margin: 20px;
    border:2px solid #eee;
  }
  .main-right-header{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
  }
  .structure{
      width:100%;
  }
  .box{
      border:1px solid #333;
      padding:5px;
      margin-bottom: 10px;
  }
  hr{
      margin:5px 0;
  }
  .heading{
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    border-top: 3px solid #eee;
    border-bottom: 3px solid #eee;
    padding:15px 0;
  }
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;}
}
