/*
Theme Name: Onyx Tires
Theme URI: https://www.onyxtires.ca/
Author: Neolys
Author URI: https://www.onyxtires.ca/
Text Domain: Onyx Tires
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #4AB749;
    --secondary-color: #064E9E;
    --container-width: 1640px;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background-color: #E7EDF5;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 30px;
}

a {
    text-decoration: none;
}

p {
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.onyx-header {
    width: calc(100% - 188px);
    display: flex;
    flex-direction: column;
    padding: 57px 94px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: transparent;
}

.onyx-header.fixed {
    width: calc(100% - 186px);
    padding: 35px 94px;
    background-color: var(--secondary-color);
}

.onyx-header-inner {
    width: 100%;
    max-width: 1760px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.onyx-header-inner .logo {
    width: 252px;
    display: flex;
    flex-direction: row;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.onyx-header.fixed .onyx-header-inner .logo {
    width: 180px;
}

.onyx-header-inner .logo img {
    width: 100%;
    height: auto;
}

.header-inner .menu {
    width: auto;
}

.onyx-header-inner .menu ul {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.onyx-header-inner .menu ul li {
    margin: 0 23px 0 0;
    display: flex;
    flex-direction: row;
}

.onyx-header-inner .menu ul li:last-child {
    margin: 0;
}

.onyx-header-inner .menu ul li a {
    padding: 17px 44px;
    border: solid 1px #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.onyx-header-inner .menu ul li a:hover,
.onyx-header-inner .menu ul li.current-menu-item a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.onyx-header-inner .navbar-toggle {
    display: none;
}

.onyx-header-inner .navbar-toggle .menu-burger {
    width: 53px;
    height: 51px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
}

.onyx-header-inner .navbar-toggle .hamburger {
    margin: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: solid 1px #fff;
    transition: 0.5s;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger {
    border-color: transparent;
}

.onyx-header-inner .navbar-toggle .hamburger .line {
    height: 3px;
    width: 35px;
    background-color: #fff;
    position: relative;
    top: 11px;
    margin: 5px auto 0 auto;
}

.onyx-header-inner .navbar-toggle .hamburger .bottom {
    transform: rotate(0deg) translateY(0px);
    transition: 0.5s;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .bottom {
    transform: translateY(-8px) rotate(-45deg);
    transition: 0.5s;
}

.onyx-header-inner .navbar-toggle .hamburger .top {
    transform: rotate(0deg) translateY(0px);
    transition: 0.5s;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .top {
    transform: translateY(8px) rotate(45deg);
    transition: 0.5s;
}

.onyx-header-inner .navbar-toggle .hamburger .middle {
    opacity: 1;
    transition: 0.6s;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .middle {
    opacity: 0;
    transition: 0.6s;
}

.onyx-header-inner .navbar-toggle .hamburger .border {
    margin: auto;
    background-color: #fff;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_top {
    animation: rightIn 0.4s 0s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_top {
    animation: leftIn 0.4s 0.3s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_left {
    animation: topIn 0.4s 0.3s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_left {
    animation: bottomIn 0.4s 0s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_bottom {
    animation: leftIn 0.4s 0s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_bottom {
    animation: rightIn 0.4s 0.3s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_right {
    animation: bottomIn 0.4s 0.3s forwards;
}

.onyx-header.open-menu .onyx-header-inner .navbar-toggle .hamburger .draw_right {
    animation: topIn 0.4s 0s forwards;
}

.onyx-header-inner .navbar-toggle .hamburger .draw_top {
    height: 2px;
    width: 51px;
    position: absolute;
    top: 0;
    left: 51px;
    transition: 1s;
}

.onyx-header-inner .navbar-toggle .hamburger .draw_left {
    height: 50px;
    width: 2px;
    position: absolute;
    top: -50px;
    left: 0;
    transition: 1s;
}

.onyx-header-inner .navbar-toggle .hamburger .draw_bottom {
    height: 2px;
    width: 50px;
    position: absolute;
    top: 49px;
    left: -50px;
    transition: 1s;
}

.onyx-header-inner .navbar-toggle .hamburger .draw_right {
    height: 51px;
    width: 2px;
    position: absolute;
    top: 51px;
    left: 49px;
    transition: 1s;
}

@keyframes rightIn {
    0% {
        left: 50px;
    }

    100% {
        left: 0px;
    }
}

@keyframes topIn {
    0% {
        top: -50px;
    }

    100% {
        top: 0px;
    }
}

@keyframes leftIn {
    0% {
        left: -50px;
    }

    100% {
        left: 0px;
    }
}

@keyframes bottomIn {
    0% {
        top: 50px;
    }

    100% {
        top: 0px;
    }
}

.home-banner {
    width: calc(100% - 100px);
    height: auto;
    padding: 61px 50px 40px 50px;
    position: relative;
    background-color: #000;
    overflow-x: hidden;
}

.home-banner .home-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -400px;
    z-index: 3;
    object-fit: contain;
    object-position: top 0px right 0;
}

.home-banner-inner {
    width: calc(100% - 282px);
    max-width: var(--container-width);
    margin: 96px auto 0 auto;
    padding: 60px 141px 0 141px;
    display: flex;
    flex-direction: column;
    z-index: 4;
    position: relative;
}

.home-banner-inner h1 {
    width: auto;
    max-width: 700px;
    margin: 0 auto 0 0;
    font-size: 84px;
    line-height: 84px;
    color: #fff;
    font-weight: 900;
}

.home-banner-inner h1 span {
    color: var(--primary-color);
    font-size: 70px;
    line-height: 60px;
}

.home-banner-inner .logos {
    margin: 34px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* .home-banner-inner .logos img {
    margin-right: 96px;
} */

