*{box-sizing: border-box}
*{
    scroll-padding-top: 100px;
}
@font-face {
    font-family: gb;
    /*src: url(../fonts/GOTHICB.woff);*/
    src: url(../fonts/Quicksilver.ttf);
}
@font-face {
    font-family: gl;
    /*src: url(../fonts/GOTHIC.woff);*/
    src: url(../fonts/Quicksilver.ttf);
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
}
input{ font-family: 'Poppins', sans-serif !important;}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
h1, h2, h3 {
    font-size: 35px;
    line-height: 1.15em;
    font-family: gb;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
    color: #202020;
}
h4, h5, h6 {
    line-height: 1.3em;
    font-family: gl;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
    color: #202020;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
p {
    font-size: 16px;
}
.clear {
    clear: both;
}
.row {
    margin: 0 auto;
}
.img-100 {
    width: 100%;
}
.white {
    color: #FFF;
}
.blue {color: #f48020;}
/* header */

/*.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
}*/

.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 10%);
    width: 100%;
    z-index: 3;
    position: sticky;
    top: 0;
    /*float: left;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
}
a.logo-text {
    font-size: 30px;
    font-weight: 400;
    font-family: gb;
    padding: 0 10px;
    text-transform: uppercase;
    margin: 30px 0;
    display: inline-block;
    text-decoration: none;
    text-decoration: none;
    width: 100%;
}
a.logo-text span {
    color: #f48020 !important;
}
.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    /*background-color: #fff;*/
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
        font-weight: 600;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
    color: #f48020;
}

.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 30px 20px;
    text-decoration: none;
}


header .container.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.header_info {
    display: inline-flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
li.online_book_btn {
    font-size: 17px;
    display: flex;
    align-items: center;
    border-right: 1px solid #00000012;
    padding-right: 14px;
}
.header_info a {
    line-height: 1.4em;
    font-weight: 400;
    color: #f48020;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 200px;
}
.header_info a:hover {
    color: #cc3649;
}
.header_info i {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    text-align: center;
    color: rgb(255 255 255);
    float: left;
    border-radius: 50px;
    transition: all .2s;
    /* background: #004eab; */
    background: #f48020;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.header_info a:hover i {
    transition: all 0.3s ease 0s;
}
.header_info span {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-shadow: none;
}
.menu-nav .container {
    width: 100%;
    max-width: 100%;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}


/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        /*clear: none;*/
        /*float: right;*/
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }
}



.menu-nav {
    background: #f0f0f0;
}








.gray-bg {
    background-color: #fbfbfd;
}
.home-sec {
    /*background: url(../img/banner-img2.jpg);*/
    background: url(../img/slider-img.jpg);
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
    padding: 150px 0 220px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
section.section-padding {
    padding: 5% 30px 4%;
}

.title-text {
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 400;
}



.contact-con {
    padding: 30px 50px;
    background-color: #121212;
}
.contact-con .col-md-6, .contact-con .col-md-12 {
    padding: 10px;
}
/*.main-quote-form {*/
/*    padding: 15px;*/
/*    background: #fff;*/
/*    margin-top: -100px;*/
/*    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);*/
/*}*/
.main-quote-form .display-flex {
    display: flex;
}
.main-quote-form .col-md-5 {
    background-image: url(../img/about-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.40);
    background-blend-mode: multiply;
    padding: 0;
    position: relative;
    min-height: 300px;
}
.col-md-5:after {
    content: '302 Scrapcars';
    position: absolute;
    right: -128px;
    transform: rotate(-90deg);
    top: 48%;
    background: #ffffff;
    /* background-image: url(../img/Logo.png); */
    background-repeat: no-repeat;
    background-size: 100%;
    width: 300px;
    height: 45px;
    box-shadow: 0px 0px 10px 0px rgb(255 255 255 / 50%);
    font-size: 35px;
    text-align: center;
    line-height: 1.2em;
    font-family: 'gb';
}
.main-quote-form .col-md-7 {
    padding: 0;
}

.sep {
    width: 200px;
    text-align: center;
    height: 2px;
    background: #f48020;
    margin: 20px auto 7%;
}
.process-inn {
    text-align: center;
    position: relative;
    padding: 0 30px;
}
.process-inn:after {
    position: absolute;
    content: "";
    background-image: url(../img/circle-sep.png);
    top: 37%;
    right: -20px;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s;
    transform: rotate(55deg);
}
.process-inn:hover:after {
    transform: rotate(360deg);
}
.process-inn.process-inn-lastchild:after {
    display: none;
}

.process-inn.process-inn-lastchild {
    padding-right: 0;
}
.process-inn.process-inn-firstchild {
    padding-left: 0;
}

.process-inn h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-inn:hover img {
    transform: rotatey(180deg);
}

.process-inn img {
    transition: .3s;
    margin-bottom: 20px;
}
.float_right .choose-inn {
    text-align: right;
}

.why-choose-con .col-md-6 {
    padding: 0 30px;
}
.choose-inn h4 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5em;
}
.choose-disc p {
    margin-bottom: 0;
}
.choose-inn {
    margin-bottom: 70px;
    position: relative;
}

