/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
    --header-background-color: #afc0aa;
    --header-divider-color: #c8c8c8;
    --grey-bg-color-default: #f4f4f4;
    --grey-bg-color-section: #f5f8f9;
    --divider-color: #c8c8c8;
    --dark-color: #2f2f2f;
    --dark-color-2: #535353;
    --text-color: var(--dark-color-2);
    --forest-green-color: #163b21;
    --animation-name: fadeInUp;
    --animation-duration-time: 0.5s;
    --animate-duration: var(--animation-duration-time);
    --bg-gray-color: #f8f8f5;
    --hover-link-color: #4e644b;
    --new-dark-color: #121212;
    --new-text-color: #4d4d4d;
    --new-border-color: #66f58a;
    --light-green: #66f58a;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    *,
    *::before,
    *::after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}

ul,
ol {
    padding-left: 30px;
}

    ul li::marker {
        font-size: 110%;
        color: inherit;
    }

    ul li a {
        color: inherit;
    }

    body,
    h1,
    h2,
    h3,
    h4,
    p,
    ul[class],
    ol[class],
    li,
    figure,
    figcaption,
    blockquote,
    dl,
    dd {
        margin: 0;
    }

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

ul[class] li,
.faktabox-wrapper ul li {
    position: relative;
    padding-left: 20px;
    color: var(--new-text-color);
    margin-bottom: 8px;
}

    ul[class] li:before,
    .faktabox-wrapper ul li:before {
        content: "";
        position: absolute;
        top: 14px;
        left: 8px;
        width: 4px;
        height: 4px;
        min-height: 4px;
        min-width: 4px;
        border-radius: 50%;
        background-color: currentColor;
    }

    ul[class] li a,
    .faktabox-wrapper ul li a {
        color: var(--forest-green-color);
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline;
    }

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    font-family: "Eifont";
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--text-color);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

video {
    display: inline-block;
    vertical-align: baseline;
}

a,
a.link,
.link {
    display: inline-block;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #535353;
}

a:hover,
a.link:hover {
    text-decoration: none;
}

a.link.mosgron,
a.card-link.mosgron,
span.link.mosgron {
    color: var(--hover-link-color);
}

.link-read-more {
    color: var(--new-dark-color) !important;
    margin-top: auto;
    margin-bottom: 20px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-decoration-color: var(--light-green);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.link-read-more:hover {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

.form-group {
    margin-bottom: 27px;
}

    .form-group label {
        display: inline-block;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
        color: var(--dark-color-2);
        margin-bottom: 8px;
    }

        .form-group label.form-check-label {
            font-style: normal;
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
            color: #7a7a7a;
            margin-bottom: 0;
            cursor: pointer;
        }

button,
input,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

    input[type="checkbox"],
    input[type="radio"] {
        padding: 0;
    }

textarea {
    resize: none;
}

.form-control {
    display: block;
    width: 100%;
    padding: 15px 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--dark-color-2);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #8b8b8b;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: var(--dark-color-2);
        outline: 0;
        -webkit-box-shadow: 0 0 0 0.2rem rgb(83 83 83 / 25%);
        box-shadow: 0 0 0 0.2rem rgb(83 83 83 / 25%);
    }

.form-check {
    position: relative;
    display: block;
    padding-left: 30px;
}

input.form-check-input {
    position: absolute;
    left: 0;
    height: 18px;
    min-width: 18px;
    background: #fff;
    border: 1px solid var(--divider-color);
    margin-top: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

    input.form-check-input:checked {
        background: url("icons/check-mark.svg") center center no-repeat, #fff;
        background-size: cover;
    }

.btn {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
}

.btn-primary {
    padding: 20px 30px;
    background: var(--forest-green-color);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #284c27;
    }

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Eifont Display";
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--new-dark-color);
    margin: 0;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
}

h1,
.h1 {
    font-size: 58px;
    line-height: 68px;
    margin-bottom: 24px;
}

h2,
.h2 {
    font-size: 50px;
    line-height: 62px;
    margin-bottom: 24px;
}

h3,
.h3 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 20px;
}

h4,
.h4 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 20px;
}

h5,
.h5 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 14px;
}

h6,
.h6 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
}

p {
    color: var(--new-text-color);
}

