/* 1- general css style */
/* #0f1a33*/
/* #facf08*/


/* 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+ */
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #f0c40d;
}

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

.line {
    display: block;
    height: 9px;
    width: 100px;
    margin: 20px 20px 20px 0;
    background-color: #fff;
    transition: width .5s;
    border-radius: 7px;
}

.text-justify {
    text-align: justify;
    padding: 5px;
    word-spacing: 0px;
}

.section-title:hover .line {
    width: 150px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

hr {
    color: #fff;
}

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}


.marquee {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 30s linear infinite;
    color: #eee;
}

.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0% {
        text-indent: 27.5em
    }

    100% {
        text-indent: -105em
    }
}

.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,
.tb-effect-1 {
    position: relative;
    z-index: 5;
    border-radius: 2px;
}

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

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

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

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

.tb-effect-1:hover {
    color: #03a22b;
    border-radius: 2px;
}

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

.tb-effect:hover {
    color: #03a22b;
    border-radius: 2px;
}

.lt-effect {
    width: 110px;
}

.lt-effect::after {
    width: 1%;
    background-color: #f0c40d;
    color: #0f1a33;
    transition: width .5s;
}

.lt-effect:hover::after {
    width: 100%;
    color: #0f1a33;
}

.button-hover,
.button-hover-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;

    &:after {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        top: 0%;
        left: 50%;
        opacity: .4;
        transform: translate(-50%, -50%) scale(0, 0);
        transition: transform .5s ease 0s;
        z-index: 0;
        color: #fff;
    }

    &:hover {
        &:after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1, 1);
            transition: transform .5s ease 0s;
        }
    }
}

.button-hover {
    border: 2px solid #f0c40d;

    &:after {
        background-color: #0f1a33;
    }
}

.button-hover-1 {
    background: #f2be00;

    &:after {
        background-color: #f0c40d;
    }
}

.btn {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 19px;
    background: transparent;
    cursor: pointer;
    color: #f0c40d;
    padding: 30px 40px;
    font-weight: 500;

    &:hover {
        color: #fff;
    }
}

/* nav */
.nav-link.active {
    background-color: #f0c40d;
    color: #0f1a33;
    font-weight: bold;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #0f1a33;
}

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

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

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

.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;
}

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

    .navbar-collapse ul>li>a {
        font-size: 10px;
    }
}

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

    .navbar-collapse ul>li>a {
        font-size: 15px;
    }


}

@media (max-width:1095px) {
    .navbar-collapse ul>li {
        width: 90px;
    }
    .navbar-collapse ul>li>a {
        font-size: 12px;
      
    }
    .navbar-collapse ul>li>a:hover {
        color: #0f1a33;
      
    }
}

