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

body {
    font-family: "Quicksand", sans-serif;
    background: #f9f9f9;
    color: #303030;
}


a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.nav {
    background: #2d2d2d;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

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

.logo {
    font-weight: 700;
    font-size: 32px;
    line-height: 234%;
}

.nav .menu {
    display: flex;
    gap: 120px;
}

.menu a {
    opacity: 0.5;
    transition: 0.5s;
}

.menu a:hover {
    opacity: 1;
}

.icons {
    display: flex;
    gap: 40px;
}


.overlay {
    background-image: url(../img/bg.png);
    text-align: center;
    height: 731px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.overlay h1 {
    font-weight: 500;
    font-size: 96px;
    line-height: 78%;
    color: #fff;
}

.overlay .btn {
    background: #fff;
    border-radius: 12px;
    width: 199px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 375%;
    color: #000;
    margin-top: 100px;
}

.about {
    margin-top: 100px;
    text-align: center;
}

.title {
font-size: 40px;
line-height: 188%;
text-align: center;
}

.about p {
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    text-align: center;
    max-width: 923px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.collection {
    max-width: 1100px;
    margin: 80px auto;
}

.collection h2 {
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
}

.row-reverse {
    flex-direction: row-reverse;
}

.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
}

.item.reverse {
    flex-direction: row-reverse;
}

.text {
    width: 50%;
}

.text h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

button {
    padding: 10px 25px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.image {
    width: 50%;
}

.image img {
    width: 100%;
    border-radius: 6px;
}

footer {
    background: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}