:root {
    --black: #1F1F1F;
    --black-80: rgba(31,31,31,0.8);
    --black-76: rgba(31,31,31,0.76);
    --black-20: rgba(31,31,31,0.20);

    --black2: #2F2F2F;
    
    --white: #fff;
    --white-70: rgba(255,255,255,0.7);
    --white-60: rgba(255,255,255,0.6);
    --white-56: rgba(255,255,255,0.56);

    --blue: #262A45;
    --teal: #61A3A0; 

    --grey: #EBEBEB;
    --grey2: #F2F2F2;
    --grey3: #333333;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.5;
    color: var(--black);
    background: #fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
/* -- main styles -- */

.nopad {
	padding:0px;
}
.nopadleft {
	padding-left:0px;
}
.nopadright {
	padding-right:0px;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}
/* .submitting {
    position: relative;
}
.submitting::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0; left: 0;
    z-index: 11;
}
.submitting::after {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #000;
    border-right: 2px solid transparent;
    -webkit-animation: formSpinner .6s linear infinite;
    animation: formSpinner .6s linear infinite;
    z-index: 12;
}
@-webkit-keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
} */

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 24px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: var(--teal)
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}


.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.dflex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dflex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.dflex-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.dflex-cbetween {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.grid-container {
	width: 100%;
    max-width: 1700px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 10;
}
.grid-container.grid-container-md {
    max-width: 922px;
    padding-left: 24px;
    padding-right: 24px;
}

.heading-1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 1.17;
}
.heading-1 span {
    color: var(--teal);
}
.heading-2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    line-height: 1.25;
}
.heading-3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    line-height: 1.25;
}
.heading-4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    line-height: 1.25;
}
.heading-4 strong {
    color: var(--teal);
}

.heading-5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    line-height: 1.25;
}
.heading-6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    line-height: 1.25;
}

.text-a {
    font-size: 20px;
    line-height: 1;
    line-height: 1.25;
}
.text-b {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

.text-white {
    color: var(--white);
}

.bg-light {
    background: var(--grey2);
}

.b-15,
.b-15 > img,
.b-15 > video {
    border-radius: 15px;
}

.mb-100 {
    margin-bottom: 100px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-68 {
    margin-bottom: 68px;
}
.mb-64 {
    margin-bottom: 64px;
}

.pb-64 {
    padding-bottom: 64px;
}

.oh {
    position: relative;
    overflow: hidden;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 45px;
    padding: 6px 30px;
    border-radius: 15px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
    gap: 10px;
}
.btn-blue:hover {
    background: var(--teal);
    color: var(--white);
}
a:hover .btn-blue {
    background: var(--teal);
    color: var(--white);
}

.btn-teal,
.btn-teal:focus,
.btn-teal:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 45px;
    padding: 6px 30px;
    border-radius: 15px;
    background: var(--teal);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
    gap: 10px;
}
.btn-teal:hover {
    background: var(--blue);
    color: var(--white);
}
a:hover .btn-teal {
    background: var(--blue);
    color: var(--white);
}

.btn-download::after {
    content: '';
    width: 24px; height: 24px;
    background: url(../img/icon-download-white.svg) no-repeat center center;
    display: inline-block;
    transition: 0.2s;
}
.btn-blue.btn-download::after {
    background: url(../img/icon-download.svg) no-repeat center center;
}
.btn-blue.btn-download:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.has-graph:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/icon-graph.svg) no-repeat center center;
    margin-right: 10px;
}
.has-nt:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/icon-nt.svg) no-repeat center center;
    margin-right: 10px;
}

.btn-chev-down,
.btn-chev-down:focus,
.btn-chev-down:active {
    padding-left: 20px !important;
    padding-right: 20px !important;

}

.btn-chev-down:after {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/chev-down-white-24px.svg) no-repeat center center / 100% 100%;
    margin-left: 10px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 16px 0;
    background: #fff;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.logo a img {
    max-width: 110px;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 26px;
}
.nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: var(--black);
    line-height: 1;
    transition: 0.2s;
}
.nav ul li a:hover {
    color: var(--teal);
}

.header-cta {
    margin-left: 23px;
}

.langs-hold {
    margin-left: 20px;
    font-size: 14px;
    line-height: 1;
}


.langs-hold a {
    color: var(--black);
}

.intro-fi-content {
    max-width: 700px;
}
.intro-fi-content .text-a {
    margin-top: 17px;
    max-width: 610px;
}

.multi-buttons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    gap: 16px;
}
.multi-buttons.text-center ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro-fi-buttons {
    margin-top: 18px;
}

.intro-fi-section {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    padding: 100px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.intro-fi-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../img/overlay-hero.svg) no-repeat right center / cover;
    mix-blend-mode: lighten;
}
.intro-fi-section:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: url(../img/orn-home-intro.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.cta-box {
    padding: 58px 50px;
}

.cta-box-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.cta-box-content .text-b {
    margin-top: 11px;
}

.cta-box-button {
    margin-top: 21px;
}

.features-carousel-item {
    /* aspect-ratio: 0.734; */
    min-height: 428px;
    padding: 30px 30px;
    gap: 24px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    color: #fff;
}
.features-carousel-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}
.features-carousel-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: url(../img/overlay-1.svg) no-repeat center center / cover;
    z-index: 2;
}

.features-carousel-item-nr {
    font-weight: 100;
    font-size: 96px;
    line-height: 1.25;
}
.features-carousel-item-nr,
.features-carousel-item-content {
    position: relative;
    z-index: 5;
}

.features-carousel-item-content .text-b {
    margin-top: 10px;
}

.features-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    outline: none;
}
.features-carousel .owl-dots {
    margin-top: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--grey);
    border-radius: 5px;
}
.features-carousel.owl-carousel button.owl-dot {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.features-carousel.owl-carousel button.owl-dot span {
    width: 100%;
    height: 9px;
    border-radius: 5px;
    transition: 0.2s;
}
.features-carousel.owl-carousel button.owl-dot.active span {
    background: var(--teal);
}

.section-top {
    margin-bottom: 30px;
}
.section-top .heading-2 + .text-b {
    margin-top: 3px;
}

.section-top.mb-24 {
    margin-bottom: 24px;
}

.re-grid > ul {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px; */

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: -20px;

}
.re-grid > ul > li {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    margin-bottom: 20px;
    position: relative;
}

.re-grid-info-box > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: 6;
}
.re-carousel-item a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: 0.3s;
}
/* .re-grid > ul > li:hover .re-carousel-item a:not(.no-link):after {
    opacity: 1;
} */


.re-grid-info-box {
    position: absolute;
    z-index: 5;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    bottom: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background: var(--teal);
    color: var(--white);
    padding: 24px 26px 21px;
    transition: 0.2s ease-in-out;
}

.re-grid .has-link:hover .re-grid-info-box {
    background: var(--blue);
}

.re-grid-info-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/orn-re-box.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 80% 50%;
    pointer-events: none;
}

.re-grid-info-box-details p {
    position: relative;
    padding-left: 33px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 9px;
}
.re-grid-info-box-details p:last-child {
    margin-bottom: 0px;
}
.re-grid-info-box-details p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.re-grid-info-box-details p.location:before {
    background: url(../img/icon-location.svg) no-repeat center center / 100% 100%;
}
.re-grid-info-box-details p.size:before {
    background: url(../img/icon-size.svg) no-repeat center center / 100% 100%;
}

.re-grid-flag {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
}
.re-grid-flag > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.has-link .heading-5 {
    position: relative;
    transition: 0.2s ease-in-out;
}
.re-grid .has-link:hover .heading-5 {
    padding-right: 43px;
}

.re-grid .has-link .heading-5:after {
    content: '';
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../img/arrow-right-white-32px.svg) no-repeat center center / 100% 100%;
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.re-grid .has-link:hover .heading-5:after {
    opacity: 1;
}

.scale-effect {
    overflow: hidden;
}
.scale-effect > img {
    will-change: transform;
    transform: scale(1);
    transition: 0.5s;
}
.re-grid > ul > li:hover .scale-effect > img,
a:hover .scale-effect > img,
a.scale-effect:hover > img {
    transform: scale(1.05);
}

.no-link {
    pointer-events: none;
}

