@font-face {
    font-family: "HelveticaNeueLTStd-Lt";
    src: url('../css/fonts/HelveticaNeueLTStd-Lt.otf');
}

@font-face {
    font-family: "HelveticaNeueLTStd-Bd";
    src: url('../css/fonts/HelveticaNeueLTStd-Bd.otf');
}

@font-face {
    font-family: "Roboto-Regular";
    src: url('../css/fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: "Roboto-Thin";
    src: url('../css/fonts/Roboto-Thin.ttf');
}

@font-face {
    font-family: "Roboto-Bold";
    src: url('../css/fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: "Roboto-BoldItalic";
    src: url('../css/fonts/Roboto-BoldItalic.ttf');
}

@font-face {
    font-family: "Roboto-Italic";
    src: url('../css/fonts/Roboto-Italic.ttf');
}

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

html,
body {
    font-family: 'HelveticaNeueLTStd-Lt', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

b {
    font-family: 'HelveticaNeueLTStd-Bd', sans-serif;
}

h4 {
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
}

/* Var */
:root {
    --orange: #f7a600;
    --white: #ffffff;
    --black: #131313;
    --grey: #8C8C8B;
}

/* Var ends */

/* Background */
.bg-orange {
    background-color: var(--orange);
}

.bg-black {
    background-color: var(--black);
}

.bg-grey {
    background-color: var(--grey);
}

/* Buttoms */
.btn-yellow {
    background: var(--orange);
    ;
    border: 1px solid var(--orange);
    ;
    border-radius: 28px;
    color: var(--black);
    font-size: 16px;
    width: 16rem;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    font-weight: 700;
}

.btn-link:hover {
    color: var(--black);
}

.btn-yellow[type="button"] {
    font-size: 22px;
}

.btn-yellow:hover {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--black);
    font-weight: 700;
}

.button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.button-text {
    text-align: left;
}

.button-arrow {
    margin-left: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: #d0d0d0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #131313;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #131313;
}

/* Continental */
.bg-arrow-1 {
    background: url(/img/continental/flecha-amarilla.png) no-repeat 0px 54%;
    background-size: cover;
}

.bg-arrow-2 {
    background: url(/img/continental/flecha-gris.png) no-repeat 0px 54%;
    background-size: cover;
}

.bg-arrow-1 p {
    font-style: normal;
    font-weight: 700;
    font-size: 27px;
    line-height: 36px;
    padding-left: 0.5rem;
}

.bg-arrow-2 p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    padding-left: 2.5rem;
}

.form-control:focus {
    box-shadow: none;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

/* Continental end */


/* Navbar */
.nav-link:active {
    color: #b27117;
    text-decoration: underline;
}

/* Navbar ends */

/* Hero */
.hero-text {
    text-transform: uppercase;
    display: block;
    font-size: calc(1.7vw + 2vh + 1vmin);
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--white);
    /* text-shadow: rgba(255, 255, 255, 0.51) 0px 0px 20px; */
    top: calc(1vw + 2vh + 1vmin);
    position: relative;
}

.hero-text-m {
    display: none;
}

.hero-text-box {
    line-height: 0.6;
    display: flex;
    letter-spacing: 2px;
}

.hero-b-value {
    font-size: 7rem;
}

.hero-s-value {
    font-size: calc(0.4vw + 2vh + 1vmin);
    margin: 0 0.3rem;
}

.hero-s-value:first-of-type {
    font-weight: 200;
    margin: 0 0.3rem;
}

.hero-s-value:last-of-type {
    font-weight: 200;
    position: relative;
    top: 50px;
}

.main-section {
    background-image: url(/img/fondos/hero-banner.png);
    background-size: cover;
    background-position: bottom;
    min-height: 84vh;
    min-width: 100%;
}

.main-box {
    /* position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%); */
    color: var(--white);
}

.main-box img {
    margin: 2rem 0 0 0;
    width: calc(13vw + 2vh + 1vmin);
}

.main-box-img img {
    position: absolute;
    right: -3rem;
    top: 20%;
    width: calc(35vw + 2vh + 1vmin);
}

/* Hero end */

/* Mechanics */

.grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.grid_3 div {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-items: center;
    padding: 1.5rem 3rem;
    position: relative;
}

.grid_3 img:first-of-type {
    left: 2px;
}

.grid_3 span:first-of-type {
    right: 2px;
    color: var(--orange);
    font-weight: 700;
    font-size: calc(6.5vw + 2vh + 1vmin);
    top: 35%;
}

.grid_3 span {
    color: #131313;
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-size: calc(1.3vw + 1.5vh + 1vmin);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.grid_3 p {
    color: #131313;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 26px;
    margin-right: 2%;
}

.grid_3_1 {
    grid-area: 1 / 1 / 2 / 2;
}

.grid_3_2 {
    grid-area: 1 / 2 / 2 / 3;
}

.grid_3_3 {
    grid-area: 1 / 3 / 2 / 4;
}

.grid_9 {
    display: grid;
    /* grid-template-columns: repeat(50% 25% 25%); */
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    align-items: center;
    padding: 0;
    width: 690px;
}

.grid_9 span {
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    color: var(--black);
    font-size: 26px;
    letter-spacing: 0;
    line-height: 2;
    padding: 1.5rem;
}

.grid_9_1 {
    grid-area: 1 / 1 / 2 / 2;
    text-align: left;
}

.grid_9_1 span {
    font-family: "HelveticaNeueLTStd-Lt", sans-serif;
    text-transform: uppercase;
}

.grid_9_2 {
    grid-area: 1 / 2 / 2 / 3;
}

.grid_9_3 {
    grid-area: 1 / 3 / 2 / 4;
}

.grid_9_4 {
    grid-area: 2 / 1 / 3 / 2;
    text-align: left;
    border-bottom: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
}

.grid_9_5 {
    grid-area: 2 / 2 / 3 / 3;
    border-bottom: 2px solid var(--orange);
}

.grid_9_6 {
    grid-area: 2 / 3 / 3 / 4;
    border-bottom: 2px solid var(--orange);
}

.grid_9_7 {
    grid-area: 3 / 1 / 4 / 2;
    text-align: left;
    border-bottom: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
}

.grid_9_8 {
    grid-area: 3 / 2 / 4 / 3;
    border-bottom: 2px solid var(--orange);
}

.grid_9_9 {
    grid-area: 3 / 3 / 4 / 4;
    border-bottom: 2px solid var(--orange);
}

.grid_9_1,
.grid_9_2,
.grid_9_3 {
    background-color: var(--orange);
    position: relative;
}

.grid_9_3::after,
.grid_9_2::after {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    bottom: 0px;
    background-position: center;
    z-index: 99999;
    background-repeat: no-repeat;
}

.grid_9_3::after {
    background-image: url(/img/4-llantas.svg);
    background-size: 128px;
}

.grid_9_2::after {
    background-image: url(/img/2-llantas.svg);
    background-size: 70px;
}


/* Mechanics end */
/* Centers */
.box-centers {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 350px;
    font-size: 12px;
    text-align: left;
}

.box-center {
    height: 200px;
}

.bg-wheel {
    background: url("/img/neumatico-negro.png") no-repeat;
    background-position: 90% 15%;
    border: 2px solid #131313;
    border-radius: 10px;
    margin-right: 0px;
}

/* Centes end */
/* Register */
/* modal */
.modal-header {
    background-color: orange;
    margin: 1rem;
    justify-content: center;
    color: var(--white);
    border: 0;
    border-radius: 0;
}

.modal-content {
    border-radius: 0;
    border: 4px solid orange;
}

.modal-footer {
    justify-content: space-around;
}

.modal-content .grid_2 {
    grid-template-columns: 46% 46%;
    padding: 2%;
    margin: 1rem;
}

/* modal end */
.grid_2 {
    display: grid;
    grid-template-columns: 40% 58%;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.grid_2_1 {
    grid-area: 1 / 1 / 2 / 2;
}

.grid_2_2 {
    grid-area: 1 / 2 / 2 / 3;
}

/* #register-completed,
#contact-completed {
    background: url('/assets/images/fondo/bg-black.jpg') no-repeat top center;
    background-size: cover;
} */

#register-completed h2,
#contact-completed h2 {
    font-family: 'HelveticaNeueLTStd-Lt', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 80px;
    line-height: 96px;
    text-align: center;
    color: #131313;
}

#contact-completed h2 {
    font-size: 60px;
    font-weight: 200;
}

#register-completed span,
#register-completed h2 span,
#contact-completed span,
#contact-completed h2 span {
    color: #F7A600;
    font-weight: bold;
}

