section .b2b {
    display: flex;
    flex-direction: column;
}

section .b2b h1 {
    text-align: center;
}

section .b2b p {
    text-align: justify;
}

section .b2b h4, 
section .b2b h5 {
    margin: 0;
}

section .b2b h4 {
    font-size: 18pt;
}

section .b2b h5 {
    margin-bottom: 6px;
    margin-top: 18px;
}

section .b2b p {
    padding-bottom: 6px;
}

section .b2b .zero-margin-top {
    margin-top: 0;
}

section .b2b .margin-area {
    margin-top: var(--sectionGridGap);
}

section .b2b .area-page {
    display: grid;    
    grid-template-areas: "title content";
    grid-template-columns: 1fr 2fr;
    gap: var(--sectionGridGap);
}

section .b2b .area-title {
    grid-area: title;
}

section .b2b .area-title img {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
    transition: all .2s ease-in-out;
}

section .b2b .area-title img:hover {
    transform: scale(1.2);
}

section .b2b .area-content {
    grid-area: content;
}

section .b2b .area-page .area-title {
    text-align: center;
}

section .b2b .area-page .area-content h5 {
    text-align: left;
}

section .b2b li {
    color: var(--colorGreen);
    text-align: left;
    margin-bottom: 12px;
    margin-left: 24px;
    position: relative;
}

section .b2b li:first-child {
    margin-top: 12px;
}

section .b2b li::before {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    top: 4px;
    left: -24px;
    background-color: var(--colorGreen);
    border-radius: 50%;
}

@media(max-width: 950px) {
    section .b2b .area-page {
        grid-template-areas: "title"
                             "content";
        grid-template-columns: 1fr;
    }
}
