@font-face {
    font-family: 'Lato';
    src: url('../../font/Lato.ttf');
}

@font-face {
    font-family: 'Lato Thin';
    src: url('../../font/Lato-Thin.ttf');
}

* {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Lato';
    font-weight: normal;

    color: #393939;
}

.hidden {
    display: none !important;
}

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

body {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.slick-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin-top: .5em;
}

.slick-dots > li {
    margin: 0 .2em;
}

.slick-dots > li > button {
    padding: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    text-indent: -9999px;

    border: 1px solid #fa0415;
    background: none;
}

.slick-dots > li.slick-active > button {
    background: #fa0415;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;

    width: 30%;
    padding: 1.5em 2em 2em;
    text-align: center;

    background: url(../../img/front/header-logo-bg.png);
    background-repeat: no-repeat;
    background-size: contain;

    z-index: 100;
}

.logo img {
    width: 30%;
    margin-left: 50px;
}

header > .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 1em 4em;
    background-color: #393939;
}

header > .menu * {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

header > .menu a.current,
.mobile-menu a.current {
    color: rgb(250, 4, 21);
    border-bottom: 1px solid rgb(250, 4, 21);
}

header > .menu > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header > .menu > div > a:not(:last-of-type) {
    margin-right: 2em;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    background-color: #393939;

    padding: 2em;
}

.mobile-menu * {
    color: #fff;
    text-transform: uppercase;
}

.mobile-menu > li:not(:last-child) {
    margin-bottom: 1em;
}

section {
    /* margin-bottom: 100px; */
    margin-bottom: 50px;
}

.section-title {
    width: fit-content !important;
    max-width: 80%;
    padding: .5rem 1rem;
    border-bottom: 2px solid #fa0415;
    /* margin: 0 auto 100px; */
    margin: 0 auto 50px;
    text-align: center
}

.section-title,
.section-title * {
    font-size: 36px;
    font-weight: bolder;
}

.subpage-section .section-title {
    margin-bottom: 25px;
}

.plain-section > * {
    width: 55%;
    /* margin: 0 auto 2em; */
    margin-left: auto;
    margin-right: auto;
}

.plain-section p,
.plain-section p *,
.plain-section ul li,
.plain-section ul li *,
.home-section4 > div > div:last-child > div:last-child,
.home-section4 > div > div:last-child > div:last-child * {
    font-size: 20px;
    line-height: 27px
}

.plain-section ul li {
    margin-left: 1.2em;
}

.plain-section ul,
.plain-section ul li {
    list-style: disc;
}

.header-banner-slider {
    /* margin-bottom: 72px; */
    margin-bottom: 36px;
}

.header-banner-slider img {
    width: 100%;
}

.ads-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    padding: .5rem;
    background: rgba(0, 0, 0, 0.7);
}

.ads-slider {
    width: 70vw;
    max-height: 70vh;
    margin: auto;
    margin-top: 15vh;
}

.ads-slider img {
    max-width: 100%;
    margin: auto;
}

.ads-popup h3,
.ads-popup h3 * {
    color: #fff;
}

.ads-popup h3 span {
    cursor: pointer;
}

.ads-popup h3 span,
.ads-popup h3 span * {
    font-size: 56px;
}

.ads-popup h3 {
    text-align: right;
    
    position: absolute;
    top: 10vh;
    right: 11.5vw;
}

.message-popup {
    position: fixed;
    top: 0;
    /* top: 30vh; */
    left: 35vw;
    width: 40vw;
    min-height: 30vh;

    transform: translateY(50%);

    background: #fa0415;
    text-align: center;
    z-index: 150;

    padding: 2rem;
}

.message-popup img {
    max-width: 90%;
}

.message-popup p {
    padding: 0 5%;
    color: #fff;
    font-size: 1.5rem
}

.message-popup h3,
.message-popup h3 * {
    color: #fff;
}

.message-popup h3 span {
    cursor: pointer;
}

.message-popup h3 {
    margin-top: 0;
    margin-bottom: .5rem;
    text-align: right;
}

.grid-section.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    align-items: stretch;
}

.grid-section.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    align-items: stretch;
    grid-column-gap: 2%;
    grid-row-gap: 2em;

    width: 60%;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.grid-section.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    align-items: stretch;
}

.grid-section.grid-3 > div {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.13);

    padding: 2em 1em;
}

.grid-section.grid-3 > div * {
    color: #393939;
}

.grid-section.grid-3 > div img {
    max-width: 90%;
    height: 125px;
    margin-bottom: 2rem;
}

.grid-section.grid-3 > div h1,
.grid-section.grid-3 > div h1 * {
    font-weight: bolder;
    font-size: 26px;

    margin: 0;
    margin-bottom: .4rem;
}

.grid-section.grid-3 > div h2,
.grid-section.grid-3 > div h2 * {
    font-weight: normal;
    font-size: 18px;
    margin: 0;
}

.grid-section * {
    color: #fff;
    font-weight: bolder;
}

.grid-section.grid-4 > div:nth-child(2n) img {
    width: 100%;
    height: 100%;
}

.grid-section.grid-4 > div:nth-child(1),
.grid-section.grid-2 > div:nth-child(1) {
    background: #fa0415;
}

.grid-section.grid-4 > div:nth-child(3),
.grid-section.grid-2 > div:nth-child(2) {
    background: #393939;
}

.grid-section.grid-4 > div:nth-child(2n - 1),
.grid-section.grid-2 > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em;
}

.grid-section.grid-4 > div:nth-child(2n - 1) > div:not(:last-child),
.grid-section.grid-2 > div > div:not(:last-child) {
    margin-bottom: 1em;
}

.grid-section.grid-4 > div:nth-child(2n - 1) > div:nth-child(2),
.grid-section.grid-4 > div:nth-child(2n - 1) > div:nth-child(2) *,
.grid-section.grid-2 > div > div:nth-child(2),
.grid-section.grid-2 > div > div:nth-child(2) * {
    font-size: 36px;
}

.grid-section.grid-2 > div > div:nth-child(2) {
    text-align: center;
}

