#content {
    padding-top: 150px;
}

.mobile #content {
    padding-top: 90px;
}

.heading_title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 122%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #031f46;
    margin-bottom: 5px;
    margin-left: 10%;
}

.mobile .heading_title {
    margin-left: 0;
    text-align: center;
}

.heading_title span {
    font-weight: 600;
    color: #034aa3;
}

.heading_subtitle {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #5d6f88;
    margin-bottom: 40px;
    margin-left: 10%;

}

.mobile .heading_subtitle {
    margin-left: 0;
    text-align: center;
}


.sections_wrapp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mobile .sections_wrapp {
    grid-template-columns: repeat(1, 1fr);
}

.custom_section {
    display: grid;
    align-items: stretch;
    align-content: space-between;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    padding: 100px 60px 80px;
    height: 100%;
    min-height: 670px;
    font-weight: 400;
}

.mobile .custom_section {
    display: block;
    padding: 50px 20px 30px;
    min-height: 600px;
}

.mobile .custom_section .info_wrapp {
    margin-top: auto;
    margin-bottom: 45px;
}

.custom_section ol {
    padding-left: 20px;
}


.custom_section ol li {
    line-height: 150%;
}



.custom_section p {
    line-height: 140%;
    margin-bottom: 0;
}

.custom_section .btn_link {
    width: 220px;
    border-radius: 30px;
    text-transform: uppercase;
}




li::marker { color: currentColor; font-weight: 600; }

.sections_wrapp b {
    font-weight: 600;
}

.sections_wrapp .section_name{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 0;
}

.mobile .sections_wrapp .section_name {
    font-size: 40px;
}

@media (max-width: 767px) {
    #content {
        padding-top: 90px;
    }

    .heading_title {
        margin-left: 0;
        text-align: center;
    }

    .heading_subtitle {
        margin-left: 0;
        text-align: center;
    }

    .sections_wrapp {
        grid-template-columns: repeat(1, 1fr);
    }

    .custom_section {
        display: block;
        padding: 50px 20px 30px;
        min-height: 600px;
    }

    .custom_section .info_wrapp {
        margin-top: auto;
        margin-bottom: 45px;
    }

    .sections_wrapp .section_name {
        font-size: 40px;
    }
}