.content-module.landing_wysiwyg {
    background-color: #d7e3e5;
    padding: 75px 0 75px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.content-module.landing_wysiwyg .figure_wrap {
    position: absolute;
    /*user-select: none;*/
    top: 0;
    right: 0;
}

.content-module.landing_wysiwyg.mobile .figure_wrap {
    right: 0 !important;
}

.content-module.landing_wysiwyg .module_image {
    position: absolute;
    top: 0;
    right: 0;
}

.content-module.landing_wysiwyg.desktop .module_image {
    width: 560px;
    height: 632px;
}

.content-module.landing_wysiwyg.mobile .module_image {
    width: 200px;
    height: 350px;
}

.content-module.landing_wysiwyg .module_image svg {
    position: absolute;
    opacity: 0;
}

.content-module.landing_wysiwyg .module_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-module.landing_wysiwyg.desktop .module_image img {
    clip-path: url(#desktop_shape);
}

.content-module.landing_wysiwyg.mobile .module_image img {
    clip-path: url(#mobile_shape);
}

.content-module.landing_wysiwyg .module_figure {
    position: absolute;
    user-select: none;
}

.content-module.landing_wysiwyg.desktop .module_figure {
    transform: rotate(-139deg);
    width: 880px;
    top: -4px;
    right: 1px;
}

.content-module.landing_wysiwyg.mobile .module_figure {
    transform: rotate(-139deg);
    width: 600px;
    top: -3px;
    right: -182px;
}

.content-module.landing_wysiwyg .module_figure img {
    display: block;
    max-width: 100%;
}

.content-module.landing_wysiwyg .container {
    position: relative;
}

.content-module.landing_wysiwyg .module-title {
    font-style: normal;
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 30px 0;
}

.wysiwyg-content {
    max-width: 500px;
}

.wysiwyg-content .text,
.wysiwyg-content .text p{
  font-family: "L10", "Helvetica", "Arial";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 30px;
}

.wysiwyg-content .text p:not(:last-child) {
    margin-bottom: 15px;
}

.wysiwyg-content ul {
    text-align: left;
}

.wysiwyg-content .btn-wrap {
    display: flex;
    justify-content: center;
}


.wysiwyg-content .btn-wrap a {
    font-family: "HyberDisplay", "Helvetica", "Open Sans", sans-serif;
    border-radius: 57px;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    padding: 11px 35px;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}

.wysiwyg-content .btn-wrap a:hover {
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .content-module.landing_wysiwyg .figure_wrap {
        right: -10%;
    }
}

@media (max-width: 991px) {
    .content-module.landing_wysiwyg {
        padding-top: 300px;
    }

    .content-module.landing_wysiwyg .figure_wrap {
        right: -20%;
    }

    .wysiwyg-content .btn-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .content-module.landing_wysiwyg .figure_wrap {
        right: 0;
    }
}

@media (max-width: 576px) {

    .content-module.landing_wysiwyg {
        padding-bottom: 50px;
    }

    .wysiwyg-content {
        max-width: 100%;
    }

    .content-module.landing_wysiwyg .module-title {
        font-size: 28px;
        line-height: 34px;
    }

    .wysiwyg-content .text,
    .wysiwyg-content .text p {
        font-size: 12px;
        line-height: 14px;
    }

    .wysiwyg-content .btn-wrap {
        justify-content: center;
    }

}