.box-about {
    position: relative;
    width: 100%;
    min-height: 66.67vh;
    background-image: url("../images/about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}

.box-about .container {
    position: relative;
    z-index: 2;
}

.about-sub-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #faf2f2;
    text-align: center;
    margin-bottom: 20px;
}

.about-main-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-layout-reasons {
    max-width: 1320px;
    width: 100%;
    height: 185px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.reasons-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reason-item {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reason-image {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reason-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.reason-text {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}