.mt-30 {
    margin-top: 30px;
}

.title-counter {
    font-size: 16px;
    font-weight: 500;
    color: var(--teal);
}

.counter-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 8px;
}

.stats-list > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 20px;
}
.stats-list > ul > li {
    background: var(--white);
    border-radius: 15px;
    padding: 34px 24px 52px 34px;
}

.bg-light.has-gradient {
    position: relative;
}
.bg-light.has-gradient:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: calc(100% - 1px);
    height: 400px;
    background: linear-gradient(0deg,rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 100%);
}
.bg-light.has-gradient:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% - 1px);
    height: 400px;
    background: linear-gradient(180deg,rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 100%);
}

.stats-list-item-details {
    margin-top: 26px;
}
.stats-list-item-details > ul {
    margin: 0;
    padding: 0;
}
.stats-list-item-details > ul > li {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 300;
    margin-bottom: 30px;
}
.stats-list-item-details > ul > li:last-child {
    margin-bottom: 0px;
}
.stats-list-item-details > ul > li > strong {
    font-weight: 600;
}
.stats-list-item-details > ul > li > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black-80);
}
.stats-list-item-details > ul > li > div {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black-80);
}
.stats-list-item-details > ul > li > div ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.stats-list-item-details > ul > li > div ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    color: var(--black-80);
    gap: 6px;
}
.stats-list-item-details > ul > li > div ul li img {
    max-height: 24px;
    border-radius: 24px;
}

.stats-list-item-icon {
    display: flex;
    margin-bottom: 26px;
}
.stats-list-item-icon img {
    max-height: 59px;
}

.stats-list-item-title {
    position: relative;
    max-width: 325px;
}
.stats-list-item-title:before {
    content: '';
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    height: 53px;
    width: 18px;
    background: var(--teal);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.news-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 22px;
}
.news-grid ul li a {
    display: block;
    color: var(--black);
    background: var(--grey2);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.news-item-image {
    padding-bottom: 65.73%;
}

.news-item-content {
    padding: 20px 20px 30px;
}
.news-item-content .item-date  {
    margin-bottom: 8px;
}

.item-date {
    font-size: 16px;
    font-weight: 300;
    color: var(--black-76);
}

.news-item-cat {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 15px;
    background: var(--teal);
    padding: 11px 19px 12px 18px;
    color: var(--white);
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

footer {
    background: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.footer-box {
    position: relative;
    padding-bottom: 19px;
}
.footer-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 14%;
    width: 521px;
    height: 100%;
    z-index: 0;
    background: url(../img/footer-orn.svg) no-repeat bottom center / cover;
    pointer-events: none;
}

.footer-disclaimer {
    color: var(--white-60);
    max-width: 560px;
    font-size: 12px;
    line-height: 15px;
    /* margin-bottom: 90px; */
    padding-top: 15px;
}

.footer-logo {
    /* margin-bottom: 51px; */
    margin-bottom: 0;
}
.footer-logo a {
    display: flex;
}
.footer-logo a img  {
    max-width: 277px;
}

.footer-grid-left {
    width: 100%;
    max-width: 560px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-grid-left > div {
    width: 100%;
}

.footer-newsletter-label {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.25;
}

.footer-newsletter-form {
    position: relative;
}
.footer-newsletter-form button {
    position: absolute;
    top: 0;
    min-height: 48px;
    right: 0;
}
.footer-newsletter-form input,
.footer-newsletter-form input:focus {
    outline: none;
    box-shadow: none;
    margin: 0;
    border: none;
    background: #20233B;
    height: 48px;
    color: var(--white);
    padding: 2px 23px;
    padding-right: 200px;
    font-size: 16px;
    border-radius: 15px;
}

.footer-newsletter-form input::-webkit-input-placeholder {
	color: var(white);
	opacity: 0.5;
}
.footer-newsletter-form input::-moz-placeholder {
	color: var(white);
	opacity: 0.5;
}
.footer-newsletter-form input:-ms-input-placeholder {
	color: var(white);
	opacity: 0.5;
}
.footer-newsletter-form input:-moz-placeholder {
	color: var(white);
	opacity: 0.5;
}

.footer-newsletter-checkbox {
    margin-top: 22px;
}
.footer-newsletter-checkbox label input {
    display: none;
}
.footer-newsletter-checkbox label span {
    display: block;
    cursor: pointer;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    padding-left: 37px;
    color: var(--white);
}
.footer-newsletter-checkbox label span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--white);
    border-radius: 5px;
}
.footer-newsletter-checkbox label span:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    opacity: 0;
}
.footer-newsletter-checkbox label input:checked + span:after {
    opacity: 1;
}
.footer-newsletter-checkbox label span a {
    color: var(--white);
    text-decoration: underline;
}
.footer-newsletter-checkbox label span a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-nav ul li:not(:last-child) {
    margin-bottom: 19px;
}
.footer-nav ul li a {
    display: block;
    text-align: right;
    color: var(--white);
    font-size: 16px;
    line-height: 1.25;
    transition: 0.2s;
}
.footer-nav ul li a:hover {
    opacity: 0.6;
}

.socials {
    margin-top: 19px;
}
.socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 20px;
}
.socials ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: 0.2s;
}
.socials ul li a:hover {
    opacity: 0.6;
}
.socials ul li a img {
    max-height: 24px;
}



.footer-bottom {
    margin-top: 51px;
}

.footer-sec-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    gap: 26px;
}
.footer-sec-nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white-70);
    font-size: 12px;
    line-height: 15px;
    transition: 0.2s;
}
.footer-sec-nav ul li a:hover {
    color: var(--white);
}

.footer-notification {
    background: #EEEEEE;
    border-radius: 15px;
    padding: 25px 32px 28px;
    color: var(--black2);
    position: relative;
    z-index: 5;
}

.footer-notification:before {
    content: '';
    position: absolute;
    left: -100vw;
    width: calc(100% + 200vw);
    top: -1px;
    height: 50%;
    background: var(--white);
    z-index: -1;
}
.footer-notification:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
}

.footer-notification-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
}
.footer-notification-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../img/icon-info.svg) no-repeat center center;
}

.footer-notification-text {
    font-size: 14px;
    line-height: 1.43;
}
.footer-notification-text p:not(:last-child) {
    margin-bottom: 1.43em;
}

/* animations  */

.animation-element.fade-up.fade-up-2 {
    transition-delay: 0.15s;
}
.animation-element.fade-up.fade-up-3 {
    transition-delay: 0.3s;
}
.animation-element.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s linear, transform 0.8s cubic-bezier(0.19,1,0.22,1);
    transition:opacity 0.5s linear, transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.animation-element.fade-up.in-view {
    opacity: 1;
    transform: translateY(0px);
}

.animation-element.fade-up-later {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s .3s linear, transform 0.8s .3s cubic-bezier(0.19,1,0.22,1);
    transition: opacity 0.5s .3s linear, transform 0.75s .3s cubic-bezier(0.19, 1, 0.22, 1);
}

