@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Quicksand;
}

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

a {
    display: inline-block;
}

.header {
    background: #2D2D2D;
    padding: 25px 0;
}

.nav__title {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 700;
}

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

.nav__list {
    display: flex;
    gap: 120px;
}

.nav__list a {
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.5;
    transition: 300ms;
}

.nav__list a:hover {
    opacity: 1;
}

.nav__icon-box {
    display: flex;
    gap: 40px;
}

.banner {
    background: url(images/banner.png);
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.banner__title {
    font-size: 96px;
    font-weight: 500;
    color: #FFFFFF;
}

.banner__btn {
    color: #000000;
    background: #FFFFFF;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    padding: 35px 36px;
    transition: 300ms;
}

.banner__btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 0;
}

.about__title {
    font-size: 40px;
    color: #303030;
    font-weight: 700;
    line-height: 75px;
}

.about__text {
    max-width: 923px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    color: #303030;
    text-align: center;
}

.collection__title {
    font-size: 40px;
    color: #303030;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
    margin-bottom: 80px;
}

.collection__cards {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.collection__card {
    display: flex;
    justify-content: space-between;
}

.collection__card-title {
    max-width: 555px;
    width: 100%;
    color: #303030;
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
}

.collection__card-text {
    max-width: 441px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #303030;
    margin: 37px 0 80px;
}

.collection__card-btn {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    background: #000000;
    border-radius: 12px;
    padding: 24px 38px;
    transition: 300ms;
    border: 0.5px solid #000000;
}

.collection__card-btn:hover {
    background: #FFFFFF;
    color: #000000;
}

.footer {
    margin-top: 130px;
    background: #2D2D2D;
    padding: 70px 0;
}