@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: Montserrat;
    background: none;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.container {
    max-width: 1140px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
}

.header {
    background: #141414;
    padding: 10px 0;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: 80px;
}

.header__nav-list a {
    color: white;
    font-weight: 500;
}

.main {
    background: #141414;
}

.banner {
    background-image: url(images/banner.png);
    background-size: cover;
    height: 110vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    background-position: center;
}

h1 {
    color: #B31D1E;
    font-size: 140px;
    font-weight: 600;
    margin-bottom: 11px;
}

.btn {
    color: #141414;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    padding: 17px 93px;
    border-radius: 4px;
}

h2 {
    color: #EB3A13;
    font-size: 40px;
    margin-bottom: 30px;
}

.info {
    color: #F0F0F0;
    padding: 114px 0 164px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.info__left {
    max-width: 540px;
}

.info__left   p {
    font-weight: 500;
    font-size: 20px;
}

.gallery__items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about {
    padding: 180px 0 120px;
    color: #F0F0F0;
}

.about p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 152px;
}

.footer {
    background: #1F1F1F;
    padding: 30px 0 62px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 350px;
}

input {
    color: #F0F0F0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px #F0F0F0 solid;
    padding: 8px 0;
}

input::placeholder {
    color: #F0F0F0;
}

.footer button {
    background: linear-gradient(93.34deg, #FFA600 0%, #E41818 100%);
    margin-top: 30px;
    padding: 9px;
    color: #F0F0F0;
    border-radius: 4px;
    cursor: pointer;
}

.footer__nav {
    display: flex;
    gap: 51px;
    color: #F0F0F0;
    margin-top: 20px;
}

.footer__nav a {
    color: #F0F0F0;
    font-size: 14px;
    margin: 30px 0;
    display: block;
}

.burger {
    font-size: 40px;
    color: white;
    font-weight: 900;
    display: none;
}

@media (max-width: 1140px) {
    img {
        width: 100%;
    }
    .info__left {
        max-width: 100%;
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 70px;
    }
    .btn {
        padding: 10px 43px;
        font-size: 16px;
    }
    .footer__content {
        flex-direction: column;
        gap: 50px;
    }
    form {
        width: 100%;
    }
    .footer__nav {
        width: 100%;
        justify-content: space-around;
    }
    .burger {
        display: block;
    }
    .header__nav-list {
        position: fixed;
        background: #12121280;
        backdrop-filter: blur(15px);
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: .5s;
    }
    .burger:hover ~ .header__nav-list {
        transform: translateX(0);
    }
}