.about_us_content img {
    width: 100%;
    height: 373px;
    -o-object-fit: cover;
    object-fit: cover;
}

.about_us_content p {
    margin-top: 25px;
    font-size: 14px;
    line-height: 24px;
}

.staffs_container {
    display: -ms-grid;
    display: grid;
    grid-gap: 80px;
}

.staff_img_about_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 342px 30px 1fr;
    grid-template-columns: 342px 1fr;
    grid-gap: 30px;
}

.staff_img_about_wrapper img {
    width: 342px;
    /* height: 439px; */
    -o-object-fit: cover;
    object-fit: cover;
}

.staff_fio {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

.staff_rank {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-top: 5px;
    color: var(--main_color);
}

.staf_birthdate {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-top: 5px;
}

.staf_birthdate:empty {
    display: none;
}

.about_staff {
    font-size: 14px;
    line-height: 24px;
    margin-top: 35px;
}

.staff_more_wrapper {
    margin-top: 30px;
}

.staff_more_button {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--main_color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.staff_more {
    display: none;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
}

.more_active .staff_more_button {
    color: var(--yellow) !important;
}

.more_active .staff_more_button i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.more_active .staff_more {
    display: block !important;
}

.financial_statements_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

.financial_statement .fin_img_wrapper {
    width: 342px;
    height: 373px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.financial_statement h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-top: 20px;
}

.financial_statement:hover .fin_img_wrapper img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.financial_statement:hover h3 {
    color: var(--main_color);
}

.contact_us_wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 25px;
}

.branch_wrapper h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: var(--main_color);
}

.branch_wrapper p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
}

.branch_wrapper p a {
    color: var(--main_color);
}

.map_wrapper {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .staff_img_about_wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .staff_img_about_wrapper img {
        width: 100%;
        /* height: 439px; */
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 560px) {
    .staff_img_about_wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .staff_img_about_wrapper img {
        /* height: 333px; */
    }
}

@media screen and (max-width: 420px) {
    .staff_img_about_wrapper img {
        height: auto;
        width: 100%;
    }
    .staff_fio {
        font-size: 20px;
        line-height: 1.4;
    }
    .staff_rank {
        font-size: 14px;
    }
    .staf_birthdate {
        font-size: 14px;
    }
    .about_staff p {
        font-size: 12px;
        line-height: 1.4;
    }
    .about_staff {
        margin-top: 20px;
    }
    .staff_more p {
        font-size: 12px;
        line-height: 1.4;
    }
    .staffs_container {
        grid-gap: 40px;
    }
    .about_staff {
        font-size: 12px;
    }
    .staff_more_wrapper {
        margin-top: 20px;
    }
    .staff_more_button {
        font-size: 14px;
    }
    .about_us_content img {
        height: auto;
    }
    .about_us_content p {
        font-size: 12px;
        line-height: 1.4;
    }
    .financial_statement h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 10px;
    }
    .branch_wrapper h3 {
        font-size: 20px;
    }
    .branch_wrapper p {
        font-size: 12px;
        line-height: 1.4;
    }
}