.departments-page {
    width: 100%;
}

.departments-page .branches-content {
    width: 100%;
    height: fit-content;
    background-color: var(--light-gray-color);
    padding: 60px 120px;
}

.departments-page .branches-content .branches {
    width: 100%;
}

.departments-page .branches-content .branches article {
    width: 100%;
    height: 150px;
    display: flex;
    background-color: var(--main-white-color);
    box-shadow: 0 0 10px #ddd;
    margin-bottom: 40px;
}
.departments-page .branches-content .branches article:hover{
    box-shadow: 0 0 7px 0 #333;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.departments-page .branches-content .branches article .branch-title {
    min-width: 300px;
    height: 100%;
    background-color: var(--main-green-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline-end: 50px;
}

.departments-page .branches-content .branches article .branch-title span {
    font-size: 30px;
    font-weight: 600;
    color: var(--main-white-color);
}

.departments-page .branches-content .branches article .branch-title h6 {
    color: var(--main-white-color);
    font-size: 40px;
}

.departments-page .branches-content .branches article .branch-details {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.departments-page .branches-content .branches article .branch-details p b {
    color: var(--main-red-color);
}

@media only screen and (max-width: 820px) {
    .departments-page .branches-content {
        padding: 60px;
    }

    .departments-page .branches-content .branches article .branch-title span {
        font-size: 20px;
        text-align: center;
    }

    .departments-page .branches-content .branches article .branch-details p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .departments-page .branches-content {
        padding: 30px;
    }

    .departments-page .branches-content .branches article {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    .departments-page .branches-content .branches article .branch-title {
        width: 100%;
        height: fit-content;
        background-color: var(--main-green-color);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-inline-end: 0;
        padding: 0 20px;
    }

    .departments-page .branches-content .branches article .branch-title span {
        font-size: 20px;
    }

    .departments-page .branches-content .branches article .branch-title h6 {
        font-size: 30px;
    }

    .departments-page .branches-content .branches article .branch-details {
        width: 100%;
        height: 100%;
        display: block;
        padding: 20px;
    }

    .departments-page .branches-content .branches article .branch-details p b {
        color: var(--main-red-color);
    }
}
