/********** Template CSS **********/
:root {
    --primary: #006E9C;
    --primary-dark: #005577;
    --secondary: #1F7A3A;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


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

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


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

.custom-heading {
	font-size: 2rem; /* Example font size */
    font-weight: bold; /* Example font weight */
    margin: 0; 
    color: #FFFFFF;
}


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

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

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

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

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #FFFFFF;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #FFFFFF;
    background-color: #185F2D;
    border-color: #185F2D;
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

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


/*** quote form ***/
.bottom-qoute {
  background: #333a5f;
  padding: 20px;
  color: white;
  font-size: 20px;
}

.bottom-qoute a {
  background: white;
  border-radius: 7px;
  padding: 20px;
  color: var(--secondary);
  font-size: 15px;
}

.bottom-qoute a:hover {
  border: 1px solid #000000;
  color: black;
}

.qf-quote-popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.65);
  display: none;
}

.qf-bx {
  width: 450px;
	
  background-color: #f0f1f1;
  margin: 50px auto;
  padding: 0;
}

.qf-bx .qf-popup-hdr {
  position: relative;
  background-color: var(--primary);
  text-align: center;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.qf-bx .qf-popup-hdr .qf-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #0c0c0c;
  text-align: center;
  background-color: #d6d6d5;
  cursor: pointer;
  border: 0;
  line-height: 40px;
  padding: 0;
}

.quote_btn-container {
  flex-direction: column;
  align-items: center;
}

.quote_btn-container a {
  margin: 10px 0;
}

@media screen and (max-width: 900px) {
  .qf-bx {
    width: 90%;
    margin: 50px auto;
  }
}

.qf-popup-body {
  padding: 10px 30px;
}

.qf-popup-body .flx {
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}

.qf-popup-body .flx input:last-child {
  margin-right: 0;
}

.qf-popup-body input,
.qf-popup-body textarea {
  width: 100% !important;
  padding: 10px !important;
  background-color: #e5e5e5 !important;
  display: block;
  margin: 5px;
  border-radius: 8px;
  border: 1px solid #9d9e9e;
}

.qf-popup-body button {
  background-color: var(--primary) !important;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  width: 100%;
  color: white;
  font-size: 1.2rem;
  border: none;
}


/**** end  ***/


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

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

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

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

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

@media (max-width: 991.98px) {
    .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: var(--dark);
    }

    .navbar-dark .navbar-brand custom-heading {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .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;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        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;
    }

    .sticky-top.navbar-dark .navbar-brand custom-heading {
        color: var(--primary);
    }
}


/*** Carousel ***/
#header-carousel .carousel-item > img {
    display: block;
}

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

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        height: calc(100svh - 82px);
        min-height: 540px;
        max-height: 680px;
        overflow: hidden;
        background: #091E3E;
    }

    #header-carousel .carousel-item > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 54% center;
    }

    #header-carousel .carousel-item:first-child > img {
        object-position: 58% center;
    }

    .carousel-caption {
        padding: 0 42px 76px;
    }

    .carousel-caption p {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 1rem !important;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: clamp(2.1rem, 10vw, 2.9rem);
        line-height: 1.1;
        font-weight: 700 !important;
        margin-bottom: 1.35rem !important;
    }

    .carousel-caption .btn {
        padding: .85rem 1.2rem !important;
        margin: .25rem .35rem !important;
        min-width: 132px;
    }
}

@media (max-width: 390px) {
    .carousel-caption {
        padding-left: 34px;
        padding-right: 34px;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2.05rem;
    }

    .carousel-caption .btn {
        min-width: 118px;
        padding-left: .9rem !important;
        padding-right: .9rem !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


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

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


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

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

.service-item .service-icon i {
    transform: rotate(45deg);
}

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

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

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

.review-avatar {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 50%;
    background: #8d6e63;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-avatar-image {
    background: var(--secondary);
}


/*** 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);
}

/*** Vehicle Logos ***/
.vendor-carousel {
    padding: 12px 0;
}

.vendor-carousel:not(.owl-loaded) {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.vendor-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.vendor-carousel .owl-item {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel img {
    flex: 0 0 auto;
    width: auto !important;
    max-width: 132px;
    max-height: 72px;
    object-fit: contain;
    margin: 0 auto;
    scroll-snap-align: center;
}

@media (max-width: 767.98px) {
    .vendor-carousel {
        padding: 8px 0;
    }

    .vendor-carousel:not(.owl-loaded) {
        min-height: 88px;
        gap: 16px;
    }

    .vendor-carousel .owl-item {
        min-height: 88px;
    }

    .vendor-carousel img {
        max-width: 104px;
        max-height: 58px;
    }
}


/*** 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/cash-for-cars-main-img.webp") center center no-repeat;
    background-size: cover;
}

@media (max-width: 767.98px) {
    .bg-header {
        background-image: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/cash-for-cars-main-img-mobile.webp");
    }
}

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

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

.error-code {
    font-size: 96px;
    line-height: 1;
    font-weight: 800;
}

.error-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    font-size: 38px;
    transform: rotate(-45deg);
}

.error-icon i {
    transform: rotate(45deg);
}

.error-link {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
    transition: .5s;
}

.error-link:hover {
    color: #FFFFFF;
    background: var(--primary) !important;
}

.error-link:hover i {
    color: #FFFFFF !important;
}

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

#more {display: none;}

.responsive {
  width: 100%;
  height: auto;
	margin-top: 20px;
}

.phone {
  align: center;
  border: 3px solid green;
}

.map-container {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* Aspect ratio 16:9 (divide 9 by 16 = 0.5625 or 56.25%) */
    }

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


/* Styles for desktop */
.button-container {
  display: none; /* Hide on desktop by default */
}

/* Styles for mobile devices */
@media only screen and (max-width: 600px) {
  .button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Ensure buttons are evenly spaced */
    background-color: rgba(0, 0, 0, 0.2); /* semi-transparent background */
    padding: 0.5px 0; /* padding for better visibility */
    z-index: 999; /* Ensure buttons are above other content */
  }

  .call-button,
  .quote-button {
    flex: 1; /* Each button takes up equal space */
    padding: 15px 20px;
    border: 0.5px solid white;
    border-radius: 0px; /* Adjust the radius as needed */
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }

  .call-button {
    background-color: #5B5EA6;
  }

  .quote-button {
    background-color: var(--secondary);
  }
}

@media (max-width: 767px) {
    .container-fluid.facts,
    .container-fluid.facts .container {
        display: none;
    }
}
	
 .faq-item {
            margin-bottom: 20px;
        }
        .question {
            font-weight: bold;
            cursor: pointer;
        }
        .answer {
            padding: 10px;
            display: none;
        }
        
@media (max-width: 600px) {
            .container1 {
                padding: 15px;
            }
        }
        
.container1 {
            max-width: 800px;
            margin: 20px auto;
            padding: 30px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
