/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.4.1747185610
Updated: 2025-05-14 01:20:10
*/

.resources-banner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.download-search-form {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    column-gap: 40px;
}

.download-search-form-item {
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
}

.download-search-form-item select {
    background-color: #f4f4f4;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    width: 100%;
    min-height: 50px;
    border: none;
    font-size: 20px;
    line-height: 24px;
    padding: 0 15px;
    font-family: 'Red Hat Display', Helvetica, Arial, Lucida, sans-serif;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

.download-search-form-item.select:after {
    content: "";
    width: 10px;
    height: 10px;
    background: url("./images/arrow-down.jpg") no-repeat center;
    position: absolute;
    top: 50%;
    background-size: 10px;
    transform: translateY(-50%);
    right: 15px;
    mix-blend-mode: darken;
    pointer-events: none;
}

.download-search-form-item button {
    background-color: transparent;
    color: #ccc;
    font-size: 16px;
    line-height: 20px;
    border: none;
    outline: none;
    padding: 0;
}

.download-search-form-item.reset {
    max-width: 65px;
}

.downloads-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 0 0 0;
}

.downloads-list-item {
    width: calc(33.33% - 34px);
    display: flex;
    flex-direction: column;

}

.downloads-list-item .image {
    width: 100%;
    height: 400px;
    background-color: #f4f4f4;
    display: block;
    position: relative;
    cursor: pointer;
}

.downloads-list-item .image:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(80, 169, 0, .7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.downloads-list-item .image:hover:before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.downloads-list-item .image:after {
    content: "";
    background: url("./images/default-image.avif") no-repeat center;
    width: 160px;
    height: 160px;
    background-size: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: darken;
}

.downloads-list-item .image img {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
}

.downloads-list-item .title {
    width: 100%;
    margin: 15px 0 0 0;
}

.downloads-list-item .title h3 {
    font-size: 18px;
    color: #ccc;
    font-family: 'Red Hat Display', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    margin: 0;
}

.downloads-list-item .download-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 2px 0 0 0;
}

.downloads-list-item .download-line ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

.download-line ul li {
    margin: 0 40px 0 0;
    list-style: none;
    position: relative;
}

.download-line ul li:after {
    content: "|";
    color: #50a900;
    position: absolute;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    right: -24px;
    display: block;
}

.download-line ul li:last-child {
    margin: 0;
}

.download-line ul li:last-child:after {
    display: none;
}

.download-line ul li.search {
    border: solid 2px #50a900;
    border-radius: 8px;
    padding: 3px;
    position: relative;
    width: 26px;
    height: 26px;
}

.download-line ul li.search:after {
    display: none;
}

.download-line ul li.search:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #fff;
    display: block;
    position: absolute;
    right: -2px;
    bottom: -2px;
    z-index: 1;
}

.download-line ul li.search a,
.download-line ul li.search button {
    position: absolute;
    top: -1px;
    left: -1px;
    display: block;
    width: 24px;
    height: 24px;
    z-index: 2;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

.download-line ul li.search a img,
.download-line ul li.search button img {
    width: 20px;
    height: auto;
    position: relative;
    top: 3px;
    left: 2px;
    height: auto;
}

.download-line ul li a,
.download-line ul li button {
    color: #50a900;
    font-size: 14px;
    line-height: 16px;
    display: block;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.download-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 50px;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.download-modal-wrapper.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.download-modal-wrapper .download-modal {
    width: 100%;
    max-width: 1240px;
    background-color: #fff;
    padding: 30px 40px 30px 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-bottom: solid 10px #50a900;
}

.download-modal-wrapper .download-modal .download-modal-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.download-modal .download-modal-header h3 {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #292929;
    margin: 0;
    padding: 0;
    font-weight: 800;
    font-family: 'Red Hat Display', Helvetica, Arial, Lucida, sans-serif;
}

.download-modal .download-modal-header button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    max-height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    font-size: 30px;
    background-color: transparent;
    cursor: pointer;
    color: #2929294d;
}

.download-modal .download-modal-body {
    margin: 20px 0 0 0;
}

.download-modal .download-modal-body form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
}

.download-modal .download-modal-body form p {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    color: #292929;
    margin: 20px 0;
    padding: 0;
}

.download-modal .download-modal-body form .form-group.half {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
}

