.investStrategy {
    position: relative;
    background: linear-gradient(179.26deg, #FBE78E 1.4%, #FFF9DF 48.44%, #FBE78E 97.21%);
    border-radius: 15px;
    padding-bottom: 8vh;
}
.investStrategy::before {
    content: '';
    position: absolute;
    top: -40px;
    margin: 0 30%;
    width: 40%;
    height: 80px;
    background: linear-gradient(to bottom, #fbe78e, #fbe998);
    border-radius: 50px;
}

.investStrategy__header {
    padding: 45px 0 5vh 0;
}


.investStrategy__column_content {
    padding: 7.5%;
}
.investStrategy__column_top {
    justify-content: space-between;
    align-items: center;
    padding-right: 30%;
}
.investStrategy__column_top h2 {
    font-size: 48px;
}

.investStrategy__column_icon_wrapper.vertical {
    display: none;
}
.investStrategy__column_content p {
    margin-top: 10px;
    line-height: 25px;
    font-weight: 500;
}
.investStrategy__column_content p > span {
    font-weight: 600;
}


.investStrategy__bottom_block_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
}
.investStrategy__bottom_block {
    width: 1180px;
    height: 260px;

    background-image: url("../imgs/mainpage/investStrategy/investStrategy__bottom_background_desktop.png");
    background-size: cover;
    background-repeat: no-repeat;

    transition: all 0.3s ease;
}
.investStrategy__bottom_block:hover {
    transform: scale(1.05);
}
.investStrategy__bottom_block p {
    margin: 0 15% 10px 25px;
    font-weight: 500;
}
.investStrategy__bottom_icon_wrapper {
    width: 100%;
    padding: 25px 25px 5px 25px;
}

@media (max-width: 991px) {

    .investStrategy::before {
        margin: 0 20%;
        width: 60%;
    }

    .investStrategy__column_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 7.5%;
    }
    .investStrategy__column_top {
        padding-right: 0;
    }
    .investStrategy__column_icon_wrapper.vertical {
        display: block;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .investStrategy__column_icon_wrapper.horizontal {
        display: none;
    }

    .investStrategy__bottom_block_wrapper {
        margin-top: 7vh;
    }
    .investStrategy__bottom_block {
        width: 500px;
        height: 304px;

        background-image: url("../imgs/mainpage/investStrategy/investStrategy__bottom_background_tablet.png");
    }
    .investStrategy__bottom_block p {
        margin: 0 15px 10px 15px;
        font-size: 18px;
    }
    .investStrategy__bottom_icon_wrapper {
        padding: 15px 25px 5px 15px;
    }
}

@media (max-width: 767px) {
    .investStrategy__header {
        font-size: 28px;
    }

}

@media (max-width: 575px) {
    .investStrategy::before {
        margin: 0 10%;
        width: 80%;
    }

    .investStrategy__header {
        font-size: 18px;
    }

    .investStrategy__column_top h2 {
        font-size: 30px;
    }
    .investStrategy__column_content p {
        font-size: 14px;
    }

    .investStrategy__bottom_block_wrapper {
        margin-top: 7vh;
    }
    .investStrategy__bottom_block {
        width: 300px;
        height: 302px;

        background-image: url("../imgs/mainpage/investStrategy/investStrategy__bottom_background_mobile.png");
    }
    .investStrategy__bottom_block p {
        font-size: 14px;
    }

}