

/********** Template CSS **********/
:root {
    --primary: #10395e;
    --secondary: #E0AB49;
    --light: #F4F6F7;
    --dark: #2E2E2E;
}

      * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;

        }

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
    color: #10395e;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
    color: #10395e;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    color: #10395e;
}

p{
    color: #10395E;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
/* start top bar */
.obfuscatedEmail a{
    color: white;
    text-decoration: none;
}

.topbar{
    background-color: var(--primary);
}

/* end top bar */

/*** Navbar ***/
.navbar{
    padding-bottom: 0;
}
.navbar-dark .navbar-nav .nav-link {
    font-family: "Inconsolata", monospace;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
        
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary);
}



.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* default: transparent on top */
.navbar {
  transition: background-color .3s ease, box-shadow .3s ease, padding .2s ease;
  background-color: transparent;
}

/* when scrolled */
.navbar.navbar-colored {
  background-color: #10395E !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

@media (max-width: 1350px) {
    .navbar-dark .navbar-nav .nav-link{
        font-size: 18px;
    }
}

@media (max-width: 1250px) {
    .navbar-dark .navbar-nav .nav-link{
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
 .navbar-dark .navbar-nav .nav-link {
margin-left: 20px;
}
}

@media (max-width: 1100px) {
 .navbar-dark .navbar-nav .nav-link {
margin-left: 10px;
}


}

/* Mobile/tablet styles up to XL */
@media (max-width: 1199.98px) {
  .navbar.navbar-colored { background-color: #10395E !important;  }

  .sticky-top.navbar-dark { position: relative; background: #FFFFFF; }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: white;
  }

  .navbar {
    position: relative;
    justify-content: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
    align-content: space-between;
    background-color: #10395E;
  }

  .navbar-dark .navbar-toggler {
    color: #fff !important;
    border-color: #fff !important;
  }

  .dropdown-menu {
    position: absolute;
    z-index: 1000;

  
    padding: .5rem 0;
   
    font-size: 1rem;
    color: #10395E;
 text-align: center;
    list-style: none;

    border: 1px solid white;
    border-radius: .25rem;
width: 30%;
margin: auto !important;
   
}
}

/* Desktop XL and up */
@media (min-width: 1200px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-dark { position: fixed; }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--secondary);
    transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before { display: none; }

}










/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .5);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}



/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

/* Standard rules */
@keyframes section-title-run {
  0%   { left: 0; }
  50%  { left: 145px; }
  100% { left: 0; }
}
@keyframes section-title-run-center {
  0%   { left: 50%; margin-left: -75px; }
  50%  { left: 50%; margin-left: 45px; }
  100% { left: 50%; margin-left: -75px; }
}
@keyframes section-title-run-sm {
  0%   { left: 0; }
  50%  { left: 85px; }
  100% { left: 0; }
}

.header-button {
  background-color: #10395e;
  color: #ffffff;
  transition: all 0.3s ease;
}

.header-button:hover {
  background-color: #E0AB49 !important;
  color: #10395e !important;
}
/* Optional legacy WebKit (only if you need it) */
@-webkit-keyframes section-title-run { 0%{left:0} 50%{left:145px} 100%{left:0} }
@-webkit-keyframes section-title-run-center { 0%{left:50%;margin-left:-75px} 50%{left:50%;margin-left:45px} 100%{left:50%;margin-left:-75px} }
@-webkit-keyframes section-title-run-sm { 0%{left:0} 50%{left:85px} 100%{left:0} }

.header-txt{
    font-size: 22px;
}



  .offer-btn {
    background-color: #E0AB49 !important;
    color: #10395e !important;
    border-color: #E0AB49 !important;
    transition: all 0.25s ease;
    font-size: 21px;
  }
  .offer-btn:hover,
  .offer-btn:focus {
    background-color: #b08f12 !important; /* a touch darker */
    border-color: #b08f12 !important;
    color: #10395e !important;
  }
  .offer-btn:active {
    background-color: #a38210 !important;
    border-color: #a38210 !important;
  }

  /* start about */
  .about-txt{
    font-size: 20px;
   
  }
  /* end about */
/*** Service ***/

.service p{
    font-size: 20px;
}