.download-modal .download-modal-body form .form-group.full {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
}

.download-modal .download-modal-body form .form-group label {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #292929;
    margin: 0;
}

.download-modal .download-modal-body form .form-group p {
    margin: 0;
    padding: 0;
}

.download-modal .download-modal-body form .form-group p span {
    display: block;
}

.download-modal .download-modal-body form .form-group p span .wpcf7-not-valid-tip {
    margin: 5px 0 0 0;
}

.download-modal .download-modal-body form .form-group p span input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    background-color: #f4f4f4;
    border: none;
    margin: 5px 0 0 0;
}

.download-modal .download-modal-body form .form-group.checkbox {
    margin-top: 40px;
}

.download-modal .download-modal-body form .form-group .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.download-modal .download-modal-body form .form-group .wpcf7-acceptance label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.download-modal .download-modal-body form .form-group .wpcf7-acceptance label input {
    position: relative;
    visibility: hidden;
    width: 0;
}

.download-modal .download-modal-body form .form-group .wpcf7-acceptance .wpcf7-list-item-label {
    padding: 0 0 0 55px;
    display: flex;
    align-items: center;
}

.download-modal .download-modal-body form .form-group input[type=checkbox]+span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 40px;
    width: 40px;
    top: 0px;
    left: 0;
    background-color: #f4f4f4;
}

.download-modal .download-modal-body form .form-group input[type=checkbox]+span:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url("./images/close-green.svg") no-repeat center;
    background-size: 20px;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    visibility: hidden;
}

.download-modal .download-modal-body form .form-group input[type=checkbox]:checked+span:after {
    visibility: visible;
}

.download-modal .download-modal-body form .form-group.submit p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.download-modal .download-modal-body form .form-group.submit .wpcf7-submit {
    background-color: #232323;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.download-modal .download-modal-body form .form-group.submit p .close {
    background-color: transparent;
    color: #ccc;
    font-size: 16px;
    line-height: 20px;
    border: none;
    cursor: pointer;
}

/* Image lightbox */
.image-light-box {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    padding: 100px;
}

.image-light-box.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.image-light-box .image-close {
    width: 34px;
    height: 34px;
    border: none;
    padding: 0;
    position: absolute;
    top: 80px;
    right: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}

.image-light-box .image-close svg {
    width: 14px;
    height: 14px;
}

.image-light-box .image-viewer {
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
    max-height: 80%;
    max-width: 80%;
    display: flex;
    flex-direction: row;
}

.image-light-box .image-viewer img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

/* Izobloc zero page */
.isobloc-zero-banner {
    display: flex;
    align-items: center;
}

.isobloc-first-block .et_pb_column.et_pb_column.et_pb_column_2_5 {
    padding-top: 50px;
    padding-bottom: 40px;
}

.isobloc-first-block .et_pb_column.et_pb_column_3_5 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0 0 40px;
}

.isobloc-first-block .et_pb_column.et_pb_column_3_5 .et_pb_module.et_pb_image {
    width: 220px;
}

.isobloc-zero-section-title.right .et_pb_text_inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.isobloc-zero-section {
    display: flex;
    align-items: center;
}

.isobloc-zero-section.image-right .et_pb_column_1_2:nth-child(1) {
    width: calc(100% - 300px);
    margin: 0;
    padding: 0 100px 0 0;
}

.isobloc-zero-section.image-right .et_pb_column_1_2:nth-child(2) {
    width: 300px;
}

.isobloc-zero-section.image-left .et_pb_column_1_2:nth-child(1) {
    width: 300px;
    margin: 0;
}

.isobloc-zero-section.image-left .et_pb_column_1_2:nth-child(2) {
    width: calc(100% - 300px);
    padding: 0 0 0 100px;
}

.isobloc-zero-section.image-center {
    max-width: 800px;
    align-items: flex-start;
}

.isobloc-zero-section.image-center .isobloc-zero-section-title .et_pb_text_inner,
.isobloc-zero-section.image-center .isobloc-zero-section-title .et_pb_text_inner h4 {
    width: 100% !important;
}


