header {
    background: #FEFEFE;
}

.header-menu ul {
    color: #000;
}

.headline {
    background: #E6E6E6;
}



.headline-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    gap: 14px;

}

.headline-text p {
    color: #969595;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.75px;
}

.headline-text h1 {
    color: #000;
    font-family: "Playfair Display";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.main {
    padding: 110px 0px;
}

.container-one {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 66px;
}

.main-text {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-text h2 {
    color: #000;
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.96px;
}

.main-text p {
    color: #484848;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
}

.main-img {
    background-size: cover;
    flex: 0 0 40%;

}

.container-two {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media(max-width:852px) {
    .container-one {
        flex-direction: column;
    }

    .container-two {
        flex-direction: column-reverse;
    }

    .main {
        padding: 55px 0px;
    }
}

@media(max-width:645px) {
    header {
        background: rgba(0, 0, 0, 0.45);
    }

}