.subtitle {
    font-family: "Eifont Display";
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    color: var(--hover-link-color);
    margin-bottom: 4px;
}

.teaser-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: var(--dark-color-2);
}

.mb-xs {
    margin-bottom: 4px;
}

.mb-sm {
    margin-bottom: 8px;
}

.mb-md {
    margin-bottom: 16px;
}

.mb-lg {
    margin-bottom: 24px;
}

.max-width-768 {
    max-width: 768px;
}

.text-center {
    text-align: center;
}

.image-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    height: 0;
}

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

figure img {
    margin-top: 50px;
}

    figure img + figcaption {
        display: inline-block;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #8b8b8b;
        margin-top: 12px;
        margin-bottom: 30px;
    }

.table-wrapper {
    max-width: 100%;
    overflow: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 24px 0;
}

    table tr td {
        padding: 2px 8px;
    }

.container {
    max-width: 1200px;
    padding: 0 17px;
    margin: 0 auto;
}

.container-md {
    max-width: 1004px;
}

.container-sm {
    max-width: 710px;
}

#btn-burger-menu {
    display: none;
}

/*custom animate*/
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 55px, 0);
        transform: translate3d(0, 55px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 55px, 0);
        transform: translate3d(0, 55px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/*header*/
header {
    position: relative;
    z-index: 10;
    background: var(--header-background-color);
}

    .switch-lang {
        z-index: 1;
        padding-bottom: 14px;
    }

    header .switch-lang-mobile {
        display: none;
    }

.header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 90px;
}

header .left-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    padding: 21px 0;
    margin-right: 70px;
}

    .logo img {
        width: 95px;
        height: 48px;
    }

header .switch-lang a,
header .switch-lang .divider {
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    text-decoration: none;
    color: #4D4D4D;
}

    header .switch-lang a.active,
    header .switch-lang-mobile a.active {
        font-weight: 700;
        color: #121212;
    }

/*home page*/
.top-section-home-page {
    position: relative;
    background: #ebebd7;
    min-height: 870px;
}

.top-section-container {
    padding-top: 145px;
    position: relative;
    z-index: 3;
}

.top-section-subtitle {
    font-weight: 700;
}

.top-section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: -0.56px;
    margin-bottom: 28px;
}

.top-section-subtitle-teaser-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.top-section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 3;
}

    .top-section-content h1 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .top-section-content .teaser-text {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .top-section-content .link {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

.spacer {
    position: absolute;
    top: 0;
    left: calc(50% - 30px);
    width: 198px;
    height: 870px;
    background-repeat: no-repeat;
    z-index: 2;
    
    background-image: url("data:image/svg+xml,%3Csvg width='198' height='870' viewBox='0 0 198 870' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M135.077 870C154.872 777.264 139.361 670.029 119.018 577.777C98.6742 485.524 73.0816 393.135 72.8256 292.199C72.4695 151.855 129.004 19.8892 198 0H0V870H135.077Z' fill='%23EBEBD7'/%3E%3C/svg%3E%0A");
}

.main-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 40px);
    height: 100%;
}

    .main-img-wrapper .main-img {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.top-section-content .half-page-wrapper {
    max-width: 522px;
}

.top-section-subtitle {
    font-family: Eifont Display;
    font-size: 20px;
    font-weight: 700;
    line-height: 33px;
    margin-bottom: 4px;
}

.top-section-content h1 {
    font-family: Eifont Display;
    font-size: 56px;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: -0.56px;
    margin-bottom: 28px;
}

.top-section-subtitle-news-text {
    font-family: Eifont;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    max-width: 502px;
}

.half-page-wrapper {
    max-width: 50%;
}

    .half-page-wrapper .teaser-text {
        padding-right: 38px;
    }
/*video*/
.video-btn {
    font-family: Eifont;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    position: absolute;
    left: 124px;
    bottom: 14px;
    z-index: 3;
    cursor: pointer;
    background-color: transparent;
    border-width: 0;
}

.video-btn--play,
.video-btn--pause {
    display: flex;
}

.video-btn:not(.playing) .video-btn--pause,
.video-btn.playing .video-btn--play {
    display: none;
}

.video-btn .video-control {
    width: 24px;
    height: 24px;
    margin-right: 9px;
    flex-shrink: 0;
}

.video-btn--play .video-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cmask id='a' width='24' height='24' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 0h24v24H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%23fff' d='m9.5 16.5 7-4.5-7-4.5v9ZM12 22a9.733 9.733 0 0 1-3.9-.788 10.092 10.092 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.733 9.733 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.092 10.092 0 0 1 2.137-3.175c.9-.9 1.958-1.613 3.175-2.138A9.743 9.743 0 0 1 12 2c1.383 0 2.683.262 3.9.787a10.105 10.105 0 0 1 3.175 2.138c.9.9 1.612 1.958 2.137 3.175A9.733 9.733 0 0 1 22 12a9.733 9.733 0 0 1-.788 3.9 10.092 10.092 0 0 1-2.137 3.175c-.9.9-1.958 1.612-3.175 2.137A9.733 9.733 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z'/%3E%3C/g%3E%3C/svg%3E");
}