/* Responsive */
@media only screen and (max-width: 1200px) {
    .resources-banner .banner-text {
        padding: 0 30px;
    }

    .resources-banner .banner-text h1 {
        font-size: 50px;
        line-height: 54px;
    }

    .documents-wrapper>.et_pb_row {
        width: 100%;
        padding: 30px;
    }

    .downloads-list {
        margin: 30px 0 0 0;
        gap: 30px;
    }

    .downloads-list-item {
        width: calc(33.33% - 20px);
    }

    .downloads-list-item .image {
        height: 360px;
    }
}

@media only screen and (max-width: 991px) {
    .downloads-list-item {
        width: calc(50% - 20px);
    }

    .downloads-list-item .image {
        height: 450px;
    }

    .downloads-list-item .image img {
        object-fit: cover;
    }

    .download-modal-wrapper {
        padding: 40px;
    }

    .download-modal-wrapper .download-modal {
        padding: 30px;
    }

    .download-modal .download-modal-header h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .download-modal .download-modal-header button {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }

    .download-modal .download-modal-header button img {
        width: 15px;
        height: auto;
    }

    .image-light-box {
        padding: 40px 30px;
    }

    .image-light-box .image-close {
        top: 20px;
        right: 20px;
    }
}

@media only screen and (max-width: 980px) {
    .et_pb_menu_0_tb_footer .et_mobile_nav_menu {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .et_pb_menu_0_tb_footer .mobile_nav.et_pb_mobile_menu_upwards {
        display: none;
    }

    .et_pb_menu .et_pb_menu__menu {
        display: block !important;
    }

    .et_pb_menu .et_pb_menu__menu #menu-footer {
        margin-top: 20px;
    }

    #mobile_menu1 {
        width: 100%;
        display: block;
        position: relative;
    }
}

@media only screen and (max-width: 768px) {
    .resources-banner .banner-text {
        padding: 0 25px;
    }

    .documents-wrapper>.et_pb_row {
        padding: 25px;
    }

    .resources-banner .banner-text h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .download-search-form {
        column-gap: 25px;
    }

    .downloads-list-item .title h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .download-line ul li {
        margin: 0 30px 0 0;
    }

    .download-line ul li:after {
        right: -18px;
    }

    .download-search-form-item select {
        min-height: 40px;
        font-size: 16px;
        line-height: 20px;
    }

    .image-light-box {
        padding: 30px 25px;
    }

    .download-modal-wrapper .download-modal {
        padding: 25px;
    }

    .download-modal .download-modal-body form .form-group.half {
        width: 100%;
    }

    .isobloc-zero-section {
        flex-direction: column;
    }

    .isobloc-zero-section-title.left .et_pb_text_inner,
    .isobloc-zero-section-title.right .et_pb_text_inner {
        display: flex;
        justify-content: center;
    }

    .isobloc-zero-section.image-right {
        flex-direction: column-reverse;
    }

    .isobloc-zero-section.image-right .et_pb_column_1_2:nth-child(1) {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .isobloc-zero-section.image-right .et_pb_column_1_2:nth-child(2) {
        width: 100%;
    }

    .isobloc-zero-section.image-left .et_pb_column_1_2:nth-child(1) {
        width: 100%;
        margin: 0;
    }

    .isobloc-zero-section.image-left .et_pb_column_1_2:nth-child(2) {
        width: 100%;
        padding: 0;
    }

    .isobloc-zero-section.image-center.et_pb_column_1_2 {
        width: 100%;
    }

    .isobloc-zero-section.image-center .isobloc-zero-section-title .et_pb_text_inner {
        display: flex;
        justify-content: center;
    }

    .isobloc-zero-section.image-center .isobloc-zero-section-title .et_pb_text_inner h4 {
        width: auto !important;
    }
}

@media only screen and (max-width: 600px) {

    .resources-banner .banner-text {
        padding: 0 20px;
    }

    .documents-wrapper>.et_pb_row {
        padding: 10px 20px 20px 20px;
    }

    .download-search-form {
        column-gap: 20px;
    }

    .downloads-list-item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .downloads-list-item .image {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .downloads-list-item .image img {
        width: 100%;
        height: auto;
    }

    .download-modal .download-modal-body form p {
        margin: 15px 0 10px 0;
    }

    .download-modal .download-modal-body form .form-group.checkbox {
        margin-top: 25px;
    }

    .download-modal .download-modal-body form .form-group.submit {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .download-modal-wrapper .download-modal {
        padding: 25px 20px;
    }
}