@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800&display=swap");
/* Flex classes*/
.flex-container {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}

.flex-container-row {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-container-column {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
}

.flex-item-center {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-end {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-start {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex-item-space-between {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex-item-space-around {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex-container-center {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex-container-end {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-top {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
}

.flex-item-bottom {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex-container-bottom {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-content: flex-end;
  align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
}

.flex-container-space-between {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-content: space-between;
  align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
}

.flex-self-top {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
}

.flex-self-bottom {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
}

.flex-self-middle {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
}

.flex-item-middle {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-baseline {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex-wrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-nowrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  position: relative;
  font-family: "Saira", sans-serif;
  margin: 0;
  color: #132857;
  background-color: #fff;
  min-width: 320px;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #132857;
}

img {
  max-width: 100%;
  max-height: 100%;
}

input {
  border: none;
}
input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

.container-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  overflow-y: hidden;
  width: 87%;
  margin-left: 13%;
  padding: 0 10%;
}
.container-box .inside {
  width: 100%;
  max-width: 100%;
}

.hidden {
  display: none;
}

.cta-button {
  display: inline-block;
  border: 2px solid #39a9eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
  padding: 13px 27px;
}
.cta-button:hover {
  background-color: #39a9eb;
  color: #132857;
  transition: all 200ms ease-in-out;
}

.cta-button-mobile {
  display: none;
  margin-top: 20px;
  width: 100%;
  border: 1px solid #39a9eb;
  color: #fff;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  padding: 13px 27px;
  background-color: #39a9eb;
  justify-content: center;
}
.cta-button-mobile:hover {
  background-color: white;
  color: #39a9eb;
  transition: all 200ms ease-in-out;
}

.text-20 {
  font-size: 20px;
  line-height: 38px;
  color: #132857;
}

.text-14 {
  font-size: 14px;
  line-height: 26px;
}

.bold {
  font-weight: 700;
}

.small-line {
  position: relative;
  width: 21px;
  height: 2px;
  background-color: #39a9eb;
}
.small-line:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  top: 0px;
  left: 4px;
  background-color: #fff;
}

.two-columns .inside {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.two-columns .inside .column {
  width: 50%;
}

.pagination-container {
  align-items: center;
  justify-content: center;
}
.pagination-container .pagination {
  display: flex;
  margin: 1rem 0;
}
.pagination-container .pagination .page-numbers {
  height: 35px;
  width: 35px;
  margin: 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5e2;
  color: #21386d;
  font-weight: 700;
}
.pagination-container .pagination .current {
  background-color: #39a9eb;
  color: white;
  border: #39a9eb;
}

@media screen and (max-width: 1570px) {
  .container-box {
    margin-left: 200px;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 800px) {
  .container-box {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .container-box {
    padding: 0 5%;
  }
}
@media screen and (max-width: 520px) {
  .filtru-flex {
    flex-direction: column;
  }
  .text-20 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cta-button-mobile {
    display: flex;
    font-size: 14px;
    font-weight: 700;
  }
}
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 13%;
  min-width: 205px;
  height: 100%;
  background-color: #132857;
}
.side-menu .top {
  background-color: #21386d;
  padding: 20px;
}
.side-menu .menu-side-menu-container,
.side-menu .menu-side-menu-engleza-container {
  padding: 40px 0;
}
.side-menu .menu-side-menu-container ul,
.side-menu .menu-side-menu-engleza-container ul {
  padding: 0;
}
.side-menu .menu-side-menu-container ul li,
.side-menu .menu-side-menu-engleza-container ul li {
  padding: 0 50px 5px 0;
  margin-left: 50px;
  list-style: none;
  margin-top: 12px;
}
.side-menu .menu-side-menu-container ul li:first-of-type,
.side-menu .menu-side-menu-engleza-container ul li:first-of-type {
  margin-top: 0;
}
.side-menu .menu-side-menu-container ul li a,
.side-menu .menu-side-menu-engleza-container ul li a {
  color: #fff;
  font-size: 15px;
}
.side-menu .menu-side-menu-container ul .current-menu-item,
.side-menu .menu-side-menu-engleza-container ul .current-menu-item {
  font-weight: 700;
  border-right: 4px solid #39a9eb;
}
.side-menu .menu-side-menu-container ul .current-menu-item a,
.side-menu .menu-side-menu-engleza-container ul .current-menu-item a {
  color: #39a9eb !important;
}
.side-menu .bottom {
  border-top: 1px solid #1a3571;
  padding: 0 27px 50px;
}
.side-menu .bottom .lang-menu {
  padding: 5px 22px;
  background-color: #132857;
  margin-top: -18px;
}
.side-menu .bottom .lang-menu .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #223b74;
  border-radius: 50%;
  position: relative;
}
.side-menu .bottom .lang-menu .icon .icon-inside {
  overflow: hidden;
}
.side-menu .bottom .lang-menu .icon .icon-inside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.side-menu .bottom .lang-menu .text {
  font-size: 13px;
  color: #fff;
  margin: 0 5px;
}
.side-menu .bottom .cta-button {
  margin-top: 32px;
}

.desktop-language-menu .menu {
  position: relative;
}
.desktop-language-menu .menu:hover .sub-menu {
  display: initial;
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 999;
}
.desktop-language-menu .menu .sub-menu {
  display: none;
}
.desktop-language-menu .menu a {
  color: white;
  display: flex;
  align-items: center;
}
.desktop-language-menu .menu a img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: 30px;
  height: 30px;
  padding: 7px;
  background-color: #223b74;
  border-radius: 50%;
  position: relative;
}

.mobile-menu {
  display: none;
}

.side-menu-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  .side-menu {
    display: none;
  }
  .side-menu-mobile {
    display: none;
    width: 80%;
    z-index: 999;
  }
  .side-menu-mobile .top img {
    margin: 0 auto 0 0;
  }
  .mobile-menu {
    display: flex;
    align-items: center;
    height: 10vh;
    background-color: #132857;
    padding: 0 5%;
  }
  .mobile-menu .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-menu .hamburger .line {
    height: 1px;
    background-color: #fff;
    margin-bottom: 5px;
  }
  .mobile-menu .hamburger .line:nth-child(1) {
    width: 20px;
  }
  .mobile-menu .hamburger .line:nth-child(2) {
    width: 28px;
  }
  .mobile-menu .hamburger .line:nth-child(3) {
    width: 20px;
  }
  .mobile-menu .hamburger .line:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-open {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
  }
  .mobile-menu-open .hamburger .line {
    transition: all 200ms ease-in-out;
  }
  .mobile-menu-open .hamburger .line:nth-child(1) {
    width: 24px;
    transform: rotate(-45deg);
    transition: all 200ms ease-in-out;
  }
  .mobile-menu-open .hamburger .line:nth-child(2) {
    width: 24px;
    transform: rotate(45deg);
    margin-top: -6px;
    transition: all 200ms ease-in-out;
  }
  .mobile-menu-open .hamburger .line:nth-child(3) {
    display: none;
  }
  .mobile-menu-open .header-left .menu-for-mobile {
    z-index: 999;
    display: flex;
  }
}
@media screen and (max-width: 500px) {
  .side-menu .top {
    height: 10vh;
    padding: 5px 20px;
  }
  .side-menu .menu-side-menu-container {
    height: 60vh;
  }
  .side-menu .menu-side-menu-container ul li {
    border-bottom: 1px solid #0d1f48;
  }
  .side-menu .bottom {
    height: 30vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
  }
  .side-menu .bottom .cta-button {
    margin: auto 0 0 0;
    background-color: #39a9eb;
    color: white;
  }
}
.feature {
  position: relative;
}
.feature .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.feature .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature .inside {
  width: 100%;
  height: 100vh;
  position: relative;
}
.feature .inside .title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
  max-width: 590px;
  color: #fff;
}
.feature .inside .description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  max-width: 470px;
}
.feature .inside .buttons {
  margin-top: 50px;
}
.feature .inside .buttons a {
  font-size: 12px;
  font-weight: 600;
  background-color: #fff;
  color: #fff;
  background-color: #39a9eb;
  padding: 18px 54px;
  margin-left: 10px;
  text-transform: uppercase;
}
.feature .inside .buttons a:first-of-type {
  margin-left: 0;
  color: #132857;
  background-color: #fff;
}

.events-list .inside {
  padding: 125px 0;
}
.events-list .inside .title {
  font-size: 34px;
  font-weight: 700;
  color: #132857;
}
.events-list .inside .headline {
  position: relative;
}
.events-list .inside .headline:after {
  content: "";
  width: 76px;
  height: 2px;
  position: absolute;
  background-color: #21386d;
  bottom: -5px;
  left: 0;
}
.events-list .inside .cta-button {
  color: #39a9eb;
}
.events-list .inside .cta-button:hover {
  color: #fff;
}
.events-list .inside .items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 80px;
  width: calc(100% + 18px);
  margin-left: -9px;
  margin-right: -9px;
}
.events-list .inside .items .item {
  width: calc(50% - 18px);
  margin: 9px;
}
.events-list .inside .items .item .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  margin-bottom: 10px;
}
.events-list .inside .items .item .top .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.events-list .inside .items .item .top .date:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e2e6ed;
  right: 0;
  top: -2px;
}
.events-list .inside .items .item .top .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.events-list .inside .items .item .top .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.events-list .inside .items .item .top .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.events-list .inside .items .item .top .info {
  margin-left: 15px;
}
.events-list .inside .items .item .top .info .cat {
  font-size: 12px;
  color: #727c92;
  padding: 8px 15px;
  margin-left: -15px;
}
.events-list .inside .items .item .top .info .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.events-list .inside .items .item .top .info .row img {
  margin-right: 9px;
}
.events-list .inside .items .item .top .info .row p {
  font-size: 12px;
  line-height: 25px;
  color: #727c92;
}
.events-list .inside .items .item .image {
  width: 100%;
  height: 30vh;
  border: 1px solid #cfd5e2;
  margin-bottom: 14px;
}
.events-list .inside .items .item .image a img {
  max-height: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  border: 1px solid #c4cad8;
}
.events-list .inside .items .item .title {
  font-size: 20px;
  font-weight: 600;
}
.events-list .inside .items .item .read-more {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}
.events-list .inside .items .item .read-more p {
  font-size: 13px;
  font-weight: 700;
  color: #39a9eb;
  margin-right: 15px;
}
.events-list .inside .items.three .item {
  width: calc(33.33% - 18px);
}

.flex-container-row.items.three.noutati-desktop .item .top .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.flex-container-row.items.three.noutati-desktop .item .top .date:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e2e6ed;
  right: 0;
  top: -2px;
}
.flex-container-row.items.three.noutati-desktop .item .top .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.flex-container-row.items.three.noutati-desktop .item .top .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.flex-container-row.items.three.noutati-desktop .item .top .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.flex-container-row.items.three.noutati-desktop .item .image {
  width: 100%;
  height: 22vh;
  overflow: hidden;
  border: 1px solid #cfd5e2;
  margin-bottom: 14px;
}
.flex-container-row.items.three.noutati-desktop .item .image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-art .inside .items .item .title {
  font-size: 16px;
  line-height: 22px;
  min-height: 46px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.partners {
  background-color: rgba(196, 202, 216, 0.25);
}
.partners .inside {
  padding: 125px 0;
}
.partners .inside .title {
  font-size: 34px;
  font-weight: 700;
  color: #132857;
  margin-bottom: 50px;
}
.partners .inside .headline {
  position: relative;
}
.partners .inside .headline:after {
  content: "";
  width: 76px;
  height: 2px;
  position: absolute;
  background-color: #21386d;
  bottom: -5px;
  left: 0;
}
.partners .inside .items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 12px);
  margin-left: -6px;
  margin-right: -6px;
}
.partners .inside .items .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: calc(20% - 12px);
  margin: 6px;
  background-color: #fff;
  min-height: 186px;
}

