@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";
}

body {
    background: #141414;
}

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

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

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

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

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

.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 {
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    font-weight: 800;
    font-size: 24px;
    padding: 17px 94px;
    color: #141414;
    text-decoration: none;
    border-radius: 4px;
}

.porsche {
    margin-top: 100px;
}

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

.porsche_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #EB3A13;
}

.porsche_text {
    font-weight: 500;
    font-size: 20px;
    margin-top: 30px;
    color: #fff;

}

.gallery {
    margin-top: 100px;
}

.title {
    font-weight: 700;
    font-size: 40px;
    color: #EB3A13;
    text-align: center;
}

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

}

.about {
    margin-top: 100px;
}

.about_text {
    color: white;
    font-weight: 500;
    font-style: 20px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.footer {
    background-color: #1F1F1F;
    margin-top: 100px;
    padding: 30px 0;
}

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

.footer_right {
    display: flex;
    gap: 70px;
}

.footer_from {
    display: flex;
    flex-direction: column;
    min-width: 350px;
    width: 100px;

}

.footer_input {
    border: none;
    outline: none;
    border-bottom: 1px solid #f0f0f0;
    background-color: unset;
    padding: 8px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #f0f0f0;

}

.footer_input:first-of-type {
    border-top: 1px solid #f0f0f0;
}

.footer_input::placeholder {
    color: #f0f0f0;
}

.btn {
    margin-top: 30px;
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    padding: 9px 0;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #f0f0f0;
    cursor: pointer;

}

.footer_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer_link,
.footer_list_title {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer_media_link {
    font-size: 14px;
    color: #f0f0f0;
    text-decoration: none;
}