.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon img {
    transform: rotate(45deg);
    width: 60px;
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
    background-color: #E0AB49;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}






/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
      width: 60%;
      margin: auto;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
    width: 60%;
        margin: auto;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.obfuscatedEmail a{
    color: #10395E;
}

.city-btn {
  display: inline-block;
  margin: 5px 8px; /* adjust values for more/less space */
  padding: 6px 12px;
  background-color: #f7f7f7;
  border-radius: 5px;
  text-decoration: none;
  color: #10395E;
  font-weight: 500;
  transition: all 0.3s ease;
}

.city-btn:hover {
  background-color: #E0AB49;
  color: #10395E;
}


/* start cta */
.cta{
background-image: url(../img/cta-image.webp);
background-position: center;
background-size: cover;
height: 700px;
}
/* end cta */

/*** Feature ***/
.feature-text{
    padding-left: 30px;
}

.feature-icon-box{
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.feature-icon-box img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-item{
    display: flex;
    align-items: center;
}

.feature-item:hover .feature-icon-box{
    transform: translateY(-4px);
}

.feature-item p{
    color: rgba(255,255,255,.75);
    margin-bottom: 4px;
    font-size: 14px;
}

.feature-item h5{
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 991.98px){

    .feature-text{
        padding-left: 15px;
        padding-right: 15px;
    }

    .feature-icon-box{
        width: 55px;
        height: 55px;
    }

    .feature-icon-box img{
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 575.98px){

    .feature-item h5{
        font-size: 16px;
    }

    .feature-item p{
        font-size: 13px;
    }

    .feature-icon-box{
        width: 50px;
        height: 50px;
    }

    .feature-icon-box img{
        width: 24px;
        height: 24px;
    }
}
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
  }


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}




/* .bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
} */
.border-inner{
  position: relative;
}
.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid white;
    z-index: 0;
}

.obfuscatedEmail a {
    color: white;
}

.contact .obfuscatedEmail a {
    color: #10395E;
}


.offer-btn{
    background:#10395E;
    color:#fff;
    font-weight:600;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
    animation:pulseOffer 2s infinite;
}

.offer-btn:hover{
    background:#0C2D4A;
    color:#fff;
    transform:translateY(-3px);
}

.offer-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.2);
    transform:skewX(-25deg);
    animation:shine 3s infinite;
}

@keyframes pulseOffer{
    0%{
        box-shadow:0 0 0 0 rgba(16,57,94,.5);
    }
    70%{
        box-shadow:0 0 0 12px rgba(16,57,94,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(16,57,94,0);
    }
}

@keyframes shine{
    0%{
        left:-120%;
    }
    100%{
        left:150%;
    }
}

.offer-btn{
    background:#10395E;
    color:#fff;
    font-weight:600;
    font-size:22px;
    border:none;
    position:relative;
    overflow:hidden;
    animation:pulseOffer 2s infinite;
    transition:.3s ease;
}

.offer-btn:hover{
    color:#fff;
    background:#0B2D49;
    transform:translateY(-3px);
}

.offer-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.2);
    transform:skewX(-25deg);
    animation:shine 3s infinite;
}

@keyframes pulseOffer{
    0%{
        box-shadow:0 0 0 0 rgba(16,57,94,.6);
    }
    70%{
        box-shadow:0 0 0 12px rgba(16,57,94,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(16,57,94,0);
    }
}

@keyframes shine{
    0%{
        left:-120%;
    }
    100%{
        left:150%;
    }
}


.hero-img{
    min-height: 420px;
    max-height: 850px;
    object-fit: cover;
}

.hero-content{
    max-width: 900px;
}

.logo-img{
    width: 50%;
    max-width: 420px;
    min-width: 180px;
}

@media (max-width: 991px){
    .carousel-caption{
        padding: 20px 15px;
    }

    .logo-img{
        width: 65%;
    }

    .header-button,
    .offer-btn{
        font-size: 18px !important;
    }
}

@media (max-width: 575px){
    .hero-img{
        min-height: 480px;
    }

    .logo-img{
        width: 80%;
    }

    .header-button,
    .offer-btn{
        width: 100%;
        max-width: 280px;
        font-size: 17px !important;
    }
}


.emergency-lockout-image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 992px){
    .emergency-lockout-image img{
        height: 620px;
    }
}