.animation-element.fade-up-later.in-view {
    opacity: 1;
    transform: translateY(0px);
}
.animation-element.fade-up-late {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s .6s linear, transform 0.8s .6s cubic-bezier(0.19,1,0.22,1);
    transition: opacity 0.25s .6s linear, transform 0.75s .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.animation-element.fade-up-late.in-view {
    opacity: 1;
    transform: translateY(0px);
}

.animation-element.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animation-element.fade-in.in-view {
    opacity: 1;
}
.animation-element.fade-in-later {
    opacity: 0;
    transition: opacity 0.8s 0.3s ease;
}

.animation-element.fade-in-later.in-view {
    opacity: 1;
}

.mob-nav-hold {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 400;
    background: var(--white);

    padding: 160px 0px 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 55px;
    clip-path: inset(0px 0px 100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.mob-nav-hold.active {
    clip-path: inset(0px 0px 0%);
}
.mob-nav-hold {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 400;
    background: var(--white);

    padding: 160px 0px 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 55px;
    clip-path: inset(0px 0px 100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.mob-nav ul li:not(:last-child) {
    margin-bottom: 31px;
}
.mob-nav ul li a {
    color: var(--black);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    transition: 0.2s;
}
.mob-nav ul li a:hover {
    color: var(--black-76);
}
.mob-nav-cta {
    margin-top: 31px;
}

.mob-nav-top {
    padding: 0 24px;
}

.mob-nav-details {
    padding: 35px 24px 26px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: url(../img/bg-mob-nav-details.svg) no-repeat center center / cover;
}

.mob-nav-contacts ul li:not(:last-child) {
    margin-bottom: 51px;
}
.mob-nav-contacts ul li a {
    display: block;
    color: var(--black);
    position: relative;
    padding-left: 75px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    transition: 0.2s;
}
.mob-nav-contacts ul li a:hover {
    color: var(--teal);
}
.mob-nav-contacts ul li a span {
    display: block;
    margin-bottom: 4px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-76);
}
.mob-nav-contacts ul li a img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 60px;
    max-height: 60px;
}

.mob-nav-details .langs-hold {
    margin-top: 55px;
    margin-left: 0;
    display: inline-block;
}
.mob-nav-details .langs-hold > div > ul > li ul {
    top: 50%;
    left: calc(100% + 20px);
    transform: translateY(-50%);
    display: flex;
}
.mob-nav-details .langs-hold > div > ul > li ul:before {
    display: none;
}
.mob-nav-details .langs-hold > div > ul > li ul:after {
    display: none;
}
.langs-hold div ul li ul li a {
    text-align: center;
}

.langs-hold {
    position: relative;
}
.langs-hold ul li a {
    font-size: 14px;
    line-height: 18px;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.langs-hold ul li a:hover {
    color: var(--black);
}
.langs-hold > div > ul > li > a {
    display: inline-block;
    position: relative;
    padding-right: 29px;
}
.langs-hold > div > ul > li > a::after {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/icon-langs.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.langs-hold > div > ul > li ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 5px 0;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 12px);
    background: var(--grey2);
    border-radius: 15px;
    min-width: 68px;
    transition: 0.2s;
}
.langs-hold > div > ul > li ul:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% - 1px);
    transform: translateX(-50%);
    border-bottom: 8px solid var(--grey2);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.langs-hold > div > ul > li ul:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 12px;
    bottom: 100%;
}
.langs-hold > div > ul > li:hover ul {
    visibility: visible;
    opacity: 1;
}
.langs-hold div ul li ul li a {
    display: block;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 12px;
    transition: 0.2s;
}
.langs-hold div ul li ul li a:hover {
    color: var(--teal);
}

.intro-fwi-content-section {
    padding-top: 164px;
}

.intro-fwi-image {
    padding-bottom: 36.52%;
}
.intro-fwi-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: inherit;
    background: url(../img/overlay-fwi.svg) no-repeat right center / cover;
    mix-blend-mode: lighten;
}
.intro-fwi-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: inherit;
    background-image: url(../img/orn-fwi.svg);
    background-repeat: no-repeat;
    background-position: -7% 50%;
    background-size: auto 100%;
}

.intro-fwi-features {
    position: absolute;
    z-index: 5;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
    top: 100%;
    transform: translateY(-50%);
    border-radius: 15px;
    padding: 22px 34px 23px;
    background: var(--white) url(../img/bg-fwi-features.svg) no-repeat center center / cover;
}

.intro-fwi-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 60px;
}
.intro-fwi-features ul li {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    position: relative;
}
.intro-fwi-features ul li span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
    opacity: 0.8;
}
.intro-fwi-features ul li:before {
        content: '';
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    height: 53px;
    width: 18px;
    background: var(--teal);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.counties-map-left {
    width: calc(50% + 10px);
    padding-right: 9px;
}
.counties-map-right {
    width: calc(50% - 10px);
}

.counties-map-image-hold {
    background: #F3F3F3;
    position: relative;
    padding: 35px 35px 35px 180px;
    padding: 35px 35px 35px 27%;
    height: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.counties-map-image-legend {
    position: absolute;
    top: 0;
    left: 18px;
    background: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.counties-map-image-legend-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    padding: 24px 22px 0;
}

.counties-map-image-legend-details {
    padding-top: 14px;
    padding-bottom: 7px;
}
.counties-map-image-legend-details ul li {
    padding: 8px 30px 8px 55px;
    border-top: 1px solid #F3F3F3;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
}
.counties-map-image-legend-details ul li span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    width: 25px;
    height: 25px;
}
.counties-map-image-legend-details ul li span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.counties-map-image-legend-details ul li:nth-child(1) span:before {
    background: #9BD4CC;
    width: 9px;
    height: 9px;
}
.counties-map-image-legend-details ul li:nth-child(2) span:before {
    background: #6C7FC2;
    width: 13px;
    height: 13px;
}
.counties-map-image-legend-details ul li:nth-child(3) span:before {
    background: #434A7B;
    width: 17px;
    height: 17px;
}
.counties-map-image-legend-details ul li:nth-child(4) span:before {
    background: #262A45;
    width: 25px;
    height: 25px;
}

.counties-map-features {
    height: 100%;
}
.counties-map-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
    height: 100%;
}
.counties-map-features ul li {
    background: #F3F3F3;
    border-radius: 15px;
    padding: 16px 16px 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 15px;
}

.counties-map-feature-icon {
    max-width: 32px;
    max-height: 32px;
}

.counties-map-feature-title {
    font-size: 20px;
    line-height: 1.25;
}
.counties-map-feature-title strong {
    font-weight: 600;
}
.counties-map-feature-title span {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--black-80);
}

.dividents-table tbody {
    background: transparent;
}
.dividents-table tbody tr:nth-child(even) {
    background-color: transparent;
}

.dividents-table tbody td {
    background: #F3F3F3;
    border-bottom: 1px solid #E4E4E4;
    padding: 14px 27px;
    font-size: 16px;
    line-height: 1.25;
}
.dividents-table tbody tr:last-child td {
    border-bottom: none;
}
.dividents-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}
.dividents-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}
.dividents-table tbody tr:first-child th:first-child {
    border-top-left-radius: 15px;
}
.dividents-table tbody tr:first-child th:last-child {
    border-top-right-radius: 15px;
}

.dividents-table tbody th {
    text-align: left;
    font-weight: 600;
    padding: 15px 27px;
    font-size: 16px;
    background: var(--blue);
    color: var(--white);
}
.dividents-table tbody tr td:first-child {
    font-weight: 600;
}
.dividents-table tbody td {
    white-space: nowrap;
}

.docs-heading {
    position: relative;
    padding-left: 55px;
    margin-bottom: 22px;
}
.docs-heading:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: url(../img/icon-docs.svg) no-repeat center center;
}

.docs-inline-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.docs-inline-list ul li a {
    display: block;
    padding: 19px 60px 19px 19px;
    border-radius: 15px;
    color: var(--black);
    font-size: 16px;
    line-height: 1.25;
    background: #F3F3F3;
    position: relative;
    transition: 0.2s;
}

.docs-inline-list ul li a:hover {
    background: #E4E4E4;
}
.docs-inline-list ul li a:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    width: 24px;
    height: 24px;
    background: url(../img/icon-download.svg) no-repeat center center / 100% 100%;
}

.docs-block:not(:last-child) {
    margin-bottom: 42px;
}

.docs-by-year {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.docs-by-year-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.docs-inline-list.v2 ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0;
}

.docs-by-year-more {
    margin-top: 24px;
}


.docs-acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.docs-acc .accordion {
    background: transparent;
}

.docs-acc .accordion-item {
    background: #F3F3F3;
    border-radius: 15px;
    margin-bottom: 12px;
}
.docs-acc .accordion-item:last-child {
    margin-bottom: 0px;
}

.docs-acc .accordion-title {
    padding: 27px 64px 27px 32px;
    border: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: var(--black);
    outline: none;
}

.docs-acc .accordion-title:focus, 
.docs-acc .accordion-title:hover {
    background-color: transparent;
    color: var(--black);
}

.docs-acc .accordion-title::before,
.docs-acc .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
    margin-top: 0;
    width: 24px;
    height: 24px;
}
.docs-acc .accordion-title::before {
    background: url(../img/acc-plus.svg) no-repeat center center / 100% 100%;
}
.docs-acc .accordion-title::after {
    background: url(../img/acc-minus.svg) no-repeat center center / 100% 100%;
    opacity: 0;
}