.home-banner-inner .logos a {
    margin-right: 96px;
}

.home-banner-inner .logos img:last-child {
    margin-right: 0;
}

.home-carousel {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    padding: 118px 50px;
}

.home-carousel-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.home-carousel-inner-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.home-carousel-inner-item img {
    width: 100%;
}

.home-carousel-inner .slick-arrow {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.home-carousel-inner .slick-arrow:hover {
    background-color: var(--primary-color);
}

.home-carousel-inner .slick-arrow.slick-prev {
    left: -36px;
}

.home-carousel-inner .slick-arrow.slick-prev:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("./images/chevron-left.svg") center no-repeat;
    background-size: 20px;
    opacity: 1;
}

.home-carousel-inner .slick-arrow.slick-next {
    right: -36px;
}

.home-carousel-inner .slick-arrow.slick-next:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("./images/chevron-right.svg") center no-repeat;
    background-size: 20px;
    opacity: 1;
}

.complianz {
    width: calc(100% - 100px);
    padding: 124px 50px;
}

.home-delivery {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    padding: 124px 50px 0 50px;
    background-color: #F0F0F0;
}

.complianz-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.home-delivery-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.home-delivery-inner-left {
    width: 480px;
    display: flex;
    flex-direction: row;
}

.home-delivery-inner-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-delivery-inner-right {
    width: calc(100% - 480px);
    display: flex;
    flex-direction: column;
    padding: 0 0 0 164px;
}

.home-delivery-inner-right h2 {
    font-size: 48px;
    line-height: 54px;
    color: #333333;
    font-weight: 900;
}

.home-delivery-inner-right p {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    margin: 25px 0 0 0;
}

.home-delivery-inner-right ul {
    display: flex;
    flex-direction: column;
    margin: 15px 0 0 0;
}

.home-delivery-inner-right ul li {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    margin: 0 0 12px 0;
    padding: 0 0 0 32px;
    position: relative;
}

.home-delivery-inner-right ul li:last-child {
    margin: 0;
}

.home-delivery-inner-right ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("./images/check.svg") no-repeat center;
    background-size: 20px;
    position: absolute;
    top: 4px;
    left: 0;
}

.home-delivery-inner-right h3 {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 30px;
    line-height: 48px;
    margin: 55px 0 0 0;
}

.home-choice {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    padding: 165px 50px 117px 50px;
    background-color: #F0F0F0;
}

.home-choice-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.home-choice-inner h3 {
    font-size: 30px;
    line-height: 48px;
    color: #333333;
    position: relative;
    font-weight: 900;
    overflow: hidden;
}

.home-choice-inner h3:after {
    content: "";
    width: 50%;
    margin-left: 143px;
    height: 10px;
    background: #064e9e;
    background: linear-gradient(-90deg,
            #064e9e 0.00%,
            #4ab749 100.00%);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-choice-inner p {
    margin: 28px 0 0 0;
}

.home-choice-inner .tires-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 11px;
    row-gap: 36px;
    margin: 57px 0 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tires-list .tires-list-item {
    background-color: #fff;
    padding: 22px 25px 0 25px;
    display: flex;
    flex-direction: column;
}

.tires-list-item .title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tires-list-item .title .title-text,
.tires-list-item .title .title-new {
    display: flex;
    flex-direction: row;
}

.tires-list-item .title .title-text span {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 30px;
    line-height: 48px;
}

.tires-list-item .title .title-new span {
    padding: 10px 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 900;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: var(--secondary-color);
}

.tires-list-item .title .title-new img {
    width: 180px;
}

.tires-list-item .model {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 12px 0 58px 0;
}

.tires-list-item .model p {
    margin: 0;
}

.tires-list-item .model ul {
    margin: 10px 0 0 0;
}

.tires-list-item .model ul li {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    margin: 0 0 12px 0;
    padding: 0 0 0 30px;
    position: relative;
}

.tires-list-item .model ul li:last-child {
    margin: 0;
}

.tires-list-item .model ul li:before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url("./images/check.svg") no-repeat center;
    background-size: 18px;
    position: absolute;
    top: 6px;
    left: 0;
}

.tires-list-item .location {
    width: 100%;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tires-list-item .location a {
    width: auto;
    display: block;
    background-color: var(--primary-color);
    padding: 19px 67px 19px 43px;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 900;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.tires-list-item .location a:hover {
    background-color: var(--secondary-color);
}

.tires-list-item .location .image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 12px 0 0 0;
}

.tires-list-item .location .image img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.home-succursale {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    padding: 70px 50px 70px 50px;
    background-color: var(--secondary-color);
}

.home-succursale-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.home-succursale-inner-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
}

.home-succursale-inner-left h2 {
    font-size: 30px;
    line-height: 48px;
    font-weight: 900;
    color: #fff;
}

.home-succursale-inner-left p {
    color: #fff;
    margin: 10px 0 0 0;
}

.home-succursale-inner-left form {
    width: 100%;
    margin: 26px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.home-succursale-inner-left form .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 38px;
    position: relative;
}

.home-succursale-inner-left form .form-group.width_1 {
    width: 100%;
}

.home-succursale-inner-left form .form-group.width_1-2 {
    width: calc(50% - 20px);
    padding: 0 20px 0 0;
}