#register-completed p,
#contact-completed p {
    font-family: 'HelveticaNeueLTStd-Lt', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #131313;
    text-align: center;
}

/* Register ends */



/* Media queries */

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

    /* Hero 767px */
    .fs-7 {
        font-size: 13px;
    }

    .hero-m-log {
        position: relative;
        background: #1d1d1b;
        bottom: 0;
    }

    .hero-m-log img {
        width: calc(51vw + 2vh + 1vmin) !important;
        margin: 0 !important;
        position: unset !important;
        padding: 1rem;
    }

    .main-section {
        background-image: linear-gradient(to right bottom,
                #ffffffbf,
                #ffffff61),
            url(/img/fondos/fondo-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-position-y: -5rem;
        min-height: 86vh;
    }

    .main-box {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0%, 0%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 85vh;
    }

    .main-box img {
        margin: 2rem 0 0 0;
        /* width: calc(42vw + 2vh + 1vmin); */
        width: 100%;
        position: relative;
        bottom: -5px;
        align-self: center;
    }

    .hero-text {
        display: none;
    }

    .hero-m img {
        position: absolute;
        top: 65px;
        right: -15%;
        z-index: 0;
        width: 52%;
        bottom: auto;
        rotate: 30deg;
    }

    .hero-text-m {
        text-transform: uppercase;
        display: block;
        font-size: calc(1.7vw + 2vh + 1vmin);
        letter-spacing: 0;
        line-height: 1.5;
        color: #131313;
        text-shadow: rgba(255, 255, 255, 0.51) 0px 0px 20px;
        top: calc(1vw + 2vh + 1vmin);
        position: relative;
        /* font-size: 2rem; */
        letter-spacing: 0;
    }

    .bg-arrow-1 p {

        font-size: 1.3em;
    }

    .bg-arrow-2 p {
        font-size: 13px;
    }

    /* grids */

    .grid_2 {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
        grid-column-gap: 0px;
        grid-row-gap: 20px;
    }

    .grid_2_1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid_2_2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .box-center {
        height: auto;
    }

    .grid_3 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 20px;
    }

    .grid_3 div {
        padding: 1rem;
        justify-content: center;
    }

    .grid_3 span {
        font-size: calc(5vw + 1.5vh + 1vmin);
        margin-bottom: 0.5srem;
    }

    .grid_3 span:first-of-type {
        right: 17%;
        color: var(--orange);
        font-weight: 700;
        font-size: calc(30vw + 2vh + 1vmin);
        top: 26%;
    }

    .grid_3_1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid_3_2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid_3_3 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .grid_9 {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 10px;
        text-align: center;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .grid_9 span {
        font-size: calc(-0.8vw + 2vh + 1vmin);
        line-height: 2;
        padding: 1rem;
    }

    .grid_9_2::after {
        background-image: url(/img/2-llantas.svg);
        background-size: 32px;
    }

    .grid_9_3::after {
        background-image: url(/img/4-llantas.svg);
        background-size: 52px;
    }

    /* contact */
    #contact-completed h2 {
        font-size: 30px;
        line-height: 1.5;
        text-align: center !important;

    }
}

