/* poppins-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Poppins', sans-serif;
}

.move {
  position: relative;
  opacity: 0;
}

.move.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

.active.fade-top {
  animation: fade-top 1s ease-in;
}

@keyframes fade-top {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }

}

.tb-effect,
.lt-effect {
  position: relative;
  z-index: 5;

  border-radius: 2px;
}

.tb-effect::after,
.lt-effect::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}


.tb-effect::after {
  height: 0;
  background-color: #ffffff3d;
  color: #094271;
  transition: height .5s;
  border-radius: 2px;
}

.tb-effect:hover::after {
  height: 100%;
  border-radius: 2px;
}

.tb-effect:hover {
  color: #242a3f;
  border-radius: 2px;
}

.lt-effect {
  border-radius: 25px;
  width: 130px;
}

.lt-effect::after {
  width: 0;
  background-color: #ffc126;
  color: #fff;
  transition: width .5s;
}

.lt-effect:hover::after {
  width: 100%;
  color: #242a3f;
}


.top-bar {
  display: none;
}



header {
  background-image: url(../locksmith/bg.webp);
  background-color: #242a3f;
  background-size: cover;
  padding-bottom: 150px;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-top: -8px;
  color: #ffc126;

}


.data {
  background-color: #171c2d;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  font-size: 14px;
  border-style: solid;
  border-width: 0 0 2px;
  border-color: rgba(255, 255, 255, .16);
  text-align: center;
}


.data a {
  color: #fff;
  text-decoration: none;
}

.data a:hover {
  color: #fff;
  text-decoration: underline;
}

.send {
  font-size: 14px;
  user-select: none;
  color: #fff;
  text-decoration: none;
}

.send1 {
  user-select: none;
  color: #fff;
  text-decoration: none;
  font-size: 14px;

}

.call {
  user-select: none;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}



.navbar-collapse ul>li {
  display: inline-block;
  width: 110px;
  text-align: center;
  color: #fff;
  border-radius: 5px;

}

.navbar-collapse ul>li>a {
  display: block;
  font-size: 17px;
  color: #fff;
}

.navbar-collapse ul>li>a:hover {
  display: block;
  font-size: 17px;
  color: #242a3f;
}

.nav-icon-1 {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  margin: 10px 10px;
  cursor: pointer;
  display: inline-block;
}

.nav-icon-1 span {
  width: 5px;
  height: 5px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  position: absolute;
}

.nav-icon-1 span:nth-child(1) {
  left: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(2) {
  left: 12px;
  top: 0;
}

.nav-icon-1 span:nth-child(3) {
  right: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(4) {
  left: 0;
  top: 12px;
}

.nav-icon-1 span:nth-child(5) {
  position: absolute;
  left: 12px;
  top: 12px;
}

.nav-icon-1 span:nth-child(6) {
  right: 0px;
  top: 12px;
}

.nav-icon-1 span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}

.nav-icon-1:hover span {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(4) {
  left: 6px;
  top: 18px;
}

.nav-icon-1.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}


h1 {

  color: #fff;
  padding: 1%;
  font-weight: bold;
}

.p {
  font-size: 16px;
  color: #464545;
  line-height: 35px;
  text-align: justify;
  margin-top: 3%;
  font-weight: normal;
}

.p1 {
  font-size: 18px;
  line-height: 36px;
  padding: 1%;
  text-align: justify;
}

h2 {
  color: #242a3f;
  font-weight: bold;
  line-height: 47px;
}

.btn {
  background-color: #ffc126;
  color: #242a3f;
  font-size: 30px;
  border-radius: 0;
  float: left;
}

.btn:hover {
  background-color: #3b4466;
  color: #fff;
}

.fill::first-letter {
  color: #fff;
  background-color: #262f3b;
  padding: 2px;
}


.bg {
  background-image: url(../locksmith/F-11.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;


}

.col {


  .counter-number {
    line-height: 48px;
    font-size: 48px;
    font-weight: bold;
    color: #239cb7;
  }

  .counter-title {
    color: #ffffff;

    strong {
      display: block;
      font-size: 1.2rem;
    }
  }
}

.bg-color {
  background-color: #242a3fd1;
  padding-top: 2%;
  padding-bottom: 17%;
}

/* .counter-section {
  padding-top: 50px;
  padding-bottom: 150px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #242a3fd1;
}

  */

.offer {
  /* background-color: #242a3f; */
  background-image: url(../locksmith/offer-bg.webp);
  margin-top: -160px;
  position: relative;
  z-index: 1;
  border: 15px solid #fff;
  border-radius: 20px;
  padding-top: 2%;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  background-size: cover;
  padding-bottom: 20px;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: #fff;
}

.offer .tit {
  text-align: center;
  color: #ffc127;
  font-size: 55px;
  font-weight: bold;
}

