﻿.about {
    position: relative;
   padding: 50px 0 150px 0;
}
.about-inner{
    display: flex;
}
.about-content {
    gap: 40px;
    display: flex;
    justify-content: space-between;
}

.about-left {
    width: 100%;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;

}

.about-title-text{
    display: flex;
    flex-direction: column;
}

.about-undertitle {
    font-weight: 400;
    font-size: 32px;
    line-height: 136%;
    color: #fff;
}

.about-desc {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: var(--text-muted);
}
.about-right{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.about-img{
    max-width: 100%;
}
.about-buttons{
    display: flex;
    gap: 20px;
}

.about-button {
    width: max-content;
}

@media (max-width: 1440px) { .about-undertitle { font-size: 28px; } }
@media (max-width: 1200px) { .about-undertitle { font-size: 24px; } .about-desc { font-size: 20px; } }
@media (max-width: 1024px) { .about-undertitle { font-size: 22px; } .about-desc { font-size: 18px; } }

@media (max-width: 960px) {
    .about-content { flex-direction: column; }
    .about-right { width: 100%; max-height: 400px; overflow: hidden; }
    .about-img { width: 100%; object-fit: cover; }
}

@media (max-width: 768px) {
    .about { padding: 40px 0 80px; }
    .about-undertitle { font-size: 20px; }
    .about-desc { font-size: 16px; }
    .about-buttons { flex-wrap: wrap; gap: 12px; }
    .about-button { font-size: 16px; }
}

@media (max-width: 480px) {
    .about-undertitle { font-size: 17px; }
    .about-buttons { flex-direction: column; }
    .about-right { max-height: 280px; }
}

@media (max-width: 375px) { .about-undertitle { font-size: 16px; } }
@media (max-width: 320px) { .about-undertitle { font-size: 15px; } }