
@font-face {
    font-family: "Mabry";
    src: url("../fonts/MabryPro.otf");
}
@font-face {
    font-family: "Mabry";
    src: url("../fonts/MabryProMedium.otf");
    font-weight: 500;
}
@font-face {
    font-family: "Mabry";
    src: url("../fonts/MabryProBold.otf");
    font-weight: 700;
}

/* 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 {
	line-height: 1.5;
    font-family: "Mabry", sans-serif;
    background: #fbf8f5;
    color: #2E337D;
}
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;
}

.row {
    max-width: 1170px;
    padding-left: 20px;
    padding-right: 20px;
}
.row.row-lg {
    max-width: 1400px;
}
.row.row-full {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	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;
}

.invi {
	visibility: hidden;
	opacity: 0;
}


/*   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: 16px;
    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: 16px;
    height: 1px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #2E337D;
}
.home .hamburger-inner,
.home .hamburger-inner:after,
.home .hamburger-inner:before,
.header.close .hamburger-inner,
.header.close .hamburger-inner:after,
.header.close .hamburger-inner:before {
    background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -5px;
}

.hamburger-inner:after {
    bottom: -5px;
}

.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);
}

/* header */

.header {
    border-bottom: 1px solid #2E337D;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
}
.home .header,
.header.close {
    border-color: #fff;
}

.logo img {
    max-height: 85px;
}

.logo-white {
    display: none;
}

.home .logo-blue,
.header.close .logo-blue {
    display: none;
}
.home .logo-white,
.header.close .logo-white {
    display: inline-block;
}

.header-right {
    float: right;
    padding-top: 29px;
}

.nav {
    float: left;
} 

.nav ul li {
    float: left;
    margin-right: 60px;
}
.nav ul li a {
    color: #2E337D;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: 0.2s;
}
.home .nav ul li a,
.header.close .nav ul li a {
    color: #fff;
}

.nav ul li.current-menu-item a,
.nav ul li a:hover {
    border-color: #2E337D; 
}

.home .nav ul li.current-menu-item a,
.home .nav ul li a:hover,
.header.close .nav ul li.current-menu-item a,
.header.close .nav ul li a:hover {
    border-color: #fff; 
}

.langs-hold {
    float: left;
}

.langs-hold ul li {
    float: left;
    margin-right: 25px;
}

.langs-hold ul li:last-child {
    margin-right: 0px;
}

.langs-hold ul li a {
    font-size: 14px;
    display: inline-block;
    color:  #2E337D;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.home .langs-hold ul li a {
    color: #fff;
}

.langs-hold ul li.wpml-ls-current-language a,
.langs-hold ul li a:hover {
    border-bottom: 1px solid #2E337D;
}

.home .langs-hold ul li.wpml-ls-current-language a,
.home .langs-hold ul li a:hover {
    border-bottom: 1px solid #fff;
}

/* intro */

.home-intro {
    min-height: 100vh;
    padding: 100px 0;
    background-size: cover !important;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 160px;
}

.home-intro video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.intro-video-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #E1A342;
}

.intro-video-button svg {
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.intro-video-button svg path {
    fill: none;
    transition: 0.2s;
}

.intro-video-button:hover svg path {
    fill: #fff;
}

.home-intro .row {
    width: 100%;
    position: relative;
    z-index: 5;
}

.intro-text {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #fff;
}

.btn-white-circle-blue,
.btn-white-circle-blue:focus,
.btn-white-circle-blue:active {
    display: inline-block;
    outline: none;
    color: #fff;
    font-size: 20px;
    padding: 5px 0;
    padding-right: 36px;
    position: relative;
    z-index: 2;
}
.btn-white-circle-blue:hover {
    color: #fff;
}
.btn-white-circle-blue:before {
    content: '';
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: url(../img/arrow-right-white.svg) no-repeat center center;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: -1;
    transition: 0.2s;
}
.btn-white-circle-blue:hover:before {
    background: #2E337D url(../img/arrow-right-white.svg) no-repeat center center;
}
.btn-white-circle-blue:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
}

/* cookies */

.cookies-hold {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 500;
    width: 540px;
    background: #2E337D;
    padding:  40px 46px;
    padding-right: 115px;
}

.cookies-text {
    font-size: 12px;
    color: #fff;
    line-height: 2.3;
    margin-bottom: 20px;
}

.cookies-text a {
    color: #E1A342;
}
.cookies-text a:hover {
    text-decoration: underline;
}

.btn-orange-border,
.btn-orange-border:focus,
.btn-orange-border:active {
    display: inline-block;
    border-bottom: 1px solid #E1A342;
    color: #E1A342;
    font-size: 20px;
    padding: 5px 0;
    transition: 0.2s;
}

.btn-orange-border:hover {
    color: #fff;
}

.cookies-close {
    position: absolute;
    top: 44px;
    right: 46px;
    background: url(../img/close-orange.svg) no-repeat center center;
    width: 17px;
    height: 16px;
    transition: 0.2s;
}
.cookies-close:hover {
    opacity: 0.6;
}

.newsletter-hold {
    /* border-top: 1px solid #2E337D; */
    padding: 80px 0 100px;
    position: relative;
}

.newsletter-title {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 70px;
}

.newsletter-right {
    padding-left: 10%;
}

.newsletter-right p {
    font-size: 16px;
    margin-bottom: 24px;
}

.newsletter-right p:last-child {
    margin-bottom: 0px;
}

.newsletter-right p a {
    color: #2E337D;
    font-size: 20px;
    font-weight: 500;
    transition: 0.2s;
}
.newsletter-right p a:hover {
    color: #E1A342;
}

.newsletter-left {
    padding-right: 10%;
}

.newsletter-input {
    position: relative;
}

.mailerlite-form-field {
    margin-bottom: 0 !important;
}

.mailerlite-form .mailerlite-form-field label {
    color: #2E337D;
}

.newsletter-input input[type="email"],
.newsletter-input input[type="email"]:focus {
    border: none;
    border-bottom: 1px solid #2E337D;
    font-size: 16px;
    padding: 2px 0;
    padding-right: 50px;
    outline: none;
    box-shadow: none;
    margin: 0;
    background: transparent;
    height: 40px;
    color: #2E337D;
}

.newsletter-input input[type="submit"] {
    height: 40px;
    width: 40px;
    background: url(../img/arrow-right-blue.svg) no-repeat right 10px center;
    position: absolute;
    top: 34px;
    right: 0;
    border: none;
    outline: none;
    transition: 0.2s;
}
.newsletter-input input[type="submit"]:hover {
    background: url(../img/arrow-right-blue.svg) no-repeat right 0px center;
}

.newsletter-input input::-webkit-input-placeholder {
	color: #2E337D;
	opacity: 1;
}
.newsletter-input input::-moz-placeholder {
	color: #2E337D;
	opacity: 1;
}
.newsletter-input input:-ms-input-placeholder {
	color: #2E337D;
	opacity: 1;
}
.newsletter-input input:-moz-placeholder {
	color: #2E337D;
	opacity: 1;
}

/* footer */

.footer {
    border-top: 1px solid #2E337D;
}

.footer-middle {
    padding-top: 28px;
    padding-left: 8%;
}

.footer-middle ul li {
    display: inline-block;
    margin-right: 15px;
}
.footer-middle ul li:last-child {
    margin-right: 0px;
}

.footer-middle ul li img {
    width: 150px;
    height: 14px;
    position: relative;
    top: -2px;
}

.footer-right {
    float: right;
    padding-top: 29px;
}

.footer-nav {
    float: left;
    margin-right: 55px;
}

.footer-nav ul li {
    float: left;
    margin-right: 74px;
}

.footer-nav ul li:last-child {
    margin-right: 0px;
}

