section.about-start {
    padding-bottom: 96px;
}
section.about-articles {
    padding: 64px 0 96px 0;
    background: #dadaec;
}
section.about-team {
    padding: 64px 0;
    background: #06065f;
}
.block-question {
    display: flex;
    position: absolute;
    left: 45px;
    bottom: -140px;
}
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px;
    justify-content: space-between;
}
.contact-box {
    display: flex;
    align-items: center;
    /*width: 50%;*/
    width: auto;
    gap: 16px;
}
.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #0000ef;
    border-radius: 100%;
}
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
section.about-team * {
    color: #fff;
}
section.about-advantages {
    padding: 64px 0 96px 0;
    overflow: visible;
}
.advantages-cols {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.dont-work {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    border-radius: 0;
    background: #DADAEC;
}
.bg-text ul {
    margin-top: 0!important;
}
.exc-mark-left {
    position: absolute;
    top: 0;
    left: 45px;
}
.exc-mark-right {
    position: absolute;
    top: 0;
    right: 45px;
}
.tooltip-item {
    position: relative;
    width: fit-content;
    display: flex;
    gap: 8px;
    cursor: help;
}
.tooltip {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tooltip-box {
    position: absolute;
    top: 20px;
    right: -256px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 2px 2px 9px 0px #2E4EBF;
    padding: 16px;
    width: fit-content;
    min-width: max-content;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.tooltip-item:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}
section.about-why {
    padding: 64px 0 96px 0;
    background: #dadaec;
}
.bg-text.dark {
    background: #F0F0F6;
    color: #06065f;
}

@media (max-width: 1279px) {
    section:not(.post-top):not(.about-start) {
        padding: 56px 0 !important;
    }
    section:not(.post-top):not(.about-start).about-why {
        padding-bottom: 0!important;
    }
    section.about-start {
        padding-bottom: 56px;
    }
    .btn.btn-post-article,
    .btn.btn-start-work {
        width: auto;
    }
    .block-question {
        left: initial;
        right: 15px;
        bottom: -76px;
        width: 100px;
    }
    .contact-wrapper {
        flex-direction: column-reverse;
    }
    .contact-box {
        display: flex;
        width: 100%;
        gap: 16px;
        align-items: center;
    }
    .advantages-cols {
        width: 100%;
        flex-direction: column;
        gap: 13px;
    }
    .dont-work {
        color: #FBFBFB;
        background: #06065F;
    }
    .exc-mark-left,
    .exc-mark-right {
        display: none;
    }
    .tooltip {
        top: 0px;
    }
    .tooltip-box {
        top: 28px;
        right: initial;
        left: 0;
    }
    .about-why br {
        display: none;
    }
}