 
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
 
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    scroll-behavior: smooth;
    font-family: 'Oswald', sans-serif;
  } 
  html{
    scroll-behavior: smooth;
  }
   
   h1,h2,h3,h4,h5,h6,p,pre,img{
       padding: 0;
       margin: 0;
   }
   section{
    overflow: hidden;
   }
  .hero {
    background-color: #c11f2a;
  }
   
  .hero{ 
  text-align: center;
  padding-top: 10px;
  
 
  }
  .hero-top{
    display: flex    ;    padding-bottom: 100px;
    padding-top: 150px;
    min-height: 100vh; 
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
  }
  .hero h1{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    color:  #160d10;
  }
  .hero h1 span{
    color:#cfa551;
  }
  .hero img{
    width: 300px; 
  }
  .hero   a{    
    margin-top: 50px;
  } 
  .btn{
    background-color: #160d10;
    padding: 15px 55px; 
    color: #fff;
    font-size: 18px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
 .btn:hover{
    background-color: #cfa551;
    color: #160d10;
}
  .about{
    padding-top: 100px;
    padding-bottom: 100px; 
  }
  .about h2{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 15px;
  }
  .about .about-row{  
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
      align-content: center;
      align-items: center;
  }

  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
.contact h2{
text-align: center;
margin-bottom: 50px;
font-family: 'Oswald', sans-serif;
font-weight: 700;
font-size: 50px;
}
  select {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 25px;
  border: 1px solid #b9b9b9;
  padding: 10px;
  color: #000;
  outline: none;
  position: relative;
  display: block;
  width: 100%;
  color: #a5a5a5;
  line-height: 26px;
  padding: 10px 20px;
  height: 60px;
  font-size: 14px;
  border-radius:15px;
  background: #f4f4f4;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px; 
  margin-bottom: 25px;
  -webkit-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
  -moz-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
  box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
}
input[type="text"],     input[type="email"]   {
    position: relative;
    display: block;
    width: 100%;
    color: #a5a5a5;
    line-height: 26px;
    padding: 10px 20px;
    height: 60px;
    font-size: 14px;
    border-radius:15px;
    background: #f4f4f4;
    border: 1px solid transparent;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px; 
    margin-bottom: 25px;
    -webkit-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    -moz-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    }
    
    textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 20px;
    color: #a5a5a5;
    height: 200px;
    font-size: 14px;
    resize: none;
    border-radius: 15px;
    background: #f4f4f4;
    border: 1px solid transparent;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px; 
    margin-bottom: 25px;
    -webkit-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    -moz-box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    box-shadow: 1px -3px 14px -1px rgba(0,0,0,0.21);
    }
    input[type="submit"] {
        background-color: #160d10;
        padding: 15px 55px;
        color: #fff;
        font-size: 18px;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
}
    input[type="submit"]:hover{
        background-color: #cfa551;
        color: #160d10;
    }
    *:focus {
    outline: none;
    }
    
    textarea:focus, input:focus{
    outline: none!important;
    }






  .footer{
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #c11f2a;
  }
  .footer-top{
    margin-bottom: 75px;
  }
  .footer-top h6 {
    font-size: 25px;
    color:#160d10 ;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
  }
  .footer-top h6 a{
    font-size: 25px;
    color:#160d10 ;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
  }

  
.social-menu ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
}

.social-menu ul li{
    list-style: none;
    margin: 0 15px;
}

.social-menu ul li .fab{
    font-size: 30px;
    line-height: 60px;
    transition: .3s;
    color: #000;
    width: 100%;
    height: 100%;
}

.social-menu ul li  .fab:hover{
    color: #fff; 
}

.social-menu ul li a{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
}

.social-menu ul li a:hover{
    transform: translate(0, -10%);
}

.social-menu ul li a:hover{
    background-color: #160d10;
} 

.services{
    background-color: #c11f2a;
    padding-top: 100px;
    padding-bottom: 100px;
}
.services-row {
  row-gap: 50px;
}
.services h2{
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 50px;
    }

 .services-block{
text-align: center;

    }
  .services-block h3{
        margin-top: 10px;
        font-family: 'Oswald', sans-serif;
        font-weight: 500;
        font-size:25px;
        color: #cfa551;
        text-transform: capitalize;
    }
    .services-block a{
margin-top: 15px;
    }
.about-block-wrapper{
  padding-top: 100px;

}
.about-block h3{
  font-size: 25px;
  margin-bottom: 15px;
}

.inner-hero{
  padding: 100px 20px;
  padding-top: 200px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #c11f2a;
}
.inner-hero h1{
  color: #cfa551;
  font-size: 45px;
  font-weight: 600;
}
.product-info{
  padding-top: 100px;
  padding-bottom: 100px;
}

.product-info h2{
  font-size:35px;
  font-weight: 600;
  margin-bottom: 15px;
}
.product-info ul{
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
  font-size: 20px;
  padding-left: 25px;
  text-transform: uppercase;
}
.privacy-policy{
  padding-top: 50px;
  padding-bottom: 50px;
}
.privacy-policy p{
  margin-bottom: 15px;
}
.privacy-policy h2{
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 35px;
} 
.privacy-policy h3 {
  margin-bottom: 15px;
  font-size: 30px;
}
 .privacy-policy h4{
  margin-bottom: 15px;
  font-size: 25px;
}
.copy-info{
  background-color: #000;
  padding: 25px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.copy-info p{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.copy-info .right{
text-align: right;
}
.copy-info a{
  color: #fff;
  font-size: 16px;
}
.certificate{
  padding-top: 100px; 
  text-align: center;
}
.certificate h2 {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 50px;
}
.certificate h3 {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 25px;
}
.certificate  img{
  margin-bottom: 15px;
  max-width: 200px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.about-block-img{
  background-color: #c11f2a;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}