
.pp_custom_container {
    display: flex;
    gap: 130px;
}
.pp_custom_left {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}
.pp_custom_right {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 60%;
    align-items: center;
    gap: 30px;
}
.pp_custom_right_element_box {
    flex-basis: 47%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pp_custom_element_img_box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #F5F5F5;
    margin-bottom: 10px;
}
.pp_custom_element_header {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}
.pp_custom_element_text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #606060;
}
.pp_custom_left_header {
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    color: var(--textColor);
    line-height: 130%;
}
.pp_custom_left_text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.pp_custom_button_black {
    background: var(--mainColor);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 15px 30px;
}
.pp_custom_button_black_mobile {
    display: none;
}
@media(max-width: 1200px) {
    .pp_custom_container {
        gap: 50px
    }
}
@media(max-width: 992px) {
    .pp_custom_container {
        flex-direction: column;
    }
    .pp_custom_left_header {
        font-size: 24px;
    }
    .pp_custom_left_text {
        font-size: 14px;
    }
    .pp_custom_button_black_mobile {
        display: inline-block;
        margin-top: 20px;
    }
    .pp_custom_button_black_desktop {
        display: none;
    }
    .pp_custom_element_header {
        font-size: 14px;
    }
    .pp_custom_element_text {
        font-size: 12px;
    }
    .pp_custom_right {
        gap: 20px;
        justify-content: center;
    }
}
@media(max-width: 420px) {
    .pp_custom_right_element_box {
        flex-basis: 46%;
    }
}