.home-succursale-inner-left form .form-group label {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin-right: 10px;
    font-weight: 500;
}

.home-succursale-inner-left form .form-group span {
    margin: 0 0 0 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.home-succursale-inner-left form .form-group span:after {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    left: -45px;
    width: 1px;
    background-color: #707070;
    border-style: solid;
    height: 34px;
    margin: 0;
}

.home-succursale-inner-left form .form-group input {
    width: auto;
    max-width: 300px;
    min-height: 57px;
    border-radius: 30px;
    background-color: #fff;
    border: none;
    outline: none;
    padding: 0 23px;
    font-size: 20px;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.home-succursale-inner-left form .form-group input.radius {
    width: auto;
    max-width: 50px;
    font-weight: 700;
    padding-right: 45px;
    padding-left: 30px;
}

.home-succursale-inner-left form .form-group button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 95px 0 44px;
    min-height: 55px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border: solid 1px var(--primary-color);
}

.home-succursale-inner-left form .form-group button:hover {
    background-color: var(--secondary-color);
    border-color: #fff;
}

.home-succursale-inner-right {
    width: 50%;
    padding: 0 0 0 140px;
}

/* Our tires */
.succursale-banner {
    width: calc(100% - 100px);
    height: auto;
    padding: 61px 50px 40px 50px;
    position: relative;
    background-color: #000;
}

.succursale-banner .succursale-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    object-fit: contain;
    object-position: center;
}

.succursale-banner-inner {
    width: calc(100% - 100px);
    max-width: var(--container-width);
    margin: 96px auto 0 auto;
    padding: 92px 50px 121px 50px;
    display: flex;
    flex-direction: column;
    z-index: 4;
    position: relative;
}