@media (max-width: 991px){
    .feature-text{
        text-align: center;
    }

    .feature-text .d-flex{
        justify-content: center;
    }

    .emergency-lockout-image img{
        max-height: 520px;
    }
}

@media (max-width: 575px){
    .feature-text h1{
        font-size: 30px;
    }

    .feature-text p{
        font-size: 15px;
    }

    .emergency-lockout-image img{
        max-height: 420px;
    }

        .feature-text .row .d-flex{
        justify-content: flex-start !important;
        text-align: left;
        max-width: 260px;
        margin: 0 auto;
    }

    .feature-text .ms-4{
        margin-left: 15px !important;
    }

    .feature-text .row.g-4{
        row-gap: 22px;
    }

    .feature-text .col-12{
        display: flex;
        justify-content: center;
    }

    .feature-text h5{
        font-size: 18px;
    }

    .feature-text p{
        font-size: 15px;
    }
}


@media (max-width: 575px){

    .feature-text .col-6 .d-flex{
        flex-direction: column;
        text-align: center;
    }

    .feature-text .ms-4{
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .feature-text .col-6 h5{
        font-size: 18px;
        line-height: 1.3;
    }

    .feature-text .col-6 p{
        margin-bottom: 5px !important;
    }
}

.img-twice img{
    width:100%;
    object-fit:cover;
}

@media (min-width: 992px){

    .img-twice .col-6:first-child{
        padding-top:0;
    }

    .img-twice .col-6:last-child{
        margin-top:120px; /* creates the staggered effect */
    }

    .img-twice img{
        min-height:420px;
    }
}

@media (max-width: 991.98px){

    .img-twice{
        margin-bottom:20px;
    }

    .img-twice .col-6:last-child{
        margin-top:40px;
    }

    .img-twice img{
        width:100%;
        height:auto;
    }
}

@media (max-width: 575.98px){

    .img-twice .col-6:last-child{
        margin-top:20px;
    }
}


.locksmith-service-img{
    min-height: 400px;
}

@media (max-width: 991px){
    .locksmith-service-img{
        min-height: 350px;
    }
}

@media (max-width: 575px){
    #locksmith-services-title{
        font-size: 32px;
    }

    .locksmith-service-img{
        min-height: 280px;
    }
}

@media (max-width: 575px){
    .stats-item{
        flex-direction: column;
        text-align: center;
    }

    .stats-item .ps-sm-4{
        padding-left: 0 !important;
        margin-top: 12px;
    }

    .stats-item h6{
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
        white-space: normal;
    }

    .stats-item h1{
        font-size: 34px;
    }
}


.service-intro{
    max-width: 50%;
    margin-bottom: 3rem;
}

.service-item{
    min-height: 320px;
    padding: 35px 25px;
}

.service-icon img{
    max-width: 90px;
    height: auto;
}

@media (max-width: 991px){
    .service-intro{
        max-width: 75%;
    }

    .service-item{
        min-height: 300px;
    }
}

@media (max-width: 575px){
    .service-intro{
        max-width: 100%;
    }

    #our-services-title{
        font-size: 26px;
    }

    .service-item{
        min-height: auto;
        padding: 30px 20px;
    }
}

@media (max-width: 991px){
    .cta .display-4{
        font-size: 38px;
    }

    .cta .header-button,
    .cta .offer-btn{
        font-size: 18px !important;
    }
}

@media (max-width: 575px){
    .cta .display-4{
        font-size: 30px;
        line-height: 1.3;
    }

    .cta .header-button,
    .cta .offer-btn{
        width: 100%;
        max-width: 280px;
        font-size: 17px !important;
    }
}



/* FAQ Section */
.faq-section{
    background:#f8f9fa;
}

.faq-section h2{
    color:#10395E;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
}

.faq-section p{
    color:#666;
    margin-bottom:0;
}