/* header */
.header {
    background-image: url(../locksmith/locksmith-service.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.header-1 {
    background-image: url(../locksmith/residential-locksmith-service.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.header-2 {
    background-image: url(../locksmith/car-locksmith.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.header-3 {
    background-image: url(../locksmith/commercial-locksmith.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.header-4{
    background-image: url(../locksmith/emergency-locksmith\ copy.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}
.header-5{
    background-image: url(../locksmith/transponder-car-key.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}

.header-6{
    background-image: url(../locksmith/replacement-car-key.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}
.header-7{
    background-image: url(../locksmith/change-locks-home.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}
.header-8{
    background-image: url(../locksmith/car-ignition.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}
.header-9{
    background-image: url(../locksmith/lock-out-locksmith.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;

}


.text-box {
    z-index: 1;
    margin-top: 150px;
    margin-bottom: 150px;
}

.carousel-item img {
    width: 100%;
}

.text-box1 {
    background-color: #fff;
    margin-top: 10%;
    margin-left: -88px;
    height: 403px;
}

.img1 {
    margin-top: -346px;
    margin-left: 241px;
}

.img2 {
    margin-top: -346px;
    margin-left: 241px;
}

.img4 {
    margin-top: -346px;
    margin-left: 243px;
}

.no1 {
    background-image: url(../locksmith/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 820px;
}

.no2 {
    background-image: url(../locksmith/bg2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 820px;
}


/* offer */
.lock-bg {
    background-image: url(../locksmith/locksmith-bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* photo */
.snip1482 {
    font-family: 'Fauna One', Arial, sans-serif;
    position: relative;
    margin: 10px 20px;
    min-width: 370px;
    max-width: 391px;
    min-height: 287px;
    width: 100%;
    color: #0f1a33;
    text-align: right;
    line-height: 1.4em;
    background-color: #facf08;
    font-size: 16px;
}

.snip1482 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.snip1482 img {
    position: absolute;
    right: 0%;
    top: 50%;
    opacity: 1;
    width: 100%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.snip1482 figcaption {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px 0 20px 20px;
}

.snip1482 h2,
.snip1482 p {
    margin: 0;
    width: 100%;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
}

.snip1482 h2 {
    font-family: 'Playfair Display', Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 17px;
}

.snip1482 p {
    font-size: 0.8em;
}

.snip1482 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.snip1482:hover img,
.snip1482.hover img {
    width: 55%;
    right: -10%;
}

.snip1482:hover figcaption h2,
.snip1482.hover figcaption h2,
.snip1482:hover figcaption p,
.snip1482.hover figcaption p {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

figure.snip1157 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 529px;
    width: 100%;
    color: #333;
    text-align: left;
    box-shadow: none !important;
}

figure.snip1157 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

figure.snip1157 img {
    max-width: 100%;
    vertical-align: middle;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin: 40px 0 0 10px;
}

figure.snip1157 blockquote {
    display: block;
    border-radius: 8px;
    position: relative;
    background-color: #0f1a33;
    padding: 25px 25px 30px 50px;
    font-size: 0.8em;
    color: #fff;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
}

figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
}

figure.snip1157 blockquote:before {
    top: 25px;
    left: 20px;
}

figure.snip1157 blockquote:after {
    content: "\201D";
    right: 20px;
    bottom: 0;
}

figure.snip1157 .arrow {
    top: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fafafa;
    margin: 0;
    position: absolute;
}

figure.snip1157 .author {
    position: absolute;
    bottom: 45px;
    padding: 0 10px 0 120px;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

figure.snip1157 .author h3 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
    color: #0f1a33;
}

figure.snip1157 .author h3 span {
    font-weight: 400;
    text-transform: none;
    padding-left: 5px;
}


.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.section-title:after,
.section-title:before {
    content: "";
    position: absolute;
    bottom: 0;
}

.section-title:after {
    height: 2px;
    background-color: #f0c40d;
    left: 25%;
    right: 25%;
}

.section-title:before {
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    background-color: #f0c40d;
    left: 50%;
    transform: translatex(-50%);
    bottom: -6px;
    z-index: 9;
    border-radius: 50%;
}

/* form  */
#form {
    background-image: url(../locksmith/form-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.form-bg {
    background-color: #0f1a33e5;
    padding-top: 7%;

}

.contact-section {
  background: #f8f9fb;
  padding: 70px 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
 
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 50px 40px;
}
 
.contact-wrapper h2 {
  color: #033981;
  font-size: 2rem;
  margin-bottom: 10px;
}
 
.contact-wrapper p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}
 
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
 
.input,
.textarea {
  width: 45% !important;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease; margin-bottom: 1%;
}
 
.textarea2{ width: 90% !important;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;}
 
.input2{  width:90% !important;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease; margin-top: 3%; float: left; color: #fff;margin-left: 4%;}
 
.input:focus,
.textarea:focus {
  border-color: #033981;
}
 
.contact-btn {
  background: #033981;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
  align-self: center;
}
 
.contact-btn:hover {
  background: #0a4da1;
}
/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* footer  */
.service-btn {

    width: 178px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;

    &:hover {
        background-color: #53DDD0;
    }
}

.btn1 {
    color: #0f1a33;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border: #212741 1px solid;
    text-align: center;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    cursor: pointer;
}



.btn1:hover {
    background-color: #f0c40d;
    color: #0f1a33;
    letter-spacing: 1px;
}

.btn3 {
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    float: left;
    border: 1px solid;
    border: #fff 1px solid;
    text-align: center;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    cursor: pointer;
}

.btn3 a {
    color: #0f1a33;
}

.btn3 a:hover {
    color: #0f1a33;
}

.btn3:hover {
    /* background-color: #f0c40d; */
    color: #0f1a33;
    letter-spacing: 1px;
}


.btn2 {
    color: #fff;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border: #fff 1px solid;
    text-align: center;
}

.btn2 a {
    color: #fff;
}

.btn2:hover {
    background-color: #ff511a;
    color: #fff;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #f0c40d;
}


.copyright {
    text-align: center;
    margin-top: 14px;
    color: #fff;

}

@media (max-width:1280px) {
    .img1 {
        margin-top: -346px;
        margin-left: 200px;
    }

    .img2 {
        margin-top: -346px;
        margin-left: 107px;
    }

    .img3 {
        margin-left: -46px;
    }

    .no1 {
        height: auto;
    }
}

@media (max-width:1200px) {
    .img1 {
        margin-top: -346px;
        margin-left: 160px;
    }

    .img2 {
        margin-top: -346px;
        margin-left: 107px;
    }

    .img3 {
        margin-left: -46px;
    }

    .img4 {
        margin-top: 40px;
        margin-left: 0px;
    }

    .no1 {
        height: auto;
    }
}

@media (max-width:992px) {
    .img1 {
        margin-top: -271px;
        margin-left: 67px;
    }

    .img2 {
        margin-top: -230px;
        margin-left: 71px;
    }

    .img3 {
        margin-left: -12px;
    }

    .no2 {
        height: auto;
    }
}

@media (max-width:768px) {
    .img1 {
        margin-top: -7px;
        margin-left: 14px;
    }

    .img2 {
        margin-top: 11px;
        margin-left: 10px;
    }

    .img3 {
        margin-left: -12px;
    }

    .no2 {
        height: auto;
    }
}