/*.choose-inn-icon {
    width: 75px;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0px 0px 0px 3px rgb(0, 164, 227);
    margin-bottom: 10px;
}*/
.choose-inn-icon {
    width: 75px;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
    margin-bottom: 10px;
    position: absolute;
    top: -40px;
    left: -10px;
    background: #fff;
    border: 3px solid #f48020;
    transition: .3s all;
}
.choose-inn:hover .choose-inn-icon {
    box-shadow: 0px 0px 0px 4px #f48020;
}
.choose-disc {
    padding: 30px;
    margin-top: 30px;
    margin-left: 30px;
    border: 1px dashed #ccc;
    border-radius: 20px;
}
.choose-inn-icon img {
    width: 100%;
}
section.call-to-action {
    padding: 30px 10px 20px 10px;
    background: #f48020;
}

.call-to-action .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

section.call-to-action h4 {
    margin-bottom: 10px;
    color: #ffffff;
}



a.f-logo {
    font-size: 30px;
    font-weight: 400;
    font-family: gb;
    padding: 10px 0px;
    text-transform: uppercase;
    display: inline-block;
    color: #0e0e0e;
}

footer {
    /*background: #f48020;*/
    background: #121212;
    padding: 50px 0px;
}
footer .col-md-12 {
    padding: 0;
    border-bottom: 1px solid #ffffff47;
    margin-bottom: 30px;
}
footer p, footer a, footer li {
    color: #8d8d8d;
    font-size: 16px;
}
ul.footer-info li {
    list-style: none;
    margin-bottom: 10px;
}
a.footer-quote-btn {
    display: block;
    float: right;
    background: #fff;
    padding: 15px 30px;
    color: #020202;
    font-family: gl;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .3s;
}
a.footer-quote-btn:hover {
    background-color: #000000;
    color: #ffffff;
}
ul.footer-info {
    padding: 0;
}
.copyright {
    background: #202020;
    padding: 15px 30px;
}

.copyright p {
    margin: 0;
    font-size: 12px;
    color: #fff;
    text-align: center;
}
.copyright a {
    color: #f48020;
}
footer a:hover {
    color: #ffffff;
}
ul.social-icon {
    padding: 0;
    margin: 0;
}

ul.social-icon li {
    display: inline-block;
    list-style: none;
    margin-right: 3px;
}

ul.social-icon li i {
    color: #fff;
}

ul.social-icon li a {
    padding: 12px;
    background: #ffffff33;
    width: 45px;
    height: 45px;
    color: #000;
    text-align: center;
    border-radius: 50px;
    display: block;
}


footer h4 {
    font-size: 18px;
    color: #a5a5a5;
}

table.footer-table {border: 1px solid #ffffff;}

table.footer-table td {border: 1px solid #ffffff30;padding: 10px;color: #8d8d8d;}
.time-con {padding: 20px;text-align: center;background: #efefef;}

.time-con h4 {margin-bottom: 0;font-size: 15px;letter-spacing: 0.3px;}




@media (max-width: 1200px) {
 span.output_message {
    display: block;
    margin: 0;
}
span.output_message.success-highlight {margin: 15px 0  0;}
}

@media (max-width: 990px) {
.process-inn:after {
    display: none;
}
.main-quote-form {
    margin-top: 0px;
}
.col-md-5:after {
    display: none;
}
.title-text {
   font-size: 6vh;
}
section.home-sec {
    padding: 50px 30px;
}
.contact-con {
    padding: 30px;
}
section.section-padding {
    padding: 50px 15px;
}
}


@media (max-width: 767px) {
    ul.header_info{

        display: none;
    }
.title-text {
        font-size: 7vw;
        line-height: 1.4;
    }
a.logo {
    width: 250px;
    padding: 0 !important;
}
img.footer-logo {
    width: 100%;
}
a.footer-quote-btn {
    float: none;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
.header .container {
    padding: 10px;
}
header .container.d-flex {
    display: block !important;
    padding: 0;
}
.header .align-items-center.d-flex.justify-content-between {
    row-gap: 12px;
    flex-direction: column;
    align-items: flex-start !important;
}
.header_info a {
    width: 140px;
    font-size: 13px;
}
.header_info i {
    width: 35px;
    height: 35px;
    font-size: 20px;
}
.call-to-action .container {
    flex-direction: column;
}
label.menu-icon {
    position: absolute !important;
    right: 0;
    top: 0;
}
.header li a {
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid #dbdbdb;
}
.new-contact-cls {
    margin: 0 !important;
}
footer .col-md-12 {
    padding: 0 15px;
}
footer {
    padding: 30px 0px 20px;
}
.contact-info h3 a {
    display: block;
    font-size: 21px;
}
.photo-gallery .item {
    margin-bottom: 20px;
}
}



@media (max-width: 450px) {
.contact-con .col-md-6, .contact-con .col-md-12 {
    padding: 0px 0 15px;
}
form.myform input {
    height: 45px !important;
    padding: 10px !important;
    font-size: 12px;
}
.contact-con-2 {
    padding: 15px 15px 0px !important;
}
}


div#exampleModal.modal.show {
    opacity: 1;
}


.modal-body button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #f48020;
    border-radius: 50%;
    opacity: 1;
    text-shadow: 0 0 BLACK;
    color: #fff;
    font-size: 21px !important;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.quote-btn {
    display: inline-block;
    /*float: right;*/
    background: #f48020;
    padding: 20px 30px;
    color: #fff;
    font-family: gl;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .3s;
}

.quote-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.process-inn h4 {
    margin-bottom: 10px;
}

ul.header_info a {
    white-space: nowrap;
}



.phone-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: transform 0.2s ease;
}

@media (max-width: 767px) {
  
    .phone-btn{
        display: flex;
    }
}
.phone-btn:hover {
  transform: scale(1.1);
}

.phone-icon {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}




footer a.footer-quote-btn:hover {
    background: #f48020;
}



.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
}


/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}