.grid-section.grid-4 > div:nth-child(2n - 1) > div:nth-child(3) a,
.grid-section.grid-4 > div:nth-child(2n - 1) > div:nth-child(3) a *,
.grid-section.grid-2 > div > div:nth-child(3) a,
.grid-section.grid-2 > div > div:nth-child(3) a * {
    font-size: 26px;
}

.grid-section.grid-4 > div:nth-child(2n - 1) div:has(> img),
.grid-section.grid-2 > div div:has(> img) {
    width: 30%;
}

.grid-section.grid-4 > div:nth-child(2n - 1) img,
.grid-section.grid-2 > div img {
    width: 100%;
}

.grid-section a {
    border-bottom: 1px solid #fff;
}

.slider-4-slides {
    padding: 0 3em;

    width: 100%;
    margin: 0 auto;
}

.slider-4-slides .slick-track {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.slider-4-slides .slick-slide {
    padding: 1em;
    /* height: 100%; */

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.slider-4-slides .slick-slide > div {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.slider-4-slides .slick-slide img {
    display: block;
    margin: auto auto;
    width: auto;
    max-width: 100%;
}

.car-previews {
    background: #393939;
    margin-bottom: 2rem;

    padding: 0 calc(5% + 3em);
    /* width: 90%;
    margin: 0 auto; */
}

.car-previews .slick-list {
    height: fit-content !important;
}

.car-previews .slick-slide > div > div > div {
    max-width: 80%;

    margin: auto;
}

.car-previews .slick-slide > div > div > div:first-child {
    overflow: hidden;
}

.car-previews .slick-slide > div > div > div:not(:first-child) {
    padding: .5rem 10%;
}

.car-previews .slick-slide > div:first-child {
    margin-top: 2rem;
}

.car-previews .slick-slide > div {
    margin-bottom: 2rem;
}

.car-previews .slick-slide > div > div > div:last-child {
    background: #fff;
}

.car-previews .slick-slide > div > div > div:last-child > div {
    font-size: 15px;
    color: rgb(57, 57, 57);
    line-height: 1.2;
}

.car-previews img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.products-button {
    text-align: center;
    text-transform: uppercase;
}

.flex-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

.flex-center img {
    width: 100%;
}

.flex-center h1 {
    text-align: center;
}

.flex-center h1,
.flex-center h1 * {
    font-size: 26px;
    font-weight: bolder;
}

.flex-center > div {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.13);
}

.flex-center.flex-2 > div {
    width: 35%;
}

.flex-center.flex-2 > div:first-child {
    margin-right: 1%;
}

.flex-center.flex-2 > div:last-child {
    margin-left: 1%;
}

.flex-center.flex-2 > div > div:last-child {
    padding: 1em 2em 3em;
}

.logos {
    width: 70%;

    margin: 0 auto 8em;
}

.logos img {
    width: 100%;
}

footer {
    position: relative;
    padding-top: 3rem;
}

footer * {
    color: #fff;
}

footer > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;

    background: #393939;

    padding: 2em 10% 4em;
}

footer > div:first-child > div:first-child {
    width: 60%;
}

footer > div:first-child > div > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer > div:first-child > div > ul > li:last-child > a:not(:last-child) {
    margin-right: 1em;
}

footer > div:first-child > div > ul > li:not(:last-child) > a,
footer > div:first-child > div > ul > li:not(:last-child) > a * {
    font-size: 18px;
}

footer > div:first-child > div > ul > li:last-child > a i {
    font-size: 18px;
}

footer > div:first-child > div > p {
    margin-top: 2em;
    width: 85%;
}

footer > div:first-child > div > p,
footer > div:first-child > div > p * {
    font-size: 12px;
}

footer .contact-bar {
    padding: 2em .3em 4em 6em;

    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;

    background: url(../../img/front/footer-contact.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    z-index: 100;
}

footer .contact-bar > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .contact-bar span img {
    width: 57px;
}

footer .contact-bar ul {
    margin-left: 1em;
}

footer .contact-bar li,
footer .contact-bar li *,
footer .contact-bar > div {
    font-size: 16px;
}

footer .contact-bar > div:not(:last-child) {
    margin-bottom: .5em;
}

.mobile-menu + .brands-section,
.mobile-menu + .subpage-section {
    margin-top: 6rem;
}

.cars-section {
    background-color: #393939;

    /* padding: 2rem 9.5%; */
    padding-bottom: 2rem;
}

.preview-slider {
    padding: 2rem 9.5vw;
}

.cars-section * {
    color: #fff;
}

.cars-slider .slick-slide h1 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.cars-slider .slick-slide h2 {
    margin-top: 0;
    margin-bottom: 5rem;
}

.cars-slider .slick-slide h1,
.cars-slider .slick-slide h1 * {
    font-size: 48px;
    font-weight: bolder;
}

.cars-slider .slick-slide h2,
.cars-slider .slick-slide h2 *,
.cars-slider .slick-slide ul,
.cars-slider .slick-slide ul * {
    font-size: 30px;
}

.cars-slider .slick-slide ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.cars-slider .slick-slide ul li > span {
    display: inline-block;
}

.cars-slider .slick-slide ul li > span:first-child {
    width: 40%;
    margin-right: .5rem;
}

.cars-slider .slick-slide ul li > span:last-child {
    width: 60%;
}

.cars-slider .slick-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;

    /* padding: 0 5em; */
    padding: 2rem 9.5vw;
}

.cars-slider .slick-slide > div {
    width: 50%;
    margin-right: 1.8rem;
}

.cars-slider:not(.lpg) .slick-slide > div:last-child {
    padding-left: 1rem;
}

.cars-slider .slick-slide > div:first-of-type {
    /* padding-right: 1.5rem; */
}

.cars-slider .slick-slide > div img {
    width: 100%;
}

.preview-slider {
    /* margin-top: 2rem; */
    /* padding-left: 3rem; */
}

.preview-slider .slick-slide {
    padding: 2rem;
    padding-left: 0;
    padding-top: 0;
}

.preview-slider img {
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.input-group.group-1 > * {
    width: 100%;
}

.input-group.group-2 > * {
    width: 48%;
}

.input-group.group-3 > * {
    width: 32%;
}

.input-group.center {
    justify-content: center;
}

.input-group.center > * {
    width: fit-content;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
select,
textarea {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.25);

    border: none;
    outline: none;

    padding: 1em;

    font-size: 20px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='35' viewBox='0 0 24 24' width='35' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 50%;
}

textarea {
    resize: vertical;
}

.form form {
    width: 60%;
    margin: 0 auto;
}

.form form > div:not(:last-child) {
    margin-bottom: 1.5rem;
}

input::placeholder {
    color: #393939;
}

.form form > .check {
    margin-bottom: .75rem;
}

.form form > .check:nth-last-child(1 of .check) {
    margin-bottom: 0;
}

label.check {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

label.check,
label.check * {
    font-size: 20px;
}

label.check a {
    text-decoration: underline;
}

label.check > span:first-of-type {
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.25);

    width: 18px;
    height: 17px;

    display: inline-block;
    margin-right: 5px;
}

label.check > input[type=checkbox]:checked + span {
    background-color: rgb(250, 4, 21);
    box-shadow: inset 0px 0px 9px 0px rgba(0, 0, 0, 0.75);
}

input[type=button],
input[type=submit],
button {
    border-radius: 10px;
    background-color: rgb(250, 4, 21);
    border: none;

    padding: 1em;
    font-weight: bolder;
    color: #fff;
}

.form form > div:last-child {
    margin-top: 3rem;
}

.form form > div:last-child > input {
    width: 30%;
}

.cars-slider.lpg .slick-slide {
    padding: 0;
    
    background-color: #393939;
}

.cars-slider.lpg .slick-slide * {
    color: #fff;
}

.cars-slider.lpg .slick-slide > div:last-child {
    padding: 2em 2em 2em 1.5rem;
}

.cars-slider.lpg .slick-slide > div:last-child button {
    margin-top: 2em;
}

.cars-slider.lpg .slick-slide h2 {
    margin-bottom: 3rem;
}

.lpg-header-section img {
    width: 100%;
}

.list {
    width: 60%;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(2, 48%);
    grid-column-gap: 4%;
    grid-row-gap: 2em;
}

.list > div {
    background: none;
}

.list * {
    color: #393939;

    margin: 0;
    padding: 0;
}

.list h1,
.list h1 * {
    font-size: 26px;
    font-weight: bolder;
}

.list h2,
.list h2 * {
    font-size: 18px;
    font-weight: bolder;
}

.list ul * {
    font-size: 14px;
    font-weight: normal;
}

.list > div > h1,
.list > div > div {
    border-bottom: 1px solid #fa0415;
}

.list > div > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.list > div > h1 {
    padding-bottom: .3rem;
}

.list > div > div {
    padding: .7em 0 1.5em;
}

.list > div > div:last-child {
    border-bottom: none;
}

.list > div > div:has(+ h1) {
    border-bottom: none;
    margin-bottom: 4rem;
}

.list a {
    text-decoration: underline;
}

.table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.table * {
    font-size: 26px;
    font-weight: 500;
    color: #fff;

    margin: 0;
    padding: 0;
}

.table thead {
    padding: 1em;
    background: #fa0415;
}

.table thead > tr > th:first-child {
    padding-left: 20vw;
}

.table thead > tr > th {
    padding: 1rem;
}

.table thead > tr > th:last-child {
    padding-right: 20vw;
}

.table tbody {
    padding: 1em;
    background: #393939;
}

.table tbody > tr > td:first-child {
    padding-left: 20vw;
}

.table tbody > tr > td:last-child {
    padding-right: 20vw;
}

.table tbody > tr > td {
    padding: 1rem;
}

.collapse-section {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.collapse-section > div:not(.collapse-content) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;

    cursor: pointer;
}

.collapse-section > div:not(.collapse-content) > h1 {
    width: 90%;
    margin: 0;

    padding-bottom: .5rem;
}

.collapse-section > div:not(.collapse-content):has(+ div.collapse-content:not(.hidden)) > h1 {
    border-bottom: 2px solid #fa0415;
}

.collapse-section > div:not(.collapse-content):has(+ div.collapse-content.hidden) > h1 {
    margin-bottom: 2rem;
}

.collapse-section > div:not(.collapse-content) > h1,
.collapse-section > div:not(.collapse-content) > h1 * {
    font-weight: bolder;
    font-size: 26px;
}

.collapse-section > div:not(.collapse-content) > span {
    width: 10%;
    text-align: right;
}

.collapse-section > div:not(.collapse-content) > span * {
    color: #fa0415;
    font-size: 32px;
}

.collapse-section > div:not(.collapse-content) > span > span {
    max-width: 95%;
}

.collapse-section > div.collapse-content {
    margin-top: .5rem;
    margin-bottom: 2rem;
    width: 90%;
}

.collapse-section > div.collapse-content ul,
.collapse-section > div.collapse-content ol {
    margin-left: 1.5rem;
}

.collapse-section > div.collapse-content ul,
.collapse-section > div.collapse-content ul li {
    list-style-type: disc;
}

.collapse-section > div.collapse-content ol,
.collapse-section > div.collapse-content ol li {
    list-style-type: decimal;
}

.collapse-section > div.collapse-content ul li:not(:last-child),
.collapse-section > div.collapse-content ol li:not(:last-child) {
    margin-bottom: .5em;
}

.collapse-section > div.collapse-content,
.collapse-section > div.collapse-content * {
    font-size: 18px;
    font-weight: normal;
}

.calendar {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.fc-button * {
    color: #fff;
}

.fc-daygrid-day-events {
    display: none !important;
}

.fc-daygrid-day-frame,
.fc-daygrid-day-frame * {
    color: #fff;
}

.fc-day-today .fc-daygrid-day-frame {
    background-color: #fa0415 !important;
}

/* .fc-daygrid-day-frame:has(.fc-daygrid-event-harness) {
    background-color: #393939;
} */

/* .fc-daygrid-day-frame:not(:has(.fc-daygrid-event-harness)) { */
.fc-daygrid-day-frame {
    background-color: #d9d9d9;
}

.date-selected .fc-daygrid-day-frame {
    background-color: #70a2b2;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #ababab;
}

.color-values {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;

    width: 70%;
    margin: 1rem auto 2rem;
}

.color-values > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.color-values > div > span:first-child {
    display: inline-block;
    border-radius: 10px;
    
    width: 70px;
    height: 45px;
}

.color-values > div:first-child > span:first-child {
    background-color: #d9d9d9;
}

.color-values > div:last-child > span:first-child {
    background-color: #393939;
}

.color-values > div:last-child {
    margin-left: 10%;
}

.color-values > div > span:last-child {
    margin-left: .5rem;
}

.color-values > div > span:last-child,
.color-values > div > span:last-child * {
    font-size: 20px;
    font-weight: bolder;
}

.inputs {
    width: 70%;
    margin: 0 auto;
}

.inputs > * {
    margin-bottom: 1.5rem;
}

.inputs > label:first-of-type {
    margin-top: 3rem;
}

.inputs input[type=submit] {
    margin-top: 4rem;
}

.fc .fc-scroller-liquid-absolute {
    position: relative;
}

section.with-list/*,
section.lpg-header-section*/ {
    margin-bottom: 5em;
}

.mobile-menu + .pricing-header {
    margin-top: 6em;
}

.pricing-header {
    text-align: center;
}

.pricing-header h1,
.pricing-header h1 * {
    font-size: 36px;
    font-weight: bolder;
    margin: 0;
}

.pricing-specification > div {
    background: url(/dist/img/front/car.png);
    background-repeat: no-repeat;
    background-size: 35% auto;
}

.pricing-specification > div > div {
    width: 60%;
    margin-left: 30%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pricing-specification > div > p {
    width: 60%;
    margin-left: 30%;
    margin-right: 10%;

    padding-left: 3rem;
}

.pricing-specification > div > ul {
    width: 60%;
    margin-left: 30%;
    margin-right: 10%;

    padding-left: 3rem;
}

.pricing-specification > div > ul > li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pricing-specification > div > ul > li h1,
.pricing-specification > div > ul > li h1 * {
    font-size: 36px;
    font-weight: bolder;
}

.pricing-specification > div > ul > li span,
.pricing-specification > div > ul > li span * {
    font-size: 30px;
    font-weight: bolder;
}

.pricing-specification > div > ul > li:not(:first-child) {
    margin-bottom: .5em;
}

.pricing-specification > div > p,
.pricing-specification > div > p * {
    font-size: 30px;
    font-weight: bolder;
}

.pricing-specification > div > div > div:first-child {
    border-bottom: 3px solid #fa0415;
    flex: 1;
}

.pricing-specification > div > div > div:first-child p {
    margin: .25em 0 .25em 3rem;
}

.pricing-specification > div > div > div:first-child p:last-of-type {
    margin-bottom: 1em;
}

.pricing-specification > div > div > div:last-child {
    border-radius: 50%;
    padding: 2em;
    border: 2px solid #fa0415;
    margin-left: -2em;
    margin-top: 4em;
    background: #fff;
}

.pricing-specification > div > div > div:last-child img {
    width: 150px;
}

.pricing-specification > div > div > div:first-child p,
.pricing-specification > div > div > div:first-child p * {
    font-weight: bolder;
}

.pricing-specification > div > div > div:first-child p:first-of-type,
.pricing-specification > div > div > div:first-child p:first-of-type * {
    font-size: 36px;
}

.pricing-specification > div > div > div:first-child p:last-of-type,
.pricing-specification > div > div > div:first-child p:last-of-type * {
    font-size: 30px;
}

.grid-section.grid-2.pricing > div:first-child {
    align-items: start;
}

.grid-section.grid-2.pricing > div:first-child h1 {
    margin-bottom: 0;
}

.grid-section.grid-2.pricing h2 {
    margin-top: 0;
}

.grid-section.grid-2.pricing h1,
.grid-section.grid-2.pricing h1 *,
.grid-section.grid-2.pricing h2,
.grid-section.grid-2.pricing h2 *,
.grid-section.grid-2.pricing ul,
.grid-section.grid-2.pricing ul * {
    font-size: 36px
}

.grid-section.grid-2.pricing p,
.grid-section.grid-2.pricing p * {
    font-size: 20px;
}

.pricing-specification2 > div {
    width: 80%;
    margin: 0 auto;
}

.pricing-specification2 p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 0 .5rem 1rem;
}

.pricing-specification2 p:not(:last-of-type) {
    border-bottom: 2px solid #212120;
}

.pricing-specification2 p > span {
    flex: 1;
}

.pricing-specification2 p > span,
.pricing-specification2 p > span * {
    font-size: 36px;
    font-weight: bolder;
}

.pricing-contact > p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.pricing-contact > p,
.pricing-contact > p * {
    font-size: 36px;
    font-weight: bolder;
}

.pricing-contact > p:nth-of-type(4),
.pricing-contact > p:nth-of-type(5),
.pricing-contact > p:last-of-type {
    margin-top: 3rem;
}

.pricing-map img {
    width: 100%;
}

.our-services-section {
    /* margin-bottom: 86px; */
    margin-bottom: 43px;
}

.last-products-section {
    /* margin-bottom: 82px; */
    margin-bottom: 41px;
}

@media screen and (min-width: 2300px) {
    .cars-section {
        /* padding: 2rem 9%; */
    }

    .cars-slider .slick-slide {
        padding: 2rem 9vw;
    }

    .preview-slider {
        padding: 2rem 9vw;
    }
}

@media screen and (min-width: 1025px) {
    .cars-slider:not(.lpg) .slick-slide {
        /* padding-left: 0 !important; */
    }
}

@media screen and (max-width: 3000px) {
    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        padding: 6em 2em;
    } */
}

@media screen and (max-width: 2500px) {
    
}

@media screen and (max-width: 2300px) {
    
}

@media screen and (max-width: 2100px) {
    
}

@media screen and (max-width: 1920px) {
    
}

@media screen and (max-width: 1700px) {
    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1 * {
        font-size: 30px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p * {
        font-size: 15px;
    } */

    .grid-section.grid-3 > div h1,
    .grid-section.grid-3 > div h1 * {
        font-size: 24px;
    }

    .grid-section.grid-3 > div h2,
    .grid-section.grid-3 > div h2 * {
        font-size: 16px;
    }

    .list h1,
    .list h1 * {
        font-size: 24px;
    }
}

@media screen and (max-width: 1550px) {
    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1 * {
        font-size: 26px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p * {
        font-size: 14px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        padding: 2em;
    } */

    .list h1,
    .list h1 * {
        font-size: 22px;
    }

    .list h2,
    .list h2 * {
        font-size: 16px;
    }

    .list ul * {
        font-size: 12px;
    }
}

@media screen and (max-width: 1450px) {
    .logo {
        width: 25%;
        padding: 1em 2em 2em;
    }

    footer > div:first-child > div:first-child {
        width: 55%;
    }

    footer .contact-bar {
        width: 45%;
        background-size: 100% 100%;
    }

    .cars-slider .slick-slide h1,
    .cars-slider .slick-slide h1 * {
        font-size: 36px;
    }

    .cars-slider .slick-slide h2,
    .cars-slider .slick-slide h2 *,
    .cars-slider .slick-slide ul,
    .cars-slider .slick-slide ul * {
        font-size: 24px;
    }

    .cars-section {
        padding-bottom: 3rem;
    }

    .cars-slider .slick-slide {
        padding: 3rem calc(5vw + 4rem);
    }

    .preview-slider {
        padding: 3rem calc(5vw + 4rem);
    }

    .form form {
        width: 70%;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        padding: 1.8em;
    } */

    .grid-section.grid-3 {
        width: 70%;
    }

    .list h1,
    .list h1 * {
        font-size: 20px;
    }

    .list {
        width: 70%;
    }

    .table thead > tr > th:first-child {
        padding-left: 15vw;
    }
    
    .table thead > tr > th:last-child {
        padding-right: 15vw;
    }
    
    .table tbody > tr > td:first-child {
        padding-left: 15vw;
    }
    
    .table tbody > tr > td:last-child {
        padding-right: 15vw;
    }

    .collapse-section {
        width: 70%;
    }

    .mobile-menu + .brands-section,
    .mobile-menu + .subpage-section {
        margin-top: 3rem;
    }

    .pricing-specification > div > div,
    .pricing-specification > div > p,
    .pricing-specification > div > ul {
        width: 65%;
        margin-right: 5%;
    }

    .ads-popup h3 {
        top: 10vh;
        right: 10vw;
    }
}

@media screen and (max-width: 1240px) {
    footer > div:first-child > div:first-child {
        width: 60%;
    }

    footer .contact-bar {
        width: 40%;
        background-size: 100% 100%;
    }

    footer .contact-bar span img {
        width: 45px;
    }
    
    footer .contact-bar li,
    footer .contact-bar li * {
        font-size: 14px;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        padding: 1.7em;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1 * {
        font-size: 24px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p * {
        font-size: 13px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) {
        /* height: calc(350px - 4em); */
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        /* height: calc(350px - 4em); */
    } */

    .mobile-menu + .brands-section,
    .mobile-menu + .subpage-section {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 1180px) {
    header > .menu * {
        font-size: 16px;
    }

    footer > div:first-child > div > ul > li:not(:last-child) > a,
    footer > div:first-child > div > ul > li:not(:last-child) > a * {
        font-size: 16px;
    }

    .form form {
        width: 90%;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        padding: 2em;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1 * {
        font-size: 22px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p * {
        font-size: 12px;
    } */

    .grid-section.grid-3 {
        width: 90%;
    }

    .list {
        width: 90%;
    }

    .table thead > tr > th:first-child {
        padding-left: 2vw;
    }
    
    .table thead > tr > th:last-child {
        padding-right: 2vw;
    }
    
    .table tbody > tr > td:first-child {
        padding-left: 2vw;
    }
    
    .table tbody > tr > td:last-child {
        padding-right: 2vw;
    }

    .collapse-section {
        width: 90%;
    }
}

@media screen and (min-width: 1025px) {
    .mobile {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .desktop {
        display: none !important;
    }

    header > .menu {
        padding: 1em 2em;
    }

    header > .menu * {
        font-size: 22px;
    }

    .logo {
        width: 40%;
        height: 80px;

        background-size: 100% 100%;
        padding: 1.5em;
    }

    .section-title {
        max-width: 90%;
        margin-bottom: 18px;
    }

    .plain-section > * {
        width: 90%;
    }

    .grid-section.grid-4 {
        grid-template-columns: repeat(2, 50%);
    }

    .flex-center.flex-2 > div {
        width: 90%;

        margin-bottom: 2em;
    }

    .flex-center.flex-2 > div:first-child {
        margin-right: 0;
    }

    .flex-center.flex-2 > div:last-child {
        margin-left: 0;
    }

    .logos {
        width: 90%;
    }

    footer > div:first-child {
        padding: 2em;
    }

    footer > div:first-child > div:first-child {
        width: 100%;
    }

    footer .contact-bar {
        position: relative;
        width: 100%;
        padding: 2em;

        background-image: url(../../img/front/red-background-mobile.png);
        background-size: cover;
    }

    footer .contact-bar > div {
        justify-content: start;
    }

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

    .cars-slider .slick-slide {
        flex-direction: column;
        align-items: stretch;

        text-align: center;
    }

    .cars-slider .slick-slide > div:first-child {
        margin-bottom: 2rem;
        margin-right: 0;
    }

    .cars-slider .slick-slide > div {
        width: 100%;
    }

    .input-group {
        flex-direction: column;
    }
    
    .input-group.group-2 > * {
        width: 100%;
    }

    .input-group.group-3 > * {
        width: 100%;
    }

    .input-group.center > * {
        width: 100%;
    }
    
    .input-group.group-2 > *:not(:last-child),
    .input-group.group-3 > *:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .form form > div:last-child > input {
        width: 100%;
    }

    /* .grid-section.grid-2.lpg-header-section {
        grid-template-columns: 100%;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) {
        height: auto;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) img {
        width: 100%;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        height: 450px;
        padding: 4em 2em;
    } */

    .grid-section.grid-3 {
        grid-template-columns: repeat(2, 49%);
    }

    .list {
        grid-template-columns: 100%;
        grid-column-gap: 0;
        grid-row-gap: 4rem;
    }

    .table * {
        font-size: 24px;
    }

    .collapse-section > div:not(.collapse-content) > h1 {
        width: 93%;
    }
    
    .collapse-section > div:not(.collapse-content) > h1,
    .collapse-section > div:not(.collapse-content) > h1 * {
        font-size: 24px;
    }
    
    .collapse-section > div:not(.collapse-content) > span {
        width: 7%;
    }

    .collapse-section > div:not(.collapse-content) > span * {
        font-size: 28px;
    }
    
    .collapse-section > div:not(.collapse-content) > span > span {
        max-width: 98%;
    }
    
    .collapse-section > div.collapse-content {
        width: 93%;
    }
    
    .collapse-section > div.collapse-content,
    .collapse-section > div.collapse-content * {
        font-size: 16px;
    }

    .calendar {
        width: 90%;
    }

    .color-values {
        width: 90%;
    }

    .inputs {
        width: 90%;
    }

    .slider-4-slides {
        width: 100%;
    }

    .pricing-specification > div {
        background: none;
    }

    .pricing-specification > div > div,
    .pricing-specification > div > p,
    .pricing-specification > div > ul {
        width: 90%;
        margin-left: 5%;
    }

    .grid-section.grid-2.pricing {
        grid-template-columns: 100%;
    }

    .pricing-specification2 p > span,
    .pricing-specification2 p > span * {
        font-size: 30px;
    }

    .cars-slider .slick-slide ul li > span:first-child {
        text-align: left;
    }
    
    .cars-slider .slick-slide ul li > span:last-child {
        text-align: left;
    }

    .cars-slider .slick-slide > div:first-of-type {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    * {
        font-size: 14px;
    }

    .section-title,
    .section-title * {
        font-size: 28px;
    }

    .logos {
        margin-bottom: 4em;
    }

    footer .contact-bar li,
    footer .contact-bar li * {
        font-size: 16px;
    }

    footer .contact-bar span img {
        width: 40px;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) {
        height: 400px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        height: 400px;
    } */

    .grid-section.grid-3 > div h1,
    .grid-section.grid-3 > div h1 * {
        font-size: 20px;
    }

    .grid-section.grid-3 > div h2,
    .grid-section.grid-3 > div h2 * {
        font-size: 14px;
    }

    .table * {
        font-size: 22px;
    }

    .pricing-specification2 p > span,
    .pricing-specification2 p > span * {
        font-size: 24px;
    }

    .pricing-specification > div > div > div:first-child p:first-of-type,
    .pricing-specification > div > div > div:first-child p:first-of-type *,
    .pricing-specification > div > ul > li h1,
    .pricing-specification > div > ul > li h1 * {
        font-size: 30px;
    }

    .pricing-specification > div > div > div:first-child p:last-of-type,
    .pricing-specification > div > div > div:first-child p:last-of-type *,
    .pricing-specification > div > p,
    .pricing-specification > div > p *,
    .pricing-specification > div > ul > li span,
    .pricing-specification > div > ul > li span * {
        font-size: 24px;
    }

    .grid-section.grid-2.pricing h1,
    .grid-section.grid-2.pricing h1 *,
    .grid-section.grid-2.pricing h2,
    .grid-section.grid-2.pricing h2 *,
    .grid-section.grid-2.pricing ul,
    .grid-section.grid-2.pricing ul * {
        font-size: 30px;
    }

    .grid-section.grid-2.pricing p,
    .grid-section.grid-2.pricing p * {
        font-size: 18px
    }

    .pricing-specification > div > div > div:last-child img {
        width: 120px;
    }

    .pricing-specification > div > div > div:last-child {
        padding: 1.8em;
    }

    .ads-slider img {
        max-width: 90%;
    }

    .ads-slider {
        width: 90vw;
        max-height: 90vh;

        margin-top: 5vh;
    }

    .ads-popup h3 {
        top: 0;
        right: 1vw;
    }

    .ads-popup h3 span, .ads-popup h3 span * {
        font-size: 40px;
    }
}

@media screen and (max-width: 650px) {
    .logo {
        width: 50%;
    }

    .grid-section.grid-3 {
        grid-template-columns: repeat(1, 100%);
        grid-column-gap: 0;
    }

    .list h1,
    .list h1 * {
        font-size: 20px;
    }

    .list h2,
    .list h2 * {
        font-size: 15px;
    }

    .list ul * {
        font-size: 11px;
    }

    .table * {
        font-size: 20px;
    }
    
    .collapse-section > div:not(.collapse-content) > h1,
    .collapse-section > div:not(.collapse-content) > h1 * {
        font-size: 20px;
    }

    .collapse-section > div:not(.collapse-content) > span * {
        font-size: 24px;
    }
    
    .collapse-section > div.collapse-content,
    .collapse-section > div.collapse-content * {
        font-size: 14px;
    }

    .pricing-specification2 p > span,
    .pricing-specification2 p > span * {
        font-size: 20px;
    }

    .grid-section.grid-2.pricing h1,
    .grid-section.grid-2.pricing h1 *,
    .grid-section.grid-2.pricing h2,
    .grid-section.grid-2.pricing h2 *,
    .grid-section.grid-2.pricing ul,
    .grid-section.grid-2.pricing ul * {
        font-size: 24px;
    }

    .pricing-specification > div > div > div:first-child p:last-of-type,
    .pricing-specification > div > div > div:first-child p:last-of-type *,
    .pricing-specification > div > p,
    .pricing-specification > div > p *,
    .pricing-specification > div > ul > li span,
    .pricing-specification > div > ul > li span * {
        font-size: 20px;
    }

    .pricing-specification > div > div > div:first-child p:first-of-type,
    .pricing-specification > div > div > div:first-child p:first-of-type *,
    .pricing-specification > div > ul > li h1,
    .pricing-specification > div > ul > li h1 * {
        font-size: 24px;
    }

    .pricing-header h1,
    .pricing-header h1 * {
        font-size: 28px;
    }

    .pricing-contact > p,
    .pricing-contact > p * {
        font-size: 24px;
    }

    .pricing-contact > p,
    .pricing-contact > p * {
        font-size: 24px;
    }

    .pricing-specification2 > div,
    .pricing-contact > p {
        width: 90%;
    }

    .pricing-specification > div > div > div:last-child img {
        width: 100px;
    }

    .car-previews .slick-slide > div > div > div:last-child > div {
        font-size: 14px;
    }

    .cars-slider .slick-slide {
        padding: 0 3em;
    }

    .cars-section {
        padding-bottom: 2rem;
    }

    footer > div:first-child > div > ul > li:not(:last-child) > a,
    footer > div:first-child > div > ul > li:not(:last-child) > a * {
        font-size: 16px;
    }
}

@media screen and (max-width: 550px) {
    .grid-section.grid-4 {
        grid-template-columns: repeat(1, 100%);
    }

    .grid-section.grid-2 {
        grid-template-columns: repeat(1, 100%);
    }

    footer > div:first-child > div > ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
    }

    footer > div:first-child > div > ul > li {
        margin-bottom: 1em;
    }

    footer > div:first-child > div > p {
        width: 100%;
    }

    .flex-center h1,
    .flex-center h1 * {
        font-size: 22px;
    }

    .cars-slider .slick-slide {
        padding: 0 1.5rem;
    }

    .cars-slider .slick-slide h1,
    .cars-slider .slick-slide h1 * {
        font-size: 28px;
    }

    .cars-slider .slick-slide h2,
    .cars-slider .slick-slide h2 *,
    .cars-slider .slick-slide ul,
    .cars-slider .slick-slide ul * {
        font-size: 18px;
    }

    input[type=text],
    input[type=number],
    input[type=email],
    input[type=tel],
    select,
    textarea,
    label.check,
    label.check * {
        font-size: 18px;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) {
        height: 350px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        height: 350px;
        padding: 3em 2em;
    } */

    .grid-section.grid-3 > div h1,
    .grid-section.grid-3 > div h1 * {
        font-size: 18px;
    }

    .grid-section.grid-3 > div h2,
    .grid-section.grid-3 > div h2 * {
        font-size: 12px;
    }

    .table * {
        font-size: 18px;
    }

    .color-values > div > span:first-child {
        border-radius: 7px;
        
        width: 50px;
        height: 25px;
    }

    .color-values > div > span:last-child,
    .color-values > div > span:last-child * {
        font-size: 18px;
    }

    .cars-section {
        padding-bottom: 1.5rem;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        width: 55%;
    }

    input[type=text],
    input[type=number],
    input[type=email],
    input[type=tel],
    select,
    textarea,
    label.check,
    label.check * {
        font-size: 16px;
    }
    
    .collapse-section > div:not(.collapse-content) > h1,
    .collapse-section > div:not(.collapse-content) > h1 * {
        font-size: 18px;
    }

    .collapse-section > div:not(.collapse-content) > span * {
        font-size: 22px;
    }
    
    .collapse-section > div.collapse-content,
    .collapse-section > div.collapse-content * {
        font-size: 12px;
    }

    .pricing-specification > div > div > div:last-child img {
        width: 80px;
    }

    .pricing-specification > div > div > div:first-child p:first-of-type, .pricing-specification > div > div > div:first-child p:first-of-type *, .pricing-specification > div > ul > li h1, .pricing-specification > div > ul > li h1 *,
    .grid-section.grid-2.pricing h1, .grid-section.grid-2.pricing h1 *, .grid-section.grid-2.pricing h2, .grid-section.grid-2.pricing h2 *, .grid-section.grid-2.pricing ul, .grid-section.grid-2.pricing ul *,
    .pricing-contact > p, .pricing-contact > p * {
        font-size: 20px;
    }

    .pricing-specification > div > div > div:first-child p:last-of-type, .pricing-specification > div > div > div:first-child p:last-of-type *, .pricing-specification > div > p, .pricing-specification > div > p *, .pricing-specification > div > ul > li span, .pricing-specification > div > ul > li span *,
    .pricing-specification2 p > span, .pricing-specification2 p > span * {
        font-size: 16px;
    }

    .pricing-specification > div > div > div:last-child {
        padding: 1.3em;
    }

    .grid-section.grid-2.pricing p, .grid-section.grid-2.pricing p * {
        font-size: 14px;
    }

    .pricing-header h1, .pricing-header h1 * {
        font-size: 24px;
    }
}

@media screen and (max-width: 450px) {
    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(1) {
        height: 250px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) {
        height: 250px;
        padding: 2.5em 2em;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div {
        width: 100%;
    } */

    .list h1,
    .list h1 * {
        font-size: 18px;
    }

    .list h2,
    .list h2 * {
        font-size: 14px;
    }

    .list ul * {
        font-size: 10px;
    }

    .table * {
        font-size: 16px;
    }

    .color-values > div > span:first-child {
        border-radius: 5px;
        
        width: 40px;
        height: 20px;
    }

    .color-values > div > span:last-child,
    .color-values > div > span:last-child * {
        font-size: 14px;
    }

    .car-previews .slick-slide > div > div > div:last-child > div {
        font-size: 12px;
    }

    .plain-section p,
    .plain-section p *,
    .plain-section ul li,
    .plain-section ul li *,
    .home-section4 > div > div:last-child > div:last-child,
    .home-section4 > div > div:last-child > div:last-child * {
        font-size: 16px;
        line-height: 20px
    }

    footer > div:first-child > div > ul > li:not(:last-child) > a,
    footer > div:first-child > div > ul > li:not(:last-child) > a * {
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {
    .logo {
        width: 60%;
        height: 70px;
    }
}

@media screen and (max-width: 400px) {
    * {
        font-size: 12px;
    }

    .flex-center h1,
    .flex-center h1 * {
        font-size: 18px;
    }

    .section-title,
    .section-title * {
        font-size: 22px;
    }

    footer > div:first-child > div > ul > li:not(:last-child) > a,
    footer > div:first-child > div > ul > li:not(:last-child) > a * {
        font-size: 14px;
    }

    footer > div:first-child > div > p,
    footer > div:first-child > div > p * {
        font-size: 10px;
    }

    footer .contact-bar li,
    footer .contact-bar li * {
        font-size: 14px;
    }

    footer .contact-bar span img {
        width: 35px;
    }

    .cars-slider .slick-slide h1,
    .cars-slider .slick-slide h1 * {
        font-size: 22px;
    }

    .cars-slider .slick-slide h2,
    .cars-slider .slick-slide h2 *,
    .cars-slider .slick-slide ul,
    .cars-slider .slick-slide ul * {
        font-size: 14px;
    }

    input[type=text],
    input[type=number],
    input[type=email],
    input[type=tel],
    select,
    textarea,
    label.check,
    label.check * {
        font-size: 14px;
    }

    /* .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > h1 * {
        font-size: 18px;
    }

    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p,
    .grid-section.grid-2.lpg-header-section > div:nth-last-child(2) > div > p * {
        font-size: 10px;
    } */
    
    .collapse-section > div:not(.collapse-content) > h1,
    .collapse-section > div:not(.collapse-content) > h1 * {
        font-size: 16px;
    }

    .collapse-section > div:not(.collapse-content) > span * {
        font-size: 20px;
    }

    .pricing-specification > div > div > div:first-child p:last-of-type, .pricing-specification > div > div > div:first-child p:last-of-type *, .pricing-specification > div > p, .pricing-specification > div > p *, .pricing-specification > div > ul > li span, .pricing-specification > div > ul > li span *, .pricing-specification2 p > span, .pricing-specification2 p > span * {
        font-size: 14px;
    }

    .grid-section.grid-2.pricing p, .grid-section.grid-2.pricing p * {
        font-size: 12px;
    }

    .pricing-specification > div > div > div:first-child p:first-of-type, .pricing-specification > div > div > div:first-child p:first-of-type *, .pricing-specification > div > ul > li h1, .pricing-specification > div > ul > li h1 *, .grid-section.grid-2.pricing h1, .grid-section.grid-2.pricing h1 *, .grid-section.grid-2.pricing h2, .grid-section.grid-2.pricing h2 *, .grid-section.grid-2.pricing ul, .grid-section.grid-2.pricing ul *, .pricing-contact > p, .pricing-contact > p * {
        font-size: 17px;
    }

    .pricing-specification > div > div > div:first-child p {
        margin-left: 1rem;
    }

    .pricing-specification > div > p,
    .pricing-specification > div > ul {
        padding-left: 1rem;
    }

    .pricing-specification > div > div > div:last-child img {
        width: 70px;
    }

    .pricing-specification > div > div > div:last-child {
        padding: 1.1rem;
    }

    .car-previews .slick-slide > div > div > div:last-child > div {
        font-size: 10px;
    }
}

@media screen and (max-width: 350px) {
    .logo {
        width: 70%;
        height: 60px;
    }

    .cars-slider .slick-slide {
        padding: 0;
    }

    input[type=text],
    input[type=number],
    input[type=email],
    input[type=tel],
    select,
    textarea,
    label.check,
    label.check * {
        font-size: 12px;
    }

    .table * {
        font-size: 14px;
    }

    .pricing-specification > div > div > div:first-child p:last-of-type, .pricing-specification > div > div > div:first-child p:last-of-type *, .pricing-specification > div > p, .pricing-specification > div > p *, .pricing-specification > div > ul > li span, .pricing-specification > div > ul > li span *, .pricing-specification2 p > span, .pricing-specification2 p > span * {
        font-size: 12px;
    }

    .grid-section.grid-2.pricing p, .grid-section.grid-2.pricing p * {
        font-size: 10px;
    }

    .pricing-specification > div > div > div:first-child p:first-of-type, .pricing-specification > div > div > div:first-child p:first-of-type *, .pricing-specification > div > ul > li h1, .pricing-specification > div > ul > li h1 *, .grid-section.grid-2.pricing h1, .grid-section.grid-2.pricing h1 *, .grid-section.grid-2.pricing h2, .grid-section.grid-2.pricing h2 *, .grid-section.grid-2.pricing ul, .grid-section.grid-2.pricing ul *, .pricing-contact > p, .pricing-contact > p * {
        font-size: 15px;
    }

    .pricing-specification > div > div > div:first-child p {
        margin-left: 0rem;
    }

    .pricing-specification > div > p,
    .pricing-specification > div > ul {
        padding-left: 0rem;
    }

    .pricing-specification > div > div > div:last-child img {
        width: 60px;
    }

    .pricing-specification > div > div > div:last-child {
        padding: .9rem;
    }

    .plain-section p,
    .plain-section p *,
    .plain-section ul li,
    .plain-section ul li *,
    .home-section4 > div > div:last-child > div:last-child,
    .home-section4 > div > div:last-child > div:last-child * {
        font-size: 14px;
        line-height: 16px
    }

    footer > div:first-child > div > ul > li:not(:last-child) > a,
    footer > div:first-child > div > ul > li:not(:last-child) > a * {
        font-size: 12px;
    }
}

@media screen and (max-width: 300px) {
    .logo {
        width: 80%;
    }

    .list h1,
    .list h1 * {
        font-size: 16px;
    }

    .list h2,
    .list h2 * {
        font-size: 12px;
    }

    .list ul * {
        font-size: 8px;
    }
    
    .collapse-section > div:not(.collapse-content) > h1,
    .collapse-section > div:not(.collapse-content) > h1 * {
        font-size: 14px;
    }

    .collapse-section > div:not(.collapse-content) > span * {
        font-size: 18px;
    }
    
    .collapse-section > div.collapse-content,
    .collapse-section > div.collapse-content * {
        font-size: 10px;
    }

    .cars-slider .slick-slide h2,
    .cars-slider .slick-slide h2 *,
    .cars-slider .slick-slide ul,
    .cars-slider .slick-slide ul * {
        font-size: 12px;
    }

    .car-previews .slick-slide > div > div > div:last-child > div {
        font-size: 8px;
    }
}