.more-together {
    background-color: #F2F3F5;
    background-color: var(--dark-white-color, #F2F3F5);
    background-repeat: no-repeat;
    background-image: url("images/background.png");
    background-position: bottom -17px left;
    background-size: contain;
}

.more-together h2 span,
.more-together h3 span {
    color: #0065DC;
    color: var(--blue-color, #0065DC);
}

.more-together ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.more-together ul li {
    position: relative;
    padding-left: 15px;
}

.more-together ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border-radius: var(--circle-radius, 50%);
    background-color: #0065DC;
    background-color: var(--blue-color, #0065DC);
}

.more-together .more-together__wrapper-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    gap: 24px;
    min-height: 664px;
    padding: 64px 0 90px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.more-together .more-together__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.more-together .more-together__item h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}


@media (max-width: 1280px) {
    .more-together .more-together__wrapper-content {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }

    .more-together .more-together__item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 24px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .more-together .more-together__wrapper-content {
        min-height: 0;
    }

    .more-together .more-together__item {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
    }
}


.more-together .start-work-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.more-together .start-work-block__subtitle {
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Raleway";
    font-family: var(--secondary-font-family, "Raleway");
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.more-together .start-work-block__year {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    color: #0065DC;
    color: var(--blue-color, #0065DC);
    font-family: "Raleway";
    font-family: var(--secondary-font-family, "Raleway");
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 78px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.more-together .start-work-block__year span {
    font-size: 20px;
}

@media (max-width: 768px) {
    .more-together .start-work-block {
        display: none;
    }
}