.video-btn--pause .video-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cmask id='a' width='24' height='24' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 0h24v24H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%23fff' d='M9 16h2V8H9v8Zm4 0h2V8h-2v8Zm-1 6a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z'/%3E%3C/g%3E%3C/svg%3E");
}

.w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white;
}

.background-video {
    display: block;
    width: 100%;
    height: 100%;
}

.w-background-video > video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
}

.content-highlights-section {
    padding: 43px 0;
    background: #ebebd7;
}

.content-highlights-title {
    margin-bottom: 32px;
    font-family: "Eifont Display";
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    color: #000;
}

.content-highlights-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}

.content-highlights-item {
    background-color: #fff;
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.content-highlights-item img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 216px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.content-highlights-item .link-img {
    padding: 0;
    width: 100%;
}

.content-highlights-item .link-img::before {
    display: none;
}

.content-highlights-item h6 {
    padding: 28px 32px 16px 32px;
    margin-bottom: 0;
    font-family: "Eifont Display";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #121212;
}

.content-highlights-item p {
    padding: 0 32px 42px 32px;
    font-family: "Eifont";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #121212;
}

.content-highlights-item .link-read-more {
    padding: 0 32px 8px 32px;
}

/*story-section*/
.story-section {
    padding: 80px 0 80px;
}

    .story-section .subtitle {
        font-size: 20px;
        font-weight: 700;
        line-height: 33px;
        margin-bottom: 8px;
    }

    .story-section h2 {
        font-size: 50px;
        font-weight: 700;
        line-height: 58px;
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

.story-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 0;
}

.stories-wrapper {
    margin-top: 63px;
}

.story-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
    -webkit-animation-duration: var(--animation-duration-time);
    animation-duration: var(--animation-duration-time);
    background: #F9F9F3;
    color: var(--new-text-color);
    border-radius: 8px;
}

    .story-item.image-right .story-image,
    .story-item.image-right .story-video {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-right: 0;
    }

    .story-item.image-right .story-description {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-right: 68px;
        padding-left: 48px;
    }

    .story-item.image-right .story-image img,
    .story-item.image-right .story-video video {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .story-item .story-image img,
    .story-item .story-video video {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .story-item + .story-item {
        margin-top: 80px;
    }

    .story-item .story-image,
    .story-item .story-video {
        -webkit-box-flex: 63;
        -ms-flex: 63;
        flex: 63;
        max-width: 620px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
        /*cover video*/
        .story-item .story-video.cover-video {
            width: 670px;
            height: 475px;
        }

            .story-item .story-video.cover-video .video-wrapper {
                height: 100%;
            }

                .story-item .story-video.cover-video .video-wrapper video {
                    -o-object-fit: cover;
                    object-fit: cover;
                }

        .story-item .story-image img {
            width: 100%;
        }

    .story-item .story-description {
        -webkit-box-flex: 37;
        -ms-flex: 37;
        flex: 37;
        padding-left: 48px;
        padding-right: 48px;
    }

    /*story-item wrapping-img*/
    .story-item.wrapping-img {
        display: block;
        overflow: auto;
    }

        .story-item.wrapping-img .story-description {
            padding: 0;
        }

        .story-item.wrapping-img .story-video {
            width: 100%;
        }

        .story-item.wrapping-img .story-image,
        .story-item.wrapping-img .story-video {
            max-width: 400px;
            float: left;
            margin: 0 16px 16px 0;
        }

        .story-item.wrapping-img.image-right .story-image,
        .story-item.wrapping-img.image-right .story-video {
            float: right;
            margin: 0 0 16px 16px;
        }

    .story-item h1,
    .story-item h2,
    .story-item h3,
    .story-item h4,
    .story-item h5,
    .story-item h6,
    .story-item h7 {
        color: var(--new-dark-color);
    }

/*logos-section*/
.logos-section {
    padding: 68px 0;
    background: var(--bg-gray-color);
}

    .logos-section .subtitle {
        margin-bottom: 7px;
    }

.logos-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 0 53px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

    .logos-wrapper .logo-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .logos-wrapper .logo-item img {
            margin: 0 auto;
        }

/*teaser-section*/
.teaser-section {
    padding: 86px 0 138px;
}

    .teaser-section h3,
    .teaser-section .h3 {
        margin-bottom: 14px;
    }

.teaser-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
}

.teaser-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    width: calc(50% - 27px);
}

.main-page-news-section {
    margin-top: 96px;
}

.main-page-news-wrapper .teaser-item h4 {
    font-family: Eifont Display;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 8px;
}

.main-page-news-wrapper .teaser-item .teaser-date {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.main-page-news-wrapper .teaser-item .teaser-image {
    height: 260px;
    margin-bottom: 8px;
}

.teaser-section .teaser-item {
    margin-bottom: 30px;
}
/* New overview design for first 3 childs */
.news-teaser-section .teaser-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    /*    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: -20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(12, 1fr);
}

.news-teaser-section .teaser-item {
    display: block;
    width: 100%;
    margin-bottom: 6px;
}

    .news-teaser-section .teaser-item:first-child {
        -ms-grid-column-span: 7;
        grid-column: span 7;
        -ms-grid-row-span: 2;
        grid-row: span 2;
        margin-top: 0;
    }

    .news-teaser-section .teaser-item:first-child .link-read-more {
        margin-top: 0;
    }

    .news-teaser-section .teaser-item:nth-child(n + 2) {
        -ms-grid-column-span: 5;
        grid-column: span 5;
        margin-top: 0;
    }

    .news-teaser-section .teaser-item:nth-child(n + 4) {
        -ms-grid-column-span: 6;
        grid-column: span 6;
        margin-top: 50px;
    }

    .news-teaser-section .teaser-item:nth-child(n + 16) {
        -ms-grid-column-span: 4;
        grid-column: span 4;
        margin-top: 50px;
    }

    /* maybe not strict 500px*/
    .news-teaser-section .teaser-item:first-child .teaser-image {
        height: 500px;
        margin-bottom: 16px;
    }

    .news-teaser-section .teaser-item:nth-child(n + 2) .teaser-image {
        max-height: 240px;
    }

    .news-teaser-section .teaser-item:nth-child(n + 4) .teaser-image {
        max-height: 400px;
    }

    .news-teaser-section .teaser-item:nth-child(n + 16) .teaser-image {
        max-height: 250px;
    }

    .news-teaser-section .teaser-item:nth-child(n + 2) h4 {
        font-family: "Eifont Display";
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
        line-height: 33px;
        color: #2f2f2f;
    }

.grouped-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
}

    .grouped-news .teaser-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
        row-gap: 50px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: -20px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }

    .grouped-news .teaser-item {
        grid-column: unset !important;
        grid-row: unset !important;
        display: block;
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 6px;
    }

        .grouped-news .teaser-item .teaser-image {
            max-height: 250px !important;
        }

        .grouped-news .teaser-item h4 {
            font-family: "Eifont Display";
            font-style: normal;
            font-weight: 700;
            font-size: 22px;
            line-height: 28px;
            color: #000000;
        }