.faq-section .accordion-item{
    border:0;
    margin-bottom:15px;
    border-radius:12px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-section .accordion-button{
    background:#fff;
    color:#10395E;
    font-size:1.05rem;
    font-weight:600;
    padding:18px 22px;
    box-shadow:none !important;
}

.faq-section .accordion-button:not(.collapsed){
    background:#10395E;
    color:#fff;
}

.faq-section .accordion-button:focus{
    box-shadow:none;
    border-color:transparent;
}

.faq-section .accordion-body{
    background:#fff;
    color:#555;
    font-size:16px;
    line-height:1.7;
    padding:20px 22px;
}

.faq-section .accordion-button::after{
    filter:brightness(0.4);
}

.faq-section .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 767.98px){

    .faq-section{
        padding-top:3rem !important;
        padding-bottom:3rem !important;
    }

    .faq-section h2{
        font-size:1.8rem;
    }

    .faq-section .accordion-button{
        font-size:0.95rem;
        padding:15px 18px;
    }

    .faq-section .accordion-body{
        font-size:14px;
        padding:15px 18px;
    }
}

/* Tablet */
@media (min-width:768px) and (max-width:991.98px){

    .faq-section h2{
        font-size:2rem;
    }

    .faq-section .accordion-button{
        font-size:1rem;
    }
}



.service-locations-section{
    background:#f8f9fa;
}

.service-locations-section h2{
    color:#10395E;
    font-weight:700;
    text-transform:uppercase;
}

.service-locations-section p{
    color:#555;
}

.locations-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.location-btn{
    display:inline-block;
    padding:14px 24px;
    background:#10395E;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 8px 20px rgba(16,57,94,.18);
}

.location-btn:hover{
    background:#E0AB49;
    color:#10395E;
    transform:translateY(-3px);
}

@media (max-width:575px){
    .location-btn{
        width:100%;
        text-align:center;
    }
}



/* faq */
/* FAQ Section */
/* FAQ Section */
.faq-section{
    background: linear-gradient(135deg,#10395E 0%,#0B2D49 100%);
    position: relative;
    overflow: hidden;
}

.faq-section h2{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-section p{
    font-size: 1.05rem;
    opacity: .9;
}

/* Accordion */
.faq-section .accordion{
    max-width: 950px;
    margin: auto;
}

.faq-section .accordion-item{
    border: none;
    margin-bottom: 15px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.faq-section .accordion-button{
    background: #fff;
    color: #10395E;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed){
    background: #E0AB49;
    color: #10395E;
}

.faq-section .accordion-button:focus{
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after{
    background-size: 1.1rem;
    transition: .3s ease;
}

.faq-section .accordion-body{
    padding: 22px 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    background: #fff;
}

/* Hover Effect */
.faq-section .accordion-item:hover{
    transform: translateY(-2px);
    transition: .3s ease;
}

/* Mobile */
@media (max-width:768px){

    .faq-section{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .faq-section h2{
        font-size: 2rem;
    }

    .faq-section .accordion-button{
        font-size: .95rem;
        padding: 18px;
    }

    .faq-section .accordion-body{
        padding: 18px;
        font-size: .95rem;
    }
}

/* car brands */
.car-brands-section{
    background:#10395E;
    overflow:hidden;
}

.brands-title{
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
}

.brands-subtitle{
    color:rgba(255,255,255,.75);
}

.brands-slider{
    position:relative;
    overflow:hidden;
    width:100%;
}

.brands-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollBrands 40s linear infinite;
}

.brands-track img{
    width:140px;
    height:80px;
    object-fit:contain;
    margin:0 25px;
    padding:10px;
    background:#fff;
    border-radius:12px;
    transition:.3s;
}

.brands-track img:hover{
    transform:translateY(-5px);
}

.brands-slider:hover .brands-track{
    animation-play-state:paused;
}

@keyframes scrollBrands{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Fade edges */
.brands-slider::before,
.brands-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.brands-slider::before{
    left:0;
    background:linear-gradient(to right,#10395E,transparent);
}

.brands-slider::after{
    right:0;
    background:linear-gradient(to left,#10395E,transparent);
}

@media(max-width:768px){

    .brands-track img{
        width:100px;
        height:60px;
        margin:0 15px;
    }

    .brands-slider::before,
    .brands-slider::after{
        width:60px;
    }
}