.discount {
  font-size: 55px;
  color: #fff;
  text-shadow: 3px 0px #020304;
  font-weight: bold;

}

.more {
  border-style: solid;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  padding: 3%;
  border-radius: 0;
}

.moree a {
  color: #ffffff;
}

.moree a:hover {
  color: #242a3f;
}

.box {
  font-family: 'Merriweather Sans', sans-serif;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.box:before {
  content: '';
  background-image: repeating-linear-gradient(-30deg, #242a3f, #323c61 5%, #242a3f 10%);
  width: 120%;
  height: 140%;
  border-radius: 25px;
  box-shadow: 0 0 15px #000;
  opacity: 0.7;
  transform: rotate(0deg);
  position: absolute;
  top: 0;
  right: 155%;
  z-index: 1;
  transition: all .7s;
}

.box:hover:before {
  transform: rotate(55deg);
  right: -60%;
}

.box img {
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.box:hover img {
  transform: rotate(10deg) scale(1.3);
}

.box .box-content {
  width: 60%;
  opacity: 0;
  transform: translateY(-50%) rotate(-55deg);
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;
  transition: all .7s;
}

.box:hover .box-content {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

.box .title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 3px #000;
  margin: 0 0 3px 0;
}

.box .post {
  color: #fff;
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
  text-shadow: 0 0 3px #000;
}

@media only screen and (max-width:990px) {
  .box {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width:479px) {
  .box .title {
    font-size: 18px;
  }

  .btn {
    background-color: #ffc126;
    color: #242a3f;
    font-size: 15px;
    border-radius: 0;
    float: left;
  }

  .box .post {
    font-size: 15px;
  }
}


.service {
  width: 100%;
  float: left;
  background-color: #242a3f;
  margin-bottom: 4%;

}

.service .title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-shadow: 5px -31px #16192778;
}

.service ul {
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.service ul li {
  list-style: none;
  width: 31%;
  float: left;
  color: #ffc126;
  border: 1px solid #fff;
  text-align: center;
  margin: 1%;
  height: 50px;
  padding: 1%;

}

.service ul li a:hover {
  color: #fff;
}



.whychooseus {
  position: relative;
  color: #242a3f;
  font-weight: 700;

  font-size: 22px;
  display: inline-block;
}

.phone {
  background-color: #242a3f;
  padding: 2%;
  width: 200px;
  font-size: 74px;
  font-weight: lighter;
  color: #ffce28;
}





.bg1 {
  background-image: url(../locksmith/bg12.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  color: #ffc126;

}

.color {
  background-color: #242a3f;
  padding-top: 2%;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 2%;
}

form label {
  opacity: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0
}

.getintouch {
  font-size: 35px;
  color: #ffc027;


}

.spam {
  display: none;
}

input {
  width: 48%;
  float: left;
  margin-right: 2%;
  height: 50px;
  margin-top: 5%;
  padding: 1%;
  background-color: #ffffff1f;
  color: #ffc027;
  font-size: 14px;
  border: 0px solid #fff;
}

textarea {
  width: 98%;
  float: left;
  margin-right: 2%;
  height: 85px;
  margin-top: 5%;
  padding: 1%;
  background-color: #ffffff1f;
  color: #ffc027;
  font-size: 14px;
  border: 0px solid #fff;
}

.submit {
  width: 38%;
  float: left;
  height: 50px;
  margin-top: 6%;
  padding: 1%;
  background-color: #ffc027;
  color: #242a3f;
  font-size: 17px;
  margin-right: 3%;
  border-radius: 8px;
}

.footer {
  background-color: #191d2b;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center;
  padding-top: 4%;
  color: #fff;
  font-weight: normal;
}

.footer .title {
  color: #ffc126;
  font-size: 25px;
  font-weight: 600;
}

.services .title {
  color: #242a3f;
  font-size: 25px;
  font-weight: 600;

}

.services ul {
  margin: 0;
  padding: 22px;
  background-color: #242a3f;
  float: left;
  font-weight: normal;
  border-radius: 20px 20px 0 0;
}

.services ul li {
  list-style: none;
  width: 33%;
  float: left;
  color: #fff;
}

.email {
  border-top: 1px solid #ffc127;
  text-align: center;
}

.zip-title {
  color: #ffc126;
  font-size: 18px;
}


@media(max-width:600px) {
  .services ul li {
    width: 50%;
    margin: 0;
    margin-top: 1%;
  }

  .service ul li {
    width: 98%;
    margin: 0;
    margin-top: 1%;
  }
}


@media(max-width:650px) {
  .offer {
    margin-top: 0;
  }

  .service ul li {
    width: 98%;
    margin: 0;
    margin-top: 1%;
  }
}

@media(max-width:1199px) {
  .navbar-collapse ul>li {
    width: 80px;
  }
}