.succursale-banner-inner h1 {
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.succursale-search {
    width: calc(100% - 100px);
    padding: 27px 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #064e9e;
    background: linear-gradient(90deg,
            #064e9e 0.00%,
            #1c7083 55%,
            #4ab749 100.00%);
}

.succursale-search form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 21px;
}

.succursale-search form .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.succursale-search form .form-group label {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin-right: 10px;
    font-weight: 500;
}

.succursale-search form .form-group span {
    margin: 0 0 0 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.succursale-search form .form-group span:after {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    left: -45px;
    width: 1px;
    background-color: #707070;
    border-style: solid;
    height: 34px;
    margin: 0;
}

.succursale-search form .form-group input {
    width: auto;
    min-width: 293px;
    min-height: 57px;
    border-radius: 30px;
    background-color: #fff;
    border: none;
    outline: none;
    padding: 0 23px;
    font-size: 20px;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.succursale-search form .form-group input.radius {
    width: 38px;
    max-width: none;
    min-width: auto;
    font-weight: 700;
    padding-right: 45px;
    padding-left: 30px;
}

.succursale-search form .form-group button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 95px 0 44px;
    min-height: 55px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border: solid 1px var(--primary-color);
}

.succursale-search form .form-group button:hover {
    border-color: #fff;
    background-color: transparent;
}

.succursale-items {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: row;
    padding: 112px 50px 241px 50px;
}

.succursale-items-inner {
    width: 100%;
    max-width: 1436px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 37px;
    margin: 0 auto;
}

.succursale-items-inner .item {
    display: flex;
    flex-direction: column;
    padding: 24px 55px 30px 55px;
    background-color: #fff;
}

.succursale-items-inner .item .item-image {
    width: 163px;
    height: auto;
    display: flex;
    flex-direction: row;
}

.succursale-items-inner .item .item-image img {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
}

.succursale-items-inner .item .item-title {
    width: 100%;
}

.succursale-items-inner .item .item-title h2 {
    font-size: 30px;
    line-height: 40px;
    color: var(--secondary-color);
    font-weight: 900;
}

.succursale-items-inner .item .item-location {
    width: 100%;
}

.succursale-items-inner .item .item-location p {
    font-size: 20px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 900;
}

.succursale-items-inner .item .item-address {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.succursale-items-inner .item .item-address ul {
    display: flex;
    flex-direction: column;
}

.succursale-items-inner .item .item-address ul li {
    margin: 0;
}

.succursale-items-inner .item .item-address ul li a {
    color: #333333;
    text-decoration: underline;
}

.succursale-items-inner .item-google-card {
    width: 100%;
    margin: auto 0 0 0;
}

.succursale-items-inner .item-google-card a {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 45px;
    min-height: 57px;
    border-radius: 30px;
    background-color: var(--primary-color);
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 900;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.succursale-items-inner .item-google-card a:hover {
    background-color: var(--secondary-color);
}

.succursale-not-found {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px 50px 0;
    font-size: 30px;
    line-height: 40px;
    color: var(--secondary-color);
    font-weight: 900;
    text-align: center;
}

.loader-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.loader-wrapper .loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader-wrapper .loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--secondary-color);
}

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

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

/* Contact */
.contact-banner,
.concours-banner,
.complianz-banner {
    width: calc(100% - 100px);
    height: auto;
    padding: 61px 50px 40px 50px;
    position: relative;
    background-color: #000;
}

.contact-banner .contact-banner-image,
.concours-banner .concours-banner-image,
.complianz-banner .complianz-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    object-fit: contain;
    object-position: center;
}

.contact-banner-inner,
.concours-banner-inner,
.complianz-banner-inner {
    width: calc(100% - 100px);
    max-width: var(--container-width);
    margin: 96px auto 0 auto;
    padding: 92px 50px 121px 50px;
    display: flex;
    flex-direction: column;
    z-index: 4;
    position: relative;
}

.contact-banner-inner h1,
.concours-banner-inner h1,
.complianz-banner-inner h1 {
    max-width: 1040px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 58px;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.contact-partners {
    width: calc(100% - 100px);
    padding: 76px 50px 138px 50px;
    display: flex;
    flex-direction: column;
}

.contact-partners-inner {
    width: 100%;
    max-width: 1588px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 104px;
}

.contact-partners-inner .item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 40px 42px;
}

.contact-partners-inner .item.robert .logo img {
    position: relative;
    left: -10px;
}

.contact-partners-inner .item .logo {
    width: auto;
    min-height: 110px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-partners-inner .item .logo img {
    width: auto;
    height: auto;
}

.contact-partners-inner .item .title {
    width: 100%;
    margin: 40px 0 0 0;
}

.contact-partners-inner .item .title h2 {
    color: var(--secondary-color);
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
}

.contact-partners-inner .item .address {
    width: 100%;
    margin: 40px 0 0 0;
}

.contact-partners-inner .item .address p {
    margin: 0 0 15px 0;
}

.contact-partners-inner .item .address a {
    width: 100%;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #333333;
}

.contact-partners-inner .item .address a:hover {
    text-decoration: underline;
}

.contact-form {
    width: calc(100% - 100px);
    padding: 0 50px 200px 50px;
    display: flex;
    flex-direction: column;
}

.contact-form-inner {
    width: 100%;
    max-width: 1588px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form-inner h2 {
    font-size: 30px;
    line-height: 40px;
    color: #000;
    font-weight: 900;
}

.contact-form-inner .form {
    width: 100%;
    margin: 80px 0 0 0;
}

.contact-form-inner .form .wpcf7 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-inner .form .wpcf7 .wpcf7-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-inner .form .form-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*flex-wrap: wrap;*/
    margin: 20px 0 0 0;
}

.contact-form-inner .form .form-group .form-group-item {
    display: flex;
    flex-direction: row;
    column-gap: 258px;
}

.contact-form-inner .form .form-group .form-group-item.width_1-2 {
    width: 50%;
    max-width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
}

.contact-form-inner .form .form-group .form-group-item.width_1-2:nth-child(2n + 1) {
    padding: 0 20px 0 0;
}

.contact-form-inner .form .form-group .form-group-item.width_1-2:nth-child(2n) {
    padding: 0 0 0 20px;
}

.contact-form-inner .form .form-group .form-group-item.width_1 {
    width: 100%;
}

.contact-form-inner .form .form-group .form-group-item label {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 12px 0 0 0;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    margin: 10px 0 0 0;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap input,
.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap select {
    width: 100%;
    min-height: 76px;
    background-color: #fff;
    border: solid 1px #707070;
    padding: 0 20px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    outline: none;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap input {
    width: calc(100% - 40px)
}

.contact-form-inner .form .form-group .form-group-item.select .wpcf7-form-control-wrap {
    position: relative;
}

.contact-form-inner .form .form-group .form-group-item.select {
    margin: 0 0 40px 0;
}

.contact-form-inner .form .form-group .form-group-item.select .wpcf7-form-control-wrap:after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url("./images/chevron-down.svg") center center;
    right: 20px;
    z-index: 2;
    background-size: 24px;
    pointer-events: none;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap select {
    -webkit-appearance: none;
    /* For WebKit browsers like Chrome, Safari */
    -moz-appearance: none;
    /* For Mozilla Firefox */
    appearance: none;
}

.contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap textarea {
    width: calc(100% - 40px);
    height: 105px;
    background-color: #fff;
    border: solid 1px #707070;
    resize: none;
    font-size: 20px;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    outline: none;
}

.contact-form-inner .form .wpcf7-form-control.wpcf7-submit {
    min-height: 57px;
    background-color: var(--primary-color);
    padding: 0 70px;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
    margin: 60px auto 0 0;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.contact-form-inner .form .wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--secondary-color);
}

/* Concours */
.concours-image {
    width: calc(100% - 100px);
    max-width: var(--container-width);
    margin: 90px auto;
    padding: 0 50px;
}

.concours-image img {
    width: 100%;
    margin: 0 auto;
}

/* Footer */
.onyx-footer {
    width: calc(100% - 100px);
    background-color: #333333;
    padding: 163px 50px 60px 50px;
    display: flex;
    flex-direction: column;
}

.onyx-footer-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.onyx-footer-inner-logo {
    width: 252px;
    display: flex;
    flex-direction: row;
}

.onyx-footer-inner-logo img {
    width: 100%;
}

.onyx-footer-inner-partners {
    width: 100%;
    margin: 50px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.onyx-footer-inner-partners .wp-block-image {
    margin: 0 128px 0 0;
}

.onyx-footer-inner-partners .wp-block-image:last-child {
    margin: 0;
}

.onyx-footer-inner-partners .wp-block-image img {
    width: auto;
    height: 80px;
}

.onyx-footer-inner-menu {
    width: 100%;
    margin: 50px 0 0 0;
    display: flex;
    flex-direction: column;
}

.onyx-footer-inner-menu .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.onyx-footer-inner-menu .menu .menu-item {
    margin: 0 71px 0 0;
}

.onyx-footer-inner-menu .menu .menu-item:last-child {
    margin: 0;
}

.onyx-footer-inner-menu .menu .menu-item a {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.onyx-footer-inner-menu .menu .menu-item a:hover,
.onyx-footer-inner-menu .menu .menu-item.current-menu-item a {
    color: var(--primary-color);
}

.onyx-footer-inner-copyright {
    width: 100%;
    margin: 63px 0 0 0;
    padding: 57px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: solid 1px #707070;
}

.onyx-footer-inner-copyright p {
    color: #F0F0F0;
    font-size: 20px;
    line-height: 30px;
}

/* Responsive */
@media only screen and (max-width: 1640px) {

    .onyx-header {
        width: calc(100% - 140px);
        padding: 40px 70px;
    }

    .onyx-header.fixed {
        width: calc(100% - 140px);
        padding: 30px 70px;
    }

    .onyx-header-inner .logo {
        width: 200px;
    }

    .onyx-header-inner .menu ul li a {
        padding: 15px 35px;
    }

    .home-banner-inner {
        width: calc(100% - 200px);
        padding: 40px 100px 0 100px;
    }

    .home-delivery-inner-left {
        width: 520px;
    }

    .home-delivery-inner-right {
        width: calc(100% - 520px);
        padding: 0 0 0 100px;
    }

    .tires-list-item .title .title-text span {
        font-size: 24px;
        line-height: 30px;
    }

    .tires-list-item .title .title-new span {
        padding: 8px 22px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 18px;
    }

    .tires-list-item .title .title-new img {
        width: 140px;
    }

    .tires-list-item .image {
        height: 200px;
        margin: 15px 0 0 0;
    }

    .tires-list-item .location a {
        padding: 15px 50px 15px 30px;
    }

    .tires-list-item .model ul li {
        font-size: 18px;
        line-height: 28px;
    }

    .home-succursale-inner-left form .form-group input {
        width: 100%;
    }

    .contact-partners-inner {
        column-gap: 60px;
    }

    .contact-partners-inner .item {
        padding: 30px;
    }
}

@media only screen and (max-width: 1300px) {
    p {
        font-size: 18px;
        line-height: 24px;
    }

    .onyx-header {
        width: calc(100% - 60px);
        padding: 30px;
    }

    .onyx-header.fixed {
        width: calc(100% - 60px);
        padding: 30px;
    }

    .home-banner-inner {
        width: 100%;
        padding: 40px 0 0 0;
    }

    .onyx-header-inner .logo {
        width: 180px;
    }

    .onyx-header-inner .menu ul li {
        margin: 0 15px 0 0;
    }

    .onyx-header-inner .menu ul li a {
        padding: 12px 20px;
        font-size: 16px;
        line-height: 20px;
    }

    .home-banner {
        width: calc(100% - 70px);
        padding: 50px 35px 40px 35px;
    }

    .home-banner .home-banner-image {
        right: -200px;
    }

    .home-banner-inner h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .home-banner-inner h1 span {
        font-size: 50px;
        line-height: 50px;
    }

    .home-banner-inner .logos img {
        margin-right: 60px;
    }

    .home-carousel {
        width: calc(100% - 70px);
        padding: 90px 35px;
    }

    .home-carousel-inner .slick-arrow {
        width: 50px;
        height: 50px;
    }

    .home-carousel-inner .slick-arrow.slick-prev {
        left: -20px;
    }

    .home-carousel-inner .slick-arrow.slick-next {
        right: -20px;
    }

    .complianz {
        width: calc(100% - 70px);
        padding: 90px 35px;
    }

    .home-delivery {
        width: calc(100% - 70px);
        padding: 90px 35px 0 35px;
    }

    .home-delivery-inner-left {
        width: 400px;
    }

    .home-delivery-inner-right {
        width: calc(100% - 400px);
        padding: 0 0 0 90px;
    }

    .home-delivery-inner-right h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .home-delivery-inner-right p {
        font-size: 18px;
        line-height: 26px;
    }

    .home-delivery-inner-right ul li {
        font-size: 18px;
        line-height: 26px;
    }

    .home-choice {
        width: calc(100% - 70px);
        padding: 90px 35px 60px 35px;
    }

    .home-choice-inner h3:after {
        margin-left: 90px;
    }

    .home-choice-inner .tires-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-succursale {
        width: calc(100% - 70px);
        padding: 60px 35px;
    }

    .home-succursale-inner-left {
        padding-right: 30px;
    }

    .home-succursale-inner-left h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .home-succursale-inner-right {
        width: 400px;
        padding-left: 30px;
    }

    .home-succursale-inner-right img {
        width: 100%;
    }

    .home-succursale-inner-left form .form-group button {
        padding: 0 40px;
    }

    .succursale-banner {
        width: calc(100% - 70px);
        padding: 60px 35px;
    }

    .succursale-banner-inner,
    .contact-banner-inner,
    .concours-banner-inner,
    .complianz-banner-inner {
        width: 100%;
        padding: 70px 0;
    }

    .contact-banner-inner h1,
    .concours-banner-inner h1,
    .succursale-banner-inner h1,
    .complianz-banner-inner h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .succursale-search {
        width: calc(100% - 70px);
        padding: 20px 35px;
    }

    .succursale-search form .form-group input {
        min-width: 200px;
    }

    .succursale-search form .form-group button {
        padding: 0 40px;
    }

    .succursale-items {
        width: calc(100% - 70px);
        padding: 90px 35px;
    }

    .succursale-items-inner {
        column-gap: 25px;
        row-gap: 30px;
    }

    .succursale-items-inner .item {
        padding: 24px 35px;
    }

    .succursale-items-inner .item .item-title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .succursale-items-inner .item-google-card a {
        padding: 0 30px;
        min-height: 47px;
    }

    .contact-banner,
    .concours-banner,
    .complianz-banner {
        width: calc(100% - 70px);
        padding: 50px 35px;
    }

    .contact-partners {
        width: calc(100% - 70px);
        padding: 60px 35px;
    }

    .contact-partners-inner {
        column-gap: 25px;
    }

    .contact-partners-inner .item .logo {
        min-height: 70px;
    }

    .contact-partners-inner .item .logo img {
        width: auto;
        height: auto;
        max-height: 60px;
        max-width: 216px;
    }

    .contact-partners-inner .item .title {
        margin: 20px 0 0 0;
    }

    .contact-partners-inner .item .title h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .contact-partners-inner .item .address {
        margin: 25px 0 0 0;
    }

    .contact-form {
        width: calc(100% - 70px);
        padding: 0 35px 100px 35px;
    }

    .contact-partners-inner .item {
        padding: 30px 25px;
    }

    .contact-form-inner .form {
        margin: 40px 0 0 0;
    }

    .contact-form-inner .form .form-group .form-group-item.select {
        margin: 0;
    }

    .contact-form-inner .form .form-group .form-group-item.width_1-2 {
        max-width: calc(50% - 20px);
    }

    .contact-form-inner .form .form-group .form-group-item.width_1-2:nth-child(2n + 1),
    .contact-form-inner .form .form-group .form-group-item.width_1-2:nth-child(2n) {
        padding: 0;
    }

    .contact-partners-inner .item .address a {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap input,
    .contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap select {
        min-height: 57px;
    }

    .concours-image {
        width: calc(100% - 70px);
        margin: 70px auto;
        padding: 0 35px;
    }

    .onyx-footer {
        width: calc(100% - 70px);
        padding: 90px 35px 40px 35px;
    }

    .onyx-footer-inner-logo {
        width: 200px;
    }

    .onyx-footer-inner-partners .wp-block-image {
        margin-right: 90px;
    }

    .onyx-footer-inner-copyright p {
        font-size: 18px;
        line-height: 24px;
    }
}

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

    .onyx-header {
        width: calc(100% - 60px);
        padding: 25px 30px;
    }

    .onyx-header-inner {
        position: relative;
    }

    .onyx-header-inner .logo {
        width: 150px;
    }

    .onyx-header.fixed .onyx-header-inner .logo {
        width: 120px;
    }

    .onyx-header.fixed .onyx-header-inner .logo {
        width: 100px;
    }

    .onyx-header-inner .menu ul {
        display: none;
    }

    .onyx-header-inner .navbar-toggle {
        display: block;
    }

    .onyx-header .onyx-header-inner .logo {
        z-index: 10;
    }

    .onyx-header .onyx-header-inner .menu {
        width: 100vw;
        height: 100vh;
        background-color: var(--secondary-color);
        position: fixed;
        top: 0;
        left: -110%;
        display: flex;
        flex-direction: row;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .onyx-header .onyx-header-inner .menu {
        flex-direction: column;
        justify-content: center;
        row-gap: 30px;
    }

    .onyx-header .onyx-header-inner .menu ul li {
        margin: 0;
    }

    .onyx-header .onyx-header-inner .menu ul li a {
        padding: 15px 25px;
        min-width: 200px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .onyx-header.open-menu .onyx-header-inner .menu {
        left: 0;
    }

    .home-banner {
        width: calc(100% - 60px);
        padding: 40px 30px 30px 30px;
    }

    .home-banner .home-banner-image {
        right: -250px;
    }

    .home-banner-inner h1 {
        font-size: 50px;
        line-height: 55px;
    }

    .home-banner-inner h1 span {
        font-size: 40px;
        line-height: 40px;
    }

    .home-banner-inner .logos a {
        margin-right: 40px;
    }

    .home-banner-inner .logos img {
        max-width: 220px;
        max-height: 50px;
    }

    .home-carousel {
        width: calc(100% - 60px);
        padding: 60px 30px;
    }

    .home-carousel-inner .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .home-carousel-inner .slick-arrow.slick-prev:before,
    .home-carousel-inner .slick-arrow.slick-next:before {
        width: 16px;
        height: 16px;
        background-size: 16px;
    }

    .complianz {
        width: calc(100% - 60px);
        padding: 60px 30px;
    }

    .home-delivery {
        width: calc(100% - 60px);
        padding: 60px 30px 0 30px;
    }

    .home-delivery-inner-right {
        padding: 0 0 0 40px;
    }

    .home-choice {
        width: calc(100% - 60px);
        padding: 50px 30px;
    }

    .home-choice-inner h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .home-choice-inner .tires-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-succursale-inner-left {
        width: calc(100% - 350px);
    }

    .home-succursale-inner-right {
        width: 350px;
    }

    .tires-list-item .model ul li {
        font-size: 18px;
        line-height: 26px;
    }

    .home-succursale {
        width: calc(100% - 60px);
        padding: 50px 30px;
    }

    .home-succursale-inner-left form .form-group button {
        padding: 0 30px;
    }

    .tires-list-item .model {
        margin-bottom: 38px;
    }

    .succursale-banner {
        width: calc(100% - 60px);
        padding: 40px 30px;
    }

    .succursale-search {
        width: calc(100% - 60px);
        padding: 20px 30px;
    }

    .succursale-search form {
        row-gap: 20px;
    }

    .succursale-items {
        width: calc(100% - 60px);
        padding: 60px 30px;
    }

    .succursale-items-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-banner-inner h1,
    .concours-banner-inner h1,
    .succursale-banner-inner h1,
    .complianz-banner-inner h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .succursale-search form .form-group button {
        padding: 0 30px;
        min-height: 47px;
        font-size: 18px;
        line-height: 24px;
    }

    .succursale-search form .form-group input {
        min-width: 150px;
        font-size: 18px;
        min-height: 47px;
    }

    .contact-banner,
    .concours-banner,
    .complianz-banner {
        width: calc(100% - 60px);
        padding: 50px 30px;
    }

    .contact-partners {
        width: calc(100% - 60px);
        padding: 50px 30px;
    }

    .contact-partners-inner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .contact-form {
        width: calc(100% - 60px);
        padding: 0 30px 40px 30px;
    }

    .contact-form-inner h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact-form-inner .form {
        margin: 15px 0 0 0;
    }

    .contact-form-inner .form .wpcf7-form-control.wpcf7-submit {
        margin-top: 30px;
    }

    .contact-form-inner .form .form-group .form-group-item label {
        font-size: 18px;
        line-height: 24px;
    }

    .concours-image {
        width: calc(100% - 60px);
        margin: 60px auto;
        padding: 0 30px;
    }

    .succursale-not-found {
        width: calc(100% - 60px);
        padding: 50px 30px;
        font-size: 24px;
        line-height: 32px;
    }

    .onyx-footer {
        width: calc(100% - 60px);
        padding: 50px 30px 30px 30px;
    }

    .onyx-footer-inner-logo {
        width: 150px;
    }

    .onyx-footer-inner-partners {
        margin: 30px 0 0 0;
        flex-wrap: wrap;
    }

    .onyx-footer-inner-menu {
        margin: 30px 0 0 0;
    }

    .onyx-footer-inner-partners .wp-block-image {
        margin-right: 50px;
    }

    .onyx-footer-inner-partners .wp-block-image img {
        height: 50px !important;
        max-width: 220px;
    }

    .onyx-footer-inner-partners {
        column-gap: 20px;
        row-gap: 15px;
    }

    .onyx-footer-inner-partners .wp-block-image {
        margin: 0;
    }

    .onyx-footer-inner-copyright {
        margin: 40px 0 0 0;
        padding: 40px 0 0 0;
    }
}

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

    p,
    ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .onyx-header {
        width: calc(100% - 50px);
        padding: 25px;
    }

    .onyx-header-inner .logo {
        width: 120px;
    }

    .onyx-header.fixed {
        width: calc(100% - 50px);
        padding: 22px 25px;
    }

    .home-banner {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .home-banner .home-banner-image {
        right: -150px;
    }

    .home-banner-inner h1 {
        font-size: 40px;
        line-height: 45px;

    }

    .home-banner-inner h1 span {
        font-size: 33px;
        line-height: 33px;
    }

    .home-banner-inner .logos {
        row-gap: 10px;
    }

    .home-banner-inner .logos a {
        margin-right: 20px;
    }

    .home-banner-inner .logos img {
        max-width: 190px;
        max-height: 36px;
    }

    .home-carousel {
        width: calc(100% - 50px);
        padding: 50px 25px;
    }

    .complianz {
        width: calc(100% - 50px);
        padding: 50px 25px;
    }

    .home-delivery {
        width: calc(100% - 50px);
        padding: 50px 25px 0 25px;
    }

    .home-delivery-inner {
        flex-direction: column;
    }

    .home-delivery-inner-left {
        width: 100%;
    }

    .home-delivery-inner-left img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .home-delivery-inner-right {
        width: 100%;
        padding: 0;
        margin: 30px 0 0 0;
    }

    .home-delivery-inner-right h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .home-delivery-inner-right p,
    .home-delivery-inner-right ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .home-delivery-inner-right h3 {
        font-size: 24px;
        line-height: 30px;
        margin: 30px 0 0 0;
    }

    .home-choice-inner h3:after {
        display: none;
    }

    .home-choice {
        width: calc(100% - 50px);
        padding: 40px 25px 50px 25px;
    }

    .home-choice-inner p {
        margin: 20px 0 0 0;
    }

    .home-choice-inner .tires-list {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;
        margin: 30px 0 0 0;
    }

    .home-carousel-inner .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .home-carousel-inner .slick-arrow.slick-prev:before,
    .home-carousel-inner .slick-arrow.slick-next:before {
        width: 14px;
        height: 14px;
        background-size: 14px;
    }

    .tires-list .tires-list-item {
        padding: 20px 20px 0 20px;
    }

    .tires-list-item .title .title-text span {
        font-size: 20px;
        line-height: 24px;
    }

    .tires-list-item .title .title-new img {
        width: 120px;
    }

    .tires-list-item .title .title-new span {
        font-size: 13px;
        line-height: 16px;
        padding: 8px 20px;
    }

    .tires-list-item .model ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .tires-list-item .model ul li:before {
        width: 16px;
        height: 16px;
        background-size: 16px;
    }

    .tires-list-item .image {
        height: 260px;
    }

    .tires-list-item .model {
        margin: 15px 0 30px 0;
        min-height: auto;
    }

    .home-succursale {
        width: calc(100% - 50px);
        padding: 50px 25px 20px 25px;
    }

    .home-succursale-inner {
        flex-direction: column-reverse;
    }

    .home-succursale-inner-left {
        width: 100%;
        padding: 0;
        margin: 30px 0 0 0;
    }

    .home-succursale-inner-right {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .home-succursale-inner-right img {
        max-width: 320px;
    }

    .tires-list-item .location a {
        padding: 15px 30px;
    }

    .succursale-banner {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .succursale-banner-inner,
    .contact-banner-inner,
    .concours-banner-inner,
    .complianz-banner-inner {
        padding: 50px 0;
        margin: 60px auto 0 auto;
    }

    .succursale-search {
        width: calc(100% - 50px);
        padding: 20px 25px;
    }

    .succursale-search form {
        column-gap: 21px;
        justify-content: flex-start;
    }

    .succursale-search form .form-group {
        width: 100%;
    }

    .succursale-search form .form-group input {
        min-width: calc(100% - 46px);
    }

    .succursale-search form .form-group button {
        width: 100%;
    }

    .succursale-items {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .succursale-items-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-banner-inner h1,
    .concours-banner-inner h1,
    .succursale-banner-inner h1,
    .complianz-banner-inner h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .succursale-items-inner .item {
        padding: 30px 25px;
    }

    .succursale-items-inner .item .item-image {
        width: 150px;
    }

    .succursale-items-inner .item .item-title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .succursale-items-inner .item .item-address {
        margin: 15px 0 20px 0;
    }

    .succursale-items-inner .item-google-card a {
        padding: 0 30px;
        min-height: 47px;
    }

    .succursale-not-found {
        width: calc(100% - 50px);
        padding: 50px 25px;
        font-size: 20px;
        line-height: 26px;
    }

    .contact-banner,
    .concours-banner,
    .complianz-banner {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .contact-partners {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .contact-partners-inner {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;
    }

    .contact-partners-inner .item .address {
        margin: 20px 0 0 0;
    }

    .contact-partners-inner .item .address p {
        margin: 0 0 10px 0;
    }

    .contact-partners-inner .item .address a {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-partners-inner .item .logo {
        min-height: auto;
    }

    .contact-partners-inner .item {
        padding: 25px 20px;
    }

    .contact-form {
        width: calc(100% - 50px);
        padding: 0 25px 30px 25px;
    }

    .contact-form-inner .form {
        margin-top: 25px;
    }

    .contact-form-inner .form .form-group {
        flex-direction: column;
    }

    .contact-form-inner .form .form-group .form-group-item label {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-form-inner .form .form-group .form-group-item.width_1-2 {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .contact-form-inner .form .form-group {
        margin: 0;
    }

    .contact-form-inner .form .form-group .form-group-item.select {
        margin-bottom: 20px;
    }

    .contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap input,
    .contact-form-inner .form .form-group .form-group-item label .wpcf7-form-control-wrap select {
        min-height: 47px;
        font-size: 18px;
        line-height: 24px;
    }

    .contact-form-inner .form .form-group .form-group-item.select .wpcf7-form-control-wrap:after {
        width: 18px;
        height: 18px;
        background-size: 18px;
    }

    .contact-form-inner .form .wpcf7-form-control.wpcf7-submit {
        min-height: 47px;
        padding: 0 50px;
    }

    .concours-image {
        width: calc(100% - 50px);
        margin: 50px auto;
        padding: 0 25px;
    }

    .onyx-footer {
        width: calc(100% - 50px);
        padding: 50px 25px 35px 25px;
    }

    .onyx-footer-inner-menu .menu .menu-item {
        margin: 0 30px 0 0;
    }

    .onyx-footer-inner-menu .menu .menu-item a {
        font-size: 18px;
        line-height: 24px;
    }

    .onyx-footer-inner-copyright {
        margin: 30px 0 0 0;
        padding: 30px 0 0 0;
    }

    .onyx-footer-inner-copyright p {
        text-align: center;
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .home-succursale-inner-left form .form-group.width_1-2 {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .home-succursale-inner-left form .form-group input {
        max-width: 100%;
    }

    .home-succursale-inner-left form .form-group button {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .home-carousel {
        width: calc(100% - 50px);
        padding: 40px 25px;
    }

    .tires-list-item .image {
        height: 210px;
    }

    .succursale-search form .form-group button {
        font-size: 16px;
    }

    .succursale-items-inner .item-google-card a {
        font-size: 14px;
    }

    .home-banner-inner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .home-banner-inner h1 span {
        font-size: 26px;
        line-height: 26px;
    }

    .home-banner-inner .logos img {
        max-width: 115px;
        max-height: 30px;
    }

    .tires-list-item .location a {
        font-size: 14px;
        padding: 12px 20px;
    }

    .contact-banner-inner h1,
    .concours-banner-inner h1,
    .succursale-banner-inner h1,
    .complianz-banner-inner h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact-partners-inner .item {
        width: calc(100% - 30px);
        padding: 20px 15px;
    }

    .contact-partners-inner .item .title {
        margin: 15px 0 0 0;
    }

    .contact-partners-inner .item .title h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-partners-inner .item .address a {
        font-size: 14px;
        line-height: 20px;
    }

    .onyx-footer-inner-menu .menu .menu-item a {
        font-size: 14px;
        line-height: 20px;
    }

    .onyx-footer-inner-copyright p {
        font-size: 14px;
        line-height: 20px;
    }
}