.header {
    position: sticky;
    top: 0;
    background: #fff;
}
.header .logo svg path {
    fill: black;
}
.header nav ul li a {
    color: #000;
}

.main {
    padding: 0px 40px 146px;
}

.about {
    max-width: 1560px;
    margin: 0 auto;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.about .photo {
    flex: 35%;
    display: flex;
    justify-content: flex-end;
}

.about .content {
    flex: 65%;
}
.about .photo img {
    max-width: 497px;
    max-height: 800px;
    width: 100%;
    height: auto;
}

.content .title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    text-align: justify;
}
.content .description {
    font-weight: 275;
    font-size: 24px;
    line-height: 37px;
    text-align: justify;
    color: #000;
}

@media (max-width: 1200px) {
    .content .description {
        font-size: 20px;
        line-height: 27px;
    }
}

@media (max-width: 992px) {
    .main {
        padding-bottom: 17px;
    }
    .about {
        flex-direction: column;
    }
    .about .photo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main {
        padding-inline: 20px;
    }
}

@media (max-width: 576px) {
    .content .title {
        font-size: 32px;
        line-height: 50px;
    }
    .content .description {
        font-size: 18px;
        line-height: 25px;
    }
}
