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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

main {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-side {
    width: 645px;
    background: radial-gradient(99.46% 89.69% at 117.29% 112.19%, #F8C35B 0%, #FDE591 100%);
    padding-top: 29px;
    padding-left: 150px;
}

.left-side .logo span {
    font-size: 32px;
    font-weight: 700;
    color: #3A3934;
    position: relative;
    z-index: 2;
}

.left-side .logo span::before {
    content: "";
    width: 60px;
    height: 60px;
    border: 2px solid #3A3934;
    position: absolute;
    top: -6px;
    left: -17px;
    opacity: 0.2;
}

.lamps-images {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.images {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.images .l1 {
    width: 270px;
}

.images .l2 {
    width: 226px;
    position: absolute;
    right: -260px;
}

.right-side {
    background-image: url("/assets/images/bg-element.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 44px;
    width: 100%;
    flex: 1;
}

header nav {
    display: flex;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    color: #3A3934;
}

.social-icons {
    margin-left: 41px;
    display: flex;
    gap: 12px;
}

.content {
    width: 410px;
    margin-top: 112px;
}

.content h3 {
    font-weight: 400;
    font-size: 18px;
    color: #3A3934;
    opacity: 0.5;
}

.content h1 {
    font-weight: 700;
    font-size: 96px;
    color: #3A3934;
}

.content p {
    margin-top: 45px;
    font-size: 18px;
    color: #3A3934;
}

.content button {
    margin-top: 50px;
    width: 172px;
    height: 50px;
    border: none;
    outline: none;

    background: #3A3934;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 30px;

    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.advantages-section {
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/bg-text.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.advantages {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    gap: 49px;
}

.advantage {
    display: flex;
    gap: 6px;
}

.advantage-text {
    display: flex;
    flex-direction: column;
}

.advantage-text .title {
    font-weight: 700;
    font-size: 16px;
    color: #3A3934;
}

.advantage-text .description {
    font-size: 14px;
    color: #3A3934;
    opacity: 0.6;
}