.tag-teaser-section .teaser-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.tag-teaser-section .teaser-item {
    display: block;
    width: 100%;
    margin-bottom: 6px;
}

    .tag-teaser-section .teaser-item .teaser-image {
        max-height: 250px;
    }

    .tag-teaser-section .teaser-item h4 {
        font-family: "Eifont Display";
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
        line-height: 28px;
        color: #000000;
    }

a.teaser-item,
a.teaser-item:hover span.link {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

    a.teaser-item span.link {
        margin-top: auto;
        margin-bottom: 20px;
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline;
    }

.news-teaser-section #news-overviews .teaser-item:first-child span.link {
    margin-top: unset;
}

.teaser-item .teaser-date {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #8b8b8b;
}

.teaser-item .teaser-image {
    overflow: hidden;
    height: 392px;
    margin-bottom: 8px;
    background: #d9d9d9;
}

.partnership-container {
    margin-top: 40px;
}

/*.top-offset-odd-card-item .teaser-item:nth-child(odd) {
    margin-top: 80px;
}*/
/*footer-wrapper*/
footer {
    margin-top: auto;
    z-index: 1;
}

.footer-wrapper {
    padding: 60px 0 60px;
    color: #fff;
    background: var(--new-dark-color);
}

.footer-row,
.footer-navs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-row {
    margin: 0 -8px;
}