.docs-acc .is-active>.accordion-title::before {
    opacity: 0;
}
.docs-acc .is-active>.accordion-title::after {
    opacity: 1;
}

.docs-acc .accordion-content {
    padding: 8px 32px 32px;
    border: none;
    background-color: transparent;
    color: var(--black)
}

:last-child>.accordion-content:last-child {
    border-bottom: none;
}
:last-child:not(.is-active)>.accordion-title {
    border-bottom: none;
}

.docs-acc .docs-inline-list ul li a {
    background: var(--white);
}
.docs-acc .docs-inline-list ul li a:hover {
    background: var(--grey);
    background: #E4E4E4;
}

.docs-blocks-wrapper + .custom-links {
    margin-top: 54px;
    padding-top: 54px;
    border-top: 1px solid #EAEAEA;
}

.custom-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.custom-links ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    padding: 42px 26px 42px 30px;
    border-radius: 15px;
    gap: 24px;
    color: var(--black);
    background: url(../img/overlay-custom-link.svg) no-repeat center center / cover;

}

.custom-link-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.custom-link-left img {
    max-width: 64px;
    max-height: 64px;
}

.custom-links ul li a .btn-blue,
.custom-links ul li a .btn-blue:focus,
.custom-links ul li a .btn-blue:active {
    min-width: 154px;
}

.intro-fwi-subtitle.heading-4 {
    margin-top: 37px;
    font-weight: 500;
}
.intro-fwi-subtitle.heading-4 strong {
    font-weight: 500;
}

.about-hold {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 31px;
}

.about-acc-block:not(:last-child) {
    margin-bottom: 32px;
}
.about-acc-block .heading-5 {
    margin-bottom: 16px;
} 


.simple-acc .accordion {
    background: transparent;
}

.simple-acc .accordion-item {
    background: #F3F3F3;
    border-radius: 15px;
    margin-bottom: 8px;
}
.simple-acc .accordion-item:last-child {
    margin-bottom: 0px;
}

.simple-acc .accordion-title {
    padding: 26px 64px 26px 26px;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    color: var(--black);
    outline: none;
    transition: 0.2s;
}
.simple-acc .accordion-title:hover {
    color: var(--teal);
}

.simple-acc .accordion-title:focus, 
.simple-acc .accordion-title:hover {
    background-color: transparent;
    color: var(--teal);
}

.simple-acc .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
    margin-top: 0;
    width: 24px;
    height: 24px;
    background: url(../img/arrow-down-teal-24px.svg) no-repeat center center / 100% 100%;
}

.simple-acc .is-active>.accordion-title {
    color: var(--teal);
}
.simple-acc .is-active>.accordion-title::before {
    transform: translateY(-50%) rotate(180deg);
}
.simple-acc .accordion-title:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    opacity: 0;
    background: var(--teal);
    transition: 0.2s;
}
.simple-acc .is-active>.accordion-title:after {
    opacity: 1;
}

.simple-acc .accordion-content {
    padding: 0px 21px 22px 26px;
    border: none;
    background-color: transparent;
    color: var(--black)
}

.about-hold + .about-ic-hold {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid #EAEAEA;
}

.about-ic-left {
    width: 50%;
    padding-right: 8px;
}
.about-ic-right {
    width: 50%;
    padding-left: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-ic-content {
    width: 100%;
}

.about-ic-image {
    padding-bottom: 104.3%;
}
.about-ic-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: inherit;
    background: url(../img/overlay-ic-1.svg) no-repeat right center / cover;
    /* mix-blend-mode: lighten; */
}
.about-ic-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: url(../img/orn-ic-1.svg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 588px 474px;
    background-size: 90% auto;
}

.about-ic-image.v2:before {
    background: url(../img/overlay-ic-2.svg) no-repeat right center / cover;
}
.about-ic-image.v2:after {
    display: none;
}

.teal-bullet-list ul li {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    padding-left: 27px;
    position: relative;
    margin-bottom: 21px;
}
.teal-bullet-list ul li:last-child {
    margin-bottom: 0px;
}
.teal-bullet-list ul li:before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    left: 0;
    top: 7px;
}
.teal-bullet-list ul li span {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.about-ic-content .heading-3 {
    margin-bottom: 17px;
}
.about-ic-content .teal-bullet-list:not(:first-child) {
    margin-top: 24px;
}

.maintenance-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.maintenance-list ul li a {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    color: var(--black);
    height: 100%;
}

.maintenance-list-left {
    width: 40%;
    padding-right: 14px;
}
.maintenance-list-right {
    width: 60%;
    padding-left: 10px;
    padding-right: 10px;
}

.max-w-half {
    max-width: 656px;
}

.team-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px 20px;
}

.team-list-image {
    padding-bottom: 108.86%;
    margin-bottom: 13px;
}

.team-list-image-links {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}
.team-list-image-links a {
    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;
    width: 42px;
    height: 42px;
    background: var(--blue);
    border-radius: 15px;
    transition: 0.2s;
}
.team-list-image-links a:hover {
    background: var(--teal);
}
.team-list-image-links a:after {
    content: '';
    width: 24px;
    height: 24px;
}
.team-list-image-links a.email:after {
    background: url(../img/icon-mail-white.svg) no-repeat center center;
}
.team-list-image-links a.in:after {
    background: url(../img/icon-in-white.svg) no-repeat center center;
}

.team-list-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.28;
}
.team-list-title span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.team-more-button {
    margin-top: 27px;
}

.sustainability-intro {
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 64px 0;
    margin-bottom: 48px;
}
.sustainability-intro:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../img/overlay-sustainability.svg) no-repeat right center / cover;
    /* mix-blend-mode: lighten; */
}
.sustainability-intro:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: inherit;
    background-image: url(../img/orn-fwi.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: auto 100%;
}

.sustainability-intro-content .text-b {
    margin-top: 3px;
}

.ordered-boxes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}
.ordered-boxes ul li {
    background: var(--grey2);
    border-radius: 15px;
    padding: 16px 16px 23px;
}

.ordered-box-counter {
    margin-bottom: 16px;
}
.ordered-box-counter span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--teal);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.ordered-box-text {
    margin-top: 6px;
}

.custom-links.fw ul {
    grid-template-columns: repeat(1, 1fr);
}

.custom-links.fw ul li a {
    background: url(../img/overlay-custom-link-full.svg) no-repeat center center / cover;
}

.about-ic-logo-bg {
    position: absolute;
    top: 25px;
    right: 24px;
    background: var(--white);
    z-index: 6;
    width: 206px;
    height: 206px;
    border-radius: 50%;
    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;
}
.about-ic-logo-bg img {
   max-width: 88.35%;
}

.logo-sustainability {
    position: absolute;
    z-index: 6;
    top: 32px;
    left: 32px;
}
.logo-sustainability img {
    max-width: 127px;
}

.sertificates-carousel-item ul {
    display: flex;
    gap: 23px;
}
.sertificates-carousel-item ul li {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sertificates-carousel-item ul li img {
    max-height: 100%;
    max-width: 230px;
}

.sertificates-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.sertificates-carousel-hold {
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    padding-top: 50px;
    padding-bottom: 44px;
    position: relative;
}

.sertificates-carousel-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}
.sertificates-carousel-gradient:before,
.sertificates-carousel-gradient:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 53px;
}

.sertificates-carousel-gradient:before {
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.sertificates-carousel-gradient:after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);

}

.reg-intro-pt {
    padding-top: 164px;
}

.filter-more-button {
    margin-top: 42px;
}

.filter-style {
    margin-bottom: 26px;
    margin-bottom: 32px;
}
.filter-style ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    gap: 8px;
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% + 48px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.filter-style ul li input {
    display: none;
}
.filter-style ul li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 45px;
    border: 1px solid #EBEBEB;
    border-radius: 25px;
    padding: 6px 30px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    white-space: nowrap;
    transition: 0.2s;
}
.filter-style ul li label img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}
.filter-style ul li label:hover {
    border: 1px solid var(--teal);
}
.filter-style ul li input:checked + label {
    border: 1px solid var(--teal);
    background: var(--teal);
    color: var(--white);
}

.news-featured {
    margin-bottom: 64px;
}

