
/* banner */
.banner { 
  position: relative; 
  height: 700px;
}
.banner:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 50%;
  background: linear-gradient(to right, #221816 , #70707000);
}
.banner .slide-caption{
  position: relative;
  z-index: 1;
}

.about-us{
  padding: 100px 0 200px 0;
  background: #F0F0F0;
}
.about-us .about-img{
  margin-top: -140px;
  position: relative;
}
.about-us .about-contant{
  padding: 0 201px 0 100px;
}
.about-us .about-contant h4{ color: #B80106; }
.about-us .about-contant a{
  font-weight: bold;
  color: #B80106;
  border-color: #457DFB;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.9s;
}
.about-us .about-contant a:hover{
  color: #FFD931;
  margin-left: 20px;
}
.about-us .about-contant i{
  margin-left: 10px;
  transition: unset;
}

.blog{
  margin-top: -150px;
  padding-bottom: 125px;
}
.scammer{
  background-color: #000000 !important;
  padding: 125px 0 225px 0;
}
.scammer .scammer-content{ width: 700px; }
.scammer .scammer-content h2,
.scammer .scammer-content h4,
.scammer .scammer-content p{
  color: #ffffff;
}
.certification{ padding: 100px 0; }
.certification h4{ color: #B80106; }
.certification .certification-wrapper{
  display: block;
  padding: 50px 10px;
  text-align: center;
  box-shadow: 0 0 10px #ccc;
  margin-bottom: 30px;
  border-radius: 15px;
  height: 100%;
}
.certification .certification-wrapper:hover{
  background: #B80106;
  animation-name: rotate;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}
.certification .certification-wrapper img{ margin-bottom: 50px; }
.certification .certification-wrapper h4{
  color: #191515;
  font-weight: bold;
}
.certification .certification-wrapper:hover img{
  filter: brightness(0) invert(1);
}
.certification .certification-wrapper:hover h4{ color: #fff; }
.faq .faq-bg{
  background-image: linear-gradient(#B80106, #460002);
  height: 100%;
  padding: 100px 0;
}
.faq .faq-content,
.locksmith-bg .locksmith-content{
  width: 500px;
  margin: 0 auto;
  padding: 20px;
}
.faq .faq-content ul li{ margin-bottom: 30px; }
.faq .faq-content ul li a{
  color: #ffffff;
  font-size: 20px;
}
.faq .faq-content ul li a:hover{ color: #FFD931; }
.locksmith-bg{
  background-image: linear-gradient(#000000, #460002);
  height: 100%;
  padding: 100px 0;
}


@media (max-width: 1600px) {
  .about-us{ padding: 50px 0 200px 0; }
  .about-us .about-img{ margin-top: -100px; }
  .about-us .about-contant{ padding: 0px 135px 0 50px; }
}
@media (min-width: 1400px) {

}

/* X-Large devices (large desktops, less than 1400px) */
@media screen and (max-width: 1399px) {
  .about-us .about-contant{ padding: 0 100px 0 50px; }
}

/* Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1199px) {
  .about-us{ padding: 35px 0; }
  .about-us .about-img{ margin-top: -70px; }
  .about-us .about-contant{ padding: 0 15px; }
  .blog { margin-top: -50px; }
  .certification .certification-wrapper img{ margin-bottom: 30px; }
}

/* Medium devices (tablets, less than 992px) */
@media screen and (max-width: 991px) {
  .about-us .about-img img{ 
    width: 85%;
    margin-left: 50px;
  }
  .about-us .about-contant{ padding: 0 50px; }
  .faq .faq-content, .locksmith-bg .locksmith-content{
    width: 100%;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media screen and (max-width: 767px) {
  .banner h3{ font-size: 25px; }
  .scammer .scammer-content{ width: 100%; }
  .certification .certification-wrapper{ padding: 40px 10px; }
  
}
@media screen and (max-width: 479px) {
  .banner{ height: 500px; }
  .banner h3{ font-size: 16px; }
  .about-us .about-img img{ 
    width: 100%;
    margin-left: 0;
  }
  .about-us .about-contant{ padding: 20px; }
}

@keyframes rotate {
  0% {
    transform: rotatey(180deg);
  }
  100% {
    transform: rotatey(360deg);
  }
}