.footer-wrapper .logo img {
    width: 229px;
    height: 64px;
}

.footer-row .footer-column {
    padding: 0 8px;
}

.footer-content .logo {
    -webkit-box-flex: 33;
    -ms-flex: 33;
    flex: 33;
}

.footer-content .footer-navs-wrapper {
    -webkit-box-flex: 67;
    -ms-flex: 67;
    flex: 67;
}

.footer-content .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 12px;
    color: #fff;
    font-family: "Eifont Display";
}

.footer-navs-wrapper .contacts {
    width: 180px;
}

    .footer-content .address,
    .footer-navs-wrapper .contacts,
    .footer-navs-wrapper .contacts a,
    .footer-content .footer-list li,
    .footer-content .footer-list a {
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #fff;
    }

.footer-content .address {
    margin-bottom: 22px;
}

.footer-wrapper a.link {
    color: #fff;
}

.footer-content .footer-list li {
    padding-left: 0;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 0;
}

    .footer-content .footer-list li:last-child {
        margin-bottom: 0;
    }

    .footer-content .footer-list li:before {
        display: none;
    }

.footer-content .footer-list a {
    text-decoration: none;
}

    .footer-content .footer-list a:hover {
        text-decoration: underline;
    }

.socials-wrapper {
    width: 180px;
}

.footer-navs-wrapper .socials-list a:hover img {
    opacity: 0.8;
}

.socials-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -16px -16px 0;
}

    .socials-list .social-item {
        min-width: 33px;
        margin-right: 16px;
        margin-bottom: 16px;
    }

footer .copyright {
    background: var(--new-text-color);
    padding: 20px 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    text-align: center;
}
/*------------------------------- news-page -------------------------------*/
.news-teaser-section {
    padding: 40px 0 80px;
}

.news-teaser-section h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 58px
}

.news-teaser-section .teaser-item .teaser-date {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    color: #B4B4B4;
    margin-bottom: 11px;
}

.tag-teaser-section {
    padding: 68px 0 80px;
}

.news-page .teaser-item {
    /*margin-bottom: 98px;*/
}

.news-page .teaser-wrapper {
    /*margin-bottom: -98px;*/
}

.loader-element {
    margin: 0 auto;
}

.news-page .teaser-wrapper[data-has-next="false"] > .loader-wrapper,
.employees-page .employees-list[data-has-next="false"] > .loader-wrapper {
    display: none;
}
/* ----------------------------- detail-news-page ---------------------------*/
.detail-news-page section {
    padding: 48px 0 100px;
}

.detail-news-page .news-date {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 11px;
}

.detail-news-page h2,
.detail-news-page .h2 {
    margin-bottom: 70px;
}

.detail-news-page .article-content h2,
.detail-news-page .article-content .h2 {
    margin-bottom: 24px;
}

/*.detail-news-page .article-content p {
    text-align: justify;

}*/

.detail-news-page .article-content p + p {
    margin-top: 32px;
}

.detail-news-page .article-content .image-wrapper {
    margin: 50px 0 27px;
}

.article-content .faktabox-wrapper,
.article-content .faktabox-wrapper + div:not(.logos-macros-wrapper),
.article-content .faktabox-wrapper + p,
.article-content .faktabox-wrapper + :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 40px;
}
/*other-news-section*/
.other-news-section {
    padding: 80px 0 72px;
    background: var(--bg-gray-color);
}

    .other-news-section h2,
    .other-news-section .h2 {
        margin-bottom: 46px;
    }