.news-featured a {
    background: var(--grey2);
    border-radius: 15px;
    overflow: hidden;
    color: var(--black);
}

.news-featured-image {
    min-height: 100%;
}

.news-featured-left {
    width: calc(50% - 10px);
}
.news-featured-right {
    width: calc(50% + 10px);
    position: relative;
    padding: 102px 44px 102px 48px;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.news-featured-right .news-item-cat {
    bottom: auto;
    top: 27px;
}

.news-featured-content {
    width: 100%;
}
.news-featured-content .text-b {
    margin-top: 8px;
}

.news-single-cat {
    margin-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.news-single-cat .news-item-cat {
    position: relative;
    left: auto;
    bottom: auto;
    border-radius: 20px;
}

.news-single-section {
    padding-top: 130px;
}

.news-single-section .section-top {
    margin-bottom: 42px;
}

.news-single-featured-image {
    padding-bottom: 39.713%;
    margin-bottom: 42px;
}

.related-hold {
    margin-top: 60px;
    border-top: 1px solid #EAEAEA;
    padding-top: 60px;
}
.related-hold .section-top {
    margin-bottom: 20px;
}
.related-hold .mt-30 {
    margin-top: 20px;
}

.entry {
    font-size: 16px;
    line-height: 1.5;
    color: var(--grey3);
}
.entry > :last-child {
    margin-bottom: 0;
}
.entry p {
    margin-bottom: 21px;
}
.entry p.has-image {
    margin: 42px 0;
}
.entry p img {
    border-radius: 15px;
}
.entry ol {
    counter-reset: item;
}
.entry ol,
.entry ul {
    margin-bottom: 32px;
}
.entry ol li,
.entry ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 21px;
}
.entry ol li,
.entry ul li:last-child {
    margin-bottom: 0px;
}
.entry ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    left: 5px;
    top: 6px;
}
.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    font-weight: 500;
    width: 24px;
    left: 0;
    top: 0;
    text-align: center;
}


.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}
.entry h1 {
    font-size: 40px;
}
.entry h2 {
    font-size: 32px;
}
.entry h3 {
    font-size: 24px;
}
.entry h4 {
    font-size: 20px;
}
.entry h5 {
    font-size: 18px;
}

.gallery-carousel-item {
    padding-bottom: 65.675%;
}
.gallery-carousel.owl-carousel .owl-stage-outer {
    border-radius: 15px;
}


.owl-has-nav.owl-carousel .owl-nav button.owl-next, 
.owl-has-nav.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--teal);
    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;
    transition: 0.2s;
}
.owl-has-nav.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}
.owl-has-nav.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}
.owl-has-nav.owl-carousel .owl-nav button.owl-next:hover, 
.owl-has-nav.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--blue);
}

.gallery-carousel-counter {
    margin-top: 13px;
    text-align: right;
    font-size: 16px;
    line-height: 1.25;
}

.entry:not(:last-child),
.gallery-carousel-hold:not(:last-child) {
    margin-bottom: 42px;
}

.link-back,
.link-back:focus,
.link-back:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
    line-height: 18px;
    transition: 0.2s;
}
.link-back:hover {
    color: var(--black);
}
.link-back:before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #EEEEEE;
    background-image: url(../img/chev-back.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: 0.2s;
}
.link-back:hover:before {
    background-color: #fff;
    filter: invert(1);
}

.news-single-back {
    display: flex;
    position: relative;
    z-index: 5;
    margin-bottom: -32px;
}


.re-carousel-item a {
    display: block;
    padding-bottom: 66.6154%;
}

.re-carousel.owl-has-nav.owl-carousel .owl-nav button.owl-next, 
.re-carousel.owl-has-nav.owl-carousel .owl-nav button.owl-prev {
    width: 32px;
    height: 32px;
}

.re-carousel.owl-carousel .owl-stage-outer {
    border-radius: 15px;
}

.contacts-hold {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contacts-left {
    width: 50%;
    padding: 63px 60px 63px 46px;
}
.contacts-left .mob-nav-contacts {
    position: relative;
    z-index: 3;
}
.contacts-right {
    width: 50%;
    position: relative;
    z-index: 5;
    padding-right: 6.6%;
    margin-top: -113px;
}

.contacts-form-box {
    margin-left: -30px;
    width: calc(100% + 30px);
    background: var(--grey2);
    border-radius: 15px;
    padding: 60px 38px 32px 40px;
}

.contacts-form-box-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.btn-full,
.btn-full:focus,
.btn-full:active {
    width: 100%;
}

.contacts-left {
    position: relative;
}

.contacts-left-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200%;
    border-radius: 15px;
    background: url(../img/overlay-contact.svg) no-repeat center center / cover;
    pointer-events: none;
}
.contacts-left-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/orn-contacts.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 100% 50%;
}

.contacts-section .section-top {
    margin-bottom: 50px;
}

.form-element {
    margin-bottom: 22px;
}
.form-element label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.form-element label input,
.form-element label input:focus {
    margin-top: 8px;
}
.form-element input,
.form-element input:focus {
    outline: none;
    margin: 0;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.6);
    height: 63px;
    padding: 2px 22px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    transition: 0.2s;
}
.form-element input:focus {
    background: rgba(255,255,255,1);
}
.form-element label textarea,
.form-element label textarea:focus {
    margin-top: 8px;
}
.form-element textarea,
.form-element textarea:focus {
    outline: none;
    margin: 0;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.6);
    height: 126px;
    padding: 20px 22px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 300;
    resize: none;
    color: var(--black);
    transition: 0.2s;
}
.form-element textarea:focus {
    background: rgba(255,255,255,1);
}

.form-element textarea::-webkit-input-placeholder,
.form-element input::-webkit-input-placeholder {
	color: var(--black-76);
	opacity: 1;
}
.form-element textarea::-moz-placeholder,
.form-element input::-moz-placeholder {
	color: var(--black-76);
	opacity: 1;
}
.form-element textarea:-ms-input-placeholder,
.form-element input:-ms-input-placeholder {
	color: var(--black-76);
	opacity: 1;
}
.form-element textarea:-moz-placeholder,
.form-element input:-moz-placeholder {
	color: var(--black-76);
	opacity: 1;
}

.form-checkbox {
    margin-top: 23px;
}
.form-checkbox label input {
    display: none;
}
.form-checkbox label span {
    display: block;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    padding-left: 35px;
    color: var(--black);
}
.form-checkbox label span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--black);
    border-radius: 5px;
}
.form-checkbox label span:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 2px;
    opacity: 0;
}
.form-checkbox label input:checked + span:after {
    opacity: 1;
}
.form-checkbox label span a {
    color: var(--black);
    text-decoration: underline;
}
.form-checkbox label span a:hover {
    color: var(--black);
    text-decoration: none;
}


.form-submit {
    margin-top: 33px;
}

.form-submit .btn-blue, 
.form-submit .btn-blue:focus, 
.form-submit .btn-blue:active {
    min-height: 53px;
}

.contacts-socials-hold {
    margin-top: 48px;
    position: relative;
    z-index: 5;
}
.contacts-socials-hold .heading-5 {
    margin-bottom: 16px;
}

.contacts-socials ul li:not(:last-child) {
    margin-bottom: 12px;
}
.contacts-socials ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--black);
    transition: 0.2s;
}
.contacts-socials ul li a:hover {
    color: var(--teal);
}

.dividents-table table {
    width: 100%;
}
.about-section, .sustainability-section {
    position: relative;
}
.section-id {
    position: absolute;
    top: -77px;
    z-index: -9;
    pointer-events: none;
}

.header .current-menu-item a {
    position: relative;
}
.header .current-menu-item a::after {
    content: '';
    width: 100%; height: 3px;
    background: var(--teal);
    border-radius: 10px;
    position: absolute;
    bottom: -6px;
    left: 0;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 8px;
}
.wpcf7 form .wpcf7-response-output {
    border: none !important;
    padding: 0 !important;
    margin-top: 16px !important;
}

.contacts-hold .mob-nav-contacts-img {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--teal);
    transition: 0.2s ease-in-out;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 60px;
    margin: 0;
}
.mob-nav-contacts ul li a:hover .mob-nav-contacts-img {
    background: var(--blue);
}
.mob-nav-contacts ul li a .mob-nav-contacts-img img {
    position: relative;
    top: 0; left: 0;
    transform: translate(0);
}
.contacts-socials a path {
    transition: 0.2s ease-in-out;
}
.contacts-socials a:hover path {
    fill: var(--blue);
}

