.m-2 .pre-title {
    margin-bottom: 48px;
}

.m-2-flex {
    display: flex;
    justify-content: space-between;
}

.m-2-left {
    width: 714px;
    max-width: calc(50% - 40px);
}

.m-2-title {
    font-size: 48px;
    margin-bottom: 48px;
    color: #090E18;
    font-weight: 500;
    letter-spacing: -2px;
}

.m-2-title strong {
    font-weight: 500;
    background: linear-gradient(to right, #016FFF, #012FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.m-2-text {
    width: 616px;
    max-width: 100%;
    color: rgba(12, 20, 33, 0.3);
    margin-bottom: 48px;
}


.m-2-right {
    height: 502px;
    margin-top: 135px;
    position: relative;
    width: 854px;
    max-width: calc(50% - 40px);
}

.m-2-right-round-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    right: 340px;
    border-radius: 100%;
    display: flex;
    bottom: 0;
    z-index: 20;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #012FFF;
}

.m-2-right-round-1-ball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: ballOrbit 2.8s infinite linear;
    transform-origin: 50% 50%;
}

@keyframes ballOrbit {

    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.m-2-right-round-1-ball:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #012FFF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.m-2-right-round-title {
    color: #0026D1;
    font-size: 64px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.m-2-right-round-text {
    font-size: 18px;
    font-weight: 500;
    color: #0026D1;
    text-align: center;
    position: relative;
    z-index: 20;
    width: 310px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.m-2-right-round-2 {
    position: absolute;
    width: 370px;
    height: 370px;
    right: 0px;
    bottom: 0;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #012FFF;
}

@media screen and (min-width: 992px) {}

@media screen and (max-width: 1600px) {
    .m-2-right {
        height: 400px;
        margin-top: 100px;
    }

    .m-2-right-round-1 {
        width: 350px;
        height: 350px;
        right: 240px;
    }

    .m-2-right-round-2 {
        width: 270px;
        height: 270px;
    }

    .m-2-right-round-title {
        font-size: 38px;
    }

    .m-2-right-round-text {
        font-size: 16px;
        padding: 0 24px;
    }
}

@media screen and (max-width: 1100px) {
    .m-2-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .m-2-left {
        width: 100%;
        max-width: 100%;
    }

    .m-2-right {
        width: 600px;
        margin-left: auto;
        max-width: 100%;
        margin-right: auto;
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .m-2-right {
        width: 335px;
        margin-left: auto;
        margin-right: auto;
        height: 335px;
        margin-top: 60px;
    }

    @keyframes textSwitch {

        0% {
            opacity: 1;
        }

        40% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }

    }

    .m-2-right-round-1 {
        bottom: auto;
        right: auto;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .m-2-right-round-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 98%;
        height: 98%;
        border: none;
    }

    .m-2-right-round-1 .m-2-right-round-text {
        animation: textSwitch 5.6s infinite;
    }

    .m-2-right-round-1 .m-2-right-round-title {
        animation: textSwitch 5.6s infinite;
    }

    .m-2-right-round-2 .m-2-right-round-text {
        opacity: 0;
        animation: textSwitch 5.6s infinite;
        animation-delay: 2.8s;
    }

    .m-2-right-round-2 .m-2-right-round-title {
        opacity: 0;
        animation: textSwitch 5.6s infinite;
        animation-delay: 2.8s;
    }

    .m-2-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .m-2-text {
        font-size: 14px;
        margin-bottom: 24px;
    }


}


















.m-3 {
    background: linear-gradient(to right, #016FFF, #012FFF);
}

.m-3-title {
    font-size: 64px;
    color: #fff;
    margin-bottom: 48px;
}

.m-3-list {
    overflow: hidden;
    border-top: 1px solid rgba(256, 256, 256, 0.2);
    border-bottom: 1px solid rgba(256, 256, 256, 0.2);
}

.m-3-list .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.m-3-item {
    min-height: 437px;
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 40px;
    border-right: 1px solid rgba(256, 256, 256, 0.2);
}

.m-3-item:nth-child(1) {
    padding-left: 0;
}

.m-3-item:nth-child(4) {
    border-right: none;
    padding-right: 0;
}

.m-3-item-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.m-3-item-icon img {
    width: auto;
    height: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.m-3-item-text {
    margin-top: auto;
    font-size: 32px;
    color: #fff;
}

@media screen and (max-width: 992px) {
    .m-3-list {
        border: none;
    }

    .m-3-item {
        width: 100%;
        min-height: 1px;
        padding: 16px 0 !important;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(256, 256, 256, 0.2);
    }

    .m-3-title {
        margin-bottom: 24px;
        font-size: 40px;
    }

    .m-3-item:last-child {
        margin-bottom: 0;
    }

    .m-3-item-icon {
        width: 24px;
        min-width: 24px;
        margin-right: 24px;
        margin-bottom: 0;
        height: 32px;
    }

    .m-3-item-text {
        margin-top: 0;
        font-size: 18px;
    }
}










.m-4 {
    background: #E8EAEF;
}

.m-4-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.m-4-top-left {
    width: 300px;
}

.m-4-top-right {
    width: 837px;
    max-width: calc(100% - 300px);
}

.m-4-title {
    font-size: 56px;
    color: #090E18;
    font-weight: 400;
}

.m-4-title strong {
    font-weight: 400;
    color: #D1D5E0;
}

.m-4-body-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.m-4-body-block-left {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.m-4-body-block-left-count {
    font-size: 40px;
    color: #D1D5E0;
    margin-bottom: 12px;
}

.m-4 .main-btn-3 {
    margin-bottom: auto;
}

.m-4-body-block-left-title {
    margin-top: auto;
    color: #090E18;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 40px;
}

.m-4-body-block-left-text {
    font-size: 20px;
    color: #090E18;
    width: 498px;
    max-width: 100%;
    margin-bottom: 40px;
}

.m-4-body-block-right {
    width: calc(50% + 10px);
    min-height: 840px;
}

.m-4-body-block-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.m-4-body {
    position: relative;
    display: flex;
}

.m-4-body-wrap {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

.m-4-body-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    height: 80vh;
    z-index: 1;
    opacity: 0;
    transition: 0.85s;
}

.m-4-body-block-left-content {
    transition: 0.85s;
    opacity: 0;
    margin-bottom: auto;
    margin-top: auto;
    display: flex;
    z-index: 20;
    position: relative;
    flex-direction: column;
    gap: 2;
    transform: translateY(50%);
}

.m-4-body-block-right {
    overflow: hidden;
}

.m-4-body-block-right img {
    transition: 0.85s;
    transform: translateY(100%);
}

.m-4-body-block.active {
    opacity: 1;
}

.m-4-body-block.animated-done .m-4-body-block-right img {
    transform: translateX(0%);
}

.m-4-body-block.active .m-4-body-block-right img {
    transform: translateX(0%);
}

.m-4-body-block.active .m-4-body-block-left-content {
    opacity: 1;
    transform: translateY(0%);
}

.m-4-body-block.animated-done .m-4-body-block-left-content {
    opacity: 1;
    transform: translateY(-170%);
}

.m-4-status-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.m-4-status-item {
    transition: 0.25s;
    height: 3px;
    width: 10%;
    flex-grow: 2;
    opacity: 0.1;
    background: #090E18;
}

.m-4-status-item.active {
    opacity: 1;
}

.m-4 {
    padding-bottom: 0 !important;
}

.m-4-bottom-frame {
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    transform-origin: center bottom;
    transform: rotateX(180deg);
}

.m-4-bottom-frame svg {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1800px) {
    .m-4-body-block-right {
        min-height: 560px;
    }

    .m-4-body-block-left-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .m-4-body-block-left-text {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .m-4-title {
        font-size: 48px;
    }

    .m-4-top {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 1300px) {
    .m-4-body-block {
        width: calc(100% - 40px);
    }

}

@media screen and (max-width: 767px) {

    .m-4-top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .m-4-top-left {
        width: 100%;
        margin-bottom: 24px;
    }

    .m-4-top-right {
        width: 100%;
        max-width: 100%;
    }

    .m-4-body-block {
        padding: 12px 12px 40px 12px;
        margin-bottom: 20px;
        background: #fff;
        flex-direction: column-reverse;
    }

    .m-4-body-block:last-child {
        margin-bottom: 0;
    }

    .m-4-body-block-right {
        width: 100%;
        position: relative;
        height: initial;
        min-height: 1px;
    }

    .m-4-body-block-right img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .m-4-body-block-left-count {
        display: none;
    }

    .m-4-body-block-right:after {
        content: '';
        display: block;
        padding-top: 68%;
    }

    .m-4-body-block-left {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .m-4-body-block-left-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .m-4-body-block-left-text {
        width: 240px;
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 24px;
    }

    .m-4-title {
        font-size: 24px;
    }

    .m-4-title strong {
        font-size: 24px;
        color: #090E18;
    }

    .m-4-body {
        height: initial !important;
    }

    .m-4-body-wrap {
        height: initial !important;
        position: static !important;
    }

    .m-4-body-block {
        position: static;
        top: 0;
        left: 0;
        margin-left: auto;
        height: initial;
        margin-right: auto;
        transform: none;
        opacity: 1;
    }

    .m-4-body-block .m-4-body-block-left,
    .m-4-body-block .m-4-body-block-right {
        transform: none !important;
        opacity: 1;
    }

    .m-4-body-block .m-4-body-block-right img {
        transform: none;
    }

    .m-4-body-block-left-content {
        opacity: 1;
        transform: none;
    }

    .m-4-status-line {
        display: none;
    }

    .m-4 {
        padding-bottom: 70px !important;
    }



}













.m-5 {
    background: linear-gradient(203.20deg, rgba(162.76, 200.5, 241.47, 1), rgba(149.95, 186.55, 227.46, 1), rgba(122.44, 157.98, 201.06, 1), rgba(69.58, 103.92, 150.51, 1), rgba(20.74, 38.77, 75.58, 1), rgba(3.41, 9.73, 17.32, 1));
}

.m-5-top {
    display: flex;
    margin-bottom: 64px;
    justify-content: space-between;
}

.m-5-top-left {
    width: 300px;
}

.m-5-top-right,
.m-5-bottom-text-wrap {
    width: 967px;
    margin-left: auto;
    max-width: calc(100% - 450px);
}

.m-5-title {
    color: rgba(255, 255, 255, 1);
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    margin-bottom: 40px;
    letter-spacing: -2.5px;
}

.m-5-main-slider .slick-slide {
    margin-right: 32px;
    position: relative;
    width: 531px;
}

.m-5-main-slider .m-5-slide img {
    height: 493px;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.m-5-main-slider .slick-track {
    display: flex;
}

.m-5-bottom {
    margin-top: 55px;
}

.m-5-bottom-text {
    width: 433px;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
    max-width: 100%;
    letter-spacing: -0.4px;
}

@media screen and (max-width: 1800px) {
    .m-5-main-slider .slick-slide {
        width: 350px;
        height: 315px;
        margin-right: 16px;
    }

    .m-5-title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -1px;
        margin-bottom: 24px;
    }

    .m-5-top {
        margin-bottom: 32px;
    }

    .m-5-bottom {
        margin-top: 32px;
    }
}

@media screen and (max-width: 992px) {
    .m-5-top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .m-5-top-left {
        width: 100%;
        margin-bottom: 32px;
    }

    .m-5-top-right,
    .m-5-bottom-text-wrap {
        width: 100%;
        max-width: 100%;
    }

    .m-5-title {
        font-size: 28px;
        line-height: 35px;
        letter-spacing: -0.9px;
        margin-bottom: 32px;
    }

}

@media screen and (max-width: 767px) {
    .m-5-main-slider .slick-slide {
        width: 280px;
        height: 260px;
        margin-right: 12px;
    }

    .m-5-bottom-text {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.2px;
    }

    .m-5 {
        background: linear-gradient(216.97deg, rgba(162.76, 200.5, 241.47, 1), rgba(69.58, 103.92, 150.51, 1), rgba(20.74, 38.77, 75.58, 1), rgba(3.41, 9.73, 17.32, 1));
    }
}






































.m-10-title {
    color: rgba(9, 14, 24, 1);
    font-size: 80px;
    font-weight: 400;
    line-height: 94px;
    letter-spacing: -4px;
    text-align: left;
    margin-bottom: 64px;
}

.m-10-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.m-10-item {
    width: calc(33.33% - 32px / 3);
    backdrop-filter: blur(16px);
    background: rgba(232, 234, 239, 1);
    position: relative;
}

.m-10-item:after {
    content: '';
    display: block;
    padding-top: 61.5%;
    min-height: 260px;
    box-sizing: border-box;
}

.m-10-item--1 {
    background: linear-gradient(216.97deg, rgba(162.76, 200.5, 241.47, 1), rgba(149.95, 186.55, 227.46, 1), rgba(122.44, 157.98, 201.06, 1), rgba(69.58, 103.92, 150.51, 1), rgba(20.74, 38.77, 75.58, 1), rgba(3.41, 9.73, 17.32, 1));
}

.m-10-item--2 {
    background: rgba(209, 213, 224, 1);
}

.m-10-item-count {
    position: absolute;
    top: 0;
    left: 0;
    padding: 24px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.6px;
    text-align: left;
}


.m-10-item--2 .m-10-item-count,
.m-10-item--3 .m-10-item-count {
    color: rgba(12, 20, 33, 0.2);
}

.m-10-item-title {
    color: rgba(9, 14, 24, 1);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.6px;
    text-align: left;
    position: absolute;
    bottom: 0;
    padding: 24px;
}

.m-10-item--1 .m-10-item-title {
    color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 1800px) {
    .m-10-item-title {
        font-size: 26px;
        line-height: 34px;
    }
}

@media screen and (max-width: 992px) {
    .m-10-item:after {
        min-height: 210px;
        padding-top: 0;
    }

    .m-10-flex {
        flex-direction: column;
    }

    .m-10-item {
        width: 100%;
    }

    .m-10-item-count {
        padding: 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: -0.3px;
    }

    .m-10-item-title {
        padding: 12px;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.7px;
        text-align: left;
    }

    .m-10-title {
        color: rgba(9, 14, 24, 1);
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
        letter-spacing: -0.6px;
        text-align: left;
        margin-bottom: 32px;
    }
}








.m-10+.m-11 {
    padding-top: 0;
    margin-bottom: 52px;
}

.m-11-title {
    display: flex;
    align-items: center;
    color: rgba(9, 14, 24, 1);
    font-size: 100px;
    font-weight: 400;
    line-height: 110px;
    letter-spacing: -5px;
    text-align: left;
    max-width: 45%;
}

.m-11-title:after {
    content: '';
    display: block;
    width: 50px;
    min-width: 50px;
    height: 54px;
    margin-left: 34px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjAuMDMwMyA1Ny4wNzAzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjAuMDMwMjczIiBoZWlnaHQ9IjU3LjA3MDMxMiIgZmlsbD0ibm9uZSIgY3VzdG9tRnJhbWU9IiMwMDAwMDAiPgoJPHBhdGggaWQ9IlZlY3RvciIgZD0iTTAgMjQuOTIzMUwyNSAwTDUwIDI0LjkyMzFNMjUgMy40NjE1NEwyNSA1NCIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9InJnYig5LDE0LDI0KSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLXdpZHRoPSI1LjAwMDAwMCIgdHJhbnNmb3JtPSJtYXRyaXgoNi4xMjMyM2UtMTcsMSwtMSw2LjEyMzIzZS0xNyw1Ni41LDMuNTM1MTYpIiAvPgo8L3N2Zz4K");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.m-11-top-right {
    width: 50%;
    margin-left: auto;
}

.m-11-top-text {
    color: rgba(9, 14, 24, 1);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.3px;
    text-align: left;
    margin-bottom: 24px;
}

.m-11-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.m-11-block-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.m-11-block-item {
    width: calc(33.33% - 60px / 3);
    position: relative;
}

.m-11-block-item:after {
    content: '';
    display: block;
    padding-top: 103%;
}

.m-11-block-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.m-11-block-item-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.m-11-block-item-bg:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.m-11-block-item-tab-list {
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: absolute;
    top: 0;
    left: 0;
}

.m-11-block-item-tab-item {
    border-radius: 5px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.25);
    padding: 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-align: center;
}

.m-11-block-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    color: rgba(255, 255, 255, 1);
    font-size: 40px;
    font-weight: 400;
    line-height: 47px;
    letter-spacing: -1.2px;
    text-align: left;
    padding: 0 32px 50px 32px;
}

@media screen and (max-width: 1800px) {
    .m-11-block-item-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.9px;
        padding: 32px 24px;
    }

    .m-11-block-item-tab-list {
        padding: 24px;
    }

    .m-11-block-item-tab-item {
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 1200px) {
    .m-11-block-item-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.6px;
    }
}

@media screen and (max-width: 992px) {
    .m-11-block-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .m-11-block-item {
        width: 100%;
    }

    .m-11-block-item-tab-list {
        width: 100%;
        justify-content: flex-end;
        padding: 16px;
        gap: 6px;
    }

    .m-11-block-item-tab-item {
        padding: 7px 18px;
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: -0.3px;
        text-align: center;
    }

    .m-11-block-item-bg {
        position: relative;
        height: 280px;
    }

    .m-11-block-item:after {
        display: none;
    }

    .m-11-block-item-title {
        position: static;
        padding: 0;
        margin-top: 16px;
        color: rgba(9, 14, 24, 1);
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.7px;
        text-align: left;
    }

    .m-11-top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .m-11-title {
        color: rgba(9, 14, 24, 1);
        font-size: 48px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -2.4px;
        text-align: left;
        margin-bottom: 20px;
    }

    .m-11-top-right {
        width: 100%;
    }

    .m-11-top-text {
        color: rgba(9, 14, 24, 1);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.3px;
        text-align: left;
        margin-bottom: 20px;
    }

    .m-11-top {
        margin-bottom: 40px;
    }
}






