
/* ===== about_manor ===== */
.top_manor{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 100px;
}
.icon_vetka{
    height: 254px;
    width: 359px;
}
.top_manor_mid{
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.top_manor_mid h1{
    font-size: 38px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 40px;
    letter-spacing: 0;
}
.top_manor_mid p{
    font-size: 16px;
    color: #044758;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
}

/* ===== worth ===== */
.worth{
    display: flex;
    flex-direction: column;
    padding: 54px 100px;
}
.worth h1{
    font-size: 38px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.worth_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.worth_box .ecology,
.worth_box .family,
.worth_box .health{
    display: flex;
    flex-direction: column;
    max-width: 560px;
}

.ecology_pht{
    width: 560px;
    height: 420px;
}

.ecology h2,
.family h2,
.health h2{
    font-size: 24px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin: 40px 0;
}
.ecology p,
.family p,
.health p{
    font-size: 16px;
    font-weight: 400;
    color: #044758;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
}

/* ===== map_manor ===== */
.map_manor{
    display: flex;
    flex-direction: column;
    padding: 54px 0 0 0;
    text-align: center;
}
.map_manor h1{
    font-size: 38px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.map_manor_pht{
    max-height: 639px;
}
.map_manor_phtmob{
    display: none;
}

/* ===== social ===== */
.social{
    padding: 54px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.social p{
    font-size: 16px;
    font-weight: 400;
    color: #044758;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 40px;
    max-width: 900px;
}
.social_icons{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.social_icons .soc_max,
.social_icons .soc_vk{
    cursor: pointer;
    transition: transform 0.3s ease;
}
.social_icons .soc_max:hover,
.social_icons .soc_vk:hover {
    transform: scale(1.1);
}

/* ===== КАРУСЕЛЬ ===== */
.carousel_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 54px 100px;
    box-sizing: border-box;
}

.carousel_wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel_track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.carousel_slide {
    flex: 0 0 calc((100% - 40px) / 3);
}

.carousel_slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel_arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #044758;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.carousel_arrow:hover {
    background: #BA7263;
    transform: scale(1.05);
}

.carousel_arrow:active {
    transform: scale(0.95);
}

.carousel_dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel_dot.active {
    background: #044758;
    width: 24px;
    border-radius: 5px;
}

.carousel_dot:hover {
    background: #BA7263;
}






























