@font-face {
    font-family: 'gotham_blackregular';
    src: url('webfonts/gotham_black_regular-webfont.woff2') format('woff2'),
         url('webfonts/gotham_black_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gothambook';
    src: url('webfonts/gothambook_0-webfont.woff2') format('woff2'),
         url('webfonts/gothambook_0-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gothamlight';
    src: url('webfonts/gotham-light-webfont.woff2') format('woff2'),
         url('webfonts/gotham-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gothammedium';
    src: url('webfonts/gothammedium_0-webfont.woff2') format('woff2'),
         url('webfonts/gothammedium_0-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    --blanco: #fff;
    --negro: #000;
    --rojo: #a4171e;
    --gris: #3a3a3a;
    --gotham-blackr: 'gotham_blackregular', sans-serif;
    --gotham-book: 'gothambook', sans-serif;
    --gotham-light: 'gothamlight', sans-serif;
    --gotham-medium: 'gothammedium', sans-serif;
}

html {
    font-size: 62.5%;
}

*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--blanco);
    font-size: 2rem;
    min-height: 100vh;
    text-align: justify;
}

img {
    height: auto;
    max-width: 100%;
}

h1 {
    font-size: 5rem;
}
h2 {
    font-size: 4rem;
}

ul {
    color: var(--blanco);
    list-style: none;
    padding: 0;
}

section {
    padding: 8rem 0;
}

header {
    align-items: center;
    background-color: var(--blanco);
    display: flex;
    font-family: var(--gotham-book);
    left: 0;
    justify-content: space-between;
    padding: 2rem 3.5rem;
    position: fixed;
    top: 3rem;
    transition: .6s;
    width: 100%;
    z-index: 99;
}

header.sticky {
    animation-duration: 1s;
    animation-name: slidedown;
    background: var(--blanco);
    opacity: .9;
    padding: 2rem 3.5rem;
    position: fixed;
    top: 0;
}
header.sticky .menu a {
    color: var(--negro);
    text-shadow: none;
}
@keyframes slidedown {
    from {
        margin-top: -150px;
    }
    to {
        margin-top: 0px;
    }
}
header.sticky .menu a:hover {
    color: var(--blanco);
    background: var(--rojo);
    padding: 5px 15px;
    text-shadow: none;
}
header .brand {
    color: var(--cblanco);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}
header .brand img {
    min-width: 20rem;
    width: 23rem;
}
header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .menu a {
    background-color: var(--blanco);
    color: var(--negro);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 5px;
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s;
    transition-property: color, background;
}
header .menu a:hover {
    color: var(--blanco);
    background: var(--rojo);
    padding: 5px 15px;
    text-shadow: none;
}
header .btn-hamb {
    font-size: 25px;
    cursor: pointer;
    display: none;
}

header .menu img {
    display: none;
}

@media (max-width: 1060px) {
    header {
        position: relative;
        top: 0;
    }
    header.sticky {
        padding-left: 35px;
        padding-right: 35px;
    }
    header .brand img {
        width: 250px;
    }
    header .btn-hamb {
        display: block;
    }
    header .menu {
        position: fixed;
        background: var(--blanco);
        flex-direction: column;
        min-width: 400px;
        height: 100vh;
        top: 0;
        right: -46rem;
        padding: 80px 50px;
        transition: .5s;
        transition-property: right;
        z-index: 99;
    }
    header .menu.active {
        right: 0;
    }
    header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }
    header .menu img {
        display: block;
        position: absolute;
        top: 15%;
        width: 50%;
    }
    header .menu a {
        display: block;
        font-size: 20px;
        margin: 20px;
        padding: 5px 15px;
        text-shadow: none;
    }
    header .menu a:hover {
        color: var(--blanco);
        background-color: var(--rojo);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
}

.hero-section .main-slider {
    position: relative;
    width: 100%;
}

.hero-section .slide {
    position: relative;
}

.slick-prev {
    left: 15px;
}

.slick-prev:before {
    content: '\f137';
}

.slick-next:before {
    content: '\f138';
}

.slick-next {
    right: 15px;
}

.slick-prev, .slick-next {
    z-index: 100;
}
.slick-prev:before, .slick-next:before {
    color: var(--rojo);
    font-family: 'FontAwesome';
    font-size: 25px;
}

/* new__generation */
.new_generation p {
    font-family: var(--gotham-book);
    line-height: 3.7rem;
}
.new_generation .quality {
    margin: 3rem auto;
}
.new_generation .quality span {
    border: 1px solid var(--negro);
    border-radius: 3rem;
    font-family: var(--gotham-book);
    font-size: 1rem;
    padding: 1.7rem 1.3rem;
}
@media screen and (min-width: 768px) {
    .new_generation .quality span {
        font-size: 1.7rem;
    }
}
.new_generation .new_generation__logo {
    margin-bottom: 4rem;
}
.new_generation .new_generation__warranty {
    margin-bottom: 7rem;
}

@media screen and (max-width: 1060px) {
    .new_generation .new_generation__warranty img {
        max-width: 65rem;
    }
}

@media screen and (max-width: 450px) {
    .new_generation .new_generation__warranty img {
        max-width: 35rem;
    }
}

/* About us */
.aboutus {
    position: relative;
}
.img_tires {
    display: none;
}

@media screen and (min-width: 768px) {
    .img_tires {
        bottom: -8rem;
        display: block;
        position: absolute;
        right: 0;
        width: 35%;
        z-index: 10;
        -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
        animation: ImgBounce 5s ease-in-out 0s infinite alternate;
    }
}

@media screen and (min-width: 1200px) {
    .img_tires {
        width: auto;
    }
}

@media screen and (min-width: 1024px) {
    .aboutus {
        background-color: var(--blanco);
        background-image: url(../images/aboutus.jpg);
        background-position: 60% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.aboutus .logo {
    margin-bottom: 3rem;
}
.aboutus p {
    padding: 3rem 0;
}
.team {
    background-color: var(--rojo);
    color: var(--blanco);
}
.team .direction {
    font-family: var(--gotham-blackr);
    font-size: 4.3rem;
}

.about_us {
    background: rgb(52,54,52);
    background: linear-gradient(180deg, rgba(52,54,52,1) 0%, rgba(22,23,22,1) 19%, rgba(0,0,0,1) 57%, rgba(0,0,0,1) 100%);
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    section.about_us {
        padding-bottom: 0;
    }
}

.about_us p {
    color: var(--blanco);
    font-family: var(--gotham-book);
    line-height: 3.7rem;
}
.about_us .number_one img {
    max-width: 233px;
    height: auto;
    margin: 3rem 0;
}
.about_us .url_site,
.about_us .social_media {
    text-transform: uppercase;
}

.about_us .social_media {
    display: inline-block;
    text-align: center;
}
.about_us .social_media li a {
    color: var(--blanco);
    text-decoration: none;
    transition: all 300ms ease;
}
.about_us .social_media li a:hover {
    color: var(--rojo);
}
@media screen and (min-width: 1024px) {
    .about_us .number_one img {
        max-width: 283px;
        height: auto;
    }
    .about_us .social_media {
        display: flex;
    }
    .about_us .social_media li {
        margin-right: 2rem;
    }
    .about_us .social_media li:last-child {
        margin-right: 0;
    }
}

/* Tires */
.tires,
.hs88 {
    background: rgb(208,208,209);
    background: linear-gradient(90deg, rgba(208,208,209,1) 0%, rgba(255,255,255,1) 50%, rgba(208,208,209,1) 100%);
}
.tires .strip {
    background-color: var(--rojo);
    color: var(--blanco);
    padding: 0.5rem 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.tires .hs86 {
    margin-top: 9rem;
}
.tires .hs86 img,
.tires .table img,
.hs86t .hs86t_title img,
.hs86t .table img,
.hs88 .hs88_title img,
.hs88 .table img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1024px) {
    .tires .strip {
        padding-right: 3rem;
        text-align: right;
        width: 35%;
    }
}
.tires .position ul,
.hs86t .position ul,
.hs88 .position ul {
    margin-top: 5rem;
}
.tires .position ul li,
.hs86t .position ul li,
.hs88 .position ul li {
    color: var(--negro);
    font-family: var(--gotham-book);
    margin-bottom: 2rem;
    position: relative;
}
.tires .position ul li p,
.hs86t .position ul li p,
.hs88 .position ul li p {
    margin-left: 3rem;
    letter-spacing: 0.2rem;
}
.tires .position ul li::before,
.hs86t .position ul li::before,
.hs88 .position ul li::before {
    color: var(--rojo);
    content: '\f101';
    font-family: 'FontAwesome';
    position: absolute;
}

.hs86t {
    background: rgb(206,7,26);
    background: linear-gradient(180deg, rgba(206,7,26,1) 0%, rgba(69,0,2,1) 27%, rgba(0,0,0,1) 79%, rgba(0,0,0,1) 100%);
}
.hs86t .position ul li {
    color: var(--blanco);
}

/* Rolling Resistence */
.rolling {
    background-image: url(../images/rolling_bkg.jpg);
    background-position: 55% 40%;
    background-size: cover;
}
@media screen and (min-width: 1024px) {
    .rolling {
        background-position: center;
    }
}
.rolling h1 {
    color: var(--blanco);
    font-family: var(--gotham-blackr);
    font-size: 5rem;
    text-transform: uppercase;
}
.rolling h1 span {
    color: var(--rojo);
}
@media screen and (min-width: 768px) {
    .rolling h1 {
        font-size: 5.5rem;
    }
}
.rolling h2 {
    color: var(--blanco);
    font-family: var(--gotham-blackr);
    margin-top: 4rem;
}
.rolling p {
    color: var(--blanco);
    font-family: var(--gotham-light);
    margin-top: 4rem;
}
.rolling .moving {
    margin: 3rem auto;
}
.rolling .moving h2 {
    background-color: var(--rojo);
    border-radius: 3rem;
    color: var(--blanco);
    font-family: var(--gotham-blackr);
    padding: 1rem 0.3rem;
    width: 95%;
}
.rolling_features .col-12 {
    padding: 2.3rem;
}
.rolling_features .col-12 p {
    font-family: var(--gotham-book);
    margin-top: 0;
}
.rolling_features .separator {
    position: relative;
}
.rolling_features .col-12:first-child {
    background: rgb(206,7,26);
    background: linear-gradient(180deg, rgba(206,7,26,1) 0%, rgba(69,0,2,1) 100%);
}
.rolling_features p:first-child {
    font-family: var(--gotham-medium);
    text-align: left;
    text-transform: uppercase;
}
@media screen and (min-width: 768px) {
    .rolling_features .separator::after {
        content: '';
        background-image: url(../images/hr.png);
        background-position: center;
        background-repeat: no-repeat;
        height: 75%;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
    }
    .rolling_features .separator:first-child::after,
    .rolling_features .separator:nth-child(2)::after,
    .rolling_features .separator:last-child::after {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .rolling_features .separator::after {
        height: 100%;
    }
    .rolling_features .separator:nth-child(2)::after {
        display: block;
    }
}

@keyframes ImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

/* Footer */
.footer {
    background-color: var(--gris);
    background-image: url(../images/bkg_tire.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--blanco);
    padding: 8rem 0 0;
}

.footer .copyright {
    padding: 1.8rem 0;
}

.footer .address {
    margin: 5rem 0;
}

@media screen and (min-width: 768px) {
    .footer img {
        height: auto;
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {
    .footer .address {
        margin-top: 5rem;
    }
}

.footer .thm-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    color: var(--rojo);
    font-size: 17px;
    font-weight: 600;
    background-color: var(--blanco);
    padding: 13.5px 36.5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer .contact-one__btn:hover {
    background-color: var(--rojo);
    color: #fff;
}

.footer .contact-one__form textarea,
.footer .contact-one__form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	width: 100%;
	border: none;
	height: 60px;
	border: 1px solid #e5e5e5;
	color: #848484;
	outline: none;
	padding-left: 20px;
	margin-bottom: 30px;
    background-color: transparent;
    resize: none;
}

.footer .contact-one__form ::-webkit-input-placeholder {
	opacity: 1;
	color: #848484;
}

.footer .contact-one__form ::-moz-placeholder {
	opacity: 1;
	color: #848484;
}

.footer .contact-one__form :-ms-input-placeholder {
	opacity: 1;
	color: #848484;
}

.footer .contact-one__form ::-ms-input-placeholder {
	opacity: 1;
	color: #848484;
}

.footer .contact-one__form ::placeholder {
	opacity: 1;
	color: #848484;
}

.footer .contact-one__form textarea {
	height: 165px;
	padding-top: 15px;
}

.footer .contact-one__form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%;
}

.footer .contact-one__form .bootstrap-select>.dropdown-toggle {
	height: 60px;
	border-radius: 0;
	border: 1px solid #e5e5e5;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding-left: 20px;
	background-color: transparent;
}

.footer .contact-one__form .bootstrap-select .dropdown-toggle .filter-option {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
    align-items: center;
}

.footer .contact-one__form .dropdown-toggle::after {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

/* SweetAlert2 */
.swal2-popup {
    font-size: 1.5rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blanco);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: center;
        justify-content: center;
    z-index: 99999999;
}

.sk-cube-grid {
    width: 5rem;
    height: 5rem;
    margin: 10rem auto;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: var(--rojo);
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
                transform: scale3D(1, 1, 1);
    } 35% {
        -webkit-transform: scale3D(0, 0, 1);
                transform: scale3D(0, 0, 1); 
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
                transform: scale3D(1, 1, 1);
    } 35% {
        -webkit-transform: scale3D(0, 0, 1);
                transform: scale3D(0, 0, 1);
    } 
}

.fade-out {
    opacity: 0; /* Fade-out effect */
    transition: all 500ms ease;
}

/* back to top button */
#backToTopBtn {
    background-color: var(--rojo);
    border: none;
    border-radius: .7rem;
    bottom: 2rem;
    color: var(--blanco);
    cursor: pointer;
    display: none;
    font-size: 2.6rem;
    height: 5rem;
    right: 2rem;
    outline: none;
    position: fixed;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    width: 5rem;
    z-index: 100;
}

#backToTopBtn:hover,
#backToTopBtn:focus {
    background-color: var(--negro);
}