.bonds-intro {
    padding: 104px 0 60px;
}
.bonds-intro-top {
    margin-bottom: 29px;
    gap: 64px;
    flex-wrap: nowrap;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.bonds-intro-top .heading-1 {
    max-width: 782px;
}
.bonds-intro-download {
    background: var(--blue);
    border-radius: 20px;
    padding: 26px 30px 22px;
    margin-bottom: 16px;
    max-width: 373px;
    min-width: 373px;
}
.bonds-intro-download-icon {
    margin-bottom: 10px;
}
.bonds-intro-download-icon span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 42px; height: 42px;
    border-radius: 50%;
    background: url(../img/icon-docs.svg) no-repeat center center;
}
.bonds-intro-download .section-btn{
    margin-top: 16px;
}
.bonds-intro-download .btn-teal:hover {
    background: var(--teal);
    opacity: 0.7;
}
.bonds-intro-img {
    padding-bottom: 36.55%;
    border-radius: 15px;
    overflow: hidden;
}
.bonds-intro-img::before {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/overlay-fwi.svg) no-repeat right center / cover;
    mix-blend-mode: lighten;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.bonds-intro-img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: inherit;
    background-image: url(../img/orn-fwi.svg);
    background-repeat: no-repeat;
    background-position: -7% 50%;
    background-size: auto 100%;
}
.bonds-intro-list {
    padding: 0 24px;
    margin-top: -7%;
}
.bonds-intro-list ul {
    background: var(--white) url(../img/bg-bonds-list.png) no-repeat center center / cover;
    border-radius: 15px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.bonds-intro-list ul li {
    padding: 24px 24px 26px;
    position: relative;

    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0; 
}
.bonds-intro-list-icon {
    margin-bottom: 20px;
}
.bonds-intro-list-icon span {
    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;

    width: 59px; height: 59px;
    border-radius: 50%;
    background: var(--teal);
}
.bonds-intro-list-icon span img {
    max-width: 40px;
    max-height: 40px;
}
.bonds-intro-list .heading-5 {
    font-weight: 600;
    margin-bottom: 5px;
}
.bonds-intro-list ul li:not(:last-child)::after {
    content: '';
    width: 1px; height: 100%;
    background: var(--white);
    position: absolute;
    top: 0; right: 0;
}
.heading-5-sm {
    font-size: 18px;
}

.bonds-overview:not(.bonds-overview-bottom) .bonds-overview-box {
    padding-bottom: 64px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 64px;
}
.bonds-overview-bottom .bonds-overview-box {
    padding-top: 64px;
    border-top: 1px solid #EAEAEA;
}
.bonds-overview-image {
    padding-bottom: 59.6%;
    border-radius: 15px;
    overflow: hidden;
}
.bonds-overview-image::after {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/overlay-ic-4.png) no-repeat center center / cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.bonds-overview .entry {
    padding-right: 33px;
    margin-bottom: 0;
}

.presentation-section .section-top h2 {
    max-width: 49%;
}
.presentation-section .section-top .text-b {
    margin-top: 24px;
}
.presentation-section .section-top p {
    max-width: 49%;
}

.presentation-section-left {
    width: 64.27%;
}
.presentation-section-left a {
    display: block;
    padding-bottom: 56.1%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.presentation-section-left a::before {
    content: '';
    width: 100%; height: 100%;
    background: var(--black-20);
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
}
.presentation-section-left a::after {
    content: '';
    width: 126px; height: 126px;
    background: url(../img/icon-play-white.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease-in-out;
    z-index: 3;
}
.presentation-section-left a:hover::after {
    opacity: 0.7;
}
.presentation-section-right {
    width: 35.73%;
    padding-left: 12px;
}
.presentation-section-right-box {
    background: url(../img/bg-presentation-box.png) no-repeat center center / cover;
    padding: 32px;
    height: 100%;
    gap: 24px;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.presentation-section-right-box::before {
    content: '';
    width: 296px; height: 108%;
    background: url(../img/orn-presentation-box.svg) no-repeat center center / cover;
    position: absolute;
    top: -6%; right: 0;
    z-index: 1;
}
.presentation-section-right-box > div {
    position: relative;
    z-index: 2;
}
.presentation-section-box-icon {
    line-height: 0;
    margin-bottom: 34px;
}
.presentation-section-box-icon span {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: var(--teal) url(../img/icon-docs.svg) no-repeat center center;
    border-radius: 50%;
}
.presentation-section-right-box .heading-5 {
    max-width: 317px;
}
.presentation-section-right-box .text-b {
    margin-top: 12px;
}

.bonds-news {
    padding-top: 64px;
    border-top: 1px solid #EAEAEA;
    margin-bottom: 64px;
}

.text-14 {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.428;
}
.text-14 p:not(:last-child) {
    margin-bottom: 24px;
}

.disclaimer-section .text-14 {
    padding-top: 64px;
    border-top: 1px solid #EAEAEA;
    margin-bottom: 64px;
}

/* Media */
@media only screen and (max-width: 1300px) {
    .grid-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .custom-link-left {
        gap: 20px;
    }
    .maintenance-list-right {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 1199px) {
    
    .contacts-left {
        padding: 63px 40px 63px 40px;
    }
    .contacts-form-box {
        margin-left: 0px;
        width: calc(100% + 0px);
        padding: 40px 32px 32px 32px;
    }
    .contacts-right {
        padding-right: 20px;
    }
    .news-featured-right .news-item-cat {
        bottom: auto;
        top: 20px;
    }
    .news-featured-right {
        padding: 80px 32px 80px 32px;
        min-height: 400px;
    }
    .sertificates-carousel-gradient {
        width: calc(100% + 48px);
        left: -24px;
        right: -24px;
        transform: translateX(0%);
    }
    .logo-sustainability img {
        max-width: 100px;
    }
    .sustainability-intro {
        min-height: 420px;
    }
    .maintenance-list-right {
        padding-left: 0;
    }
    .about-ic-logo-bg {
        width: 160px;
        height: 160px;
    }
    .teal-bullet-list ul li:before {
        top: 6px;
    }
    .teal-bullet-list ul li {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .simple-acc .accordion-title {
        font-size: 18px;
    }
    .counties-map-feature-title {
        font-size: 18px;
    }
    .counties-map-image-legend-title {
        font-size: 18px;
    }
    .intro-fwi-features ul li {
        font-size: 18px;
        font-size: 16px;
    }
    .intro-fwi-features ul li span {
        font-size: 15px;
    }
    .counties-map-image-hold {
        padding: 24px 24px 24px 15%;
    }
    .docs-acc .accordion-title {
        font-size: 18px;
        padding: 27px 64px 27px 24px;
    }
    .docs-acc .accordion-content {
        padding: 8px 24px 32px;
    }
    .custom-links ul li a .btn-blue, 
    .custom-links ul li a .btn-blue:focus, 
    .custom-links ul li a .btn-blue:active {
        min-width: 1px;
    }
    .custom-links ul li a {
        font-size: 20px;
        padding: 32px 24px;
    }
    .mb-100 {
        margin-bottom: 80px;
    }
    .stats-list-item-title:before {
        left: -30px;
    }
    .stats-list > ul > li {
        padding: 34px 24px 52px 30px;
    }
    .grid-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .re-grid-info-box {
        padding: 24px 20px 21px;
    }
    .cta-box-content {
        max-width: 550px;
    }
    .intro-fi-content .text-a {
        max-width: 510px;
    }
    .intro-fi-section {
        padding: 100px 0 100px;
    }
    .text-a {
        font-size: 18px;
    }
    .stats-list-item-details > ul > li {
        font-size: 28px;
    }
    .features-carousel-item-nr {
        font-size: 80px;
    }
    .heading-1 {
        font-size: 56px;
    }
    .heading-2 {
        font-size: 44px;
    }
    .heading-3 {
        font-size: 36px;
    }
    .heading-4 {
        font-size: 32px;
    }
    .heading-5 {
        font-size: 20px;
    }
    .heading-6 {
        font-size: 18px;
    }
    .heading-5-sm {
        font-size: 16px;
    }
} 

@media only screen and (max-width: 1023px) {
    
    .contacts-section .section-top {
        margin-bottom: 30px;
    }
    .contacts-left-bg {
        width: 100%;
    }
    .contacts-left {
        width: 100%;
                padding: 40px 32px;
        margin-bottom: 32px;
    }
    .contacts-right {
        padding-right: 0;
        margin-top: 0;
        width: 100%;
    }
    .contacts-left-bg:after {
        background-position: 100% 50%;
        opacity: 0.3;
    }
    .news-single-featured-image {
        padding-bottom: 65.73%;
    }
    .news-single-section {
        padding-top: 110px;
    }
    .mb-80 {
        margin-bottom: 64px;
    }
    .news-featured {
        margin-bottom: 56px;
    }
    .news-featured-right {
        padding: 80px 24px 40px;
        min-height: 1px;
        width: 100%;
    }
    .news-featured-image {
        padding-bottom: 65.73%;
    }
    .news-featured-left {
        width: 100%;
    }
    .reg-intro-pt {
        padding-top: 120px;
    }
    .ordered-boxes ul li {
        padding: 16px 24px 23px;
    }
    .ordered-boxes ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .team-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .maintenance-list-right {
        padding-left: 6%;
        width: calc(100% - 230px);
    }
    .maintenance-list-left {
        width: 230px;
        padding-right: 0;
    }
    .maintenance-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .about-ic-right {
        width: 100%;
        padding-left: 0;
    }
    .about-ic-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }
    .about-hold {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .about-acc-block:not(:last-child) {
        margin-bottom: 24px;
    }
    .custom-link-left img {
        max-width: 48px;
        max-height: 48px;
    }
    .custom-links ul li a {
        font-size: 18px;
        padding: 32px 24px;
    }
    .docs-acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .docs-by-year {
        grid-template-columns: repeat(2, 1fr);
    }
    .docs-inline-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .dividents-table tbody th {
        padding: 15px 20px;
    }
    .dividents-table tbody td {
        padding: 14px 20px;
    }
    .counties-map-right {
        width: 100%;
    }
    .counties-map-left {
        width: 100%;
        margin-bottom: 10px;
    }
    .intro-fwi-image:after {
        opacity: 0.3;
    }
    .intro-fwi-image {
        padding-bottom: 66%;
    }
    .intro-fwi-content-section {
        padding-top: 120px;
    }
    .news-grid.featured-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .features-carousel-item {
        padding: 30px 24px;
    }
    .footer-logo a img {
        max-width: 223px;
    }
    .footer-grid-left {
        max-width: 450px;
    }
    .footer-notification {
        padding: 24px 24px 28px;
    }
    .news-grid ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-list > ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .re-grid ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .re-grid > ul > li {
        width: 100%;
        min-width: 100%;
        margin-bottom: 20px;
        position: relative;
    }
    .features-carousel .owl-dots {
        width: calc(100% + 110px);
    }
    .features-carousel-hold {
        padding-right: 110px;
    }
    .cta-box-content {
        max-width: 475px;
    }
    .cta-box {
        padding: 58px 32px;
    }
    .intro-fi-section {
        margin-top: 62px;
        min-height: 1px;
        aspect-ratio: 0.7862;
    }
    header {
        padding: 18px 0;
    }
    .heading-1 {
        font-size: 48px;
    }
    .heading-2 {
        font-size: 40px;
    }
    .heading-3 {
        font-size: 32px;
    }
    .heading-4 {
        font-size: 28px;
    }
    .intro-fi-section:after {
        opacity: 0.3;
    }
    .sustainability-intro:after {
        opacity: 0.3;
    }
    .bonds-intro-img {
        padding-bottom: 66%;
    }
    .bonds-intro-img:after {
        opacity: 0.3;
    }
    .bonds-intro-top {
        display: block;
    }
    .bonds-intro-download {
        max-width: 100%;
        min-width: 100%;
        margin-top: 20px;
    }
    .bonds-intro-list {
        padding: 0 0;
        margin-top: 24px;
    }
    .bonds-intro-list ul {
        display: block;
    }
    .bonds-intro-list ul li:not(:last-child)::after {
        width: 100%; height: 1px;
        top: auto; right: auto; bottom: 0; left: 0;
    }
    .bonds-overview .entry {
        padding-right: 0;
        margin-bottom: 32px;
    }
    .presentation-section-left {
        width: 100%;
        margin-bottom: 24px;
    }
    .presentation-section-right {
        width: 100%;
        padding-left: 0;
    }
    .presentation-section .section-top h2,
    .presentation-section .section-top p {
        max-width: 100%;
    }
} 

@media screen and (max-width:767px) {
    .team-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:639px) {
    .contacts-socials-hold {
        margin-top: 32px;
    }
    .contacts-left .mob-nav-contacts ul li a {
        font-size: 20px;
    }
    .contacts-left .mob-nav-contacts ul li:not(:last-child) {
        margin-bottom: 32px;
    }
    .form-element input, 
    .form-element input:focus {
        height: 58px;
    }
    .contacts-form-box-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .contacts-form-box {
        padding: 32px 20px;
    }
    .contacts-left {
        padding: 32px 20px;
        margin-bottom: 24px;
    }
    .entry h1 {
        font-size: 32px;
    }
    .entry h2 {
        font-size: 24px;
    }
    .entry h3 {
        font-size: 20px;
    }
    .entry h4 {
        font-size: 18px;
    }
    .entry h5 {
        font-size: 18px;
    }
    .related-hold {
        margin-top: 30px;
        padding-top: 30px;
    }
    .owl-has-nav.owl-carousel .owl-nav button.owl-next {
        right: 15px;
    }
    .owl-has-nav.owl-carousel .owl-nav button.owl-prev {
        left: 15px;
    }
    .owl-has-nav.owl-carousel .owl-nav button.owl-next, 
    .owl-has-nav.owl-carousel .owl-nav button.owl-prev {
        width: 32px;
        height: 32px;
    }
    .owl-has-nav.owl-carousel .owl-nav button.owl-next svg, 
    .owl-has-nav.owl-carousel .owl-nav button.owl-prev svg {
        width: 24px;
        height: 24px;
    }
    .entry p.has-image {
        margin: 30px 0;
    }
    .news-single-featured-image {
        margin-bottom: 30px;
    }
    .news-single-section .section-top {
        margin-bottom: 30px;
    }
    .news-single-cat {
        margin-bottom: 16px;
    }
    .news-single-back {
        margin-bottom: 12px;
    }
    .news-featured {
        margin-bottom: 46px;
    }
    .news-featured-right {
        padding: 24px 20px 24px;
    }
    .filter-style {
        margin-bottom: 24px;
    }
    .mb-80 {
        margin-bottom: 46px;
    }
    .filter-more-button {
        margin-top: 30px;
    }
    .filter-style ul {
        margin-left: -15px;
        padding-left: 15px;
        padding-right: 15px;
        width: calc(100% + 30px);
    }
    .sertificates-carousel-gradient {
        width: calc(100% + 30px);
        left: -15px;
        right: -15px;
        transform: translateX(0%);
    }
    .sertificates-carousel-item ul li img {
        max-width: 120px;
    }
    .sertificates-carousel-item ul li {
        height: 64px;
    }
    .sertificates-carousel-hold {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .teal-bullet-list ul li span {
        margin-top: 4px;
        font-size: 14px;
    }
    .logo-sustainability img {
        max-width: 80px;
    }
    .logo-sustainability {
        top: 16px;
        left: 16px;
    }
    .ordered-boxes ul li {
        padding: 16px 16px 20px;
    }
    .sustainability-intro {
        padding: 32px 0;
        margin-bottom: 32px;
    }
    .team-more-button {
        margin-top: 20px;
    }
    .team-list-title {
        font-size: 16px;
    }
    .team-list-title span {
        font-size: 14px;
    }
    .team-list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
    .teal-bullet-list ul li:before {
        top: 5px;
        width: 8px;
        height: 8px;
    }
    .teal-bullet-list ul li {
        font-size: 16px;
        padding-left: 20px;
        margin-bottom: 12px;
    }
    .about-ic-left {
        margin-bottom: 24px;
    }
    .about-ic-logo-bg {
        width: 100px;
        height: 100px;
        top: 16px;
        right: 16px;
    }
    .about-hold + .about-ic-hold {
        margin-top: 34px;
        padding-top: 34px;
    }
    .simple-acc .accordion-content {
    padding: 0px 20px 20px 20px;
    }
    .simple-acc .accordion-title {
        font-size: 16px;
        padding: 20px 64px 20px 20px;
    }
    .intro-fwi-subtitle.heading-4 {
        font-weight: 500;
    }
    .maintenance-list-right {
        padding-left: 0;
        width: 100%;
    }
    .maintenance-list-left {
        width: 100%;
        max-width: 230px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .dividents-table tbody th {
        font-size: 14px;
    }
    .dividents-table tbody td {
        font-size: 14px;
    }
    .custom-link-left img {
        max-width: 40px;
        max-height: 40px;
    }
    .custom-link-left {
        gap: 12px;
    }
    .custom-links ul li a {
        font-size: 18px;
        font-size: 16px;
        padding: 24px 20px;
        gap: 10px;
    }
    .docs-blocks-wrapper + .custom-links {
        margin-top: 34px;
        padding-top: 34px;
    }
    .docs-by-year-label {
        margin-bottom: 12px;
    }
    .docs-acc .accordion-title {
        padding: 27px 64px 27px 20px;
    }
    .docs-acc .accordion-content {
        padding: 2px 20px 24px;
    }
    .counties-map-image-legend {
        left: 15px;
    }
    .counties-map-image-legend-details {
        padding-top: 12px;
        padding-bottom: 4px;
    }
    .counties-map-image-legend-details ul li {
        padding: 6px 20px 6px 44px;
        font-size: 14px;
    }
    .counties-map-image-legend-details ul li span {
        left: 12px;
    }
    .counties-map-image-legend-title {
        font-size: 16px;
        padding: 12px 20px 0;
    }
    .counties-map-image-hold {
        padding: 160px 12px 24px 12px;
    }
    .counties-map-features ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .intro-fwi-features ul li span {
        font-size: 14px;
    }
    .intro-fwi-features {
        position: static;
        right: auto;
        left: auto;
        width: 100%;
        top: auto;
        transform: translateY(0);
        margin-top: 24px;
    }
    .intro-fwi-features ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .mb-64 {
        margin-bottom: 46px;
    }
    .pb-64 {
        padding-bottom: 46px;
    }
    .custom-links ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .docs-acc-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .docs-by-year {
        grid-template-columns: repeat(1, 1fr);
    }
    .docs-inline-list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
    .mob-nav-top {
        padding: 0 15px;
    }   
    .mob-nav-details {
        padding: 35px 15px 26px;
    }
    .mob-nav-hold {
        padding: 160px 0px 0;
    }
    .news-item-content .item-date {
        margin-bottom: 3px;
    }
    .item-date {
        font-size: 14px;
    }
    .news-grid ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .news-item-content {
        padding: 10px 20px 20px;
        padding-right: 25px;
    }
    .section-top {
        margin-bottom: 20px;
    }
    .section-top.mb-24 {
        margin-bottom: 20px;
    }
    .stats-list-item-details > ul > li > span {
        font-size: 14px;
    }
    .stats-list-item-details > ul > li > div {
        margin-top: 2px;
        font-size: 14px;
    }
    .stats-list-item-details > ul > li {
        font-size: 24px;
    }
    .stats-list-item-details {
        margin-top: 21px;
    }
    .stats-list-item-icon {
        margin-bottom: 14px;
    }
    .stats-list-item-title:before {
        left: -34px;
    }
    .stats-list > ul > li {
        padding: 20px 24px 33px 34px;
    }
    .mt-30 {
        margin-top: 20px;
    }
    .has-link .heading-5:after {
        width: 16px;
        height: 16px;
    }
    .re-grid .has-link:hover .heading-5 {
        padding-right: 20px;
    }
    .re-grid-info-box .heading-5 {
        font-size: 14px;
    }
    .re-grid-info-box {
        padding: 12px 20px 11px 10px;
        left: 18px;
        right: 16px;
        width: calc(100% - 34px);
    }
    .re-grid-info-box-details p {
        padding-left: 25px;
        font-size: 10px;
    }
    .re-grid-info-box-details p:before {
        width: 16px;
        height: 16px;
    }
    .re-grid-flag {
        top: 16px;
        left: 16px;
    }
    .mb-100 {
        margin-bottom: 46px;
    }
    .features-carousel .owl-dots {
        margin-top: 32px;
    }
    .intro-fi-section.mb-64 {
        margin-bottom: 20px;
    }
    .intro-fi-section:after {
        background-position: -24% 50%;
    }
    .intro-fi-buttons {
        margin-top: 13px;
    }
    .mb-68 {
        margin-bottom: 32px;
    }
    .features-carousel-item {
        min-height: 311px;
    }
    .features-carousel-item {
        padding: 12px 22px 22px;
    }
    .text-b.mob-14 {
        font-size: 14px;
    }
    .cta-box {
        padding: 32px 22px 144px;
    }
    .features-carousel-item-nr {
        font-size: 70px;
    }
    .text-a.mob-14 {
        font-size: 14px;
    }
    .btn-small-full,
    .btn-small-full:focus,
    .btn-small-full:active {
        width: 100%;
    }
    .multi-buttons ul {
        gap: 12px;
    }
    .multi-buttons ul li {
        width: 100%;
    }
    .intro-fi-section {
        padding: 80px 0 20px;
    }
    .heading-1 {
        font-size: 32px;
    }
    .heading-2 {
        font-size: 32px;
    }
    .heading-4 {
        font-size: 24px;
    }
    .heading-5 {
        font-size: 18px;
    }
    .heading-5-sm {
        font-size: 18px;
    }
    .heading-6 {
        font-size: 16px;
    }
    .grid-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .grid-container.grid-container-md {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-notification {
        padding: 27px 21px 33px;
    }
    .footer-disclaimer {
        margin-bottom: 66px;
        padding-top: 24px;
        text-align: center;
    }
    .footer-newsletter-checkbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .socials ul li a img {
        max-height: 48px;
        height: 48px;
        width: auto;
    }
    .socials ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .socials {
        margin-top: 28px;
    }
    .footer-mob-content {
        margin-bottom: 63px;
    }
    .footer-nav ul li:not(:last-child) {
        margin-bottom: 20px;
    }
    .footer-nav ul li a {
        text-align: center;
        font-size: 20px;
    }
    .footer-logo {
        margin-bottom: 35px;
    }
    .footer-logo a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-newsletter-form button {
        position: relative;
        top: auto;
        min-height: 48px;
        right: auto;
        width: 100%;
        margin-top: 15px;
    }
    .footer-newsletter-form input, .footer-newsletter-form input:focus {
        height: 51px;
        padding: 2px 20px;
        text-align: center;
    }
    .footer-newsletter-label {
        margin-bottom: 15px;
    }
    .footer-newsletter-hold {
        text-align: center;
    }
    .footer-sec-nav ul li a {
        font-size: 14px;
        line-height: 16px;
    }
    .footer-sec-nav ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .stats-list > ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
	.entry iframe {
		max-width: 100%;
	}
    .footer-box::after {
        right: -15px; left: -15px; top: 13%;
        width: calc(100% + 30px);
        /* padding-bottom: 131%; */
        background: url(../img/footer-orn-mobile.svg) no-repeat center center / 100% auto;
    }
    .footer-bottom {
        margin-top: 0;
    }
    .presentation-section-right-box {
        padding: 24px;
    }
    .presentation-section-left a::after {
        width: 64px;
        height: 64px;
    }
    .bonds-overview:not(.bonds-overview-bottom) .bonds-overview-box {
        padding-bottom: 46px;
        margin-bottom: 46px;
    }
    .bonds-overview-bottom .bonds-overview-box {
        padding-top: 46px;
    }
    .bonds-news {
        padding-top: 46px;
        margin-bottom: 46px;
    }
    .disclaimer-section .text-14 {
        padding-top: 46px;
        margin-bottom: 46px;
    }
} 