/* 1- general css style */
/* #274d5a*/
/* #f7c17b*/

/* 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: #0c4166;
}

::-webkit-scrollbar-thumb {
    background: #f4c07b;
}

body {
    font-family: 'Poppins', sans-serif;
    background-attachment: fixed;
    background-image: url(../rekey/bg2.webp);
    background-repeat: no-repeat;
}

.line {
    display: block;
    height: 4px;
    width: 100px;
    margin: 20px 20px 20px 0;
    background-color: #f4c07b;
    transition: width .5s;
}

.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;
}

.p1 {
    line-height: 35px;
    color: #fff;
}

.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: #f7c17b;
    color: #0e2c72;
    transition: width .5s;
}

.lt-effect:hover::after {
    width: 110%;
    color: #fff;
}

.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 #f7c17b;

    &:after {
        background-color: #f4c07b;
    }
}

.button-hover-1 {
    background: #f2be00;

    &:after {
        background-color: #fff;
    }
}

.btn {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 19px;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
    padding: 30px 40px;
    font-weight: 500;

    &:hover {
        color: #fff;
    }
}



/* nav */
.nav-link.active {
    background-color: #f7c17b;

}

.navbar-collapse ul>li {
    display: inline-block;
    width: 110px;
    text-align: center;
    color: #ff4917;
    border-radius: 5px;
}

.navbar-collapse ul>li>a {
    display: block;
    font-size: 15px;
    color: #ffffff;
}

.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:1095px) {
    .navbar-collapse ul>li {
        width: 60px;
    }

    .navbar-collapse ul>li>a {
        font-size: 10px;
    }
}

/* header */
.header {
    background-image: url(../local-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;
    padding-bottom: 50px;

}

.hero-con-1 {
    display: none;
}

.hero-con-img {
    margin-left: -105px;
}

.text-box {
    /* background-color: #ffffff9e; */
    z-index: 1;
    /* backdrop-filter: blur(25px);
    box-shadow: -39px 34px 6px -1.75em hsla(213.9, 31.3%, 38.8%, 0.34); */
    height: 500px;
    margin-top: 102px;
}

.carousel-item img {
    width: 100%;
}

.text-box1 {
    background-color: #fff;
    margin-top: 10%;
    margin-left: -88px;
    height: 403px;
}

/* keys */
.keys {
    margin-top: -310px;
    margin-right: -106px;
    z-index: -28;
}

/* circle */
.dot {
    height: 100px;
    width: 100px;
    background-color: #274b58;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 44px;
    font-weight: bold;
}

/* photo */
figure.snip1321 {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;

    width: 100%;
    color: #274d5a;
    text-align: center;
    -webkit-perspective: 50em;
    perspective: 50em;
}

figure.snip1321 * {
    -webkit-box-sizing: padding-box;
    box-sizing: padding-box;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

figure.snip1321 img {
    max-width: 100%;
    vertical-align: top;
}

figure.snip1321 figcaption {
    top: 50%;
    left: 20px;
    right: 20px;
    position: absolute;
    opacity: 0;
    z-index: 1;
}

figure.snip1321 h2,
figure.snip1321 h4 {
    margin: 0;
}

figure.snip1321 h2 {
    font-weight: 600;
    color: #274d5a;
}

figure.snip1321 h4 {
    font-weight: 400;
    text-transform: uppercase;
    color: #274d5a;
}

figure.snip1321 i {
    font-size: 32px;
}

figure.snip1321:after {
    background-color: #f7c17b;
    position: absolute;
    content: "";
    display: block;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
}

figure.snip1321 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

figure.snip1321:hover figcaption,
figure.snip1321.hover figcaption {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

figure.snip1321:hover:after,
figure.snip1321.hover:after {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 0.9;
}

/* circle */

.bg1 {
    background-image: url(../local-locksmith/emergency-locksmith.webp);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;

}

.bg1-color {
    background-color: #274b58ea;
}

.services-btn {

    width: 178px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;

    &:hover {
        background-color: #53DDD0;
    }
}

.btn01 {
    color: #fff;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border-radius: 7px;
    text-align: center;
}

.btn01 a {
    color: #fff;
}

.btn01:hover {
    background-color: #e16419;
    color: #fff;
}

.title1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

#a {
    border: 2px dashed #f4c07b;
    transition: .8s;
    padding: 9px;
}

#a:hover {
    transform: translate(5px, 5px);
    box-shadow: 8px 8px 0px 0px #ff6c002e;
}

#b {
    /* background-color: #52B3D9; */
    transform: scale(1);
    transition: .8s;
    border: 2px solid #ff6c00;
}

#b:hover {
    transform: scale(1.18);
}


/* form  */

.data-bg {
    background-color: #274b58;
}

form label {
    opacity: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0
}

.getintouch {
    font-size: 35px;
    color: #f4c07b;
    font-weight: bold;

    padding-top: 16px;
}

.spam {
    display: none;
}

input {
    width: 98%;
    float: left;
    margin-right: 2%;
    height: 50px;
    margin-top: 5%;
    padding: 1%;
    border-bottom: #fff 3px solid;
    color: #000;
    font-size: 14px;
    border-radius: 20px;
    background-color: #fff;
}

textarea.form-control {
    width: 98%;
    float: left;
    margin-right: 2%;
    height: 85px;
    margin-top: 5%;
    padding: 1%;
    border-bottom: #fff 3px solid;
    color: #000;
    font-size: 14px;
    background-color: #fff;
    border-radius: 20px;
    font-size: 14px;
}

.submit {
    width: 38%;
    float: left;
    height: 50px;
    margin-top: 2%;
    padding: 1%;
    background-color: #f4c07b;
    color: #000;
    font-size: 17px;
    margin-right: 3%;
}

/* footer  */
.service-btn {

    width: 178px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;

    &:hover {
        background-color: #53DDD0;
    }
}

.btn1 {
    color: #fff;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border-radius: 7px;
    text-align: center;
}

.btn1 a {
    color: #fff;
}

.btn1:hover {
    background-color: #f4c07b;
    color: #fff;
}

.service-btn01 {

    width: 250px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;

    &:hover {
        background-color: #53DDD0;
    }
}

.btn01 {
    color: #204451;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border-radius: 7px;
    text-align: center;
    border:2px #204451 solid
}

.btn01 a {
    color: #fff;
}

.btn01:hover {
    background-color: #f4c07b;
    color: #fff;
}





.title {
    font-size: 24px;
    font-weight: bold;
    color: #aebccc;
}


.copyright {
    text-align: center;
    margin-top: 14px;
    color: #fff;

}

@media (max-width:1351px) {
    .keys {
        margin-top: -250px;
        margin-right: 0px;
    }
}

@media (max-width:1200px) {
    .header {
        background-image: none;
        background-color: #274b58;
    }

    .nav-color {
        background-color: #fff;
    }

    .navbar-collapse ul>li>a {
        font-weight: bold;
        color: #274b58;
    }

    .keys {
        margin-top: -50px;
        margin-right: 0px;
    }
}

@media (max-width:991px) {
    .hero-con-1 {
        display: block;

    }
    .hero-con-img {
        margin-left:0px;
    }

    .hero-con-2 {
        display: none;
    }
}