.center_list {
    display: none;
    padding: 10px;
    background-color: var(--white);
}

.center_list ul {
    padding: 0;
    list-style: none;
    outline: 0;
    margin: 0;
}

.center_list li {
    padding: 5px 10px;
    padding-bottom: 2px;
    cursor: pointer;
    margin: 0;
    border: 1px solid var(--white);
}

.center_list li:hover {
    border: 1px solid #003eff;
    background: #007fff;
    color: var(--white);
}

#register_form {

    input[type="text"],
    input[type="email"],
    input[type="email_confirmation"],
    input[type="date"],
    select {
        border-radius: 209px;
        background-color: rgba(244, 244, 244, 1);
        color: var(--black);
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="email_confirmation"]::placeholder,
    input[type="date"]::placeholder {
        color: var(--black);
    }
}

.hero-section {
    /* background-image: url('/img/fondos/hero-banner.png'); */

    background-image: linear-gradient(to right bottom,
            #00000080,
            #0a0a0a5c),
        url(/img/fondos/hero-banner.png);
    background-size: cover;
    background-position: center;
    min-height: 86vh;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text-container {
    color: white;
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    display: block;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 4.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.offer-box {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    max-width: 1025px;
}

.offer-text {
    font-size: 60px;
    font-weight: bold;
    color: #FFB800;
    line-height: 65px;
    letter-spacing: 0;
}

.offer-highlight {
    font-size: 60px;
    font-weight: bold;
    color: white;
    font-weight: bold;
    line-height: 65px;
    letter-spacing: 0;
}

.visa-card-container {
    position: absolute;
    right: 18%;
    bottom: 10%;
}

.visa-card-image {
    width: 540px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.disclaimer-text {
    padding-top: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh;
        background-position: right;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 2rem;
        text-align: left;

    }

    .offer-box {
        background: transparent;
        padding: 0;
        margin: 0 auto;
        text-align: left;

        .offer-text {
            font-size: 34px;
            font-weight: bold;
            color: #FFB800;
            line-height: 38px;
            letter-spacing: 0;
        }

        .offer-highlight {
            font-size: 34px;
            font-weight: bold;
            color: white;
            font-weight: bold;
            line-height: 38px;
            letter-spacing: 0;
        }
    }

    .visa-card-container {
        position: relative;
        margin: 2rem 0;
        right: auto;
        bottom: 0%;
    }

    .visa-card-image {
        width: 314px;
    }
}

.text-visa {
    font-size: 14px;
    color: var(--orange);
}

/* 
chatbot
*/

.container-chatbot {

    z-index: 1050;

    p,
    a,
    span,
    button {
        color: var(--black);
    }

    .loaderSpinner {
        width: 48px;
        height: 48px;
        border: 2px solid var(--black);
        border-radius: 50%;
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loaderSpinner::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 50%;
        top: 0;
        background: var(--orange);
        width: 3px;
        height: 24px;
        transform: translateX(-50%);
    }

    .w-chat-1 {
        width: 500px;
        z-index: 1060;
        margin-bottom: 5%;

        @media (max-width: 768px) {
            width: 350px;
        }
    }

    .w-chat-2 {
        height: 500px;
    }

}