.other-news-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 88px;
}

    .other-news-wrapper .other-news-item {
        display: flex;
        flex-direction: column;
        flex: 0 0 33.33%;
    }

.other-news-item .other-news-img {
    height: 260px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #d9d9d9;
}

.other-news-item .other-news-date {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 8px;
}

.other-news-item h6,
.other-news-item .h6 {
    margin-bottom: 20px;
}

a.other-news-item,
a.other-news-item:hover span.link {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

    a.other-news-item span.link {
        margin-top: auto;
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline;
    }

.pageTitle {
    margin-bottom: 8px !important;
}

.pageDescription {
    margin-bottom: 8px;
    height: 52px;
    font-family: "Eifont";
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    color: #000;
    
}

.news-teaser-section .teaser-item:first-child .pageDescription {
    height: auto;
    margin-bottom: 17px;
    font-family: "Eifont";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    color: #000;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

#news-overviews .teaser-item:first-child h4 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    color: #121212;
    margin-bottom: 19px;
}

.pageDescriptionMore {
    margin-bottom: 8px;
    height: 80px;
    font-family: "Eifont";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
/*-------------------------------- about page -------------------------------*/
.about-section {
    padding: 68px 0;
}

    .about-section h2,
    .about-section .h2 {
        margin-bottom: 28px;
    }

    .about-section .teaser-text {
        max-width: 670px;
    }

    .about-section .about-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 70px -8px -40px;
    }

        .about-section .about-wrapper .about-item {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
            padding: 0 8px;
            margin-bottom: 40px;
        }

a.about-item,
a.about-item:hover span.link {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

    a.about-item span.link {
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline;
    }

.about-section .about-wrapper .preview {
    height: 100%;
    background: var(--bg-gray-color);
}

.about-section .about-wrapper .about-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--bg-gray-color);
}

.about-card-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 24px 24px 28px;
}

    .about-card-description h5,
    .about-card-description .h5 {
        margin-bottom: 12px;
    }

    .about-card-description a {
        margin-top: 16px;
    }
/* ------------------- detail-about-page          /            about-lovgrundlag ---------------- */
.detail-about-page section {
    padding: 68px 0 123px;
}

.lovgrundland-section h2,
.lovgrundland-section .h2 {
    margin-bottom: 54px;
    max-width: 768px;
}

.detail-about-page .image-wrapper,
.detail-news-page .image-wrapper,
.article-content .image-wrapper {
    margin-bottom: 30px;
}

    .detail-about-page .image-wrapper .author-img,
    .detail-news-page .image-wrapper .author-img,
    .article-content .image-wrapper .author-img {
        display: inline-block;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #8b8b8b;
        margin-top: 12px;
    }

.detail-about-page .article-content + .faktabox-wrapper,
.detail-news-page .article-content + .faktabox-wrapper,
.article-content + .faktabox-wrapper {
    margin-top: 40px;
}

/*.article-content p {
    text-align: justify;
}*/

.article-content p + h1,
.article-content p + h2,
.article-content p + h3,
.article-content p + h4,
.article-content p + h5,
.article-content p + h6 {
    margin-top: 24px;
}

.article-content h3 {
    font-size: 40px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--divider-color);
}

.article-content h5 {
    font-size: 26px;
}

.article-content h6 {
    font-size: 20px;
}

.article-content p + p {
    margin-top: 32px;
}

.article-content .story-item + .story-item {
    margin-top: 40px;
}

.faktabox-wrapper {
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: var(--text-color);
    padding: 32px 49px 40px;
    background: var(--bg-gray-color);
}

    .faktabox-wrapper .faktabox-list,
    .faktabox-wrapper ul {
        padding: 0;
        list-style: none;
        margin-top: 24px;
    }

        .faktabox-wrapper .faktabox-list li,
        .faktabox-wrapper ul li {
            font-weight: 500;
            font-size: 14px;
            line-height: 26px;
            margin-bottom: 6px;
        }

            .faktabox-wrapper .faktabox-list li:before,
            .faktabox-wrapper ul li:before {
                top: 11px;
            }

            .faktabox-wrapper .faktabox-list li a,
            .faktabox-wrapper ul li a {
                font-weight: 500;
                font-size: 14px;
                line-height: 26px;
            }

