@media screen and (max-width: 992px) {
    .header_menu .navbar li a {
        font-size: 16px;
        text-transform: uppercase;
        padding: 0px 12px;
        font-weight: 600;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    a {
        text-decoration: none;
    }
    /*header*/
    .header {
        position: absolute;
        width: 100%;

        top: 0;
        z-index: 99;
        padding: 0px;
        right: 0px;
    }

    .header .logo {
        padding: 0 15px;
    }

    .header .logo a {
        font-size: 30px;
        text-transform: capitalize;
        color: #e91e63;
        font-weight: 600;
    }

    .header .nav-menu {
        padding: 0 15px;
    }

    .header .menu>.menu-item {
        display: inline-block;
        margin-left: 30px;
        position: relative;
    }
    table
    {
        font-size: 10px !important;
    }
    .btn-danger {
        font-size: 10px !important;
    }

    .header .menu>.menu-item>a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        color: #000000;
        text-transform: capitalize;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .header .menu>.menu-item>a .plus {
        display: inline-block;
        height: 12px;
        width: 12px;
        position: relative;
        margin-left: 5px;
        pointer-events: none;
    }

    .header .menu>.menu-item>a .plus:before,
    .header .menu>.menu-item>a .plus:after {
        content: '';
        position: absolute;
        box-sizing: border-box;
        left: 50%;
        top: 50%;
        background-color: #000000;
        height: 2px;
        width: 100%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .header .menu>.menu-item:hover>a .plus::before,
    .header .menu>.menu-item:hover>a .plus::after {
        background-color: #000000;
    }

    .header .menu>.menu-item>a .plus:after {
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
    .header .menu>.menu-item:hover>a {
        color: #000000;
    }
    
       
    .header .menu>.menu-item>.sub-menu {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        width: 220px;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: #ffffff;
        padding: 10px 0;
        border-top: 3px solid #e91e63;
        transform: translateY(10px);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .header .menu>.menu-item-has-children:hover>.sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item-has-children:hover>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu>.menu-item {
        display: block;

    }

    .header .menu>.menu-item>.sub-menu>.menu-item:last-child {
        border-bottom: 0px;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 400;
        color: #000000;
        transition: all 0.3s ease;
        text-transform: capitalize;
        text-decoration: none;
    }

    .header .open-nav-menu {
      height: 40px;
      align-items: center;
      cursor: pointer;
      margin: -14px 0 0;
      background: #133f66;
      width: 40px;
      border-radius: 5px;
      justify-content: center;
    }
    .call_icon a{
      background: #133f66;
      height: 40px;
      width: 40px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .call_icon{
      display: flex;
      justify-content: right;
    }
    
    .logo_sm img {
      width: 80px;
      margin: 0 auto;
    }
    .logo_sm{
      text-align: center;
      display: block;
    }

    .header .open-nav-menu span {
        display: block;
        height: 2px;
        width: 25px;
        background-color: #fff;
        position: relative;
    }

    .header .open-nav-menu span:before,
    .header .open-nav-menu span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 80%;
        height: 100%;
        background-color: #fff;
        box-sizing: border-box;
    }

    .call_icon a {
        color: #fff;
    }

    .header .open-nav-menu span:before {
        top: -7px;
    }

    .header .open-nav-menu span:after {
        top: 7px;
    }

    .header .close-nav-menu {
        height: 33px;
        width: 32px;
        background-color: #000;
        margin: 0 12px 15px 15px;
        margin-left: 15px;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        margin-left: auto !important;
        border-radius: 0px;
    }

    .header .close-nav-menu img {
        width: 16px;
    }

    .header .menu-overlay {
        position: fixed;
        z-index: 999;
        background-color: rgba(0, 0, 0, 0.7);
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    /*home section*/
    .home-section {
        width: 100%;
        display: block;
        min-height: 100vh;
        background-image: url('../image/home.jpg');
        background-position: center top;
        background-size: cover;
    }

    .logo_section {
        display: none;
    }

    .mobile_header {
        display: none;
    }

    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header .nav-menu {
        position: fixed;

        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #fff;
        z-index: 1000;
        padding: 13px 0;
        transition: all 0.7s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu>.menu-item>a {
        color: #000;
        padding: 16px 16px;

        letter-spacing: 0px;
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: inherit;
    }

    .header .menu>.menu-item:last-child>a {
        border-bottom: 0px;
    }

    .header .menu>.menu-item>a .plus:before,
    .header .menu>.menu-item>a .plus:after {
        background-color: #000000;
    }

    .header .menu>.menu-item-has-children.active>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: 0px;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item {
        border-bottom: 1px solid #ececec;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item:last-child {
        border-bottom: 0px;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 8px 35px;
        color: #000000;
        font-size: 16px;
        font-family: 'Oswald', sans-serif;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }

    .mobile_header {
        display: block;
        transition: all 0.6s;
        padding: 8px 0px;
    }

    #main_header {
        display: none;
    }

    .mobile_header {
        display: block;
        position: relative;
        width: 100%;
        background: #fff;
        top: 0;
        z-index: 999;
      }
      .banner_area {
        background: url(../image/mobile-banner.png) center center no-repeat;
        text-align: center;
        padding: 70px 0px 90px;
        color: #fff;
      }
      .banner_area:before{
          display: none;
      }
      h6 {
        font-size: 44px;
      }
      h1 {
        font-size: 51px;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 58px;
      }
      .heading_comon h1 span {
        font-weight: 500;
        font-size: 41px;
      }
      p br{
          display: none;
      }
      .button_area a {
        margin-right: 0px;
        margin-bottom: 12px;
      }
      section.how_its_work {
        padding: 70px 0 100px;
      }
      h2 {
        font-size: 32px;
        text-transform: uppercase;
      }
      .work_list {
        text-align: center;
        margin-bottom: 20px;
      }
      .center {
    
        margin: 30px auto 0;
        display: table;
      }
      .contact_form h2 {
        background: #2d46a0;
        color: #fff;
        padding: 24px 10px;
        border-radius: 14px 14px 0px 0px;
        font-size: 44px;
      }
      h3 {
        font-size: 28px;
      }
      .contact_form form {
        padding: 11px 29px 32px;
        margin-bottom: 33px;
      }
      .contact_form_Section{
        padding: 100px 0 50px;
      }
      .service_list {
        text-align: center;
        transition: all 0.6s ease 0s;
        overflow: hidden;
        margin-bottom: 10px;
      }
      section {
        padding: 70px 0px;
      }
      .heading_comon {
        text-align: center;
      }
      .content_section .button_area {
      
        margin: 0 auto 32px;
      }
      .video-play-button::after {
        content: "\f095";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        font-family: FontAwesome;
        height: 60px;
        background: #297ef4;
        border-radius: 50%;
        transition: all 200ms;
        right: 0;
        text-align: center;
        padding-top: 12px;
        color: #fff;
        font-size: 27px;
      }
      .video-play-button::before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
      }
      .content.text-left.mt-4 p {
        text-align: center;
        margin-bottom: 0px;
      }
      .client_post {
        padding: 20px 8px;
        text-align: center;
      }
      .client_post p{
          margin-bottom: 0px;
      }
      .footer_Section {
       
        padding: 65px 0px 30px;
        
      }
      .footer_heading {
        margin-bottom: 35px;
      }
      .footer_Section .footer_social ul li a {
        display: inline-block;
        width: 34px;
        height: 34px;
        text-align: center;
        line-height: 34px;
        background: #fff;
        color: #297ef4;
        border-radius: 50px;
        font-size: 15px;
      }
      .copyright_text {
        border-top: 1px solid #fff;
        text-align: center;
        padding: 20px 0px 0px 0px;
        margin-top: 28px;
        position: relative;
        text-align: center;
      }
      .copyright_text p {
        text-align: center;
        margin: 17px 0px 0;
        margin-bottom: 10px;
      }
      .cpyright_link.text-right {
        text-align: center !important;
      }
      .cpyright_link li a.footer_btn {
        color: #fff;
        border: 1px solid #fff;
        display: inline-block;
        padding: 15px 39px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .inner_banner {
        position: relative;
        padding: 90px 0px;
        text-align: left;
        text-align: center;
      }
      .inner_banner h1 {
        position: relative;
        font-size: 50px;
        font-weight: 800;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 10px;
      }
      .ftco-section {
        padding: 60px 0px;
      }
      .contact-wrap {
        background: rgb(41 126 244);
        color: rgb(255, 255, 255);
        padding: 34px 32px !important;
        text-align: center;
      }
      .contact-wrap h3 {
        font-size: 42px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .form-group {
        margin-bottom: 1rem;
        text-align: left;
      }
      .list {
        margin-top: 40px;
        text-align: left;
      }
      .item.d-flex {
        padding-top: 20px;
        text-align: left;
      }
      .footer_heading2 {
        margin-bottom: 50px;
      }
      img.img-fluid.img-2 {
        object-fit: cover;
        height: 501px;
        border: 9px solid #297ef4;
        padding: 13px;
        border-radius: 32px;
        margin-bottom: 30px;
      }

      .inner_service_content {
        background: url(../image/mobile-banner2.jpg) no-repeat center;
        color: #fff;
      }
      .button_area{
        text-align: center;
      }
      .ban-caption-txt h1 {
        font-size: 51px;
        line-height: 62px;
      }
      .ban-caption-txt h1 span br{
        display: none;
      }
      .inn-seo-contact-from {
        padding: 30px;
      }
      .about-section h4 {
        padding: 10px 0px 15px;
        font-size: 32px;
      }
      .commercial-locksmith-section {
        padding: 110px 0px;
       
      }
      .heading.text-left {
        text-align: center !important;
      }
      img.img-fluid.contact-img {
        height: 398px;
        object-fit: cover;
      }
      .heading_comon h6 {
        margin-bottom: 0px;
        color: #fff;
        font-size: 25px;
      }
      h1 {
        font-size: 35px;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 58px;
      }
      .banner_area {
        background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(../image/mobile-banner.png) center center no-repeat;
        text-align: center;
        padding: 70px 0px 90px;
        color: #fff;
        background-size: cover;
      }
      .banner_area1 {
        background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(../image/banner-bg1.jpg) center center no-repeat;
        position: relative;
        padding: 70px 0px 90px;
        color: #fff;
        background-size: cover;
      }
      .banner_area1:before {
        position: absolute;
        bottom: -5px;
        background: url(../image/shape-bg.png) no-repeat center bottom;
        width: 100%;
        height: 73px;
        content: "";
        }
        .title h4 {
          margin-bottom: 10px;
          color: #000;
          text-transform: uppercase;
          font-size: 21px;
          font-weight: 600;
        }
        .about_sec1 .heading{
          text-align: center;
        }
        .ft_logo
        {
            text-align:center;
        }
        .cart-right
        {
            position: absolute;
            top: 27px;
            right: 67px;
        }
       .ft_logo img {
	width: 103px;
	margin-bottom: 20px;
}
        .footer_Section .footer_heading2 li {
          position: relative;
          padding: 0px 0px 0px 15px;
          margin-bottom: 16px;
          display: inline-block;
          width: 160px;
        }
        h3.footer_common {
          text-transform: uppercase;
          font-weight: 600;
          position: relative;
          margin-bottom: 45px;
          font-size: 22px;
        }
        .service_section .heading_comon h6{
          color: #000000 !important;
        }
        .item.d-flex {
          padding-top: 20px;
          text-align: left;
          justify-content: center;
        }
        .header_logo img{
          width: 65px;
        }
        #sm_menu_ham {
          top: 16px !important;
          z-index: 9999 !important;
          background: #1f303f !important;
          width: 45px !important;
          height: 45px !important;
          line-height: 40px !important;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        #sm_menu_ham {
          cursor: pointer;
          float: right;
          height: 25px;
          position: absolute !important;
          right: 5px;
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: all 0.5s ease-in-out 0s;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s;
          width: 30px;
          top: 15px;
          right: 15px;
          z-index: 9999;
          border-radius: 5px;
        }
        #sm_menu_ham span {
          left: 10px !important;
          margin-top: 11px !important;
        }
        #sm_menu_ham span {
          background-color: #ffffff !important;
          border-radius: 5px !important;
          display: block !important;
          height: 2px !important;
        }
        .logo {
          display: table;
          margin: 7px auto 7px;
        }
        .sm_call{
          position: absolute !important;
          cursor: pointer;
          float: right;
          height: 25px;
          position: fixed;
          right: 5px;
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: all 0.5s ease-in-out 0s;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s;
          width: 30px;
          top: 15px;
          left: 15px;
          z-index: 9999;
          top: 16px !important;
    z-index: 9999 !important;
    background: #1f303f !important;
    width: 45px !important;
    height: 45px !important;
    line-height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
        }
        .mobile_navbar{
          display: block;
        }
        .sm_menu_outer .mobile_menu a {
          color: #ffffff;
          display: block;
          font: 300 14px/140% "Lato", sans-serif !important;
          letter-spacing: 1px;
          padding: 20px 15px;
          text-transform: uppercase;
          text-decoration: none;
        }
     
        .sm_menu_outer .mobile_menu li.back a {
          padding: 20px 5px 20px 95px !important;
          background: url("../images/back.png") no-repeat scroll 13px center / 8% auto !important;
        }
        .sm_menu_outer.slide .mobile_menu li.hasChild > a {
          background: url("../images/next.png") no-repeat scroll 95% center / 1% auto !important;
        }
        .service_sec .heading {
          text-align: center;
        }
        .sm_menu_outer.slide .mobile_menu li.active > .submenu {
          right: 0;
          height: 100vh;
        }
    }




@media screen and (max-width: 767px) {}

@media screen and (max-width: 567px) {
  section {
    padding: 55px 0px;
  }
  .how_its_work {
    background: url('../image/home-bg2.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    background-position: 65% 50%;
  }
  .sm_menu_outer.slide .mobile_menu li.hasChild > a {
    background: url("../images/next.png") no-repeat scroll 95% center / 2% auto !important; 
  }

  .sm_menu_outer .mobile_menu li.back a {
    padding: 20px 5px 20px 80px !important;
    background: url("../images/back.png") no-repeat scroll 13px center / 16% auto !important;
  }
  .inner_banner h1 {
    position: relative;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0px;
    color: #fff;
    margin-bottom: 0px;
  }
 .client_testimonial .owl-nav {
	display: none;
}
.banner_sliders .button_arear .btn1 {
	margin-bottom: 10px;
}
}

@media screen and (max-width: 320px) {}