.big_banner_wrapper {
    max-width: 1180px;
    width: 100%;
    display: flex;
    margin-top: 60px;
}
.first_section {
    background: #a1a1a1;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 34px 0;
    order: 0;
    border-radius: 8px 0 0 8px;
}
.big_banner_title {
    font-size: 38px !important;
    margin: 0;
    font-family: empikProBold;
    letter-spacing: 0.2px;
    padding: 0 !important;
    max-width: 370px;
    text-align: center;
}
.big_banner_text_container {
    font-size: 18px;
    margin: 0;
    margin-left: 16px;
    font-family: empikProRegular;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 370px;
    text-align: center;
}
.big_banner_text_container p {
    line-height: 24px;
}
.big_banner_button {
    border-radius: 37px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: empikProBold;
    width: auto;
    max-width: 370px;
    font-size: 18px;
    z-index: 1;
    height: 40px;
    cursor: pointer;
    padding: 18px;
}


.second_section {
    width: 100%;
    order: 1;
    border-radius: 0 8px 8px 0;
}

.second_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
}

.first_section.right_side{
    order: 1;
    border-radius: 0 8px 8px 0;
}
.second_section.left_side{
    order: 0;
    border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 800px) {
    .big_banner_wrapper {
        flex-direction: column;
    }

    .first_section {
        order: 1;
        border-radius: 0;
    }

    .second_section {
        order: 0;
        border-radius: 0;
    }
    .second_section img {
        padding: 0 32px;
    }
    .big_banner_title {
        font-size: 26px !important;
    }
    .big_banner_text_container p {
        font-size: 15px;
    }
    .big_banner_button {
        font-size: 15px;
    }
}