.faktabox-wrapper-v-2 .faktabox-wrapper {
    padding: 30px 40px 30px;
    font-size: 18px;
    line-height: 32px;
}

.faktabox-wrapper-v-2 h5,
.faktabox-wrapper-v-2 h6,
.faktabox-wrapper-v-2 .h5,
.faktabox-wrapper-v-2 .h6 {
    margin-bottom: 18px;
}

.faktabox-wrapper-v-2 p:not(:last-child) {
    margin-bottom: 21px;
}

.faktabox-wrapper-v-2 ul {
    margin-top: 17px;
}

    .faktabox-wrapper-v-2 ul li {
        padding-left: 28px;
        /*color: var(--forest-green-color);*/
    }

        .faktabox-wrapper-v-2 ul li:before {
            top: 18px;
            left: 10px;
            width: 5px;
            height: 5px;
            min-height: 5px;
            min-width: 5px;
        }

        .faktabox-wrapper-v-2 ul li,
        .faktabox-wrapper-v-2 ul li a,
        .faktabox-wrapper-v-2 a {
            font-style: normal;
            font-weight: 500;
            font-size: 18px;
            line-height: 38px;
        }

            .faktabox-wrapper-v-2 ul li a,
            .faktabox-wrapper-v-2 a {
                text-decoration: none;
            }

.faktabox-wrapper-v-2 .faktabox-wrapper ul {
    margin-bottom: 0;
}

    .faktabox-wrapper-v-2 .faktabox-wrapper ul li {
        padding-left: 0;
    }

        .faktabox-wrapper-v-2 .faktabox-wrapper ul li::marker {
            content: "" !important;
        }

.faktabox-wrapper-v-2 .faktabox-wrapper ul {
    padding-left: 4px !important;
}

    .faktabox-wrapper-v-2 .faktabox-wrapper ul li::before {
        position: initial !important;
        display: inline-block !important;
        content: "" !important;
        margin-right: 10px !important;
        width: 12px !important;
        height: 12px !important;
        background: url("icons/arrow_forward_ios.svg") center no-repeat !important;
        background-size: cover !important;
        -webkit-transform: rotate(-90deg) !important;
        -ms-transform: rotate(-90deg) !important;
        transform: rotate(-90deg) !important;
    }

ul.arrow li::marker {
    content: "" !important;
}

ul.arrow {
    padding-left: 4px !important;
}

    ul.arrow li::before {
        position: initial !important;
        display: inline-block !important;
        content: "" !important;
        margin-right: 10px !important;
        width: 12px !important;
        height: 12px !important;
        background: url("icons/arrow_forward_ios.svg") center no-repeat !important;
        background-size: cover !important;
        -webkit-transform: rotate(-90deg) !important;
        -ms-transform: rotate(-90deg) !important;
        transform: rotate(-90deg) !important;
    }

ul.contact-underbox-links li {
    margin-bottom: 20px !important;
}
/*logos macros*/
.logos-wrapper .logos-macros-wrapper {
    margin: 0;
}

.logos-macros-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 54px -27px;
}

    .logos-macros-wrapper .logo-item {
        padding: 0 27px;
    }
/*involverede-section*/
section.involverede-section {
    padding-bottom: 156px;
}
/*bestyrelsen-section*/
section.bestyrelsen-section {
    padding-bottom: 244px;
}

.bestyrelsen-section h2,
.bestyrelsen-section .h2 {
    margin-bottom: 27px;
}

.bestyrelsen-section p {
    max-width: 670px;
}

.bestyrelsen-section .bestyrelsen-list-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, 278px);
    -webkit-column-gap: 65px;
    -moz-column-gap: 65px;
    column-gap: 65px;
    row-gap: 76px;
    margin: 52px 0 0;
    grid-auto-flow: row;
}

.bestyrelsen-item .bestyrelsen {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: minmax(0, 1fr);
    -ms-grid-rows: 250px minmax(54px, 1fr) minmax(16px, 1fr) 30px minmax(26px, 1fr);
    grid-template-rows: 250px minmax(54px, 1fr) minmax(16px, 1fr) 30px minmax( 26px, 1fr );
    height: 100%;
}

.bestyrelsen-item .bestyrelsen-img-wrapper {
    height: 250px;
    overflow: hidden;
    background: #d9d9d9;
}

