.banner {

}
.banner_main_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
    padding: 0 20%;
    margin-bottom: 30px;

    color: var(--color-primary);
    background-color: var(--color-secondary, #F1F0EC);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.banner_main_item_title {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
}
.banner_main_item_subtitle {
    margin-top: 16px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
a.banner_main_item_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    text-transform: uppercase;
    /*font-weight: 500;*/
    /*font-size: 12px;*/
    /*letter-spacing: 6%;*/
}
a.banner_main_item_button:hover {

}

.banner_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 180px;
    padding: 24px 45% 24px 32px;

    color: white;
    background-color: var(--color-secondary, #F1F0EC);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}
.swiper-slide:first-child .banner_item {
    background-color: #EDA863;
}
.swiper-slide:nth-child(2) .banner_item {
    background-color: #758C41;
}

.banner_item_title {
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
}
.banner_item_subtitle {
    margin-top: 8px;
    font-size: 14px;
    line-height: 18px;
}
.banner_item_button {
    margin-top: auto;
    font-size: 12px;
    line-height: 14px;
    color: white;
    text-transform: uppercase;
}


@media (max-width: 993px) {

}
@media (max-width: 769px) {
    .banner_main_item {
        height: auto;
        padding: 24px;
    }
    .banner_main_item_title {
        font-size: 24px;
        line-height: 28px;
    }
    .banner_main_item_subtitle {
        margin-top: 8px;
        font-size: 13px;
        line-height: 16px;
    }
    .banner_main_item_button {
        width: 100%;
    }

    .banner_item_title {
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
    }
    .banner_item_subtitle {
        font-size: 11px;
        line-height: 13px;
    }

}
@media (max-width: 577px) {

}