@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home {
    background-color: #000;
    background-image: url(../images/home.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 50px 0;
}

.home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.55;
    z-index: 1;
}

.home .wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.home__header {
    display: grid;
    grid-template-columns: auto 200px;
    gap: 15px;
}

.home__header p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

.home__header h1 {
    margin: 10px 0;
    font-size: 31px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.home__header h1 span {
    display: inline-flex;
    align-items: center;
}

.home__header h1 span::after,
.home__header h1 span::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 12px;
}

.home__header__contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 7px;
}

.home__header__contact__phone {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

a.whatsapp {
    background-color: #29a71a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

a.whatsapp::before {
    content: '';
    mask-image: url(../images/ico_wa.svg);
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #fff;
}

.home__cta {}

.home__cta p {
    margin: 0;
}

.home__cta p a {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.home__cta form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    gap: 5px 10px;
    margin: 10px 0;
}

.form__col input {
    width: 100%;
    border: none;
    padding: 12px 10px;
    border-radius: 3px;
}

.home__cta form .privacy__form {
    grid-column: span 3;
    font-size: 10px;
}

.home__cta form .privacy__form a {
    color: #fff;
}

.home__cta form button {
    background: #00A6F9;
    font-family: "Inter", sans-serif;
    border: none;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}

.galls {
    background: #f9f9f9;
    padding: 15px 0;
}

.gall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.gall__slick {
    width: 100%;
    overflow: hidden;
}

.gall__slick .slick-slide {
    height: 40vw;
    max-height: 400px;
}

.gall__slick .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gall__content {
    padding: 20px;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.galls .wrapper > :nth-child(2n) .gall__slick {
    order: 2;
}

.galls .wrapper > :nth-child(2n) .gall__content {
    order: 1;
}

.gall__content h2 {
    margin: 0;
}

.slick-list {
    overflow: hidden;
    position: relative;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00a6f9;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 3px;
}

.slick-arrow::after {
    content: '';
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 50%;
    height: 50%;
}

.slick-arrow.slick-prev {
    left: 10px;
}

.slick-arrow.slick-prev::after {
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: 10px;
}

.cars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 15px;
    margin-top: 40px;
}

.cars h2 {
    grid-column: span 4;
    text-align: center;
}

.car {
    display: grid;
    text-align: center;
    gap: 5px;
    font-weight: 700;
}

.car span {
    height: 15vw;
    max-height: 200px;
}

.car span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.whyus {
    background-color: #353535;
    color: #fff;
    padding: 50px 0;
    margin: 50px 0;
}

.whyus .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.whyus .wrapper h2 {
    grid-column: span 4;
    text-align: center;
    margin: 0 0 50px;
}

.whyus .wrapper span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
    font-weight: 500;
    text-align: center;
}

.whyus .wrapper span::before {
    content: '';
    mask-repeat: no-repeat;
    width: 64px;
    height: 64px;
    background-color: #fff;
}

.whyus .wrapper > :nth-child(2)::before {mask-image: url(../images/ico_pin.svg);}
.whyus .wrapper > :nth-child(3)::before {mask-image: url(../images/ico_pic.svg);}
.whyus .wrapper > :nth-child(4)::before {mask-image: url(../images/ico_trip.svg);}
.whyus .wrapper > :nth-child(5)::before {mask-image: url(../images/ico_alone.svg);}

.whatsapp__block {
    display: grid;
    grid-template-columns: 300px auto;
    gap: 35px;
    align-items: center;
}

.whatsapp__block__cover {}

.whatsapp__block__cover img {
    width: 100%;
}

.whatsapp__block__content {
    display: grid;
    gap: 15px;
}

.whatsapp__block__content h2 {
    margin: 0;
}

.whatsapp__block__content p {
    margin: 0;
}

a.whatsapp__block__phone {
    color: #000;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
}

a.whatsapp__block__wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1b8755;
    justify-self: start;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

a.whatsapp__block__wa::before {
    content: '';
    mask-image: url(../images/ico_wa.svg);
    mask-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #fff;
}

.privacy {
    font-size: 12px;
    color: #000;
    text-align: center;
    display: block;
    margin: 10px;
}

.filetype,
.fix {
    display: none;
}

@media screen and (max-width: 899px) {
    .home__header h1 {
        font-size: 24px;
    }
    .home__header p {
        font-size: unset;
    }
    .whyus .wrapper span::before {
        width: 40px;
        height: 40px;
    }
    .whyus .wrapper h2 {
        margin: 0 0 25px;
    }
    .whyus {
        padding: 40px 0;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .home {
        padding: 25px 0;
    }
    .home__header__contact__phone {
        font-size: 14px;
    }
    .home__header {
        display: flex;
        flex-direction: column-reverse;
    }
    a.whatsapp {
        padding: 10px;
    }
    a.whatsapp::before {
        width: 14px;
        height: 14px;
    }
    .whatsapp__block {
        grid-template-columns: 40vw auto;
        gap: 15px;
        margin-bottom: 65px;
    }
    .privacy {
        text-align: right;
    }
    .fix {
        display: grid;
        grid-template-columns: 64px auto;
        column-gap: 10px;
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: 0 5px;
        z-index: 30;
    }
    .fix__name {
        align-self: center;
    }
    .fix__name__pic {
        width: 64px;
        height: 64px;
    }
    .fix__name__pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    .fix__name span {}
    .fix__body {
        background: #301e4d;
        padding: 0 10px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: 7px;
        position: relative;
        font-size: 12px;
        max-width: 320px;
    }
    .fix__body p {
        margin: 0;
        padding: 0;
    }
    .fix__body span {
        display: flex;
        align-items: center;
        column-gap: 5px;
        font-weight: 500;
    }
    .fix__body span::before {
        content: '';
        mask-image: url(../images/phone2.svg);
        mask-repeat: no-repeat;
        width: 14px;
        height: 14px;
        background-color: #fff;
    }
    .fix__body::before {
        content: '';
        border: 10px solid transparent;
        border-right: 10px solid #301e4d;
        position: absolute;
        left: -18px;
    }
}

@media screen and (max-width: 699px) {
    .whyus .wrapper {
        gap: 0 10px;
    }
    .whyus .wrapper span {
        font-size: 12px;
    }
    .gall__slick .slick-slide img {
        object-fit: cover;
    }
}

@media screen and (max-width: 599px) {
    .home__header h1 {
        font-size: 18px;
    }
    .gall {
        display: flex;
        flex-direction: column;
    }
    .galls .wrapper>:nth-child(2n) .gall__slick,
    .galls .wrapper>:nth-child(2n) .gall__content {
        order: unset;
    }
    .cars {
        gap: 0 10px;
        margin-top: 0;
    }
    .car {
        font-size: 12px;
    }
    .whyus {
        margin: 35px 0;
    }
}

@media screen and (max-width: 549px) {
    .whatsapp__block {
        display: flex;
        flex-direction: column-reverse;
    }
    .whatsapp__block__cover {
        max-width: 300px;
    }
    .whatsapp__block__content {
        text-align: center;
    }
    a.whatsapp__block__wa {
        justify-self: center;
    }
}

@media screen and (max-width: 499px) {
    .home__cta {
        text-align: center;
    }
    .home__cta form {
        display: flex;
        flex-direction: column;
        max-width: 300px;
        margin: 15px auto;
    }
    .home__cta form button {
        padding: 12px 0;
        font-size: 16px;
    }
}

@media screen and (max-width: 449px) {
    .home__header h1 {
        font-size: 16px;
    }
    .home .wrapper {
        gap: 40px;
    }
}

@media screen and (max-width: 399px) {
    .home__header__title {
        text-align: center;
    }
    .home__header h1 {
        font-size: 14px;
        justify-content: center;
    }
    .home__header h1 span::after, .home__header h1 span::before {
        width: 4px;
        height: 4px;
        margin: 0 5px;
    }
    .home__cta form button {
        font-size: 14px;
    }
    h2 {
        font-size: 16px;
    }
    .cars,
    .whyus .wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cars h2,
    .whyus .wrapper h2 {
        grid-column: span 2;
    }
    .car span {
        height: 35vw;
    }
    .car span img {
        border-radius: 5px;
    }
}

@media screen and (max-width: 329px) {
    body {
        font-size: 12px;
    }
    .home__header h1 {
        font-size: 12px;
    }
}