* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat';
    background: #FFFFFF;
    width: 1440px;
    margin: 0 auto;
}

input, button, a{
    font-family: 'Montserrat';
}

.hero {
    position: relative;
    width: 1440px;
    height: 735px;
    background:url('images/header_site.jpg');
    background-size: cover;
    background-position: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 76px;
    margin: 0 auto;
    padding: 16px 0;
    position: absolute;
    top: 0;
    left: 120px;
}

.logo {
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.nav-links a {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-links a:hover {
    opacity: 0.8;
}

.divider {
    position: absolute;
    width: 1200px;
    height: 0;
    left: 120px;
    top: 77px;
    border: 0.5px solid rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: absolute;
    left: 117px;
    top: 140px;
    width: 792px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 70px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration-line: underline;
    cursor: pointer;
}

.hero-link:hover {
    opacity: 0.8;
}

.catalog {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.catalog-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 59px;
    color: #000000;
    margin-bottom: 41px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.products-row {
    display: flex;
    gap: 32px;
    height: 385px;
}

.product-card {
    position: relative;
    width: 379px;
    height: 377px;
}

.product-image {
    width: 379px;
    height: 250px;
    background: #C4C4C4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    position: absolute;
    top: 260px;
    left: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #000000;
}

.product-description {
    position: absolute;
    top: 299px;
    left: 0;
    width: 379px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #888888;
}

.product-price {
    position: absolute;
    top: 348px;
    left: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #050505;
}

.footer {
    position: relative;
    width: 100%;
    height: 207px;
    background: #F7F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    width: 435px;
    height: 29px;
}

.footer-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    text-align: center;
}