.feature-image-text {
  position: relative;
}
.feature-image-text .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.feature-image-text .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-image-text .inside {
  position: relative;
  z-index: 2;
  padding: 160px 0 34px;
}
.feature-image-text .inside .title {
  font-size: 48px;
  line-height: 51px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}
.feature-image-text .inside .description {
  font-size: 20px;
  line-height: 29px;
  font-weight: 300;
  color: #fff;
}

.events-list .inside .noutati-mobile {
  display: none;
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1) {
  .container-box.events-list.last-art .inside .flex-container-row.items.three.noutati-desktop .item {
    width: 30%;
  }
  .container-box.events-list.last-art .inside .flex-container-row.items.three.noutati-desktop .item .flex-container-row.flex-item-space-between .title {
    min-height: unset !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (min-device-width: 760px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
  .container-box.events-list .inside .flex-container-row.items .item {
    width: calc(100% - 18px);
  }
  .partners .inside .items {
    justify-content: space-between;
  }
  .partners .inside .items .item {
    width: 30%;
  }
  .container-box.events-list.last-art .inside .flex-container-row.items.three.noutati-desktop .item {
    width: 30%;
  }
  .container-box.events-list.last-art .inside .flex-container-row.items.three.noutati-desktop .item .top .info .cat {
    line-height: 1.3em;
    min-height: 2.6em;
  }
  .container-box.events-list.last-art .inside .flex-container-row.items.three.noutati-desktop .item .flex-container-row.flex-item-space-between .title {
    min-height: unset !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 800px) {
  .feature .inside {
    height: 90vh;
  }
  .events-list .inside .flex-container-row .item .top .info .location {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 750px) {
  .events-list .inside .items .item {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .feature .inside .title {
    font-size: 34px;
  }
  .feature .inside .buttons a {
    width: 45%;
    padding: 18px 0;
    display: flex;
    justify-content: center;
  }
  .partners .inside {
    padding: 70px 0;
  }
  .partners .inside .title {
    font-size: 26px;
  }
  .partners .inside .items .item {
    width: calc(49% - 12px);
    margin-top: 10px;
  }
  .events-list .inside {
    padding: 70px 0 20px;
  }
  .events-list .inside .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .events-list .inside .cta-button {
    display: none;
  }
  .events-list .inside .items {
    margin-top: 40px;
  }
  .events-list .inside .items .item .title {
    font-size: 18px;
  }
  .events-list .inside .noutati-desktop {
    display: none;
  }
  .events-list .inside .noutati-mobile {
    display: flex;
  }
  .events-list .inside .noutati-mobile .slick-active {
    width: 260px !important;
  }
}
.contact-page .top-image-index {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.contact-page .content {
  padding: 0 0 0 10%;
}
.contact-page .content .inside {
  position: relative;
  padding: 90px 0 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-page .content .inside .left {
  width: 40%;
  padding-right: 117px;
}
.contact-page .content .inside .left .title {
  font-size: 40px;
  line-height: 51px;
  font-weight: 600;
  color: #132857;
  padding: 0.5em 0 0 0;
}
.contact-page .content .inside .left .description {
  font-size: 14px;
  line-height: 22px;
  max-width: 308px;
  margin-bottom: 45px;
  color: #727c92;
}
.contact-page .content .inside .left .items .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 100%;
  border-top: 1px solid #c4cad8;
}
.contact-page .content .inside .left .items .item:first-of-type {
  border-top: none;
}
.contact-page .content .inside .left .items .item p {
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  color: #c4cad8;
  width: 109px;
}
.contact-page .content .inside .left .items .item a {
  width: calc(100% - 109px);
  font-size: 20px;
  line-height: 51px;
  font-weight: 500;
  color: #39a9eb;
}
.contact-page .content .inside .left .items .item a:hover {
  color: #132857;
  transition: all 200ms ease-in-out;
}
.contact-page .content .inside .left .items .item .adress {
  width: calc(100% - 109px);
  padding-top: 28px;
}
.contact-page .content .inside .left .items .item .adress p {
  width: 95%;
  font-size: 16px;
  line-height: 22px;
  color: #132857;
  font-weight: 500;
  text-transform: none;
  padding: 0.5em 0;
}
.contact-page .content .inside .left .items .item .adress a {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #39a9eb;
  margin-top: 15px;
}
.contact-page .content .inside .right {
  width: 56%;
  top: 90px;
  padding: 3em 10% 3em 0;
  background-color: #f0f2f5;
}
.contact-page .content .inside .right .wpcf7 {
  width: 85%;
  margin-left: 15%;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row {
  display: flex;
  flex-wrap: wrap;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.half label {
  width: 50% !important;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.half label input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  padding: 1em;
  border: 1px solid #c4cad8;
  margin-bottom: 1.5em;
  width: 95%;
  font-family: inherit !important;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.half label input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus {
  border: 1px solid #39a9eb;
  outline: 0 none;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.full .text {
  width: 100% !important;
  padding: 1em 0;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.full label {
  width: 100% !important;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.full label textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  padding: 1em;
  border: 1px solid #c4cad8;
  width: 97.5%;
  font-family: inherit;
  height: 102px;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.submit-label {
  width: 30%;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.submit-label input.wpcf7-form-control.wpcf7-submit {
  width: 100%;
  padding: 1.4em 1em;
  color: #fff !important;
  background-color: #00b3da;
  border: none;
  text-transform: uppercase;
  font-size: 12px;
  font-family: inherit !important;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label {
  display: inline-block;
  width: 68%;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item {
  width: calc(100% - 3px);
  margin: 0;
  position: relative;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label {
  display: flex;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label input {
  position: relative;
  visibility: hidden;
  font-size: 16px;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label input:checked + span.wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 15px;
  border: solid #c4cad8;
  border-width: 0 3px 3px 0;
  left: 8px;
  top: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label span.wpcf7-list-item-label {
  cursor: pointer;
  margin-left: 20px;
  margin-right: 40px;
  font-size: 11px;
  line-height: 14px;
  color: #727c92;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label span.wpcf7-list-item-label:before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  background: #fff;
  border: 2px solid #c4cad8;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label span.wpcf7-form-control-wrap.acceptance span.wpcf7-list-item label span.wpcf7-list-item-label:after {
  position: absolute;
  content: "";
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .input-label {
  position: relative;
}
.contact-page .content .inside .right .wpcf7 .wpcf7-form .input-label .floating-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-100%);
  pointer-events: none;
  transition: 0.2s ease all;
}

@media screen and (max-width: 1425px) {
  .contact-page .inside .left {
    padding-right: 0 !important;
  }
  .contact-page .inside .left .items .item a {
    font-size: 23px;
  }
  .contact-page .inside .right .wpcf7 .wpcf7-form .form-row label.acceptance-label {
    width: 100% !important;
  }
  .contact-page .inside .right .wpcf7 .wpcf7-form .form-row label.submit-label {
    width: 100% !important;
  }
}
@media screen and (max-width: 1140px) {
  .contact-page .top-image-index {
    margin-left: 0px !important;
  }
  .contact-page .feature-image {
    padding-left: 0 !important;
  }
  .contact-page .content .inside {
    padding: 50px 0 50px;
  }
  .contact-page .content .inside .left {
    width: 100% !important;
    padding-right: 10% !important;
    padding-bottom: 5%;
  }
  .contact-page .content .inside .left .description {
    width: 100% !important;
  }
  .contact-page .content .inside .right {
    width: 100% !important;
    padding: 2em 10% 2em 0 !important;
    position: relative;
  }
  .contact-page .content .inside .right::before {
    content: "";
    position: absolute;
    background-color: #f0f2f5;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: -1;
  }
  .contact-page .content .inside .right .wpcf7 {
    width: 100% !important;
    margin: 0 !important;
  }
  .contact-page .content .inside .right .wpcf7 :nth-child(6) label {
    width: 100% !important;
  }
}
@media screen and (max-width: 960px) {
  .contact-page .feature-image {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 720px) {
  .contact-page .feature-image {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 540px) {
  .contact-page .top-image-index {
    display: none;
  }
  .contact-page .content {
    position: relative;
  }
  .contact-page .content .mobile-background {
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
  }
  .contact-page .content .inside .left .title {
    color: white;
  }
  .contact-page .content .inside .left .description {
    color: white;
  }
  .contact-page .content .inside .left .items .item .adress p {
    font-size: 1rem !important;
  }
  .contact-page .content .inside .right {
    margin-bottom: 50px;
  }
  .contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row .submit-label {
    text-align: center !important;
  }
  .contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row .acceptance-label span.wpcf7-list-item-label {
    margin-left: 15px !important;
    margin-right: 0px !important;
    font-size: 10px !important;
    padding-bottom: 1em;
  }
  .contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.half label {
    width: 100% !important;
  }
  .contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.full .text {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .contact-page .content .inside .right .wpcf7 .wpcf7-form .form-row.full label textarea {
    width: 95% !important;
  }
}
.page-echipa .top-image-echipa {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-echipa .container-box {
  flex-direction: column;
}
.page-echipa .echipa-hero {
  width: 100%;
  display: flex;
  position: relative;
  border-bottom: 1px solid #d4d8e1;
}
.page-echipa .echipa-hero .header-content {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.page-echipa .echipa-hero .header-content h1 {
  font-size: 2.4rem;
}
.page-echipa .echipa-hero .header-content .citat {
  margin-left: 4rem;
  padding-left: 1rem;
  border-left: 1px solid #d4d8e1;
  color: #727c92;
  font-style: italic;
}
.page-echipa .echipa-hero .header-content .citat span {
  margin-top: 2000px;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
}
.page-echipa .echipa-persoane-container .persoana {
  border: 1px solid #d4d8e1;
  padding: 12px;
  position: relative;
  margin: 0 2rem;
  min-width: 200px;
}
.page-echipa .echipa-persoane-container .persoana:first-of-type {
  margin-left: 0;
}
.page-echipa .echipa-persoane-container .persoana:last-of-type {
  margin-right: 0;
}
.page-echipa .echipa-persoane-container .persoana img {
  margin-top: -30px;
  margin-bottom: 30px;
}
.page-echipa .echipa-persoane-container .persoana .date {
  border-left: 2px solid #39a9eb;
  padding-left: 14px;
}
.page-echipa .echipa-persoane-container .persoana .date .nume {
  font-size: 1.6rem;
  font-weight: 700;
  color: #21386d;
}
.page-echipa .echipa-persoane-container .persoana .date .functie {
  font-size: 1rem;
  font-style: italic;
  color: #727c92;
}
.page-echipa .echipa-persoane-container .consiliul-director-container h3 {
  font-style: 1rem;
  color: #727c92;
}
.page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-desktop {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-desktop .persoana {
  margin: 2rem 0;
}
.page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile {
  display: none;
  margin-top: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile .persoana {
  margin: 2rem 0;
}
.page-echipa .echipa-persoane-container .echipa-executiva-container {
  margin: 70px 0 100px;
}
.page-echipa .echipa-persoane-container .echipa-executiva-container h3 {
  font-style: 1rem;
  color: #727c92;
}
.page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-desktop {
  margin-top: 50px;
  display: flex;
}
.page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-mobile {
  margin-top: 50px;
  display: none;
}
.page-echipa .mobile-background {
  display: none;
}

@media screen and (max-width: 1570px) {
  .page-echipa .top-image-echipa {
    margin-left: calc(10% + 200px);
    width: calc(90% - 200px);
  }
}
@media screen and (max-width: 800px) {
  .page-echipa .top-image-echipa {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .page-echipa .top-image-echipa {
    display: none;
  }
  .page-echipa .echipa-header {
    position: relative;
  }
  .page-echipa .echipa-header .mobile-background {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
  }
  .page-echipa .echipa-header .header-content {
    flex-direction: column;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }
  .page-echipa .echipa-header .header-content h1 {
    color: white;
  }
  .page-echipa .echipa-header .header-content .citat {
    margin: 0 0 30px 0;
    padding: 0;
    color: white;
    border: none;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-desktop {
    display: none;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile {
    display: flex;
    margin-top: 30px;
    position: relative;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile .slick-slide {
    margin: 0 15px;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile .slick-current {
    width: 220px !important;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile .slick-dots {
    position: absolute;
    top: -60px;
    right: -100px;
  }
  .page-echipa .echipa-persoane-container .consiliul-director-container .consiliul-director-content-mobile .slick-dots .slick-active button:before {
    color: #39a9eb;
  }
  .page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-desktop {
    display: none;
  }
  .page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-mobile {
    display: flex;
  }
  .page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-mobile .slick-slide {
    margin: 0 15px;
  }
  .page-echipa .echipa-persoane-container .echipa-executiva-container .echipa-executiva-content-mobile .slick-current {
    width: 220px !important;
  }
}
.sticky {
  position: fixed;
  top: 70px;
  width: 100%;
}

.despre-page .container-box.feature-image-text .inside {
  padding: 0px 0 34px;
}
.despre-page .container-box.feature-image-text .inside .text-top {
  padding: 90px 0 34px;
}
.despre-page .two-columns.description-section .inside {
  padding: 80px 0;
  border-bottom: 1px solid #cfd5e2;
}
.despre-page .two-columns.description-section .inside .column:nth-child(odd) {
  padding-right: 117px;
}
.despre-page .two-columns.description-section .inside .column .text-14 {
  color: #727c92;
}
.despre-page .two-columns.description-section .inside .column .small-line {
  margin: 25px 0;
}
.despre-page .scop .inside {
  padding: 100px 0 180px;
}
.despre-page .scop .inside .description {
  font-size: 14px;
  font-weight: 700;
  padding: 1em 0;
}
.despre-page .scop .inside .title {
  width: 74%;
  font-size: 32px;
  line-height: 38px;
  font-weight: 100;
  color: #39a9eb;
}
.despre-page .ancorata {
  background-color: #f0f2f5;
  overflow-y: visible;
}
.despre-page .ancorata .inside {
  padding: 140px 0 100px;
}
.despre-page .ancorata .inside .image {
  position: relative;
  width: 434px;
  height: 434px;
  margin-top: -194px;
  z-index: 1;
  margin-bottom: 40px;
}
.despre-page .ancorata .inside .image:after {
  position: absolute;
  content: "";
  width: 210px;
  height: 260px;
  bottom: -30px;
  right: -30px;
  border-right: 2px solid #39a9eb;
  border-bottom: 2px solid #39a9eb;
}
.despre-page .ancorata .inside .image image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.despre-page .ancorata .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  max-width: 280px;
  margin-bottom: 40px;
}
.despre-page .ancorata .description {
  font-size: 14px;
  line-height: 28px;
  color: #727c92;
  max-width: 380px;
}
.despre-page .viziune-misiune-obiective {
  overflow: initial;
}
.despre-page .viziune-misiune-obiective .inside {
  padding: 140px 0 170px;
}
.despre-page .viziune-misiune-obiective .inside .left {
  width: 240px;
}
.despre-page .viziune-misiune-obiective .inside .left .fixed-wrapper {
  position: sticky;
  top: 2rem;
}
.despre-page .viziune-misiune-obiective .inside .left ul li {
  margin-top: 20px;
}
.despre-page .viziune-misiune-obiective .inside .left ul li:first-of-type {
  margin-top: 0;
}
.despre-page .viziune-misiune-obiective .inside .left ul li a {
  font-size: 13px;
  line-height: 28px;
  font-weight: 800;
}
.despre-page .viziune-misiune-obiective .inside .left ul li a.active {
  color: #39a9eb;
}
.despre-page .viziune-misiune-obiective .inside .right {
  width: calc(100% - 240px);
}
.despre-page .viziune-misiune-obiective .inside .right .item {
  border-top: 1px solid #f0f2f5;
  padding-top: 84px;
  margin-top: 90px;
}
.despre-page .viziune-misiune-obiective .inside .right .item:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.despre-page .viziune-misiune-obiective .inside .right .item:nth-of-type(3) {
  border-top: none;
  padding-top: 0px;
}
.despre-page .viziune-misiune-obiective .inside .right .item:nth-of-type(5) {
  border-top: none;
  padding-top: 0px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .title {
  font-size: 34px;
  line-height: 51px;
  font-weight: 800;
  margin-bottom: 26px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .description {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .text {
  font-size: 14px;
  line-height: 28px;
  color: #727c92;
}
.despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  position: relative;
  background-image: linear-gradient(to right, black 23%, rgba(178, 184, 199, 0) 0%);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li:last-of-type {
  margin-bottom: none;
}
.despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li img {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  margin-right: 30px;
  margin-top: 10px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li .text {
  font-size: 14px;
  line-height: 24px;
  color: #727c92;
  max-width: 420px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li .num {
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  position: absolute;
  right: 0;
  font-size: 53px;
  font-weight: 700;
  color: #39a9eb;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item {
  width: 48%;
  display: flex;
  padding: 2em 1em 2em 2em;
  border: 1px solid #d4d8e1;
  margin-bottom: 1em;
  align-items: center;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text {
  width: 80%;
  position: relative;
  padding: 0 1em;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text .title {
  color: #132857;
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 25px;
  font-weight: bold;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text p {
  line-height: 22px;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #d4d8e1;
  right: 0;
  bottom: 0;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .icon {
  width: 20%;
  text-align: center;
  padding-left: 1em;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.objectives-list .list-item {
  width: 33%;
  position: relative;
  border-left: 1px dotted #d4d8e1;
  padding: 0em 2em 1em 2em;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.objectives-list .list-item:last-child {
  width: 66%;
}
.despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.objectives-list .list-item .num {
  -webkit-align-self: left;
  align-self: left;
  -moz-align-self: left;
  -ms-align-self: left;
  font-size: 53px;
  font-weight: 700;
  color: #39a9eb;
}
.despre-page .viziune-misiune-obiective .inside .right .item .actions {
  padding: 1em 0;
}
.despre-page .viziune-misiune-obiective .inside .right .item .actions ul li {
  display: flex;
  border: 1px solid #d4d8e1;
  border-bottom: 0;
  padding: 1.5em;
}
.despre-page .viziune-misiune-obiective .inside .right .item .actions ul li:nth-of-type(5) {
  border-bottom: 1px solid #d4d8e1;
}
.despre-page .viziune-misiune-obiective .inside .right .item .actions ul li img {
  width: 4%;
}
.despre-page .viziune-misiune-obiective .inside .right .item .actions ul li .text {
  margin-left: 15px;
  font-size: 14px;
  line-height: 28px;
  color: #132857;
  font-weight: 600;
}
.despre-page .container-box.feature-image-text.find-more .inside {
  width: 100%;
  display: flex;
  padding: 12em 0 10em;
}
.despre-page .container-box.feature-image-text.find-more .inside .left {
  width: 55%;
}
.despre-page .container-box.feature-image-text.find-more .inside .left .title {
  line-height: 36px;
  font-size: 32px;
}
.despre-page .container-box.feature-image-text.find-more .inside .left .description {
  font-size: 14px;
  padding: 2em 0;
  line-height: 24px;
}
.despre-page .container-box.feature-image-text.find-more .inside .left .buttons {
  margin: 2em 0;
}
.despre-page .container-box.feature-image-text.find-more .inside .left .buttons .button {
  font-size: 12px;
  font-weight: 600;
  background-color: #fff;
  color: #fff;
  background-color: #39a9eb;
  padding: 18px 54px;
  text-transform: uppercase;
}
.despre-page .container-box.feature-image-text.find-more .inside .right {
  width: 45%;
  text-align: right;
}
.despre-page .container-box.feature-image-text.find-more .inside .right img {
  width: 51%;
  padding-bottom: 2em;
}

@media screen and (max-width: 1470px) {
  .despre-page .container-box.scop .inside .title {
    width: 80%;
    font-weight: 600;
  }
  .despre-page .container-box.ancorata .title {
    margin-right: 0;
    margin-left: auto;
    max-width: 380px;
  }
  .despre-page .container-box.ancorata .description {
    margin-right: 0;
    margin-left: auto;
  }
  .despre-page .container-box.viziune-misiune-obiective .inside .right .item:nth-of-type(1) .description {
    margin-bottom: 30px;
  }
  .despre-page .container-box.viziune-misiune-obiective .inside .right .item:nth-of-type(1) .text {
    width: 65%;
  }
  .despre-page .container-box.viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text .title {
    font-weight: bold;
  }
}
@media screen and (max-width: 1330px) {
  .despre-page .container-box .ancorata .inside .column {
    width: 100%;
  }
  .despre-page .container-box .ancorata .inside .column .title {
    margin-left: 0;
    max-width: 280px;
  }
  .despre-page .container-box .ancorata .inside .column .description {
    margin-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .despre-page .viziune-misiune-obiective .inside .left {
    width: 180px;
  }
  .despre-page .viziune-misiune-obiective .inside .right {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 1100px) {
  .despre-page .viziune-misiune-obiective .inside .left {
    display: none;
  }
  .despre-page .viziune-misiune-obiective .inside .right {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .despre-page .two-columns .inside .column {
    width: 100%;
  }
  .despre-page .two-columns .inside .column .image {
    width: 100%;
    height: auto;
  }
  .despre-page .two-columns .inside .column .image img {
    width: 100%;
    height: auto;
  }
  .despre-page .two-columns .inside .column .image img:after {
    display: none;
  }
  .despre-page .two-columns .inside .column .title {
    max-width: 100%;
    width: 100%;
  }
  .despre-page .two-columns .inside .column .description {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .despre-page .two-columns.description-section .inside .column:nth-child(odd) {
    padding: 0;
  }
  .despre-page .two-columns.description-section .inside .text-20 {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .despre-page .two-columns.description-section .inside .text-14 {
    font-size: 16px;
  }
  .despre-page .feature-image-text .inside .title {
    font-size: 34px;
  }
  .despre-page .feature-image-text .inside .description {
    font-size: 16px;
  }
  .despre-page .ancorata .inside .image {
    width: 100%;
    height: auto;
  }
  .despre-page .ancorata .inside .image:after {
    display: none;
  }
  .despre-page .ancorata .inside .description {
    font-size: 16px;
  }
  .despre-page .scop .inside {
    padding: 70px 0 130px;
  }
  .despre-page .scop .inside .title {
    font-size: 24px;
    margin: 20px 0 0 0;
    font-weight: 700;
    width: 100%;
  }
  .despre-page .scop .inside .description {
    font-size: 16px;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .description {
    margin-bottom: 50px;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li {
    display: flex;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li img {
    display: none;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li .text {
    order: 25;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .numbers ul li .num {
    margin: 0 20px auto 0;
    order: 1;
    position: relative;
    line-height: 1;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .icon {
    padding: 0 0 10px 0;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text {
    border-top: 1px solid #d4d8e1;
    border-right: 0;
    padding: 10px 0 0 0;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.values-list.flex-item-space-between .list-item .text:after {
    display: none;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.objectives-list .list-item {
    width: 100%;
  }
  .despre-page .viziune-misiune-obiective .inside .right .item .flex-container-row.objectives-list .list-item:last-child {
    width: 100%;
  }
  .despre-page .container-box.feature-image-text.find-more .inside {
    width: 100%;
    margin-right: 0;
    padding-top: 50px;
  }
  .despre-page .container-box.feature-image-text.find-more .inside .title {
    font-size: 20px;
    line-height: 1.2;
  }
  .despre-page .find-more .inside {
    flex-direction: column-reverse;
    margin: 0 auto !important;
  }
  .despre-page .find-more .inside .right {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .despre-page .find-more .inside .right img {
    width: 48% !important;
  }
  .despre-page .find-more .inside .left {
    width: 100% !important;
  }
}
@media screen and (max-width: 410px) {
  .despre-page .container-box.feature-image-text.find-more .inside {
    width: 80%;
    margin-right: 20%;
  }
  .despre-page .container-box.feature-image-text.find-more .inside .buttons .button {
    display: flex;
    justify-content: center;
    padding: 18px 0;
  }
}
.page-members {
  overflow: hidden;
  min-height: 75vh;
}
.page-members .page .top-image-echipa {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-members .page .container-box {
  flex-direction: column;
}
.page-members .page .container-box .members {
  width: 100%;
}
.page-members .page .container-box .members .header-content {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
}
.page-members .page .container-box .members .header-content h1 {
  font-size: 2.4rem;
}
.page-members .page .container-box .members .header-content .citat {
  width: 60%;
  margin-left: 4rem;
  padding-left: 1rem;
  border-left: 1px solid #d4d8e1;
  color: #727c92;
}
.page-members .page .container-box .members-container {
  width: 100%;
  position: relative;
}
.page-members .page .container-box .members-container .row #myBtnContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 3rem;
  padding: 1em 0;
  text-transform: uppercase;
  font-size: 12px;
  border-top: 1px solid #d4d8e1;
  border-bottom: 1px solid #d4d8e1;
}
.page-members .page .container-box .members-container .row #myBtnContainer .btn {
  margin-right: 2em;
  color: #727c92;
  cursor: pointer;
}
.page-members .page .container-box .members-container .row #myBtnContainer .btn.active {
  color: #21386d !important;
  font-weight: 800;
  position: relative;
  box-shadow: none;
}
.page-members .page .container-box .members-container .row #myBtnContainer .btn.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #21386d;
  left: 0;
  bottom: -1em;
}
.page-members .page .container-box .members-container .container.row.logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions {
  width: 20%;
  text-align: center;
  padding: 1em 0em !important;
  margin: 0 10px;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions .filterLogo {
  display: flex;
  justify-content: center;
  background-color: #fafbfc;
  padding: 1.5em 1em;
  border: 1px solid #d4d8e1;
  height: 115px;
  display: flex;
  justify-content: center;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions .filterLogo img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions .filterLink {
  background-color: #fff;
  padding: 1.5em 0;
  border-right: 1px solid #d4d8e1;
  border-left: 1px solid #d4d8e1;
  border-bottom: 1px solid #d4d8e1;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions .filterLink h4 {
  line-height: 20px;
  min-height: 40px;
  margin-bottom: 5px;
}
.page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions .filterLink a {
  color: #07a3ce !important;
  font-weight: 100 !important;
}
.page-members [data-status=show] {
  display: block;
}
.page-members [data-status=hide] {
  display: none;
}

@media screen and (max-width: 1200px) {
  .page-members .page .container-box .members-container .row #myBtnContainer .btn {
    margin-right: 10px;
    margin-top: 1rem;
    font-size: 12px;
  }
  .page-members .page .container-box .members-container .container.row.logos {
    justify-content: space-between;
  }
  .page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions {
    width: 29%;
    margin: 0;
  }
}
@media screen and (max-width: 800px) {
  .page-members .top-image-echipa {
    margin-left: 0 !important;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .page-members .page .top-image-echipa {
    display: none;
  }
  .page-members .page .members-hero {
    position: relative;
  }
  .page-members .page .members-hero .mobile-background {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;
  }
  .page-members .page .members .header-content {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .page-members .page .members .header-content h1 {
    color: white;
    margin-bottom: 0;
  }
  .page-members .page .members .header-content .citat {
    color: white !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border: none !important;
  }
  .page-members .page .container-box .members-container .row #myBtnContainer {
    display: -webkit-inline-box;
    overflow: scroll;
    flex-wrap: nowrap;
  }
  .page-members .page .container-box .members-container .row #myBtnContainer .btn {
    font-size: 10px;
  }
  .page-members .page .container-box .members-container .container.row.logos .filterDiv.institutions {
    width: 100% !important;
  }
}
.page-index .top-image-index {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-index .container-box {
  justify-content: space-between;
}
.page-index .container-box .index-hero {
  width: 100%;
  display: flex;
}
.page-index .container-box .index-hero h1 {
  font-size: 2.4rem;
}
.page-index .container-box .index-hero .header-content {
  display: flex;
  align-items: center;
  margin: 2em 0 0 0;
}
.page-index .container-box .index-hero .header-content .citat {
  width: 60%;
  margin-left: 4rem;
  padding-left: 1rem;
  border-left: 1px solid #d4d8e1;
  color: #727c92;
  font-weight: normal;
}
.page-index .container-box .index-hero .header-content .citat span {
  margin-top: 10px;
  font-weight: 700;
  font-style: normal;
}
.page-index .container-box .filtru-stiri {
  margin: 0 0 3rem;
}
.page-index .container-box .filtru-stiri .btn.filter {
  font-size: 12px;
  text-transform: uppercase;
}
.page-index .container-box .filtru-stiri .btn.filter a {
  color: #727c92;
}
.page-index .container-box .filtru-stiri .btn.filter.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #21386d;
  left: 0;
  bottom: -1em;
}
.page-index .main-page-container {
  margin-bottom: 5rem;
}
.page-index .posts-container {
  display: flex;
  justify-content: space-between;
  width: 65%;
  flex-wrap: wrap;
}
.page-index .posts-container .post-entry {
  margin: 2rem 0;
  width: 48%;
  padding-bottom: 2em;
  position: relative;
}
.page-index .posts-container .post-entry:after {
  position: absolute;
  content: "";
  width: 104%;
  height: 1px;
  bottom: 0;
  background-color: #e2e6ed;
}
.page-index .posts-container .post-entry .top-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.page-index .posts-container .post-entry .top-row .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.page-index .posts-container .post-entry .top-row .date:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e2e6ed;
  right: 0;
  top: -2px;
}
.page-index .posts-container .post-entry .top-row .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-index .posts-container .post-entry .top-row .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.page-index .posts-container .post-entry .top-row .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.page-index .posts-container .post-entry .top-row .more-details {
  display: flex;
  margin-left: 1.5rem;
  color: #727c92;
  font-size: 0.9rem;
}
.page-index .posts-container .post-entry .top-row .more-details .categorie {
  margin-right: 1.5rem;
}
.page-index .posts-container .post-entry .top-row .more-details .autor {
  padding-left: 1.5rem;
  border-left: 1px solid #cfd5e2;
}
.page-index .posts-container .post-entry .post-entry-title h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 22px;
  min-height: 66px;
  color: #21386d;
}
.page-index .posts-container .post-entry .post-entry-image {
  width: 100%;
  height: 30vh;
}
.page-index .posts-container .post-entry .post-entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-index .posts-container .post-entry .read-more {
  display: flex;
  justify-content: space-between;
}
.page-index .posts-container .post-entry .read-more a {
  color: #39a9eb;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 1em;
}
.page-index .index-sidebar.version-ro #archives-4 {
  display: none;
}
.page-index .index-sidebar {
  width: 30%;
  padding: 6em 0;
}
.page-index .index-sidebar .newsletter {
  padding: 4rem 1.5rem;
  background-size: cover;
}
.page-index .index-sidebar .newsletter .title {
  color: white;
  font-size: 1.7rem;
  font-weight: 700;
}
.page-index .index-sidebar .newsletter .description {
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.page-index .index-sidebar .newsletter .flex-container-row.flex-nowrap input {
  width: calc(100% - 38px);
  background-color: transparent;
  border: 1px solid white;
}
.page-index .index-sidebar .newsletter .flex-container-row.flex-nowrap ::placeholder {
  padding-left: 5px;
  color: #fff;
}
.page-index .index-sidebar .newsletter .flex-container-row.flex-nowrap .send {
  width: 38px;
  height: 38px;
  background-color: white;
}
.page-index .index-sidebar .newsletter .flex-container-row.flex-nowrap .send i {
  color: #04b2ff;
}
.page-index .index-sidebar .newsletter .flex-container-row.flex-nowrap .send button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
  cursor: pointer;
}
.page-index .index-sidebar .widget_archive {
  padding-top: 3em;
}
.page-index .index-sidebar .widget_archive h2 {
  font-size: 1.2rem;
}
.page-index .index-sidebar .widget_archive ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-index .index-sidebar .widget_archive ul li {
  position: relative;
  width: 47%;
  padding: 0.8rem 0;
  border-bottom: 1px dotted #727c92;
}
.page-index .index-sidebar .widget_archive ul li a {
  color: #727c92;
}
.page-index .index-sidebar .widget_archive ul li :after {
  color: #39a9eb;
  content: "→";
  position: absolute;
  right: 0;
}
.page-index .pagination-container {
  align-items: center;
  justify-content: center;
}
.page-index .pagination-container .pagination {
  display: flex;
  margin: 1rem 0;
}
.page-index .pagination-container .pagination .page-numbers {
  height: 35px;
  width: 35px;
  margin: 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5e2;
  color: #21386d;
  font-weight: 700;
}
.page-index .pagination-container .pagination .current {
  background-color: #39a9eb;
  color: white;
  border: #39a9eb;
}
.page-index .filtru-stiri {
  width: 100%;
  margin: 0 0 3rem;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  padding: 1em 0;
  border-top: 1px solid #d4d8e1;
  border-bottom: 1px solid #d4d8e1;
}
.page-index .filtru-stiri .btn {
  margin-right: 2em;
  color: #d4d8e1;
  cursor: pointer;
}
.page-index .filtru-stiri .btn.active {
  font-weight: 800;
  position: relative;
  box-shadow: none;
}
.page-index .filtru-stiri .btn.active a {
  color: #21386d !important;
}
.page-index .filtru-stiri .btn.active a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #21386d;
  left: 0;
  bottom: -1em;
}
.page-index .filtru-stiri .btn.active span {
  border-bottom: 2px solid #21386d;
}
.page-index [data-status=show] {
  display: block !important;
}
.page-index [data-status=hide] {
  display: none !important;
}

@media screen and (max-width: 1366px) {
  .page-index .posts-container .post-entry .read-more hr {
    width: 70%;
  }
}
@media screen and (max-width: 1150px) {
  .page-index .top-image-index {
    margin-left: 29.5%;
  }
  .page-index .main-page-container {
    display: flex;
    flex-wrap: wrap;
  }
  .page-index .main-page-container .posts-container {
    width: 100%;
  }
  .page-index .main-page-container .posts-container .post-entry {
    width: 49%;
  }
  .page-index .main-page-container .posts-container .post-entry .post-entry-title {
    min-height: 40px;
  }
  .page-index .main-page-container .posts-container .post-entry .post-entry-image {
    height: 22vh;
  }
  .page-index .main-page-container .posts-container .post-entry .read-more hr {
    width: 65%;
  }
  .page-index .main-page-container .index-sidebar {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .page-index .top-image-index {
    margin-left: 0;
  }
  .page-index .main-page-container {
    flex-wrap: wrap;
  }
  .page-index .posts-container {
    width: 100%;
  }
  .page-index .posts-container .post-entry .read-more hr {
    width: 60%;
  }
  .page-index .index-sidebar {
    width: 100%;
  }
  .page-index .index-sidebar .newsletter {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .page-index .top-image-index {
    display: none;
  }
  .page-index .blog-hero {
    position: relative;
  }
  .page-index .blog-hero .mobile-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
  }
  .page-index .blog-hero .index-hero .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-index .blog-hero .index-hero .header-content h1 {
    color: white;
    margin-bottom: 0;
  }
  .page-index .blog-hero .index-hero .header-content .citat {
    color: white;
    padding: 0;
    margin: 0 0 20px 0;
    border: none;
  }
  .page-index .container-box .filtru-stiri {
    flex-wrap: nowrap;
    overflow: scroll;
    flex-direction: row;
    display: -webkit-inline-box;
  }
  .page-index .container-box.main-page-container .posts-container {
    width: 100%;
  }
  .page-index .container-box.main-page-container .posts-container .post-entry {
    width: 100% !important;
    margin: 1rem 0 !important;
  }
}
@media screen and (max-width: 450px) {
  .page-index .posts-container .post-entry .read-more hr {
    width: 50%;
  }
}
.page-devino-membru .top-image-devino-membru {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-devino-membru .container-box {
  justify-content: space-between;
}
.page-devino-membru .devino-membru-hero-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5rem 0;
}
.page-devino-membru .devino-membru-hero-container .hero {
  width: 292px;
  min-height: 396px;
  max-height: 465px;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  color: white;
  background-size: cover;
}
.page-devino-membru .devino-membru-hero-container .hero h1 {
  font-size: 2.4rem;
  margin: 0 0 1rem 0;
}
.page-devino-membru .devino-membru-hero-container .hero p {
  font-weight: 300;
  font-size: 1.2rem;
}
.page-devino-membru .devino-membru-hero-container .hero .cta {
  display: flex;
  justify-content: space-between;
  color: white;
  background-color: #39a9eb;
  padding: 1.5rem 1rem;
  margin: auto 0 0 0;
}
.page-devino-membru .devino-membru-hero-container .hero .cta p {
  font-size: 0.9rem;
  font-weight: 700;
}
.page-devino-membru .devino-membru-hero-container .info {
  width: 60%;
  min-width: 600px;
}
.page-devino-membru .devino-membru-hero-container .info .caption {
  margin: 0 0 2rem;
  color: #727c92;
  font-size: 1.2rem;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry {
  width: 100%;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  border: 1px solid #d4d8e1;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry:last-child {
  margin-bottom: 0;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .trigger {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .content {
  display: none;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .content li {
  margin: 0.5rem 0;
  color: #727c92;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .number {
  color: #39a9eb;
  font-size: 2.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .motiv {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry .motiv span {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
}
.page-devino-membru .devino-membru-hero-container .info .motiv-entry i {
  margin: 0 0 0 auto;
  color: #39a9eb;
}
.page-devino-membru .main-page-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f2f5;
}
.page-devino-membru .main-page-container .instructiuni-container {
  display: flex;
  justify-content: space-between;
}
.page-devino-membru .main-page-container .instructiuni-container .left {
  width: 48%;
  padding: 3rem;
  background-color: white;
}
.page-devino-membru .main-page-container .instructiuni-container .left h2 {
  margin: 0 0 2rem 0;
}
.page-devino-membru .main-page-container .instructiuni-container .left .instructiuni .instructiune {
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  border-bottom: 1px dashed #cfd5e2;
}
.page-devino-membru .main-page-container .instructiuni-container .left .instructiuni .instructiune .number {
  color: #39a9eb;
  font-size: 2.5rem;
  font-weight: 700;
  margin-right: 1rem;
}
.page-devino-membru .main-page-container .instructiuni-container .right {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 3rem;
  background-color: white;
}
.page-devino-membru .main-page-container .instructiuni-container .right .download-link {
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #39a9eb;
  color: white;
  text-transform: uppercase;
  border: 2px solid #39a9eb;
}
.page-devino-membru .main-page-container .instructiuni-container .right .download-link:hover {
  background-color: white;
  color: #39a9eb;
}
.page-devino-membru .main-page-container .instructiuni-container .right .download-link:hover svg path {
  fill: #39a9eb;
}
.page-devino-membru .main-page-container .instructiuni-container .right .download-link:hover svg rect {
  fill: #39a9eb;
}
.page-devino-membru .main-page-container .instructiuni-container .right .email-link {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background-color: #f0f2f5;
  border: 2px solid #f0f2f5;
  color: #727c92;
  font-weight: 800;
  font-weight: 0.94rem;
}
.page-devino-membru .main-page-container .instructiuni-container .right .email-link span {
  margin-top: 0.5rem;
  color: #39a9eb;
  font-size: 1.7rem;
  font-weight: 600;
}
.page-devino-membru .main-page-container .instructiuni-container .right .email-link:hover {
  background-color: white;
}
.page-devino-membru .main-page-container .instructiuni-container .right .small-text {
  font-size: 0.8rem;
  color: #727c92;
  margin: auto 0 0 0;
}
.page-devino-membru .main-page-container .instructiuni-container .right .small-text a {
  color: #39a9eb;
}

@media screen and (max-width: 1570px) {
  .page-devino-membru .top-image-devino-membru {
    margin-left: calc(10% + 200px);
    width: calc(90% - 200px);
  }
}
@media screen and (max-width: 1000px) {
  .page-devino-membru .devino-membru-hero-container .info {
    min-width: 100%;
  }
  .page-devino-membru .main-page-container .instructiuni-container {
    flex-wrap: wrap;
  }
  .page-devino-membru .main-page-container .instructiuni-container .left {
    width: 100%;
  }
  .page-devino-membru .main-page-container .instructiuni-container .right {
    width: 100%;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .page-devino-membru .top-image-devino-membru {
    margin-left: 0;
    width: 100%;
  }
  .page-devino-membru .container-box.devino-membru-header .devino-membru-hero-container .hero {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .page-devino-membru .top-image-devino-membru {
    display: none;
  }
  .page-devino-membru .devino-membru-header {
    position: relative;
  }
  .page-devino-membru .devino-membru-header .mobile-background {
    position: absolute;
    width: 100%;
    height: 300px;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .page-devino-membru .devino-membru-hero-container {
    margin-top: 1rem;
  }
  .page-devino-membru .devino-membru-hero-container .hero {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    margin-bottom: 20px;
    background-image: none !important;
  }
  .page-devino-membru .devino-membru-hero-container .hero .cta {
    margin-top: 50px;
  }
  .page-devino-membru .devino-membru-hero-container .info {
    margin-top: 70px;
  }
  .page-devino-membru .devino-membru-hero-container .info .caption {
    font-size: 1.95rem;
    font-weight: 700;
    color: #21386d;
    line-height: 1;
  }
  .page-devino-membru .devino-membru-hero-container .info .caption span {
    color: #727c92;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .page-devino-membru .main-page-container .instructiuni-container .left {
    padding: 3rem 1rem;
  }
  .page-devino-membru .main-page-container .instructiuni-container .right .email-link {
    margin-bottom: 1.8rem;
  }
}
.page-events .top-image-events {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-events .container-box {
  flex-direction: column;
}
.page-events .events-hero {
  width: 100%;
  display: flex;
}
.page-events .events-hero .header-content {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
}
.page-events .events-hero .header-content h1 {
  font-size: 2.4rem;
}
.page-events .events-hero .header-content .citat {
  margin-left: 4rem;
  padding-left: 1rem;
  border-left: 1px solid #d4d8e1;
  color: #727c92;
}
.page-events .events-hero .header-content .citat span {
  margin-top: 10px;
  font-weight: 700;
  font-style: normal;
}
.page-events .filtru-evenimente {
  width: 100%;
  margin: 0 0 3rem;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  padding: 1em 0;
  border-top: 1px solid #d4d8e1;
  border-bottom: 1px solid #d4d8e1;
  font-size: 12px;
}
.page-events .filtru-evenimente .btn {
  margin-right: 2em;
  cursor: pointer;
  text-transform: uppercase;
}
.page-events .filtru-evenimente .btn a {
  color: #727c92;
}
.page-events .filtru-evenimente .btn.active {
  font-weight: 800;
  position: relative;
  box-shadow: none;
}
.page-events .filtru-evenimente .btn.active a {
  color: #21386d !important;
}
.page-events .filtru-evenimente .btn.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #21386d;
  left: 0;
  bottom: -1em;
}
.page-events .filtru-evenimente .btn.active span {
  border-bottom: 2px solid #21386d;
}
.page-events .main-content {
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}
.page-events .main-content .event-entry {
  width: 47%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.page-events .main-content .event-entry .top-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.page-events .main-content .event-entry .top-row .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.page-events .main-content .event-entry .top-row .date:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e2e6ed;
  right: 0;
  top: -2px;
}
.page-events .main-content .event-entry .top-row .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-events .main-content .event-entry .top-row .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.page-events .main-content .event-entry .top-row .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.page-events .main-content .event-entry .top-row .more-data {
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  color: #727c92;
  font-size: 0.9rem;
}
.page-events .main-content .event-entry .top-row .more-data .hours {
  display: flex;
  margin-bottom: 0.2rem;
}
.page-events .main-content .event-entry .top-row .more-data .hours i {
  margin-right: 9px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-events .main-content .event-entry .top-row .more-data .location {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.page-events .main-content .event-entry .top-row .more-data .location i {
  align-items: center;
  justify-content: center;
  width: 12px;
  margin-right: 9px;
}
.page-events .main-content .event-entry .post-entry-image {
  width: 100%;
  height: 30vh;
}
.page-events .main-content .event-entry .post-entry-image img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
  border: 1px solid #c4cad8;
}
.page-events .main-content .event-entry h3 {
  color: #21386d;
  font-size: 1.4rem;
  font-weight: 600;
}
.page-events [data-status=show] {
  display: block !important;
}
.page-events [data-status=hide] {
  display: none !important;
}

@media screen and (max-width: 1050px) {
  .page-events .filtru-evenimente {
    display: -webkit-inline-box !important;
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .page-events .filtru-evenimente .btn {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .page-events .main-content .event-entry {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .page-events .top-image-events {
    margin-left: 0;
  }
  .page-events .container-box #filtruEvenimente .btn.active:after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .page-events .top-image-events {
    display: none;
  }
  .page-events .events-header {
    position: relative;
  }
  .page-events .events-header .mobile-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
  }
  .page-events .events-header .events-hero .header-content {
    align-items: flex-start;
  }
  .page-events .events-header .events-hero .header-content h1 {
    color: white;
    margin-bottom: 0;
  }
  .page-events .events-header .events-hero .header-content .citat {
    color: white;
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
  }
}
.page-event .top-image-event {
  height: 90px;
  margin-left: 23%;
  background-size: cover;
}
.page-event .container-box {
  flex-direction: column;
}
.page-event .container-box.header-event {
  border-bottom: 1px solid #d4d8e1;
}
.page-event .container-box .back {
  padding: 5em 0;
}
.page-event .container-box .back a.backBtn {
  padding: 1em 2em;
  color: #fff !important;
  background-color: #00b3da;
  border: none;
  text-transform: uppercase;
  font-size: 12px;
}
.page-event .container-box img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: auto;
}
.page-event .event-hero {
  width: 100%;
  display: flex;
}
.page-event .event-hero .header-content {
  display: flex;
  align-items: center;
  margin: 0 0 4rem;
}
.page-event .event-hero .header-content .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.page-event .event-hero .header-content .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-event .event-hero .header-content .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.page-event .event-hero .header-content .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.page-event .event-hero .header-content .more-data {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #d4d8e1;
  color: #727c92;
}
.page-event .event-hero .header-content .more-data .hours {
  display: flex;
  margin-bottom: 0.2rem;
}
.page-event .event-hero .header-content .more-data .hours i {
  margin-right: 9px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-event .event-hero .header-content .more-data .location {
  display: flex;
}
.page-event .event-hero .header-content .more-data .location i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  margin-right: 9px;
}
.page-event .event-hero .header-content .more-data span {
  margin-top: 10px;
  font-weight: 700;
  font-style: normal;
}
.page-event .single-event-main-content {
  flex-direction: row;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.page-event .single-event-main-content .left {
  width: 65%;
}
.page-event .single-event-main-content .left .single-event-entry p {
  font-size: 17px;
  text-align: justify;
}
.page-event .single-event-main-content .left .single-event-entry p a {
  color: #04b2ff;
  text-decoration: underline;
}
.page-event .single-event-main-content .right {
  width: 30%;
}
.page-event .single-event-main-content .single-event-entry p {
  margin: 1rem 0;
}
.page-event .newsletter {
  padding: 4rem 1.5rem;
  background-size: cover;
}
.page-event .newsletter .title {
  color: white;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.page-event .newsletter .description {
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.page-event .newsletter input {
  width: calc(100% - 38px);
  background-color: transparent;
  border: 1px solid white;
}
.page-event .newsletter input::placeholder {
  color: white;
}
.page-event .newsletter .send {
  width: 38px;
  height: 38px;
  background-color: white;
}
.page-event .newsletter .send i {
  color: #04b2ff;
}
.page-event .newsletter .send button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
  cursor: pointer;
}
.page-event .other-events {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.page-event .other-events .event-entry {
  width: 47%;
  display: flex;
  flex-direction: column;
}
.page-event .other-events .event-entry .top-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.page-event .other-events .event-entry .top-row .date {
  color: #39a9eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 20px;
  padding-right: 1em;
  position: relative;
  width: 20%;
  min-width: 91px;
}
.page-event .other-events .event-entry .top-row .date:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e2e6ed;
  right: 0;
  top: -2px;
}
.page-event .other-events .event-entry .top-row .date .day {
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-event .other-events .event-entry .top-row .date .month {
  width: 27px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.page-event .other-events .event-entry .top-row .date .year {
  width: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.page-event .other-events .event-entry .top-row .more-data {
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  color: #727c92;
  font-size: 0.9rem;
}
.page-event .other-events .event-entry .top-row .more-data .hours {
  margin-bottom: 0.7rem;
}
.page-event .other-events .event-entry .read-more {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}
.page-event .other-events .event-entry .read-more p {
  font-size: 13px;
  font-weight: 700;
  color: #39a9eb;
  margin-right: 15px;
}
.page-event .other-events .event-entry a img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.page-event .other-events .event-entry a h3 {
  color: #21386d;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  min-height: 3.4rem;
}
.page-event .more-events {
  color: #727c92;
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 2em 0;
}

@media screen and (max-width: 800px) {
  .page-event .top-image-event {
    margin-left: 0;
  }
  .page-event .single-event-main-content .left {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .page-event .single-event-main-content .right {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .page-event .event-hero .header-content {
    margin: 1rem 0;
  }
  .page-event .other-events {
    flex-wrap: wrap;
  }
  .page-event .other-events .event-entry {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .page-event .newsletter {
    display: none;
  }
}
.privacy-page .tpl-wrapper {
  padding: 2em 0;
  text-align: justify;
  font-size: 18px;
}

.error404 .container-box .error-404 {
  width: 100%;
  min-height: 60vh;
}

.footer {
  border-top: 1px solid #c4cad8;
}
.footer .inside .left {
  width: 60%;
}
.footer .inside .left .links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}
.footer .inside .left .links ul li {
  padding-right: 20px;
  padding-left: 20px;
  border-left: 1px solid #c4cad8;
  line-height: 17px;
}
.footer .inside .left .links ul li:first-of-type {
  padding-left: 0;
  border-left: none;
}
.footer .inside .left .links ul li a {
  font-size: 13px;
  line-height: 17px;
  color: #39a9eb;
}
.footer .inside .left .created p {
  width: 55px;
  font-size: 11px;
  line-height: 17px;
  font-weight: 500;
  color: #39a9eb;
}
.footer .inside .left .created p:first-of-type {
  color: #21386d;
}
.footer .inside .left .rights {
  font-size: 11px;
  line-height: 15px;
  margin-top: 20px;
}
.footer .inside .right {
  width: 40%;
  padding-left: 60px;
  padding: 70px 0px 70px 60px;
  border-left: 1px solid #c4cad8;
}
.footer .inside .right .newsletter .title {
  font-size: 20px;
  font-weight: 600;
  color: #132857;
}
.footer .inside .right .newsletter .description {
  font-size: 12px;
  line-height: 17px;
  color: #132857;
  margin-bottom: 10px;
}
.footer .inside .right .newsletter input {
  border: 1px solid #c4cad8;
  width: calc(100% - 38px);
}
.footer .inside .right .newsletter ::placeholder {
  padding-left: 5px;
  color: #727c92;
}
.footer .inside .right .newsletter .send {
  width: 38px;
  height: 38px;
  background-color: #39a9eb;
}
.footer .inside .right .newsletter .send button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #39a9eb;
  color: white;
  cursor: pointer;
}
.footer .newsletter-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 20;
}
.footer .newsletter-popup .newsletter-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3215686275);
  z-index: -1;
}
.footer .newsletter-popup form {
  width: 400px;
  max-width: 100%;
  padding: 20px 40px;
  background-color: white;
  z-index: 2;
}
.footer .newsletter-popup form .new-design {
  box-sizing: border-box;
}
.footer .newsletter-popup form .new-design span {
  width: 100%;
}
.footer .newsletter-popup form .new-design span input {
  width: 100%;
  border: none;
  background-color: #f4f5f6;
  font-style: 1rem;
  color: #3a3a3c;
  padding: 15px 19px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.footer .newsletter-popup form .new-design input[type=submit] {
  background-color: #132857;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px;
  margin-top: 20px;
}
.footer .newsletter-popup form .new-design .title-32-40 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .newsletter-popup form .bifa1 .wpcf7-list-item,
.footer .newsletter-popup form .bifa2 .wpcf7-list-item {
  margin: 0;
}
.footer .newsletter-popup form .bifa1 .wpcf7-list-item label,
.footer .newsletter-popup form .bifa2 .wpcf7-list-item label {
  display: flex;
}
.footer .newsletter-popup form .bifa1 .wpcf7-list-item label input,
.footer .newsletter-popup form .bifa2 .wpcf7-list-item label input {
  width: 10%;
  margin: 5px 0 0 0;
}
.footer .newsletter-popup form .bifa1 .wpcf7-list-item label span,
.footer .newsletter-popup form .bifa2 .wpcf7-list-item label span {
  width: 85%;
  font-size: 9px;
}
.footer .active {
  display: flex;
}

@media screen and (max-width: 700px) {
  .footer .inside .left,
  .footer .inside .right {
    width: 100%;
    padding: 50px 0;
  }
  .footer .inside .left {
    order: 2;
  }
  .footer .inside .right {
    order: 1;
    border: none;
  }
}
@media screen and (max-width: 500px) {
  .footer .inside .left .links ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .inside .left .links ul li {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0.2rem 0;
  }
  .footer .inside .left .links ul li a {
    font-size: 14px;
  }
  .footer .inside .left .links .created {
    border: 0;
    padding: 0;
  }
  .footer .inside .right {
    position: relative;
    background-color: #21386d;
  }
  .footer .inside .right .newsletter .title {
    color: white !important;
  }
  .footer .inside .right .newsletter .description {
    color: white !important;
  }
  .footer .inside .right .newsletter input {
    background-color: #21386d;
    color: white;
  }
  .footer .inside .right .newsletter input::placeholder {
    color: white;
  }
  .footer .inside .right:before {
    position: absolute;
    content: " ";
    background-color: #21386d;
    height: 100%;
    width: 20px;
    top: 0;
    left: -20px;
  }
  .footer .inside .right:after {
    position: absolute;
    content: " ";
    background-color: #21386d;
    height: 100%;
    width: 20px;
    top: 0;
    right: -19px;
  }
}

/*# sourceMappingURL=style.css.map */
