/**
 * Theme Name: THT7
 * Version: 1.0.0
 * Text Domain: tht7
 * Domain Path: /languages
 */

:root {
    --tht7-primary-color: #FFC000;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Argentum Sans', sans-serif;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    margin: 0;
}

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

a,
a:visited {
    color: #FFF;
    text-decoration: none;
    transition: color .2s ease-in-out;
}

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

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

button {
    border: none;
}

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

.top-bar {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 6.5%;
    height: 72px;
    background-color: var(--tht7-primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    color: #000;
}

.top-bar__contact,
.top-bar__location,
.top-bar__hours {
    display: flex;
    align-items: center;
}

.top-bar__contact--mobile {
    display: none;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar__icon {
    font-size: 24px;
    margin-right: 5px;
}

.top-bar__separator {
    margin: 0 10px;
}

.top-bar__social-icon {
    font-size: 24px;
}

a.top-bar__social-link {
    color: #000;
}

a.top-bar__social-link:hover {
    border-bottom: 2px solid #000;
}

.site-header {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('./assets/images/header.jpeg');
}

.header {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 0 4%;
    background: transparent;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

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

.header__logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-logo {
    width: auto;
    height: auto;
    max-width: 70px;
}

.header__title {
    font-size: 25px;
    margin: 0;
}

.header__title-highlight {
    color: var(--tht7-primary-color);
}

.header__title-normal {
    color: #FFF;
}

.header__menu--desktop {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

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

.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.5rem;
}

.sub-menu {
    display: none;
    z-index: 15;
}

.menu--desktop .sub-menu {
    position: absolute;
    top: 100px;
    width: 250px;
    background-color: #FFF;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: translateX(-25%);
}

.menu--desktop .sub-menu .menu-item a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: #000;
    box-sizing: border-box;
}

.menu--desktop .sub-menu .menu-item a:hover {
    background-color: var(--tht7-primary-color); 
}

.menu--desktop .sub-menu .menu-item:first-child {
    margin-top: 15px;
}

.menu--desktop .sub-menu .menu-item:last-child {
    margin-bottom: 15px;
}

.header__menu-toggle-wrapper {
    display: none;
}

.header__language {
    margin-right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.header__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.link-button {
    background: var(--tht7-primary-color);
    width: fit-content;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 23px;
    padding-left: 15px;
    padding-right: 5px;
    transition: background-color .2s ease-in-out;
}

.link-button__text {
    color: #000;
}

.link-button__icon {
    margin-left: 5px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

a.link-button:hover {
    color: #FFF;
    background-color: #FFF;
}

.link-button--reverse {
    background: #FFF;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 23px;
    padding-left: 15px;
    padding-right: 5px;
    transition: background-color .2s ease-in-out;
}

.link-button__text--reverse {
    color: #000;
}

.link-button__icon--reverse {
    margin-left: 5px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

a.link-button--reverse:hover {
    color: #FFF;
    background-color: var(--tht7-primary-color);
}

.header__menu-toggle {
    background: unset;
    color: var(--tht7-primary-color);
    font-size: 24px;
}

.header__menu--mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    width: 65%;
    background-color: #000;
    padding: 20px;
    padding-left: 30px;
    flex-direction: row-reverse;
    align-items: flex-start;
    flex-direction: column;
}

.header__menu-close {
    background: none;
    color: var(--tht7-primary-color);
    font-size: 24px;
    margin-left: auto;
}

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

.header__menu-close:hover,
.header__menu-toggle:hover {
    cursor: pointer;
}

.menu--mobile {
    margin-right: auto;
    margin-bottom: 15px;
}

.menu--mobile .menu-item {
    margin: 15px 0;
}

.menu--mobile .sub-menu {
    margin-left: 15px;
}

.hero {
    max-width: 1440px;
    display: flex;
    overflow: hidden;
    margin: 0 auto;
}

.hero__content {
    margin-top: 90px;
    margin-bottom: 70px;
    margin-left: 5%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__tagline {
    margin: 0;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero__title {
    margin: 0;
    font-size: 50px;
    margin-bottom: 15px;
}

.hero__text {
    margin: 0;
    margin-bottom: 30px;
}

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

.hero__location-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tht7-primary-color);
    border-radius: 50%;
    font-size: 30px;
    color: #000;
}

.hero__location-link {
    margin-left: 12px;
    font-size: 19px;
    font-weight: bold;
}

.hero__title-highlight {
    color: var(--tht7-primary-color);
}

.hero__decorative {
    margin-left: auto;
    width: 560px;
    height: 560px;
    position: relative;
}

.hero__circle {
    position: absolute;
    background: var(--tht7-primary-color);
    width: 60%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.hero__tools-wrapper {
    position: absolute;
    z-index: 1;
}

.hero__tools {
    animation: rotate 15s linear infinite;
    width: 100%;
    height: 100%;
}

.hero__man {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.services {
    margin: 75px auto 0;
    width: 90%;
    max-width: 1440px;
}

.services__title {
    margin: 0 0 15px;
    font-size: 19px;
    font-weight: bold;
    color: var(--tht7-primary-color);
}

.services__tagline {
    margin: 0 0 25px;
    font-size: 35px;
    font-weight: bold;
}

.services__content {
    display: flex;
}

.services__items {
    width: 30%;
}

.services__item {
    width: 90%;
    height: 65px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    color: #000;
    background: #FFF;
    border-radius: 7px;
    padding: 0 15px;
    justify-content: space-between;
    transition: background-color .2s ease-in-out;
    box-sizing: border-box;
}

.services__item:hover {
    cursor: pointer;
    background-color: var(--tht7-primary-color);
}

.services__sliders {
    width: 70%;
    position: relative;
}

.services__slider {
    height: 110%;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.services__slider--active {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.services__slide-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 5%;
    border-radius: 22px;
    overflow: hidden;
    background: #FFF;
    color: #000;
}

.services__slide-thumbnail {
    position: relative;
}

.services__slide-icon-wrapper{
    position: absolute;
    width: 60px;
    height: 70px;
    background: #000;
}

.services__slide-icon {
    width: 50px;
    font-size: 35px;
    background: var(--tht7-primary-color);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.services__slide-image {
    width: 100%;
    height: auto;
}

.services__slide-title {
    margin: 20px 0;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
}

.services__slide-content {
    margin: 0 auto 25px;
    font-size: 14px;
    text-align: center;
    width: 90%;
}

.services__slide-more {
    margin-bottom: 20px;
    background: var(--tht7-primary-color);
    display: inline-flex;
    height: 40px;
    align-items: center;
    padding: 0 10px;
    border-radius: 20px;
    color: #000;
}

a.services__slide-more-link {
    color: #000;
}

a.services__slide-more-link:hover {
    text-decoration: underline;
}

.testimonials .swiper-pagination-bullet,
.services .swiper-pagination-bullet {
    background: #FFF;
    opacity: 0.7;
    width: 14px;
    height: 14px;
    margin: 0 10px !important;
    position: relative;
}

.testimonials .swiper-pagination-bullet::after,
.services .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #FFF;
    opacity: 0.7;
    border-radius: 50%;
    pointer-events: none;
}

.testimonials .swiper-pagination-bullet-active::after,
.services .swiper-pagination-bullet-active::after {
    border-color: var(--tht7-primary-color);
    opacity: 1;
}

.testimonials .swiper-pagination-bullet-active,
.services .swiper-pagination-bullet-active {
    background: var(--tht7-primary-color);
    opacity: 1;
}

.testimonials .swiper-wrapper {
    align-items: stretch;
}

.testimonials .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials .swiper-slide > * {
    flex: 1;
}


.about {
    margin: 140px auto 0;
    width: 90%;
    max-width: 1440px;
    display: flex;
}

.about__images {
    width: 40%;
    position: relative;
}

.about__image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.about__image-bg {
    width: 100%;
    height: 65%;
    background: var(--tht7-primary-color);
    position: absolute;
    bottom: -10px;
    padding: 0 15%;
    transform: translateX(-20%);
    border-radius: 40px;
}

.about__image-wrapper-1 {
    position: absolute;
    width: 18%;
    max-width: 90px;
    z-index: 3;
    top: -20%;
    left: 4%;
    transform: rotateY(180deg)
}

.about__image-wrapper-2 {
    position: absolute;
    width: 60%;
    height: 100%;
    max-height: 350px;
    z-index: 1;
    right: 8%;
    overflow: hidden;
    border: 6px solid #FFF;
    border-radius: 40px;
}

.about__image-wrapper-3 {
    position: absolute;
    width: 60%;
    height: 100%;
    max-height: 350px;
    z-index: 2;
    top: 40%;
    overflow: hidden;
    border: 6px solid #FFF;
    border-radius: 40px;
}

.about__content {
    width: 60%;
}

.about__title {
    font-size: 19px;
    font-weight: bold;
    color: var(--tht7-primary-color);
    margin: 0;
}

.about__tagline {
    font-size: 35px;
    font-weight: bold;
    margin: 15px 0 25px;
}

.about__tagline-highlight {
    color: var(--tht7-primary-color);
}

.about__text {
    margin: 0;
    font-size: 19px;
}

.about__list {
    margin: 35px 0 40px;
}

.about__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about__item-icon {
    font-size: 20px;
    color: var(--tht7-primary-color);
}

.about__item-text {
    font-size: 20px;
    font-weight: 500;
}

.marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 180px;
}

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

.marquee__slide::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FFF;
    margin-top: 30px;
}

.marquee__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 70px;
    color: var(--tht7-primary-color);
}

.marquee__text {
    margin: 0 15px 0;
}

.features {
    margin: 95px auto 0;
    width: 95%;
    max-width: 1480px;
    display: flex;
    flex-direction: column;
}

.features__title {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    color: var(--tht7-primary-color);
    margin: 0;
    margin-bottom: 15px;
}

.features__tagline {
    margin: 0;
    margin-bottom: 55px;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.features__tagline-highlight {
    color: var(--tht7-primary-color);
}

.features__items {
    display: flex;
}

.features__item {
    color: #000;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
    box-sizing: border-box;
    width: 23.5%;
    margin-right: 2%;
}

.features__item:last-child {
    margin-right: 0;
}

.features__item-icon {
    font-size: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    background: var(--tht7-primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: -25px;
    border: 8px solid #000;
}

.features__item-title {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.features__item-text {
    margin: 0;
    margin-bottom: 30px;
    text-align: center;
}

.car-slider {
    margin: 145px auto 0;
    width: 95%;
    max-width: 1480px;
    display: flex;
}

.car-slider__container {
    width: 55%;
    position:relative;
    height:450px;
    overflow:hidden;
    cursor:ew-resize;
    border-radius: 50px;
}

.car-slider__content {
    width: 43%;
    margin-left: 2%;
}

.car-slider__divider{
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 100%;
    background: #000;
    z-index: 10;
}

.car-slider__divider-icon{
    content: '';
    font-size: 25px;
    color: var(--tht7-primary-color);
    position: absolute;
    background: #000;
    border: 1px solid var(--tht7-primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-slider__base-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.car-slider__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.car-slider__overlay-inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.car-slider__overlay-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.car-slider__title {
    margin: 0;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: bold;
    color: var(--tht7-primary-color);
}

.car-slider__tagline {
    margin: 0;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: bold;
    width: 80%;
}

.car-slider__text {
    font-size: 19px;
    margin: 0;
    margin-bottom: 50px;
}

.car-slider__tagline-highlight {
    color: var(--tht7-primary-color);
}

.testimonials {
    margin: 140px auto 0;
    width: 90%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}

.testimonials__title {
    font-size: 19px;
    font-weight: bold;
    color: var(--tht7-primary-color);
    margin: 0;
    margin-bottom: 15px;
}

.testimonials__header {
    display: flex;
    justify-content: space-between;
}

.testimonials__tagline {
    margin: 0;
    font-size: 35px;
    font-weight: bold;
}

.testimonials__tagline-highlight {
    color: var(--tht7-primary-color);
}

.testimonials__nav-button--next,
.testimonials__nav-button--prev {
    width: 40px;
    height: 40px;
    background-color: var(--tht7-primary-color);
    border-radius: 50%;
    font-size: 18px;
    margin-top: 15px;
}

.testimonials__nav-button--next:hover,
.testimonials__nav-button--prev:hover {
    cursor: pointer;
}

.testimonials__slider {
    width: 100%;
    margin-top: 60px;
}

.testimonials__slide-container {
    background-color: #FFF;
    border-radius: 36px;
    width: 95%;
    margin: 0 2.5%;
    box-sizing: border-box;
    padding: 30px;
    color: #000;
}

.testimonials__slide-header {
    display: flex;
    justify-content: space-between;
}

.testimonials__author {
    display: flex;
}

.testimonials__author-avatar {
    font-size: 50px;
    color: #A5A5A5;
    margin-right: 10px;
}

.testimonials__author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.testimonials__author-name {
    font-size: 20px;
    font-weight: bold;
}

.testimonials__author-rating {
    font-size: 14px;
    color: #FFC000;
    display: flex;
}

.testimonials__quote-icon {
    font-size: 45px;
}

.testimonials__pagination {
    display: none;
    margin-top: 30px;
}

.main-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('./assets/images/main-banner.jpg');
    height: 440px;
    width: 100%;
    margin-top: 190px;
}

.main-banner__wrapper {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    width: 80%;
}

.main-banner__decor {
    margin-left: auto;
    margin-top: -60px;
    will-change: transform;
}

.main-banner__img {
    height: 500px;
}

.main-banner__content {
    width: 50%;
    margin: 85px 0 145px;
}

.main-banner__tagline {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 40px;
}

.main-banner__contact {
    display: flex;
}

.footer__call,
.main-banner__call {
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__call-info,
.main-banner__call-info {
    display: flex;
    flex-direction: column;
}

.footer__call-text,
.main-banner__call-text {
    font-size: 13px;
    font-weight: 300;
}

.footer__call-phone,
.main-banner__call-phone {
    font-weight: bold;
}

.footer__call-icon,
.main-banner__call-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--tht7-primary-color);
    color: #000;
    font-size: 24px;
}

.footer {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1440px;
    margin: 200px auto 30px;
    padding: 50px;
    background-color: #2A2A2A;
    border-radius: 80px;
    box-sizing: border-box;
}

.footer__main {
    display: flex;
    margin-bottom: 50px;
}

.footer__logo-link {
    display: flex;
    align-items: center;
    font-size: 22px;
    gap: 10px;
    font-weight: bold;
}

.footer__title-highlight {
    color: var(--tht7-primary-color);
}

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

.footer__text {
    font-size: 19px;
    margin: 0;
    margin-top: 30px;
}

.footer__cta {
    margin: 45px 0 30px;
    display: flex;
    gap: 50px;
}

.footer__call {
    margin-left: 0;
}

.footer__loc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__loc-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--tht7-primary-color);
    color: #000;
    font-size: 24px;
}

.footer__loc-text {
    font-weight: bold;
}

.footer__menu {
    width: 20%;
    margin-left: auto;
    margin-top: 20px;
}

.footer__menu:last-of-type {
    margin-left: 0;
}

.footer__menu-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
}

.footer__quick-links .quick-links {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-weight: 300;
    gap: 25px;
}

.footer__catalog .catalog {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-weight: 300;
    gap: 25px;
}

.footer__copyright {
    display: flex;
    padding-top: 30px;
    border-top: 1px solid;
    align-items: center;
}

.footer__copyright-text {
    margin: 0;
    font-size: 17px;
}

.footer__social {
    display: flex;
    margin-left: auto;
    gap: 15px;
}

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

.mobile-copyright {
    display: none;
}

.content {
    margin: 75px auto 0;
    width: 90%;
    max-width: 1440px;
    display: flex;
}

.content__image-wrapper {
    width: 50%;
    margin-right: 30px;
}

.content__image {
    width: 100%;
    border-radius: 26px;
}

.content__wrapper {
    width: 50%;
}

.content__title {
    font-size: 35px;
    font-weight: bold;
    margin: 0;
}

.content__text {
    margin: 0;
    margin-top: 30px;
    font-size: 19px;
}

.content__list {
    margin-top: 25px;
}

.content__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.content__item-icon {
    font-size: 20px;
    color: var(--tht7-primary-color);
}

.content__item-text {
    font-size: 20px;
    font-weight: 500;
}

.service-content {
    margin: 140px auto 0;
    width: 90%;
    max-width: 1440px;
}

.service-content__items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-content__item {
    display: flex;
    background: #2A2A2A;
    border-radius: 40px;
    overflow: hidden;
    height: 290px;
}

.service-content__image-wrapper {
    width: 33%;
}

.service-content__image {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    object-fit: cover;
}

.service-content__wrapper {
    width: 67%;
    box-sizing: border-box;
    padding: 40px 5%;
}

.service-content__title {
    margin: 0;
    font-size: 35px;
    font-weight: bold;
    color: var(--tht7-primary-color);
}

.service-content__text {
    margin-top: 25px;
    font-size: 19px;
}

.not-found {
    margin: 60px auto 0;
    font-size: 60px;
    color: var(--tht7-primary-color);
    font-weight: bold;
    text-align: center;
}

.madeby {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 0;
}

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

@media (max-width: 1200px) {
    .top-bar__social {
        display: none;
    } 

    .header__actions {
        display: none;
    }

    .header__menu--desktop {
        display: none;
    }

    .header__language {
        margin-left: auto;
    }

    .header__menu-toggle-wrapper {
        display: flex;
        align-items: center;
    }

    .header__menu--mobile {
        display: flex;
        z-index: 10;
    }
}

@media (max-width: 1023px) {
    .top-bar {
        font-size: 14px;
    }

    .top-bar__icon {
        font-size: 18px;
    }

    .top-bar__location {
        order: 1;
    }

    .top-bar__hours {
        order: 2;
    }

    .top-bar__contact {
        display: none;
    }

    .top-bar__contact--mobile {
        display: flex;
        align-items: center;
        order: 3;
    }

    .top-bar__contact-content--mobile,
    .top-bar__hours-content {
        display: flex;
        flex-direction: column;
    }

    .hero__decorative {
        margin-right: auto;
        margin-top: auto;
    }

    .about {
        flex-direction: column;
    }

    .about__images {
        width: 100%;
        margin-bottom: 30px;
    }

    .about__content {
        width: 100%;
    }

    .about__image-wrapper-1 {
        position: relative;
        top: unset;
        left: unset;
        max-width: 150px;
        margin-left: 10%;
    }
    
    .about__image-wrapper-2 {
        position: relative;
        right: unset;
        margin-top: -35%;
        margin-left: auto;
        max-height: unset;
    }

    .about__image-wrapper-3 {
        position: relative;
        top: unset;
        max-height: unset;
        margin-top: -50%;
    }

    .marquee {
        margin-top: 85px;
    }

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

    .car-slider__container {
        width: 100%;
        margin-bottom: 50px;
    }

    .car-slider__content {
        width: 100%;
    }

    .main-banner__content {
        width: 70%;
    }

    .main-banner__tagline {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .main-banner__contact {
        flex-direction: column;
        gap: 30px;
    }

    .main-banner__call {
        margin-left: 0;
    }

    .footer__main {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .footer__about {
        width: 100%;
    }

    .footer__menu {
        width: 50%;
        margin-left: 0;
    }

    .content {
        margin-top: 45px;
        flex-direction: column;
    }

    .content__image-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 35px;
    }

    .content__wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .top-bar__location {
        flex: 1.5 1 0;
    }

    .top-bar__hours {
        flex: 1 1 0;
    }

    .top-bar__contact--mobile {
        flex: 1 1 0;
    }

    .header__title {
        font-size: 19px;
    }

    .header__language {
        margin-right: 0.5rem;
    }

    .hero {
        flex-direction: column;
    }

    .hero__content {
        width: 80%;
        margin-top: 40px;
        margin-bottom: 20px;
        margin-left: 10%;
        margin-right: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero__tagline {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero__title {
        font-size: 22px;
        text-align: center;
    }

    .hero__text {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero__decorative {
        width: 350px;
        height: 350px;
    }

    .hero__location {
        justify-content: center;
    }

    .hero__location-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .hero__location-link {
        font-size: 14px;
    }

    .services {
        margin-top: 36px;
        width: 75%;
    }

    .services__title {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: center;
    }

    .services__tagline {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .services__content {
        flex-direction: column;
    }

    .services__items {
        width: 100%;
        margin-bottom: 35px;
    }

    .services__item {
        width: 100%;
        height: 50px;
        margin-bottom: 10px;
    }

    .services__sliders {
        width: 100%;
        height: 550px;
    }

    .services__slider {
        height: 90%;
    }    

    .about {
        margin-top: 0;
    }

    .about__title {
        font-size: 14px;
    }

    .about__tagline {
        font-size: 20px;
        margin: 10px 0 20px;
    }

    .about__text {
        font-size: 14px;
    }

    .about__list {
        margin: 20px 0 30px;
    }

    .about__item-text {
        font-size: 15px;
    }

    .marquee {
        margin-top: 75px;
    }

    .marquee__slide::before {
        width: 5px;
        height: 5px;
        margin-top: 10px;
    }

    .marquee__slide {
        font-size: 30px;
    }

    .features {
        width: 90%;
        margin-top: 50px;
    }

    .features__title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .features__tagline {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .features__items {
        flex-direction: column;
    }

    .features__item {
        margin-right: 0;
        width: 100%;
        margin-bottom: 35px;
    }

    .car-slider {
        width: 90%;
    }

    .car-slider__container {
        height: 225px;
        margin-bottom: 30px;
    }

    .car-slider__title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .car-slider__tagline {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .car-slider__text {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .testimonials {
        margin-top: 65px;
    }

    .testimonials__title {
        font-size: 14px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .testimonials__tagline {
        font-size: 20px;
        margin: 0 auto;
    }

    .testimonials__tagline-highlight {
        color: #FFF;
    }

    .testimonials__nav-buttons {
        display: none;
    }

    .testimonials__slider {
        margin-top: 30px;
    }

    .testimonials__pagination {
        position: unset !important;
        display: block;
    }

    .main-banner {
        margin-top: 90px;
        height: 510px;
        overflow: hidden;
    }

    .main-banner__wrapper {
        flex-direction: column;
    }

    .main-banner__content {
        margin-top: 50px;
    }

    .main-banner__img {
        height: 350px;
        margin-top: -180px;
    }

    .footer {
        margin: 170px auto 20px;
        padding: 30px 25px;
        border-radius: 60px;
    }

    .footer__logo-link {
        font-size: 16px;
    }

    .footer .custom-logo {
        width: 70%;
    }

    .footer__title {
        margin-left: -20px;
    }

    .footer__text {
        font-size: 14px;
        margin-top: 25px;
    }

    .footer__cta {
        margin-bottom: 0;
        flex-direction: column;
    }

    .footer__menu {
        margin-top: 60px;
        width: 100%;
    }

    .footer__menu:last-of-type {
        margin-top: 40px;
    }

    .footer__copyright-text {
        display: none;
    }

    .footer__social {
        margin-right: auto;
    }

    .mobile-copyright {
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .content__item-text {
        font-size: 15px;
    }

    .content__title {
        font-size: 20px;
    }

    .content__text {
        font-size: 14px;
    }
    
    .service-content {
        margin-top: 30px;
    }

    .service-content__item {
        flex-direction: column;
        gap: 20px;
    }

    .service-content__item {
        height: 470px;
    }

    .service-content__image-wrapper {
        width: 100%;
        height: 230px;
    }

    .service-content__wrapper {
        width: 100%;
        padding: 20px;
    }

    .service-content__title {
        font-size: 20px;
    }

    .service-content__text {
        font-size: 14px;
        margin: 0;
        margin-top: 18px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        font-size: 9px;
        padding: 0 4%;
    }

    .top-bar__icon {
        font-size: 16px;
        margin-right: 2px;
    }

    .top-bar__location {
        flex: 1.4 1 0;
    }

    .top-bar__hours {
        flex: 1.2 1 0;
    }

    .top-bar__contact--mobile {
        flex: 1 1 0;
    }
}
