@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

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

body {
    background: #141414;
}

.nav {
    background: #56565640;
    padding: 10px 0;
}

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

.nav_list {
    display: flex;
    gap: 80px;
    list-style: none;
}

.nav_link {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #F0F0F0;
    text-decoration: none;
}

.intro {
    background-image: url(../images/intro_bg.png);
    height: 747px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.intro_title {
    font-weight: 600;
    font-size: 140px;
    color: #B31D1E;
}

.intro_link {
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    color: #141414;
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    text-decoration: none;
    padding: 17px 94px;
    border-radius: 4px;
}

.porsche {
    margin-top: 100px;
}

.porsche_box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #EB3A13;
    margin-bottom: 30px;
}

.porsche_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #fff;
}

.gallery {
    margin-top: 100px;
}

.gallery_box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about {
    margin-top: 100px;
}

.about_text {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 80px;
}

.footer {
    margin-top: 100px;
    background: #1F1F1F;
    padding: 30px 0;
}
.footer_box {
    display: flex;
    justify-content: space-between;
}
.footer_form {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
}
.footer_right {
    display: flex;
    gap: 70px;
}
.footer_input {
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #F0F0F0;
    padding: 8px 0;
    font-size: 14px;
    line-height: 140%;
    color: #F0F0F0;
}
.footer_input::placeholder {
    color: #F0F0F0;
}
.footer_input:first-of-type {
    border-top: 1px solid #F0F0F0;
}
.btn {
    margin-top: 30px;
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    padding: 9px 0;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #F0F0F0;
}
.footer_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer_link,
.footer_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #F0F0F0;
    text-decoration: none;
}

.footer_right_link {
    color: #F0F0F0;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}