.mc_hero {
    position: relative;
    max-height: 641px;
}

.mc_hero .swiper.mc_hero__slider img{max-width: 528px;}
.mc_hero .mc_hero__pagination.swiper-pagination{bottom: auto;}
/*
.mc_hero article{min-height: 420px;}
*/

@media (max-width: 992px) {
    .mc_hero {
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .mc_hero {
        padding: 40px 0;
    }
}

.mc_hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-height: 641px;
}

@media (max-width: 992px) {
    .mc_hero::before {
        max-height: 100%;
    }
}

.mc_hero__content {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

@media (max-width: 1280px) {
    .mc_hero__content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .mc_hero__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 0px;
    }
}

.mc_hero__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 540px;
    min-width: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .mc_hero__text {
        max-width: 100%;
    }
}

.mc_hero__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 135%;
    color: #0075ac;
    margin: 0;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .mc_hero__title {
        font-weight: 700;
        font-size: 22px;
        line-height: 135%;
        margin-bottom: 16px;
    }
}

.mc_hero__text-p {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #172945;
    margin: 0;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .mc_hero__text-p {
        font-weight: 400;
        font-size: 15px;
        line-height: 160%;
        margin-bottom: 24px;
    }
}

.mc_hero__button {
    margin: 0;
    cursor: pointer;
    padding: 13px 24px 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    width: 230px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    background-color: #82bf31;
    border: 2px solid #82bf31;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    outline: none;
    -webkit-transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
    transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.mc_hero__button:hover {
    color: #172945;
    background-color: #fff;
}

.mc_hero__slider-container {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    min-width: 0;
    padding-bottom: 30px;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .mc_hero__slider-container {
        max-width: 100%;
    }
}

.mc_hero__slider {
    -webkit-box-shadow: 0 8px 24px 0 rgba(23, 41, 69, 0.08);
    box-shadow: 0 8px 24px 0 rgba(23, 41, 69, 0.08);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.mc_hero__slider img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.mc_hero__pagination {
    position: static;
    padding-top: 10px;

}

.mc_hero__pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}

.mc_hero__pagination .swiper-pagination-bullet-active {
    background: #82bf31;
}

.swiper-slide img {
    display: block;
}