@import "./fonts.css";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-weight: 400;
    font-family: "Montserrat";
}

:root {
    --font-family: "Montserrat", sans-serif;
    --red: #b31d1e;
    --white: #f0f0f0;
}

body {
    background: #141414;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav__list {
    display: flex;
    gap: 80px;
}
.nav__link {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    transition: 0.4s;
}
.nav__link:hover {
    color: var(--red);
}

.hero {
    height: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/headerbg.png) center bottom / cover;
}

.hero__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 140px;
    color: #b31d1e;
}

.hero__btn {
    padding: 18px 94px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ffa600 0%, #e41818 100%);
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 24px;
    color: #141414;
}
.car {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 114px;
}

.car__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.car__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    color: var(--red);
}

.car__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}

.margin {
    margin-top: 10px;
}
.gallery {
    margin-top: 164px;
}

.gallery__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    color: var(--red);
    margin-bottom: 30px;
}

.gallery__images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery__images_top img {
    max-width: 540px;
    width: 100%;
}

.gallery__images_bottom img {
    width: 100%;
}

.gallery__images_top {
    display: flex;
    gap: 30px;
}

.about {
    margin-top: 150px;
}

.about__img {
    margin-top: 150px;
    margin-bottom: 120px;
}
.about__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    color: var(--red);
    margin-bottom: 30px;
}
.about__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}

.footer {
    background: #1f1f1f;
    padding-top: 38px;
    padding-bottom: 62px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__form {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__form input {
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--white);
}
.footer__button {
    margin-top: 22px;
    padding: 9px 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #ffa600 0%, #e41818 100%);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    color: var(--white);
    outline: none;
    border: none;
    cursor: pointer;
}
.footer__contacts {
    display: flex;
    gap: 51px;
    align-items: center;
}
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer__contact_title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 90%;
    color: #f0f0f0;
}
.footer__links a{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #f0f0f0;
}
.footer__links li{
    padding: 15px 0;
}