.bestyrelsen-item h6,
.bestyrelsen-item .h6 {
    margin-bottom: 0;
    padding-top: 24px;
}

.bestyrelsen-profession {
    padding-top: 5px;
}

.bestyrelsen-item .divider {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--divider-color);
    margin: 16px 0;
}

.bestyrelsen-item .bestyrelsen-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: var(--dark-color-2);
}

.bestyrelsen-item .bestyrelsen-desc a {
    overflow-wrap: anywhere;
}

.breadcrumb {
    width: 100%;
    background: var(--color-sand, #EBEBD7);
}

.breadcrumb ul {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb a {
    text-decoration: none;
    font-family: "Eifont";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--forest-green-color);
}

.breadcrumb li a {
    font-family: "Eifont";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--forest-green-color);
}

.breadcrumb li span {
    font-family: "Eifont";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: #7a7a7a;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 0.25rem;
    content: "/";
    text-decoration: none;
    font-family: "Eifont";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--forest-green-color);
}

.separate-line {
    width: 100%;
    height: 2px;
    background: var(--divider-color);
    border: none;
    margin-top: 55px;
    margin-bottom: 40px;
}

.article-group {
    margin-top: 91px;
}
.article-group .group-header {
    display: flex;
}
.article-group .tag-label {
    leading-trim: both;
    text-edge: cap;
    font-family: Eifont Display;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px
}
.article-group .group-header a {
    margin-left: 16px;
    content: '' !important;
    transform: translateY(-2px);
    width: 32px;
    height: 32px;
    background: url('./icons/arrow_right_btn_icon.svg') center no-repeat !important;
    background-size: cover !important;
}

.iti {
    display: block !important;
}

.article-business-angels .h2 {
    font-family: "Eifont Display";
    font-weight: 700;
    font-size: 50px;
    line-height: 62px;
    margin-bottom: 22px;
}

.article-business-angels-text {
    margin-bottom: 76px;
}

.article-business-angels-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.article-business-angels-list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.333% - 45px);
    flex: 0 0 calc(33.333% - 45px);
    margin-right: 65px;
    margin-bottom: 109px;
}

    .article-business-angels-list-item h6 {
        font-family: "Eifont Display";
        font-weight: 700;
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .article-business-angels-list-item h6.leafIcon::before {
            content: "";
            width: 18px;
            height: 19px;
            margin-right: 10px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' fill='none'%3E%3Cpath fill='%2366F58A' d='M16.739.484c-2.11.213-8.092.794-12.373 5.346-3.298 3.486-2.602 5.481-1.844 6.392 2.315-2.693 5.572-5.191 9.67-6.876-1.332.852-4.467 3.157-6.802 5.636-2.438 2.576-4.056 5.326-4.61 6.14-.45.658-.081 1.53.718 1.724.573.135 1.168-.136 1.393-.659a31.85 31.85 0 0 1 1.905-3.506c1.987.504 4.65 1.298 7.99-2.188 4.22-4.397 4.608-9.491 4.608-11.447.02-.33-.307-.6-.655-.562Z'/%3E%3C/svg%3E");
        }

    .article-business-angels-list-item:nth-child(3n + 3) {
        margin-right: 0;
    }

.link-with-icon,
.news-v2 .link-with-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

    .link-with-icon img,
    .news-v2 .link-with-icon img {
        margin-right: 11px;
        width: 26px;
        height: 26px;
    }

    .link-with-icon a,
    .news-v2 .link-with-icon a {
        -webkit-text-decoration-line: none;
        text-decoration-line: none;
    }

.grecaptcha-badge {
    z-index: 2;
}

.news-v2 .text-box-v2 {
    width: 100%;
    background: var(--bg-gray-color);
    border-top: 4px solid var(--new-border-color);
    padding: 40px;
}

    .news-v2 .text-box-v2 .box-label {
        margin-bottom: 7px;
        font-family: "Eifont";
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 22px;
        text-transform: uppercase;
        color: var(--new-dark-color);
    }

    .news-v2 .text-box-v2 .box-link {
        margin-top: 25px;
        font-family: "Eifont";
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        color: var(--hover-link-color);
    }

.news-v2 .box-wide {
    width: 120%;
}

.main-page-news-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 88px;
}