.footer-nav ul li a {
    color: #2E337D;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.footer-nav ul li.current-menu-item a, 
.footer-nav ul li a:hover {
    border-color: #2E337D;
}

.footer-socials {
    float: left;
}

.footer-socials ul li {
    margin-right: 20px;
    float: left;
}

.footer-socials ul li:last-child {
    margin-right: 0px;
}

.footer-socials ul li a path {
    transition: 0.2s;
}
.footer-socials ul li a:hover path {
    fill: #E1A342;
}

.footer-socials ul li.other a circle{
    transition: 0.2s;
}

.footer-socials ul li.other a:hover circle {
    fill: #E1A342;
}
.footer-socials ul li.other a:hover path {
    fill: #fbf8f5;
}

/* mob nav */

.nav-trigger {
    padding-top: 23px;
}

.mob-nav-hold {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: #2E337D;
    padding-top: 170px;
    padding-left: 70px;
    margin-bottom: 50px;
    height: 100%;
    overflow: auto;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.mob-nav-hold.close {
    opacity: 1;
    visibility: visible;
}

.mob-nav {
    margin-bottom: 40px;
}

.mob-nav ul li {
    margin-bottom: 25px;
}
.mob-nav ul li a {
    color: #fff;
    font-size: 28px;
}

/* home introduction */

.section-headline {
    font-size: 44px;
    line-height: 1.3;
}

.section-headline-text {
    margin-top: -20px;
}
.section-headline-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
}
.section-headline-text p:last-child {
    margin-bottom: 0px;
}

.btn-blue-circle-orange,
.btn-blue-circle-orange:focus,
.btn-blue-circle-orange:active {
    display: inline-block;
    outline: none;
    color: #2E337D;
    font-size: 20px;
    padding: 5px 0;
    padding-right: 36px;
    position: relative;
    z-index: 2;
}
.btn-blue-circle-orange:hover {
    color: #2E337D;
}

.btn-blue-circle-orange:before {
    background: url(../img/btn-arrow-right-blue.svg) no-repeat right center;
    content: '';
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 0;
    transition: 0.2s;
}

.btn-blue-circle-orange:hover:before {
    background: url(../img/btn-arrow-right-white.svg) no-repeat right center;
}

.btn-blue-circle-orange:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #2E337D;
    bottom: 0;
    left: 0;
}

.btn-blue-circle-orange span {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) scale(0.1);
    z-index: -1;
    transition: 0.2s;
}
.btn-blue-circle-orange:hover span {
    background: #E1A342;
    transform: translateY(-50%) scale(1);
}

/* home map */

.outter-wrapper {
    position: relative;
    overflow: hidden;
}

.home-map {
    height: 590px;
}

.section {
    margin-bottom: 160px;
    position: relative;
}
.section .row {
    position: relative;
    z-index: 5;
}

/* home gallery */

.gallery-carousel-item {
    padding-bottom: 56%;
    background-size: cover !important;
}

