/**
 * Theme Name: Luxvo
 * Version: 1.2.1
 * Text Domain: luxvo
 * Domain Path: /languages
 */

:root {
    --luxvo-primary-color: #FF6B00;
    --luxvo-secondary-color: #FFFFFF;
    --luxvo-tertiary-color: #000;
    --luxvo-light-font: 300;
}

html {
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Argentum Sans', sans-serif;
    overflow: hidden;
    background-color: var(--luxvo-tertiary-color);
    color: var(--luxvo-secondary-color);
    margin: 0;
}

h3 {
    margin: 0;
}

.footer__title,
h1 {
    font-size: 30px;
}

a,
a:visited {
    color: var(--luxvo-secondary-color);
    text-decoration: none;
    transition: all .2s ease-in-out;
}

a:hover {
    color: var(--luxvo-primary-color);
}

a:focus {
    color: var(--luxvo-primary-color);
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: 1px solid var(--luxvo-primary-color);
}

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

p {
    margin: 0;
}

img {
    width: 100%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--luxvo-tertiary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.preloader img {
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.hidden--desktop {
    display: none;
}

.hidden--mobile {
    display: unset;
}

.text-highlight {
    color: var(--luxvo-primary-color);
}

a.link--active {
    color: var(--luxvo-primary-color);
}

.link-external--car-card,
.link-external--reverse-colors,
.link-external {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.link-external span {
    background: var(--luxvo-primary-color);
    border: 1px solid var(--luxvo-primary-color);
    border-radius: 10px;
    transition: background .2s all;
}

.link-external--reverse-colors span {
    background: var(--luxvo-secondary-color);
    border: 1px solid var(--luxvo-secondary-color);
    color: var(--luxvo-tertiary-color);
    border-radius: 10px;
    transition: background .2s all;
}

.link-external--car-card span {
    background: var(--luxvo-secondary-color);
    border: 1px solid var(--luxvo-secondary-color);
    color: var(--luxvo-primary-color);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.link-external--reverse-colors:focus span,
.link-external--reverse-colors:hover span {
    color: var(--luxvo-primary-color);
    border-color: var(--luxvo-primary-color);
}

.link-external:focus span,
.link-external:hover span {
    background: var(--luxvo-secondary-color);
}

.link-external--car-card:focus span,
.link-external--car-card:hover span {
    background-color: var(--luxvo-tertiary-color) !important;
    color: var(--luxvo-secondary-color) !important;
}

.link-external__text {
    padding: 4px 10px;
}

.link-external__icon {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
}

.header {
    position: relative;
    display: flex;
    width: 100%;
    height: 112px;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background: var(--luxvo-tertiary-color);
    z-index: 10;
}

.header__title {
    display: flex;
    align-items: center;
}

.header__title img {
    width: auto;
    height: auto;
    max-width: 90px;
}

.header__menu--desktop {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.header__actions button {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background-color: var(--luxvo-primary-color);
    color: var(--luxvo-secondary-color);
    transition: all 0.2s ease-in-out;
}

.header__actions button:focus,
.header__actions button:hover {
    cursor: pointer;
    color: var(--luxvo-primary-color);
    background-color: var(--luxvo-secondary-color);
}

.header__menu--mobile {
    display: none;
    position: fixed;
    top: 100px;
    right: 0;
    width: 50%;
    height: 100%;;
    background: var(--luxvo-tertiary-color);
    min-width: 200px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.header__menu--mobile.header__menu--is-open {
    transform: translateX(0);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.sub-menu {
    display: none;
}

.sub-menu-open > a {
    color: var(--luxvo-primary-color);
}

.sub-menu-open .sub-menu {
    display: flex !important;
}

.menu-item-has-children > a::after {
    font-family: var(--fa-family,var(--fa-style-family,"Font Awesome 7 Free"));
    content: "\f107";
    font-weight: 900;
    margin-left: 0.4em;
}

.menu--desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu--desktop a {
    display: inline-block;
}

.menu--desktop .sub-menu {
    position: absolute;
    top: 112px;
    min-width: 170px;
    background: var(--luxvo-secondary-color);
    flex-direction: column;
    padding: 0.8rem 0;
    transform: translateX(-20%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-x: hidden;
    z-index: 10;
}

.menu--desktop .sub-menu a {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    transition: all .2s ease-in-out;
    color: var(--luxvo-tertiary-color);
}

.menu--desktop .sub-menu a:focus,
.menu--desktop .sub-menu a:hover {
    color: var(--luxvo-secondary-color);
    background-color: var(--luxvo-primary-color);
}

.menu--mobile {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
}

.menu--mobile a:focus {
    outline: none !important;
}

.menu--mobile .sub-menu {
    font-weight: var(--luxvo-light-font); 
    flex-direction: column;
    margin-left: 1.5rem;
    margin-top: 1rem;
    gap: 1rem;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5rem;
    padding: 9rem 0 9rem;
}

.hero--main {
    margin-bottom: 20%;
    height: 100vh;
    padding: unset;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}

.hero--taxonomy {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./assets/images/hero-taxonomy.jpg');
}

.hero--car {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./assets/images/hero-car.jpg');
    margin-bottom: 3rem;
}

.hero--contact {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./assets/images/hero-contact.jpg');
    margin-bottom: 3rem;
}

.hero--custom {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./assets/images/hero-custom.jpg');
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 20px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
}

.hero__subtitle {
    color: var(--luxvo-primary-color);
    font-weight: bold;
}

.hero__tagline {
    font-size: 60px;
    line-height: 1;
}

.hero__description {
    font-size: 1.3rem;
}

.hero__actions {
    display: flex;
    gap: 2rem;
}

.hero__actions--wide {
    gap: unset;
    width: 50%;
}

.car-brands {
    position: relative;
}

.car-brands__background {
    width: 100%;
    background-color: var(--luxvo-primary-color);
    height: 20%;
    bottom: 0;
    position: absolute;
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
}

.car-brands__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.car-brands__info {
    width: 20%;
    margin-left: 10%;
    margin-top: 5%;
    opacity: 0;
}

.car-brands__image-wrapper {
    width: 40%;
}

.car-brands__image {
    width: 100%;
    transform-origin: center center;
}

.car-brands__action {
    width: 20%;
    margin-right: 10%;
    margin-top: 5%;
    opacity: 0;
    text-align: center;
}

.car-brands__title {
    font-size: 0.9rem;
}

.car-brands__subtitle {
    font-size: 1.8rem;
}

.marquee {
    overflow: hidden;
    width: 100%;
    margin: 1rem auto;
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 5%;
}

.marquee__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee__slide img {
    width: auto;
    height: 5rem;
}

.fleet {
    width: 100%;
    margin: 8rem auto 0;
}

.fleet__title {
    text-align: center;
}

.fleet__header {
    position: relative;
    margin-bottom: 3rem;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.fleet__subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    max-width: 40%;
    text-align: center
}

.fleet__action {
    position: absolute;
    bottom: 0;
    right: 0;
}

.fleet__action .hidden--desktop {
    display: none !important;
}

.fleet__nav-buttons {
    display: flex;
    margin-top: 2.5rem;
    justify-content: center;
    gap: 1rem;
}

.fleet__nav-buttons > button {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--luxvo-primary-color);
    color: var(--luxvo-secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.fleet__nav-buttons > button:hover {
    cursor: pointer;
}

.fleet__slide {
    width: 22.5%;
    margin-left: 1.25%;
    margin-right: 1.25%;
}

.car-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--luxvo-primary-color);
    color: var(--luxvo-secondary-color);
    border-radius: 1rem;
    padding: 2rem 1rem 1.5rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.car-card__image {
    margin-bottom: 2%;
}

.car-card__image img {
    width: 100%;
}

.car-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.car-card__tag {
    background: var(--luxvo-secondary-color);
    color: var(--luxvo-tertiary-color);
    display: inline-block;
    padding: 4px 10px;
    width: fit-content;
    font-size: 0.8rem;
    border-radius: 19px;
}

.car-card__title {
    margin-top: 1rem;
}

.car-card__features {
    margin: 1.2rem auto;
    width: 100%;
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
}

.car-card__action {
    padding-top: 1rem;
    border-top: 1px solid var(--luxvo-secondary-color);
    display: flex;
    align-items: center;
}

.car-card__action a {
    margin-left: auto;
}

.car-card__price--title {
    font-weight: bold;
}

.car-card__price--subtitle {
    font-size: 0.6rem;
}

.about-us {
    width: 85%;
    margin: 8rem auto 0;
    display: flex;
}

.about-us__figure {
    width: 45%;
}

.about-us__image-wrapper {
    position: relative;
    line-height: 0;
}

.about-us__image-wrapper:first-of-type {
    width: 60%;
    margin-right: auto;
}

.about-us__image-wrapper:last-of-type {
    width: 60%;
    margin-left: 35%;
    margin-top: -70%;
}

.about-us__image-wrapper img {
    border-radius: 4rem;
    position: relative
}

.about-us__image-wrapper:first-of-type img {
    z-index: 1;
}

.about-us__image-wrapper:first-of-type .about-us__image-border {
    z-index: 4;
}

.about-us__image-wrapper:last-of-type img {
    z-index: 2;
}

.about-us__image-wrapper:last-of-type .about-us__image-border {
    border-color: var(--luxvo-secondary-color);
    z-index: 3;
}

.about-us__image-border {
    position: absolute;
    border: 2px solid var(--luxvo-primary-color);
    width: 100%;
    height: 100%;
    border-radius: calc(4rem + 10px);
    padding: 10px;
    top: -12px;
    left: -12px;
}

.about-us__content {
    width: 55%;
    padding: 0 1rem;
}

.about-us__subtitle {
    font-size: 2rem;
    font-weight: bold;
    max-width: 70%;
}

.about-us__text {
    margin-top: 2rem;
}

.about-us__features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-direction: column;
}

.about-us__feature-item {
    display: flex;
    gap: 1.5rem;
}

.about-us__feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-us__feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 50%;
    color: var(--luxvo-primary-color);
}

.about-us__feature-icon i {
    margin-left: 10%;
    margin-top: 20%;
}

.about-us__feature-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.about-us__action {
    margin-top: 3.5rem;
}

.services {
    width: 95%;
    margin: 8rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services__title {
    text-align: center;
}

.services__subtitle {
    font-size: 2rem;
    font-weight: bold;
    max-width: 70%;
    text-align: center;
}

.services__cards {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2%;
}

.service-card {
    width: 25%;
    background-color: var(--luxvo-primary-color);
    padding: 1rem 2rem;
    border-radius: 2.5rem;
    transition: all 0.23s ease-in-out;
}


.service-card:hover {
    cursor: pointer;
    background-color: var(--luxvo-secondary-color);
    color: var(--luxvo-tertiary-color);
}

.service-card:hover .service-card__icon {
    background-color: var(--luxvo-primary-color);
    color: var(--luxvo-tertiary-color);
}

.service-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 50%;
    color: var(--luxvo-secondary-color);
    transition: all 0.23s ease-in-out;
}

.service-card__icon i {
    margin-left: 10%;
    margin-top: 20%;
}

.service-card__title {
    margin-top: 1.5rem;
    font-size: 1.2em;
    font-weight: bold;
}

.service-card__content {
    margin: 1.2rem 0;
}

.main-banner {
    width: 95%;
    margin: 10rem auto 0;
    display: flex;
    background-color: rgb(112 112 112 / 20%);
    border-radius: 2rem;
    padding: 2rem 4rem;
    box-sizing: border-box;
}

.main-banner__image-wrapper {
    margin-top: -15%;
    width: 60%;
}

.main-banner__content { 
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
}

.main-banner__title {
    font-size: 2rem;
    font-weight: bold;
}

.main-banner__text {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.main-banner__social {
    margin-bottom: 1.5rem
}

.main-banner__social-item {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-banner__social-item a {
    word-break: break-all;
}

.main-banner__social-item i {
    flex: 0 0 auto;
    background-color: var(--luxvo-primary-color);
    font-size: 1.1rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
}

.footer {
    display: flex;
    flex-direction: column;
    margin-top: 10rem;
    background-color: rgb(112 112 112 / 20%);
    padding: 3rem 4rem 0;
    border-top-left-radius: 8rem;
    border-top-right-radius: 8rem;
}

.footer__main {
    display: flex;
}

.footer__about {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.footer__title {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.footer__title img {
    max-width: 90px;
}

.footer__text {
    margin-top: 2rem;
}

.footer__copyright {
    display: flex;
    margin-top: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid;
    align-items: center;
}

.footer__social {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
}

.footer__menu {
    width: 15%;
    margin-left: auto;
    margin-top: 1.5rem;
}

.footer__menu:last-of-type {
    width: 20%;
    margin-left: auto;
    margin-right: auto;
}

.footer__menu-title {
    font-weight: 600;
}

.footer__quick-links .quick-links {
    display: flex;
    flex-direction: column;
    margin-top: 0.8rem;
    gap: 0.5rem;
}

.footer__catalog .catalog {
    display: flex;
    flex-direction: column;
    max-height: 8rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    gap: 0.5rem;
}

.footer__social a {
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 50%;
}

.taxonomy {
    width: 95%;
    margin: 0 auto;
}

.taxonomy__selectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.taxonomy__selector > a {
    background-color: rgba(158, 158, 158, 0.5);
    border: 1px solid transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.taxonomy__selector--active > a  {
    background-color: var(--luxvo-primary-color);
    color: var(--luxvo-secondary-color);
}

.taxonomy__selector > a:focus,
.taxonomy__selector > a:hover {
    color: var(--luxvo-primary-color);
    border-color: var(--luxvo-primary-color);
    background-color: var(--luxvo-secondary-color);
}

.taxonomy__items {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.taxonomy__item {
    width: 23.5%;
    margin-bottom: 2%;
}

.pagination {
    margin-top: 2.5rem;
}

.pagination__list {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
}

.pagination__item > a {
    background-color: var(--luxvo-primary-color);
    color: var(--luxvo-secondary-color);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid transparent;
}

.pagination__item--active > a {
    background-color: rgba(158, 158, 158, 0.5);
}

.pagination__item > a:focus,
.pagination__item > a:hover {
    color: var(--luxvo-primary-color);
    border-color: var(--luxvo-primary-color);
    background-color: var(--luxvo-secondary-color);
}

.hero__social {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
}

.hero__social a {
    background-color: var(--luxvo-primary-color);
    font-size: 1.1rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
}

.hero__social a:focus,
.hero__social a:hover {
    color: var(--luxvo-secondary-color);
    border-color: var(--luxvo-secondary-color);
    background-color: transparent;
}

.page-custom {
    width: 90%;
    margin: 0 auto;
}

.page-custom__items {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
    align-items: center;
}

.page-custom__item {
    width: 45%;
    display: flex;
    background: var(--luxvo-primary-color);
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    border-radius: 1rem;
    gap: 4%;
    margin-bottom: 5%;
}

.page-custom__image-wrapper {
    width: 36%;
    height: 250px;
    overflow: hidden;
    border-radius: 2rem;
}

.page-custom__image-wrapper > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    transition: transform .3s ease;
}

.page-custom__image-wrapper:hover > img {
    transform: scale(1.5);
}

.page-custom__content {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.page-custom__title {
    margin-top: 5%;
}

.page-custom__text {
    margin-top: 15%;
}

.page-custom__action {
    margin-top: auto;
    margin-bottom: 10%;
}

.single-car__section {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.single-car__details {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    width: 30%;
    height: 100%;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
}

.single-car__price--title {
    font-size: 1.3rem;
}

.single-car__price--subtitle {
    font-size: 0.8rem;
}

.single-car__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.single-car__features > li {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.single-car__feature-label > i {
    margin-right: 0.5rem;
}

.single-car__actions {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
}

.single-car__separator {
    font-weight: bold;
    font-size: 1.1rem;
}

.single-car__main {
    width: 65%;
}

.single-car__slider {
    position: relative;
    margin-bottom: 4.5rem;
}


.single-car__slider--mobile {
    display: none;
}

.single-car__slider .swiper {
    max-height: 500px;
    border-radius: 1rem;
}

.single-car__slider--mobile .swiper {
    max-height: 200px;
}

.single-car__slider .swiper-pagination {
    bottom: -3rem;
}

.single-car__slider img {
    width: 100%;
}

.single-car__slider .swiper-pagination-bullet {
    background-color: var(--luxvo-secondary-color);
    opacity: 1;
    width: 0.8rem;
    height: 0.8rem;
}

.single-car__slider .swiper-pagination-bullet-active {
    background-color: var(--luxvo-primary-color);
}

.main-banner--contact .main-banner__text {
    margin-bottom: 0;
}

.page-contact__items {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.page-contact__item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.page-contact__label {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--luxvo-primary-color);
    font-size: 1.2rem;
}

.page-contact__value {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact__value > a {
    direction: ltr;
}

.not-found {
    margin: 4rem 0;
    font-size: 5rem;
    text-align: center;
    font-weight: bold;
}

.not-found--error-code {
    color: var(--luxvo-primary-color);
}

.single__section {
    width: 90%;
    margin: 0 auto;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100000;
    width: 100%;
    max-width: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all .3s ease;
}

.popup__link img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 10px 10px 25px #000000D1;
    border-radius: 2rem;
}

.popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000;
    border-radius: 50%;
    border: none;
    color: #fff;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10000;
    padding: 0.25rem;
}

.popup__close:hover,
.popup__close:focus {
    color: var(--luxvo-primary-color);
    outline: none;
}

.taxonomy__not-found {
    margin: 0 auto;
    font-size: 5rem;
    color: var(--luxvo-primary-color);
}

@media (min-width: 1441px) {
    html {
        font-size: 20px;
    }

    .footer__title,
    h1 {
        font-size: 34px;
    }

    .header {
        height: 125px;
    }

    .menu--desktop .sub-menu {
        top: 125px;
    }


    .page-custom__image-wrapper {
        height: 360px;
    }
}

@media (max-width: 1023px) {
    .hidden--desktop {
        display: unset;
    }

    .hidden--mobile {
        display: none;
    }

    .header {
        height: 100px;
        position: fixed;
        top: 0;
    }

    .header__menu--desktop {
        display: none;
    }
    
    .header__menu--mobile {
        display: block;
    }

    .header__title img {
        max-width: 70px;
    }

    .footer__title,
    .header__title h1 {
        font-size: 18px;
    }
    
    .hero {
        margin-top: 100px;
    }

    .hero__tagline {
        font-size: 32px;
    }

    .hero__actions--wide {
        width: unset;
        gap: 2rem;
    }
    
    .car-brands__image.hidden--mobile {
        display: unset;
    }

    .car-brands__image.hidden--desktop {
        display: none;
    }

    .car-brands__title {
        font-size: 0.8rem;
    }

    .car-brands__subtitle {
        font-size: 1rem;
    }

    .fleet__action .hidden--desktop {
        display: flex !important;
    }

    .services__cards {
        flex-wrap: wrap;
    }

    .service-card {
        flex: unset;
        width:40%;
        margin-bottom: 2%;
    }

    .page-custom__item {
        width: 100%;
    }

    .page-custom__text {
        margin-top: 5%;
    }

    .single-car__section {
        flex-direction: column;
    }

    .single-car__details {
        width: 100%;
    }

    .single-car__main {
        width: 100%;
        margin-top: 2rem;
    }

    .single-car__slider--desktop {
        display: none;
    }

    .single-car__slider--mobile {
        display: block;
    }

    .single-car__content {
        text-align: center;
        text-wrap: balance;
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .hero__content {
        width: 90%;
    }

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

    .car-brands__content {
        height: unset;
    }

    .car-brands__content {
        flex-direction: column;
    }

    .car-brands__info {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4%;
        margin-bottom: 4%;
    }

    .car-brands__image-wrapper {
        width: 100%;
    }

    .car-brands__action {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .car-brands__image.hidden--mobile {
        display: none;
    }

    .car-brands__image.hidden--desktop {
        display: unset;
    }

    .car-brands__background {
        width: 90%;
        height: 45%;
        left: 5%;
        border-radius: 40px;
        bottom: -3%;
    }

    .car-brands__title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .car-brands__subtitle {
        font-size: 1.5rem;
    }

    .car-brands__action {
        margin-top: 4%;
    }

    .marquee {
        margin-top: 15%;
    }

    .fleet {
        margin-top: 5rem;
    }

    .fleet__header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .fleet__action {
        position: unset;
    }

    .fleet__subtitle {
        max-width: 100%;
    }

    .fleet__nav-buttons {
        display: none;
    }

    .fleet__slide {
        width: 100%;
        margin: 0;
    }

    .fleet__slide .car-card {
        width: 90%;
        margin: 0 auto;
    }

    .about-us {
        margin-top: 5rem;
        flex-direction: column;
    }

    .about-us__figure {
        width: 100%;
    }

    .about-us__content {
        width: 100%;
        padding: 0;
        margin-top: 12px;
    }

    .about-us__subtitle {
        max-width: 100%;
    }

    .services {
        margin-top: 5rem;
    }

    .services__cards {
        flex-direction: column;
        width: 100%;
    }

    .service-card {
        width: 100%;
        box-sizing: border-box;
    }

    .main-banner {
        margin-top: 7rem;
        flex-direction: column;
        padding: 2rem;
    }

    .main-banner--contact {
        margin-top: 10rem;
    }

    .main-banner__content {
        order: 2;
        width: 100%;
    }

    .main-banner__image-wrapper {
        width: 100%;
        margin-top: -25%;
    }

    .footer {
        margin-top: 7rem;
        border-top-right-radius: 7rem;
        border-top-left-radius: 7rem;
    }

    .footer__main {
        flex-direction: column;
    }

    .footer__about {
        width: 100%;
    }

    .footer__menu {
        width: 100%;
    }

    .footer__menu:last-of-type {
        width: 100%;
    }

    .footer__copyright {
        flex-direction: column;
    }

    .footer__social {
        margin-right: auto;
    }

    .footer__copyright p {
        text-align: center;
        order: 2;
        margin-top: 2rem;
        font-size: 0.8rem;
    }

    .taxonomy {
        width: 90%;
    }

    .taxonomy__item {
        width: 100%;
        margin-bottom: 10%;
    }

    .hero__social {
        margin-left: unset;
    }

    .page-custom__image-wrapper {
        width: 40%;
        height: 170px;
    }

    .page-custom__action {
        margin-bottom: unset;
    }

    .hero__social--desktop {
        display: none;
    }

    .popup {
        max-width: 90%;
    }

    .marquee__slide img {
        height: 3rem;
    }
}
