.dp-sm {
    display: none;
}

.content-text .text {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 35px 30px 70px;
    display: block;
}

.modal__bg {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.70);
}

.bg_layer_modal {
    background-color: rgba(0, 0, 0, .6);
    box-shadow: inset 0 -24px 120px 2px rgba(0, 0, 0, .7);
    height: 100%;
    left: 0;
    opacity: 1;
    pointer-events: block;
    position: fixed;
    top: 0;
    transition: .3s;
    width: 100%;
    z-index: 0;
    display: block;
}

.modal__content {
    width: 80%;
    max-height: 83vh;
    height: 100%;
    background-color: #fff;
    margin: auto;
    transform: translate(0%, 10%);
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 20px;
    position: relative;
}

.bg_layer_content {
    background: url("./../images/bg-content-wp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.modal__content::-webkit-scrollbar {
    display: none;
}

.modal__content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal__bg .title {
    background: #006519;
    color: #F0E952;
    text-align: center;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%;
    text-transform: capitalize;
    padding: 15px 0px;
    position: relative;
}

.modal__bg .title h2 {
    color: #F0E952;
}

.content-text .text p {
    color: #000;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: justify;
}

.content-text .text .text-biger {
    font-size: 30px;
    padding: 10px 0px;
}

.content-text .text .img-content {
    max-width: 1200px;
    width: 100%;
    height: auto;
    padding: 20px 0px;
}

.content-text .text .img-content img {
    width: 100%;
    height: auto;
}

.close-icon-popup {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.close-icon-popup img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 1200px) {
    .modal__content {
        width: 85%;
    }

    .modal__bg .title {
        font-size: 25px;
    }

    .close-icon-popup {
        width: 30px;
        height: 30px;
        top: 18px;
    }
}

@media screen and (max-width: 768px) {
    .modal__content {
        width: 98%;
    }

    .modal__bg .title {
        font-size: 5vw;
        padding: 10px 60px;
    }

    .close-icon-popup {
        width: 30px;
        height: 30px;
        top: 18px;
    }

    .content-text .text {
        padding: 15px 15px 30px;
    }

    .content-text .text p {
        font-size: 3.5vw;
        text-align: justify;
    }

    .content-text .text .text-biger {
        font-size: 5vw;
        padding: 5px 0px;
    }    
}