.gallery-carousel.owl-carousel .owl-nav button.owl-next, 
.gallery-carousel.owl-carousel .owl-nav button.owl-prev {
    background: #2E337D;
    height: 64px;
    width: 105px;
    position: relative;
    transition: 0.4s;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.gallery-carousel.owl-carousel .owl-nav button.owl-prev:hover  {
    background: #0D1361;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next svg, 
.gallery-carousel.owl-carousel .owl-nav button.owl-prev svg {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: 0.4s;
}

.gallery-carousel.owl-carousel .owl-nav button.owl-prev svg {
    right: 15px;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-prev:hover svg {
    transform: translate(-25px, -50%);
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next svg {
    left: 15px;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next:hover svg {
    transform: translate(25px, -50%);
}

.gallery-carousel .owl-nav {
    position: absolute;
    right: -20px;
    bottom: -25px;
}

/* people stories */

.section.section-people-stories {
    overflow: hidden;
}

.people-stories-carousel-item {
    width: 690px;
}

.people-stories-carousel-image {
    padding-bottom: 100%;
    background-size: cover !important;
    margin-bottom: 45px;
    transition: 0.2s;
}

.people-stories-carousel-title {
    font-size: 22px;
    font-weight: 500;
    color: #2E337D;
    line-height: 1.1;
    margin-bottom: 26px;
}

.people-stories-carousel-text {
    font-size: 16px;
    color: #2E337D;
    margin-bottom: 26px;
}

.people-stories-carousel-hold {
    width: calc(100vw - ((100vw - 1130px) / 2));	
}
/* .people-stories-carousel-hold, .people-stories-carousel-hold * {
    cursor: url('../img/cursor-drag.svg'), auto;	
} */

.btn-blue-arrow,
.btn-blue-arrow:focus,
.btn-blue-arrow:active {
    display: inline-block;
    padding: 5px 0px;
    line-height: 1.5;
    color: #2E337D;
    border-bottom: 1px solid #2E337D;
    position: relative;
    font-size: 20px;
    transition: 0.2s;
}
.btn-blue-arrow:hover {
    color: #2E337D;
    padding-right: 40px;
}

.btn-blue-arrow:after {
    content: '';
    background: url(../img/arrow-right-blue.svg) no-repeat center center;
    width: 20px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    opacity: 0;
    transition: 0.2s;
    visibility: hidden;
}
.btn-blue-arrow:hover:after {
    opacity: 1;
    right: 0;
    visibility: visible;
}

/* blue block */

.blue-block {
    background: #2E337D;
    padding: 160px 115px;
    color: #fff;
}

.tabs-hold .tabs {
    background: transparent;
    border: none;
    margin-bottom: 120px;
}

.tabs-hold .tabs-title {
    width: calc(33.333% - 16px);
    margin-right: 24px;
}
.tabs-hold .tabs-title:last-child {
    margin-right: 0;
}

.tabs-hold .tabs-title>a {
   font-size: 16px;
   border: 1px solid #fff;
   padding: 13px 10px;
   color: #fff;
   text-align: center;
   transition: 0.2s;
}

.tabs-hold .tabs-title>a:hover {
    background: #fff;
    color: #2E337D;
}

.tabs-hold .tabs-title>a:focus, 
.tabs-hold .tabs-title>a[aria-selected=true] {
    background: #fff;
    color: #2E337D;
}

.tabs-hold .tabs-content {
    background: transparent;
    border: none;
}

.tabs-hold .tabs-panel {
    padding: 0;
}

.activities-list {
    position: relative;
    z-index: 15;
    margin-bottom: 160px; 
}

.activities-list > 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;
}
.activities-list > ul > li {
    width: 25%;
    border: 1px solid #fff;
    border-right: none;
    position: relative;
    /* margin-top: -1px; */
}
.activities-list > ul > li:last-child {
    border-right: 1px solid #fff;
}
.activities-list > ul > li:nth-child(4n) {
    border-right: 1px solid #fff;
}

.activities-list > ul > li a {
    display: block;
    height: 100%;
    padding-bottom: 78px;
    position: relative;
    z-index: 5;
}
.activities-list > ul > li a.fb-event:before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    background: url(../img/icon-fb.svg) no-repeat center center / 100% 100%;
}

.activity-title {
    padding: 18px 24px 0;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}
.activities-list > ul > li a.fb-event .activity-title {
    padding-right: 35px;
}
.activity-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 6px 24px;
    font-size: 14px;
    line-height: 1.1;
    height: 60px;
    border-top: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.activity-date ul {
    margin: 0;
}
.activity-date ul li {
    display: inline-block;
}
.activity-date ul li:after {
    content: '|';
    display: inline-block;
    margin: 0 4px;
}
.activity-date ul li:last-child:after {
   display: none;
}

.active-image {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    width: 210px;
    height: 140px;
    position: absolute;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 9;
    background-size: cover !important;
    transition: opacity 0.1s, visibility 0.1s, transform 0.2s;
    left: -100%;
    top: -100%;
}

.active-image.close {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.section.section-home-tabs {
    position: static;
}
.section.section-home-tabs .row {
    position: static;
}

.more-activities-block {
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    padding: 45px 0;
    border-top: 1px solid #E1A342;
    border-bottom: 1px solid #E1A342;
    padding-right: 140px;
}
.more-activities-block span {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    right: 0;
}

.btn-white-arrow,
.btn-white-arrow:focus,
.btn-white-arrow:active {
    display: inline-block;
    padding: 5px 0px;
    line-height: 1.5;
    color: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    font-size: 20px;
    transition: 0.2s;
}
.btn-white-arrow:hover {
    color: #fff;
    padding-right: 40px;
}

.btn-white-arrow:after {
    content: '';
    background: url(../img/arrow-right-white.svg) no-repeat center center;
    width: 20px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    opacity: 0;
    transition: 0.2s;
    visibility: hidden;
}
.btn-white-arrow:hover:after {
    opacity: 1;
    right: 0;
    visibility: visible;
}




/* parallaxing blocks */

.parallaxing-blocks {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #2E337D;
}

.home-map-hold .parallaxing-blocks {
    top: 60%;
}
.newsletter-hold .parallaxing-blocks {
    top: 0;
}

.section-image .parallaxing-blocks {
    top: 50%;
}
.section-home-gallery .parallaxing-blocks {
    top: 70%;
}

.parallaxing-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.bg-blue {
    background: #2E337D;
}
.bg-orange {
    background: #E1A342;
}

.w-xl {
    width: 480px;   
}
.w-lg {
    width: 370px;   
}
.w-md {
    width: 310px;
}
.w-sm {
    width: 250px;
}
.w-xs {
    width: 140px;
}

.h-lg {
    height: 96px;
}
.h-md {
    height: 64px;
}
.h-sm {
    height: 32px ;
}

.speed-1 {
    left: -10%;
}
.speed-2 {
    left: 90%;
}

.owl-nav button.owl-next, 
.owl-nav button.owl-prev {
    outline: none;
}

/* people */

.inner-wrapper {
    padding-top: 210px;
}

.people-stories-list {
    padding-top: 160px;
}

.people-stories-list ul li {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 140px;
}
.people-stories-list ul li a {
    float: left;
    width: 100%;
}
.people-stories-list ul li a:hover .people-stories-carousel-image {
    opacity: 0.7;
}

.people-stories-list ul li:nth-child(2n) {
    margin-right: 0px;
}

.people-stories-list ul li:nth-child(2n+1) {
    clear: both;
}
.people-stories-list ul li:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.section-people .parallaxing-blocks {
    top: 0;
}

/* people inner */

.section-title {
    font-size: 44px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.people-inner-image {
    padding-bottom: 100%;
    background-size: cover !important;
}

.people-inner-slogan {
    font-size: 20px;
    line-height: 1.7;
    padding-right: 9%;
}

.people-inner-intro .section-title {
    margin-bottom: 40px;
}

.people-inner-intro .parallaxing-blocks {
    top: 80%;
}

.people-inner-quote-hold {
    padding-right: 10%;
    min-height: 1px;
}

.people-inner-quote {
    font-size: 44px;
    line-height: 1.3;
    position: relative;
    padding-top: 50px;
    margin-bottom: 20px;
}
.people-inner-quote:before {
    content: '“';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 96px;
    line-height: 1;
}

.people-inner-author {
    font-size: 20px;
    padding-left: 15px;
    line-height: 1.2;
    position: relative;
}
.people-inner-author:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 8px;
    background: #2E337D;
    left: 0;
    top: 12px;
}

.entry p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.entry a {
    color: #2E337D;
    text-decoration: underline;
    transition: 0.2s;
}

.entry a:hover {
    color: #E1A342;
    text-decoration: underline;
}

.entry p img {
    margin: 55px 0;
}

.entry h5 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.entry h4 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.entry h3 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.entry h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.entry h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.entry p + h2,
.entry ul + h2,
.entry ol + h2 {
    margin-top: 50px;
}

.entry ul,
.entry ol {
    margin-bottom: 35px;
}

.entry ul li {
    padding-left: 20px;
    font-size: 20px;
    position: relative;
    line-height: 1.7;
}
.entry ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2E337D;
    left: 0;
    top: 14px;
}

.entry ol {
    counter-reset: item;
}

.entry ol li {
    font-size: 20px;
    line-height: 1.7;
}
.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    display: inline-block;
    margin-right: 5px;
    font-weight: 700;
}

.people-inner-content-block {
    margin-bottom: 30px;
}

.section-people-image .parallaxing-blocks {
    top: 35%;
}
.section-people-image .parallaxing-blocks.parallaxing-blocks-2 {
    bottom: 0;
    top: auto;
}

.section.section-people-image {
    margin-bottom: 100px;
    padding-bottom: 160px;
}
.section.section-people-inner-content {
    margin-bottom: 90px;
}

/* privacy policy */

.breads {
    margin-bottom: 50px;
}
.breads ul li {
    display: inline-block;
    font-size: 14px;
}
.breads ul li:after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 12px;
    background: url(../img/icon-breads.svg) no-repeat center center;
    margin: 0 8px;
}
.breads ul li:last-child:after {
    display: none;
}
.breads ul li a {
    color: #2E337D;
}
.breads ul li a:hover {
    text-decoration: underline;
}

.inner-wrapper-sm {
    padding-top: 160px;
}

.section-text-intry .parallaxing-blocks {
    bottom: 0;
}

.section.section-text-intry {
    padding-bottom: 160px;
}

/* business */

.section-business-gallery .parallaxing-blocks {
    top: 30%;
}

.section-business-gallery .gallery-carousel-item {
    padding-bottom: 66%;
}

.partners-list ul {
    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;
}

.partners-list ul li {
    margin-right: 50px;
}
.partners-list ul li:last-child {
    margin-right: 0px;
}

.partners-list ul li a img {
    width: 100%;
    max-height: 60px;
}

/* concept */

.concept-list ul li {
    float: left;
    width: 16%;
    margin-right: 5%;
}
.concept-list ul li:last-child {
    margin: 0;
}

.concept-list-label {
    color: #E1A342;
    font-size: 48px;
    line-height: 1;
    border-bottom: 1px solid #fff;;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

.concept-list-text {
    font-size: 16px;
    line-height: 1.4;
}

.concept-map {
    height: 730px;
}

.section-concept-map .parallaxing-blocks {
    top: 50%;
}

.concept-carousel-image {
    padding-bottom: 76%;
    background-size: cover !important;
}

.concept-carousel-item {
    width: 880px;
}

.concept-carousel-hold {
    width: calc(100vw - ((100vw - 1130px) / 2));
}

.concept-carousel-hold, .concept-carousel-hold * {
    /* cursor: url(../img/cursor-drag.svg), auto; */
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.concept-steps-percent {
    font-size: 22px;
    margin-bottom: 20px;
}

.concept-steps {
    position: relative;
}

.concept-steps ul {
    padding: 0 95px;
}

.concept-steps ul li {
    float: left; 
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
    color: #bebdd1;
    position: relative;
    transition: 0.8s 0.2s;
}
.concept-steps ul li:before {
    content: '';
    position: absolute;
    height: 60px;
    width: 1px;
    left: 0;
    top: 39px;
    background: #bebdd1;
}
.concept-steps.in-view ul li.active {
    color: #2E337D;
}

.concept-step-date {
    font-size: 12px;
    margin-bottom: 80px;
}

.concept-step-text {
    font-size: 16px;
    line-height: 1.4;
}

.concept-steps-progress {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #bebdd1;
    overflow: hidden;
}
.concept-steps-progress span {
    position: absolute;
    top: 0px;
    left: 0;
    height: 4px;
    width: 0;
    background: #2E337D;
    transition: 1s 0.2s;
}

.concept-steps-progress-mob {
    position: absolute;
    top: -30px;
    left: 0;
    width: 4px;
    height: calc(100% + 30px);
    background: #bebdd1;
    overflow: hidden;
}
.concept-steps-progress-mob span {
    position: absolute;
    top: 0px;
    left: 0;
    width: 4px;
    height: 0;
    background: #2E337D;
    transition: 1s 0.2s;
}

.section.section-concept-list {
    padding-top: 160px;
}

.section-concept-list .parallaxing-blocks {
    top: 0;
}

.blue-block.blue-block-concept-list {
    position: relative;
}
.blue-block.blue-block-concept-list:before {
    position: absolute;
    content: '';
    top: 65px;
    left: -9000px;
    right: -9000px;
    width: calc(100% + 18000px);
    height: 1px;
    background: #E1A342;
}
.blue-block.blue-block-concept-list:after {
    position: absolute;
    content: '';
    bottom: 65px;
    left: -9000px;
    right: -9000px;
    width: calc(100% + 18000px);
    height: 1px;
    background: #E1A342;
}

.people-inner-quote.not-quote {
    padding-top: 0;
    margin-bottom: 0;
}
.people-inner-quote.not-quote:before {
    display: none;
}
.people-inner-quote.not-quote + .people-inner-author {
    display: none;
}

.section.section-activity-inner-image {
    padding-top: 160px;
}

.section-activity-inner-image .parallaxing-blocks {
    top: 0;
}

.intro-activity-date {
    font-size: 14px;
}

.activity-intro {
    margin-bottom: 125px;
}

.activity-intro .section-title {
    margin-bottom: 30px;
}

/* activities archive */

.section.section-activities-gallery {
    padding-top: 160px;
}

.section-activities-gallery .parallaxing-blocks {
    top: 0;
}

.section-activities-bottom-image .section-title {
    margin-bottom: 40px;
}

.activities-bottom-image-link {
    margin-bottom: 32px;
}

.section-activities-bottom-image .parallaxing-blocks {
    top: 80%;
}

.activities-bottom-image {
    background-size: cover !important;
    padding-bottom: 73%;
}

.activities-block {
    margin-bottom: 140px;
}

.activities-block:last-child {
    margin-bottom: 0px;
}

.activities-block-text-hold {
    margin-bottom: 105px;
}
.activities-block-text-hold .section-title {
    margin-bottom: 22px;
}

.activities-block-desc {
    font-size: 20px;
    line-height: 1.7; 
}

.owl-carousel.activities-carousel .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.owl-carousel.activities-carousel .owl-stage-outer:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 120px;
    background: -moz-linear-gradient(left,  rgba(46,51,125,1) 0%, rgba(46,51,125,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(46,51,125,1) 0%,rgba(46,51,125,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(46,51,125,1) 0%,rgba(46,51,125,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e337d', endColorstr='#002e337d',GradientType=1 ); /* IE6-9 */
    z-index: 5;
}
.owl-carousel.activities-carousel .owl-stage-outer:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 120px;
    background: -moz-linear-gradient(left,  rgba(46,51,125,0) 0%, rgba(46,51,125,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(46,51,125,0) 0%,rgba(46,51,125,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(46,51,125,0) 0%,rgba(46,51,125,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002e337d', endColorstr='#2e337d',GradientType=1 ); /* IE6-9 */
    z-index: 5;
}

.owl-carousel.activities-carousel .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

.activities-carousel-item {
    border: 1px solid #fff;
    border-right: none;
    position: relative;
    width: 100%;
}
.owl-item:last-child .activities-carousel-item {
    border-right: 1px solid #fff;
}
.activities-carousel-item a {
    display: block;
    height: 100%;
    padding-bottom: 78px;
    position: relative;
    z-index: 5;
}
.activities-carousel-item a.fb-event:before {
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    background: url(../img/icon-fb.svg) no-repeat center center / 100% 100%;
    width: 20px;
    height: 20px;
    padding-bottom: 0;
    z-index: 5;
}
.activities-carousel-item a.fb-event .activity-title {
    padding-right: 35px;
}

.activities-carousel-hold {
    margin-left: -116px;
    width: calc(100% + 231px);
    position: relative;
    position: relative;
    z-index: 20;
    margin-bottom: 40px;
}

.owl-carousel.activities-carousel .owl-nav button.owl-next, 
.owl-carousel.activities-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: #E1A342;
    transition: 0.2s;
}
.owl-carousel.activities-carousel .owl-nav button.owl-next.disabled, 
.owl-carousel.activities-carousel .owl-nav button.owl-prev.disabled {
    display: none;
}
.owl-carousel.activities-carousel .owl-nav button.owl-next:hover, 
.owl-carousel.activities-carousel .owl-nav button.owl-prev:hover {
    background: #D99121
}

.owl-carousel.activities-carousel .owl-nav button.owl-next svg, 
.owl-carousel.activities-carousel .owl-nav button.owl-prev svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.owl-carousel.activities-carousel .owl-nav button.owl-prev {
    left: 1px;
}
.owl-carousel.activities-carousel .owl-nav button.owl-next {
    right: 0;
}

.carousel-progress {
    background: #6d70a4;
}
.carousel-progress ul li {
    float: left;
    height: 3px;
    background: #fff;
    transition: 0.2s;
}

.owl-carousel.activities-carousel .owl-nav.disabled {
    display: block;
}

.owl-carousel.activities-carousel .owl-dots {
    position: absolute;
    left: 115px;
    right: 115px;
    bottom: -40px;
    width: calc(100% - 230px);
    height: 3px;
    background: #6d70a4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.owl-carousel.activities-carousel button.owl-dot {
    width: 100%;
    height: 3px;
    transition: 0.2s;
}
.owl-carousel.activities-carousel button.owl-dot.active {
    background: #fff;
}

/* animations */

.animation-element.fade-in {
	opacity: 0;
	-moz-transition: all 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-webkit-transition: all 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition: all 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: all 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.mouse-circle {
    width: 86px;
    height: 86px;
    background: #E1A342;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: 500;
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    transition: background 0.3s, opacity 0.3s, transform 0.2s;
    pointer-events: none;
}
.mouse-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0,-50%) rotate(180deg);
    width: 20px;
    height: 16px;
    right: calc(50% + 6px);
    background: url(../img/circle-right.svg) no-repeat center center;
    transition: 0.2s;
}
.mouse-circle:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    width: 20px;
    height: 16px;
    left: calc(50% + 6px);
    background: url(../img/circle-right.svg) no-repeat center center;
    transition: 0.2s;
}
.mouse-circle.clicked:before {
    transform: translate(-10px, -50%) rotate(180deg);
}
.mouse-circle.clicked:after {
    transform: translate(10px, -50%);
}

.mouse-circle.close {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

#map {
   height: 100%;
   width: 100%;
   overflow: hidden;
   float: left;
}

#capture {
   height: 100px;
   width: 100%;
   overflow: hidden;
   float: left;
   background-color: #ECECFB;
}

.acf-map {
    width: 100%;
    height: 100%;
}

.acf-map img {
   max-width: inherit !important;
}

.gm-style-iw.gm-style-iw-c,
.gm-style .gm-style-iw-t::after {
    /* display: none !important; */
}

.entry .gallery {
    margin-bottom: 35px !important;
}
.entry .gallery img {
    border: none !important;
}

.inside-marker {
    font-size: 16px;
    font-weight: 700;
}


/* works of participants */

.works_of_participants {
    
}
.postsDisplay {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 60px;
}
.postsDisplay--name {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.2;
    color: #2E337D;
    margin-right: 16px;
}
.postsDisplay__list {
    display: flex;
}
.postsDisplay__list--item {
    margin: 0px 8px;
    cursor: pointer;
}
.postsDisplay__list--item:first-child {
    margin-left: 0px;
}
.postsDisplay__list--item:last-child {
    margin-right: 0px;
}
.postsDisplay__list--item.pagination .postsDisplay__list--itemIcon {
    background-image: url('../img/post-pagination.svg');
}
.postsDisplay__list--item.all .postsDisplay__list--itemIcon {
    background-image: url('../img/post-all.svg');
}
.postsDisplay__list--item.pagination.active .postsDisplay__list--itemIcon {
    background-image: url('../img/post-pagination-active.svg');
}
.postsDisplay__list--item.all.active .postsDisplay__list--itemIcon {
    background-image: url('../img/post-all-active.svg');
}
.postsDisplay__list--itemIcon {
    width: 36px;
    height: 36px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.postsList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.postsList--item {
    width: calc(33.3% - 14px);
    margin-top: 60px;
    margin-bottom: 60px;
}
.postsList--item a {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.postsList--item .people-stories-carousel-title {
    width: 100%;
}
.postsList--item .people-stories-carousel-image {
    width: 100%;
    margin-top: auto;
}
@media (max-width: 1024px)
{
    .postsList--item {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px)
{
    .postsList--item {
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }
}
.postsList--item:nth-child(3n + 2) {
    margin: 60px 21px 60px;
}
@media (max-width: 1024px)
{
    .postsList--item:nth-child(3n + 2) {
        margin: 30px 21px 30px;
    }
}
@media (max-width: 767px)
{
    .postsList--item:nth-child(3n + 2) {
        width: 100%;
        margin: 10px 0px 10px;
    }
}
.postsListHolder .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}
.postsListHolder .pagination-list {
    display: flex;
    align-items: center;
}
.postsListHolder .pagination .pagination-list .pagination-list-item {
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.09;
    color: #2E337D;
    margin: 0px 12px;
    display: block;
}
.postsListHolder .pagination .pagination-list .pagination-list-item:first-child {
    margin-left: 0px;
}
.postsListHolder .pagination .pagination-list .pagination-list-item:last-child {
    margin-right: 0px;
}
.postsListHolder .pagination-list-item a {
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.09;
    color: #2E337D;
    padding: 0px;
    transition: all 0.3s linear;
}
.postsListHolder .pagination-list-item a.active {
    color: #E1A342;
}
.postsListHolder .pagination-list-item a:hover {
    color: #E1A342;
    background: transparent;
    background-color: transparent;
}
.postsListHolder .pagination-list-item a svg rect {
    transition: all 0.3s linear;
}
.postsListHolder .pagination-list-item a:hover svg rect {
    fill: #E1A342;
}

@media only screen and (max-width: 1440px) {
    .concept-map {
        height: 640px;
    }
    .concept-carousel-item {
        width: 780px;
    }
    .footer-middle {
        padding-top: 28px;
        padding-left: 2%;
    }
    .footer-nav ul li {
        margin-right: 40px;
    }
}


/**/
.activity-intro .simple-image {
    padding: 0px;
}
@media (max-width: 1100px)
{
    .activity-intro .simple-image {
        padding: 0px 20px;
    }
}
.single-dalyviu-darbai .single-wop-content {
    width: 100%;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}
@media (max-width: 767px)
{
    .single-dalyviu-darbai .single-wop-content {
        margin-top: 13px;
        flex-wrap: wrap;
    }
}
.single-wop-content--gallery {
    width: 100%;
    margin-bottom: 40px;
}
@media (max-width: 1024px)
{
    .single-wop-content--gallery {
        /*width: 280px;*/
        width: 100%;
    }
}
.single-wop-about--participantList--item {
    margin-bottom: 20px;
}
.single-wop-about {
    width: 100%;
    position: relative;
    margin-top: 40px;
    display: flex;
}
@media (max-width: 767px) {
    .single-wop-about {
        flex-wrap: wrap;
    }
}
.single-wop-about--participantBlock {
    width: 50%;
    padding-right: 20px;
}
.single-wop-about--participantBlock.full {
    width: 100%;
    padding-right: 0px;
}
.single-wop-about--infoBlocks {
    width: 50%;
    padding-left: 20px;
}
.single-wop-about--infoBlocks.full {
    width: 100%;
    padding-left: 0px;
}
@media (max-width: 767px) {
    .single-wop-about--participantBlock {
        width: 100%;
        padding-right: 0px;
    }
    .single-wop-about--infoBlocks {
        width: 100%;
        padding-left: 0px;
        margin-top: 40px;
    }
}
.single-wop-about--infoBlocksHidden {
    display: none;
}
.single-wop-about--infoBlock {
    width: 100%;
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}
.single-wop-about--infoBlock:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 9px;
    left: 0px;
    border-radius: 50%;
    background-color: #2E337D;
}
.single-wop-about--infoMoreInner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.single-wop-about--infoMore {
    font-size: 20px;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
    color: #2E337D;
    cursor: pointer;
}
.single-wop-about--infoMore:hover {
    color: #E1A342;
}
@media (max-width: 767px)
{
    .single-wop-content--gallery {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0px;
    }
}

.single-wop-content__galleryBlocks {
    width: 100%;
    display: flex;
}
@media (max-width: 767px)
{
    .single-wop-content__galleryBlocks {
        flex-wrap: wrap;
    }
}
.single-wop-content__galleryBlock {
    margin-bottom: 13px;
    width: calc(100% - 13px);
    margin-right: 13px;
    height: 200px;
    cursor: pointer;
}
@media (max-width: 1120px)
{
    .single-wop-content__galleryBlock {
        height: 180px;
    }
}
@media (max-width: 1024px)
{
    .single-wop-content__galleryBlock {
        height: 160px;
    }
}
@media (max-width: 767px)
{
    .single-wop-content__galleryBlock {
        width: calc(50% - 6px);
        height: 320px;
    }
    .single-wop-content__galleryBlock:nth-child(odd) {
        margin-right: 6px!important;
        margin-left: 0px!important;
    }
    .single-wop-content__galleryBlock:nth-child(even) {
        margin-left: 6px!important;
        margin-right: 0px!important;
    }
}
@media (max-width: 580px)
{
    .single-wop-content__galleryBlock {
        height: 270px;
    }
}
@media (max-width: 480px)
{
    .single-wop-content__galleryBlock {
        height: 200px;
    }
}
.single-wop-content__galleryBlock a {
    display: flex;
    width: 100%;
    height: 100%;
}
.single-wop-content__galleryBlock img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.single-wop-content__galleryBlock:last-child {
    margin-right: 0px;
}
.single-wop-content__galleryBlock--img {
    width: 100%;
    height: 100%;
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.single-wop-content--content {
    width: 100%;
}
@media (max-width: 1024px)
{
    .single-wop-content--content {
        width: 100%;
    }
}
.single-wop-content--contentBlock {
    max-width: 100%;
    margin-left: 0px;
}
@media (max-width: 767px)
{
    .single-wop-content--contentBlock {
        margin-left: 0px;
        max-width: 100%;
    }
}
.single-wop-content--fileBlocks {
    width: 100%;
    position: relative;
    margin-top: 40px;
}
.single-wop-content--fileBlock {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
.single-wop-content--fileLink {
    display: flex;
    align-items: baseline;
}
.single-wop-content--fileLink:hover .single-wop-content--fileLinkName {
    color: #E1A342;
}
.single-wop-content--fileLink:hover .single-wop-content--fileLinkIcon svg path {
    fill: #E1A342;
}
.single-wop-content--fileLinkName {
    font-family: "Mabry", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.5;
    color: #2E337D;
    transition: all 0.3s linear;
}
.single-wop-content--fileLinkIcon {
    margin-left: 8px;
    width: 24px;
    height: 24px;
}
.single-wop-content--fileLinkIcon svg {
    width: 100%;
    height: auto;
    display: block;
}
.single-wop-content--fileLink .single-wop-content--fileLinkIcon svg path {
    transition: all 0.3s linear;
}

/* Loader */
.loader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 0vh;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow: hidden;
    transition: all 0.4s ease-out;
}
.loader.active {
    height: 100vh;
}
.loader.active .loader--load {
    transform: translateY(0vh);
    opacity: 1;
    transition: all 0.3s ease-out 0.4s;
}
.loader--load {
    max-width: 200px;
    max-height: 200px;
    margin: auto;
    transform: translateY(-30vh);
    opacity: 0;
    transition: all 0.3s;
}
@media (max-width: 1024px)
{
    .loader--load {
        max-width: 120px;
        max-height: 120px;
    }
}
@media (max-width: 767px)
{
    .loader--load {
        max-width: 60px;
        max-height: 60px;
    }
}


.loader--load svg {
    width: 100%;
    height: 100%;
    display: block;
}


.dalyviu-darbai-template-default .fancybox-container .fancybox-bg {
    background: #000;
    opacity: 0.95;
}
.dalyviu-darbai-template-default .fancybox-slide--image {
    padding: 31px 0px 28px;
}
.dalyviu-darbai-template-default .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 207px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: transparent;
}
@media (max-width: 1024px)
{
    .dalyviu-darbai-template-default .fancybox-thumbs {
        height: 140px;
    }
}
@media (max-width: 767px)
{
    .dalyviu-darbai-template-default .fancybox-thumbs {
        height: 90px;
    }
}
.dalyviu-darbai-template-default .fancybox-thumbs ul {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
}
@media (max-width: 767px)
{
    .dalyviu-darbai-template-default .fancybox-thumbs ul {
        padding-right: 10px;
    }
}
.dalyviu-darbai-template-default .fancybox-thumbs ul .fancybox-thumbs-loading {
    width: 135px;
    height: 100%;
}
@media (max-width: 1024px)
{
    .dalyviu-darbai-template-default .fancybox-thumbs ul .fancybox-thumbs-loading {
        width: 80px;
    }
}
@media (max-width: 767px)
{
    .dalyviu-darbai-template-default .fancybox-thumbs ul .fancybox-thumbs-loading {
        width: 100%;
    }
}
.dalyviu-darbai-template-default .fancybox-thumbs>ul>.fancybox-thumbs-loading:before {
    border: 3px solid #E1A342;
}
.dalyviu-darbai-template-default .fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 195px;
}
@media (max-width: 1024px)
{
    .dalyviu-darbai-template-default .fancybox-show-thumbs .fancybox-inner {
        bottom: 140px;
    }
}
@media (max-width: 767px)
{
    .dalyviu-darbai-template-default .fancybox-show-thumbs .fancybox-inner {
        bottom: 80px;
    }
}
.dalyviu-darbai-template-default .fancybox-navigation {
    /*display: none;*/
}
.dalyviu-darbai-template-default .fancybox-content .button-close {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 20px;
    height: 20px;
    background-color: #fff;
}
.dalyviu-darbai-template-default .fancybox-button.fancybox-button--arrow_left, .dalyviu-darbai-template-default .fancybox-button.fancybox-button--arrow_right {
    width: 48px;
    height: 48px;
    background: #E1A342;
    position: absolute;
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.dalyviu-darbai-template-default .fancybox-content .button-next {
    right: -80px;
}
.dalyviu-darbai-template-default .fancybox-content .button-previous {
    left: -80px;
}
@media (max-width: 1024px)
{
    .dalyviu-darbai-template-default .fancybox-content .button-next {
        right: 0px;
    }
    .dalyviu-darbai-template-default .fancybox-content .button-previous {
        left: 0px;
    }
}
@media (max-width: 767px)
{

}

@media only screen and (max-width: 1280px) {
    .owl-carousel.activities-carousel .owl-dots {
        left: 50px;
        right: 50px;
        width: calc(100% - 100px);
    }
    .activities-block {
        margin-bottom: 110px;
    }
    .activities-block-text-hold {
        margin-bottom: 70px;
    }
    .activities-carousel-hold {
        margin-left: -51px;
        width: calc(100% + 101px);
    }
    .section.section-activities-gallery {
        padding-top: 120px;
    }
    .section.section-activity-inner-image {
        padding-top: 120px;
    }
    .concept-steps-progress {
        left: -20px;
        right: -20px;
        width: calc(100% + 40px);
    }
    .blue-block.blue-block-concept-list:after {
        bottom: 45px;
    }
    .blue-block.blue-block-concept-list:before {
        top: 45px;
    }
    .concept-steps ul {
        padding: 0 50px;
    }
    .section.section-concept-list {
        padding-top: 120px;
    }
    .concept-map {
        height: 580px;
    }
    .concept-carousel-item {
        width: 700px;
    }
    .section.section-text-intry {
        padding-bottom: 120px;
    }
    .entry h5 {
        font-size: 28px;
    }
    .entry h4 {
        font-size: 32px;
    }
    .entry h3 {
        font-size: 36px;
    }
    .entry h2 {
        font-size: 40px;
    }
    .entry h1 {
        font-size: 44px;
    }
    .people-inner-quote {
        font-size: 40px;
    }
    .section.section-people-image {
        padding-bottom: 120px;
    }
    .inner-wrapper {
        padding-top: 190px;
    }
    .people-stories-list {
        padding-top: 120px;
    }
    .people-stories-carousel-item {
        width: 600px;
    }
    .activities-list {
        margin-bottom: 120px;
    }
    .blue-block {
        padding: 120px 50px;
    }
    .section {
        margin-bottom: 120px;
    }
    .home-intro {
        margin-bottom: 120px;
    }
    .row.row-full {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-nav ul li {
        margin-right: 30px;
    }
    .section-headline {
        font-size: 40px;
    }
    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 1200px) {
    .people-stories-carousel-hold {
        width: calc(100% + 20px);
    }
}

@media only screen and (max-width: 1100px) {
    .mouse-circle {
        display: none;
    }
    .cookies-close {
        top: 35px;
        right: 32px;
    }
    .cookies-text {
        line-height: 2;
        margin-bottom: 10px;
    }
    .cookies-hold {
        bottom: 20px;
        right: 20px;
        padding: 30px 30px;
        padding-right: 80px;
    }
    .owl-carousel.activities-carousel .owl-dots {
        left: 20px;
        right: 2px;
        width: calc(100% - 40px);
    }
    .section-activities-bottom-image .section-title {
        margin-bottom: 25px;
    }
    .activities-block {
        margin-bottom: 90px;
    }
    .activities-block-text-hold {
        margin-bottom: 50px;
    }
    .activities-carousel-hold {
        margin-left: -21px;
        width: calc(100% + 41px);
    }
    .section.section-activities-gallery {
        padding-top: 100px;
    }
    .concept-steps ul li:before {
        height: 42px;
    }
    .concept-step-date {
        margin-bottom: 60px;
    }
    .concept-step-text {
        font-size: 14px;
    }
    .concept-steps ul li {
        padding-left: 15px;
        padding-right: 15px;
    }
    .concept-steps ul {
        padding: 0 40px;
    }
    .concept-map {
        height: 500px;
    }
    .concept-carousel-hold, .concept-carousel-hold * {
        /* cursor: default; */
    }
    .concept-carousel-item {
        width: 600px;
    }
    .section-business-gallery .parallaxing-blocks {
        display: none;
    }
    .breads {
        margin-bottom: 30px;
    }
    .entry h5 {
        font-size: 24px;
    }
    .entry h4 {
        font-size: 28px;
    }
    .entry h3 {
        font-size: 32px;
    }
    .entry h2 {
        font-size: 36px;
    }
    .entry h1 {
        font-size: 40px;
    }
    .section.section-people-image {
        padding-bottom: 100px;
    }
    .section.section-people-inner-content {
        margin-bottom: 70px;
    }
    .entry p img {
        margin: 30px 0;
    }
    .people-inner-quote {
        font-size: 36px;
    }
    .section-title {
        font-size: 36px;
    }
    .inner-wrapper {
        padding-top: 170px;
    }
    .people-stories-list {
        padding-top: 100px;
    }
    .people-stories-list ul li {
        margin-bottom: 100px;
    }
    .people-stories-carousel-text {
        margin-bottom: 20px;
    }
    .people-stories-carousel-title {
        margin-bottom: 20px;
    }
    .people-stories-carousel-image {
        margin-bottom: 30px;
    }
    .people-stories-carousel-item {
        width: 500px;
    }
    .more-activities-block {
        font-size: 30px;
        padding: 35px 0;
        padding-right: 140px;
    }
    .tabs-hold .tabs {
        margin-bottom: 90px;
    }
    .activity-date {
        padding: 6px 20px;
    }
    .activity-title {
        padding: 18px 20px 0;
        font-size: 18px;
    }
    .blue-block {
        padding: 100px 20px;
    }
    .section-headline {
        font-size: 36px;
    }
    .section {
        margin-bottom: 100px;
    }
    .home-intro {
        margin-bottom: 100px;
    }
    .footer-middle img {
        max-width: 150px;
    }
    .newsletter-title {
        font-size: 38px;
    }
    .activities-list {
        margin-bottom: 100px;
    }
    .active-image {
        display: none !important;
    }
    .blue-block {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    .section-image .parallaxing-blocks {
        display: none;
    }
    .simple-image {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    /* .people-stories-carousel-hold, .people-stories-carousel-hold * {
        cursor: default;
    } */
    .section-concept-map .parallaxing-blocks {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .mob-nav-hold {
        display: none !important;
    }
}
@media only screen and (max-width: 1023px) {
    .entry ul, .entry ol {
        margin-bottom: 26px;
    }
    .entry ul li:before {
        top: 12px;
    }
    .entry ul li {
        font-size: 18px;
    }
    .entry ol li {
        font-size: 18px;
    }
    .section-activities-bottom-image .parallaxing-blocks {
        display: none;
    } 
    .activities-bottom-image-hold {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    .blue-block.blue-block-concept-list:before {
        top: 30px;
    }
    .blue-block.blue-block-concept-list:after {
        bottom: 30px;
    }
    .concept-steps ul {
        padding: 0px 30px;
    }
    .concept-map {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    .concept-carousel-item {
        width: 500px;
    }
    .concept-list-text {
        font-size: 14px;
    }
    .concept-list-label {
        font-size: 38px;
        padding-bottom: 20px;
    }
    .inner-wrapper-sm {
        padding-top: 130px;
    }
    .entry h5 {
        font-size: 22px;
    }
    .entry h4 {
        font-size: 24px;
    }
    .entry h3 {
        font-size: 28px;
    }
    .entry h2 {
        font-size: 32px;
    }
    .entry h1 {
        font-size: 36px;
    }
    .section.section-people-image {
        margin-bottom: 70px;
        padding-bottom: 80px;
    }
    .section-people-image .parallaxing-blocks.parallaxing-blocks-1 {
        display: none;
    }
    .people-inner-quote:before {
        font-size: 80px;
    }
    .people-inner-quote-hold {
        padding-right: 7%;
    }
    .people-inner-intro .section-title {
        margin-bottom: 30px;
    }
    .people-inner-slogan {
        font-size: 18px;
    }
    .people-inner-author {
        font-size: 18px;
    }
    .entry p {
        font-size: 18px;
        margin-bottom: 26px;
    }
    .people-inner-quote {
        font-size: 32px;
        padding-top: 42px;
        margin-bottom: 15px;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .langs-hold ul li a {
        color: #fff;
    }
    .inner-wrapper {
        padding-top: 150px;
    }
    .people-stories-list ul li {
        margin-bottom: 80px;
    }
    .people-stories-carousel-title {
        font-size: 20px;
    }
    .gallery-hold {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
    .tabs-hold .tabs-title>a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .section-home-gallery .parallaxing-blocks {
        display: none;
    }
    .gallery-carousel .owl-nav {
        right: auto;
        bottom: -36px;
        left: 50%;
        transform: translateX(-50%);
    }
    .home-map-hold .parallaxing-blocks {
        display: none;
    }
    .home-map {
        margin-left: -20px;
        width: calc(100% + 40px);
        height: 500px;
    }
    .activity-date {
        padding: 6px 15px;
        font-size: 12px;
    }
    .activity-title {
        padding: 18px 15px 0;
        font-size: 16px;
    }
    .people-stories-carousel-item {
        width: 400px;
    }
    .tabs-hold .tabs {
        margin-bottom: 60px;
    }
    .more-activities-block {
        font-size: 28px;
        padding: 30px 0;
        padding-right: 140px;
    }
    .activities-list {
        margin-bottom: 80px;
    }
    .blue-block {
        padding: 80px 20px;
    }
    .section {
        margin-bottom: 90px;
    }
    .home-intro {
        margin-bottom: 90px;
    }
    .section-headline-text p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .section-headline {
        font-size: 32px;
        padding-right: 30px;
    }
    .intro-text {
        font-size: 58px;
        margin-bottom: 44px;
    }
    .langs-hold {
        float: none;
        margin-bottom: 20px;
    }
    .langs-hold ul li {
        float: none;
        display: inline-block;
    }
    .logo img {
        max-height: 64px;
    }
    .newsletter-right {
        padding-left: 0%;
    }
    .newsletter-hold {
        padding: 70px 0 80px;
    }
    .newsletter-title {
        font-size: 32px;
    }
    .footer-middle {
        padding-left: 0%;
        padding-top: 48px;
    }
    .footer-right {
        float: left;
        padding-top: 0;
    }
    .footer-right-hold {
        padding-top: 38px;
        padding-bottom: 54px;
    }
    .logo-footer {
        border-top: 1px solid #2E337D;
        margin-left: -20px;
        width: calc(100% + 40px);
        padding: 0 20px;
    }
    .tabs-hold .tabs-title {
        width: calc(33.333% - 8px);
        margin-right: 12px;
    }
}

@media screen and (max-width:639px) {
    .activities-list {
        margin-bottom: 60px;
    }
    .fancybox-slide {
        padding: 44px 0;
    }
    .btn-orange-border, .btn-orange-border:focus, .btn-orange-border:active {
        font-size: 15px;
        padding: 2px 0;
    }
    .cookies-text {
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .cookies-close {
        top: 25px;
        right: 18px;
    }
    .cookies-hold {
        bottom: 0px;
        right: 0px;
        width: 100%;
        padding: 20px 15px;
        padding-right: 50px;
    }
    .activities-carousel-item a.fb-event:before {
        right: 12px;
    }
    .owl-carousel.activities-carousel .owl-dots {
        bottom: -30px;
    }
    .concept-steps-percent {
        margin-bottom: 4px;
    }
    .entry ul, .entry ol {
        margin-bottom: 20px;
    }
    .entry ul li:before {
        top: 8px;
    }
    .entry ul li {
        font-size: 14px;
    }
    .entry ol li {
        font-size: 14px;
    }
    .section-activities-bottom-image .section-title {
        margin-bottom: 15px;
    }
    .owl-carousel.activities-carousel .owl-stage-outer:before {
        width: 30px;
    }
    .owl-carousel.activities-carousel .owl-stage-outer:after {
        width: 30px;
    }
    .section.section-activities-gallery {
        padding-top: 80px;
    }
    .activities-block {
        margin-bottom: 60px;
    }
    .activities-block-text-hold .section-title {
        margin-bottom: 15px;
    }
    .activities-block-text-hold {
        margin-bottom: 40px;
    }
    .activities-block-desc {
        font-size: 14px;
    }
    .owl-carousel.activities-carousel .owl-nav button.owl-next svg, .owl-carousel.activities-carousel .owl-nav button.owl-prev svg {
        max-width: 20px;
    }
    .owl-carousel.activities-carousel .owl-nav button.owl-next, .owl-carousel.activities-carousel .owl-nav button.owl-prev {
        width: 48px;
        height: 48px;
    }
    .section.section-activity-inner-image {
        padding-top: 100px;
    }
    .activity-intro {
        margin-bottom: 100px;
    }
    .section.section-concept-list {
        padding-top: 100px;
    }    
    .concept-step-text {
        font-size: 16px;
    }
    .concept-steps ul li:before {
        height: 1px;
        width: 30px;
        left: 4px;
        top: 0;
    }
    .concept-steps ul {
        padding: 0px 0px;
    }
    .concept-step-date {
        margin-bottom: 15px;
    }
    .concept-steps ul li {
        width: 100%;
        padding: 30px 20px;
    }
    .concept-steps ul li:last-child {
        margin-bottom: 0px;
    }
    .concept-map {
        height: 400px;
    }
    .concept-carousel-item {
        width: 260px;
    }
    .concept-list-text {
        font-size: 16px;
    }
    .concept-list ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 40px;
    }
    .partners-list ul {
        -webkit-box-lines: multiple;
        -moz-box-lines: multiple;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap:wrap;
        flex-wrap: wrap;
    }
    .partners-list ul li {
        width: 50%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    .partners-list ul li a img {
        max-width: 120px;
        max-height: 50px;
    }
    .partners-list ul li:nth-child(2n) {
        width: 50%;
        margin-right: 0;
    }
    .h-sm {
        height: 26px;
    }
    .h-md {
        height: 48px;
    }
    .h-lg {
        height: 64px;
    }
    .section.section-text-intry {
        padding-bottom: 100px;
    }
    .section-text-intry .section-headline {
        margin-bottom: 0px;
    }
    .entry p + h2, .entry ul + h2, .entry ol + h2 {
        margin-top: 40px;
    }
    .entry h5 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .entry h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .entry h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .entry h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .entry h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .section.section-people-inner-content {
        margin-bottom: 30px;
    }
    .entry p img {
        margin: 20px 0;
    }
    .entry p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .people-inner-author:before {
        top: 9px;
    }
    .people-inner-author {
        font-size: 16px;
    }
    .people-inner-quote-hold {
        padding-right: 0%;
        transform: translateY(0) !important;
        margin-bottom: 30px;
    }
    .people-inner-quote {
        font-size: 28px;
    }
    .people-inner-intro .parallaxing-blocks {
        display: none;
    }
    .people-inner-slogan {
        font-size: 16px;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .people-inner-intro .section-title {
        margin-bottom: 20px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .inner-wrapper {
        padding-top: 130px;
    }
    .people-stories-list ul li:nth-last-child(-n+2) {
        margin-bottom: 60px;
    }
    .people-stories-list ul li:last-child {
        margin-bottom: 0px;
    }
    .people-stories-list ul li {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 60px;
    }
    .activity-date {
        font-size: 14px;
    }
    .activities-list {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .activities-list > ul {
        -webkit-box-lines: single;
        -moz-box-lines: single;
        -ms-flex-wrap: none;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: auto;
        padding: 0 20px;
        padding-bottom: 20px;
    }
    .activities-list > ul > li {
        width: 280px;
        min-width: 280px;
        white-space: normal;
    }
    .activities-list > ul > li:last-child {
        margin-right: 20px;
    }
    .more-activities-block span {
        position: static;
        top: 0%;
        transform: translateY(0%);
        display: block;
        padding-top: 20px;
    }
    .tabs-hold .tabs {
        margin-bottom: 45px;
    }
    .tabs-hold .tabs-title>a {
        font-size: 12px;
        padding: 9px 10px;
    }
    .btn-blue-arrow, .btn-blue-arrow:focus, .btn-blue-arrow:active {
        font-size: 16px;
    }
    .people-stories-carousel-text {
        font-size: 14px;
    }
    .people-stories-carousel-title {
        font-size: 14px;
    }
    .btn-white-arrow, .btn-white-arrow:focus, .btn-white-arrow:active {
        font-size: 16px;
    }
    .people-stories-carousel-item {
        width: 260px;
    }
    .btn-white-circle-blue, .btn-white-circle-blue:focus, .btn-white-circle-blue:active {
        font-size: 16px;
    }
    .gallery-carousel.owl-carousel .owl-nav button.owl-next:hover svg {
        transform: translate(15px, -50%);
    }
    .gallery-carousel.owl-carousel .owl-nav button.owl-prev:hover svg {
        transform: translate(-15px, -50%);
    }
    .gallery-carousel.owl-carousel .owl-nav button.owl-next svg, .gallery-carousel.owl-carousel .owl-nav button.owl-prev svg {
        width: 20px;
    }
    .gallery-carousel .owl-nav {
        bottom: -26px;
    }
    .gallery-carousel.owl-carousel .owl-nav button.owl-next, .gallery-carousel.owl-carousel .owl-nav button.owl-prev {
        height: 40px;
        width: 65px;
    }
    .home-map {
        height: 280px;
    }
    .section {
        margin-bottom: 80px;
    }
    .btn-blue-circle-orange, .btn-blue-circle-orange:focus, .btn-blue-circle-orange:active {
        font-size: 16px;
    }
    .section-headline-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .section-headline {
        font-size: 28px;
        padding-right: 0px;
        transform: translateY(0) !important;
        margin-bottom: 30px;
    }
    .section-headline-text {
        margin-top: 0px;
    }
    .home-intro {
        padding: 80px 0;
    }
    .intro-video-button {
        right: 20px;
    }
    .intro-text {
        font-size: 42px;
        margin-bottom: 38px;
    }
    .mob-nav-hold {
        padding-top: 130px;
    }
    .newsletter-right p a {
        font-size: 14px;
    }
    .newsletter-right p {
        font-size: 14px;
    }
    .newsletter-input input, .newsletter-input input:focus {
        font-size: 14px;
    }
    .newsletter-left {
        padding-right: 0%;
        margin-bottom: 48px;
    }
    .newsletter-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .newsletter-hold {
        padding: 45px 0 50px;
    }
    .footer-middle ul li {
        display: block;
        margin-right: 0px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .footer-middle ul li:last-child {
        margin-bottom: 0px;
    }
    .footer-nav {
        float: none;
        margin-right: 0px;
    }
    .footer-nav ul li {
        float: none;
        margin-bottom: 15px;
        margin-right: 0px;
    }
	.footer-socials {
        float: none;
    }
    .footer-nav ul li a {
        font-size: 14px;
    }

}


@media screen and (max-height:520px) {
    .langs-hold {
        margin-bottom: 15px;
    }
    .mob-nav-hold {
        padding-top: 90px;
        padding-bottom: 20px;
    }
    .mob-nav ul li a {
        font-size: 20px;
    }
    .mob-nav ul li {
        margin-bottom: 5px;
    }
    .mob-nav {
        margin-bottom: 20px;
    }
}