@-webkit-keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

/*******************************************/
/****** GLOBAL SETTINGS AND CLASSES *******/
/******************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 2rem;
  font-weight: 400;
  color: #73737D;
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  background-color: #ffffff;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul > li {
  list-style-type: none;
}

address, address * {
  font-style: initial;
}

h1, h2, h3, h4, h5, h6 {
  color: #121212;
}

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  line-height: 1.4;
}

h1 {
  font-size: 6.4rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 4.8rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 3.6rem;
}

h4 {
  font-size: 2.8rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 1.8rem;
}

a, strong a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-transition: .4s;
  transition: .4s;
}

a:hover, a:focus, strong a:hover, strong a:focus {
  color: #206c6b;
  outline: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fafafa;
}

::-webkit-scrollbar-thumb {
  background: #206c6b;
}

::-webkit-scrollbar-thumb:hover {
  background: #87b5ff;
}

/******** WYSIWYG editor ********/
.wp-editor a {
  text-decoration: underline;
}

.wp-editor p, .wp-editor div, .wp-editor ul, .wp-editor ol, .wp-editor h1, .wp-editor h2, .wp-editor h3, .wp-editor h4, .wp-editor h5, .wp-editor h6, .wp-editor iframe {
  margin-top: 60px;
  margin-bottom: 60px;
}

.wp-editor p:first-child, .wp-editor div:first-child, .wp-editor ul:first-child, .wp-editor ol:first-child, .wp-editor h1:first-child, .wp-editor h2:first-child, .wp-editor h3:first-child, .wp-editor h4:first-child, .wp-editor h5:first-child, .wp-editor h6:first-child, .wp-editor iframe:first-child {
  margin-top: 0;
}

.wp-editor p:last-child, .wp-editor div:last-child, .wp-editor ul:last-child, .wp-editor ol:last-child, .wp-editor h1:last-child, .wp-editor h2:last-child, .wp-editor h3:last-child, .wp-editor h4:last-child, .wp-editor h5:last-child, .wp-editor h6:last-child, .wp-editor iframe:last-child {
  margin-bottom: 0;
}

.wp-editor--margin-sm p, .wp-editor--margin-sm div, .wp-editor--margin-sm ul, .wp-editor--margin-sm ol, .wp-editor--margin-sm h1, .wp-editor--margin-sm h2, .wp-editor--margin-sm h3, .wp-editor--margin-sm h4, .wp-editor--margin-sm h5, .wp-editor--margin-sm h6, .wp-editor--margin-sm iframe {
  margin-top: 40px;
  margin-bottom: 40px;
}

.wp-editor--margin-sm p:first-child, .wp-editor--margin-sm div:first-child, .wp-editor--margin-sm ul:first-child, .wp-editor--margin-sm ol:first-child, .wp-editor--margin-sm h1:first-child, .wp-editor--margin-sm h2:first-child, .wp-editor--margin-sm h3:first-child, .wp-editor--margin-sm h4:first-child, .wp-editor--margin-sm h5:first-child, .wp-editor--margin-sm h6:first-child, .wp-editor--margin-sm iframe:first-child {
  margin-top: 0;
}

.wp-editor--margin-sm p:last-child, .wp-editor--margin-sm div:last-child, .wp-editor--margin-sm ul:last-child, .wp-editor--margin-sm ol:last-child, .wp-editor--margin-sm h1:last-child, .wp-editor--margin-sm h2:last-child, .wp-editor--margin-sm h3:last-child, .wp-editor--margin-sm h4:last-child, .wp-editor--margin-sm h5:last-child, .wp-editor--margin-sm h6:last-child, .wp-editor--margin-sm iframe:last-child {
  margin-bottom: 0;
}

.wp-editor ul > li,
.wp-editor ol > li {
  margin-top: 15px;
  margin-bottom: 15px;
}

.wp-editor ul > li:first-child,
.wp-editor ol > li:first-child {
  margin-top: 0;
}

.wp-editor ul > li:last-child,
.wp-editor ol > li:last-child {
  margin-bottom: 0;
}

.wp-editor--margin-sm ul > li,
.wp-editor--margin-sm ol > li {
  margin-top: 7px;
  margin-bottom: 7px;
}

.wp-editor--margin-sm ul > li:first-child,
.wp-editor--margin-sm ol > li:first-child {
  margin-top: 0;
}

.wp-editor--margin-sm ul > li:last-child,
.wp-editor--margin-sm ol > li:last-child {
  margin-bottom: 0;
}

.wp-editor ul > li {
  position: relative;
  padding-left: 35px;
}

.wp-editor ul > li:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: #206c6b;
}

.wp-editor ol {
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

.wp-editor iframe {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.wp-editor blockquote {
  padding-left: 35px;
  font-style: italic;
  position: relative;
}

.wp-editor blockquote:before {
  content: '\0201D';
  position: absolute;
  left: -35px;
  top: -10px;
  font-size: 10rem;
  line-height: 1;
  opacity: 0.4;
}

.wp-editor img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.wp-editor img.alignright,
.wp-editor div.alignright {
  float: right;
  margin: 0 0 10px 10px;
}

.wp-editor img.alignleft,
.wp-editor div.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}

.wp-editor img.aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-editor .alignright {
  float: right;
}

.wp-editor .alignleft {
  float: left;
}

.wp-editor .aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-editor .wp-caption-text {
  font-size: 1.3rem;
}

/********** Containers ************/
.cont-x {
  max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.cont-x--lg {
  max-width: 1750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.cont-x--sm {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.cont-y {
  margin-top: 100px;
  margin-bottom: 100px;
}

.cont-y-grey {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fafafd;
}

.cont-x-inner {
  padding-left: 125px;
  padding-right: 125px;
}

.cont-x-inner-slider {
  padding-left: 100px;
  padding-right: 100px;
}

/********************************/
/************ Grids ***********/
/********************************/
.grid-col-2,
.grid-col-3,
.grid-col-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

/* col2 */
.grid-col-2 > .grid-item {
  width: 50%;
  margin-top: 21px;
}

.grid-col-2 > .grid-item:nth-of-type(1), .grid-col-2 > .grid-item:nth-of-type(2) {
  margin-top: 0;
}

.grid-col-2 > .grid-item:nth-of-type(odd) {
  padding: 0 10.5px 0 0;
}

.grid-col-2 > .grid-item:nth-of-type(even) {
  padding: 0 0 0 10.5px;
}

/* col3 */
.grid-col-3 > .grid-item {
  width: 33.33%;
  margin-top: 21px;
}

.grid-col-3 > .grid-item:nth-of-type(1), .grid-col-3 > .grid-item:nth-of-type(2), .grid-col-3 > .grid-item:nth-of-type(3) {
  margin-top: 0;
}

.grid-col-3 > .grid-item:nth-of-type(3n+1) {
  padding: 0 14px 0 0;
}

.grid-col-3 > .grid-item:nth-of-type(3n+2) {
  padding: 0 7px;
}

.grid-col-3 > .grid-item:nth-of-type(3n) {
  padding: 0 0 0 14px;
}

/* col4 */
.grid-col-4 > .grid-item {
  width: 25%;
  margin-top: 21px;
}

.grid-col-4 > .grid-item:nth-of-type(1), .grid-col-4 > .grid-item:nth-of-type(2), .grid-col-4 > .grid-item:nth-of-type(3), .grid-col-4 > .grid-item:nth-of-type(4) {
  margin-top: 0;
}

.grid-col-4 > .grid-item:nth-of-type(4n + 1) {
  padding: 0 15.75px 0 0;
}

.grid-col-4 > .grid-item:nth-of-type(4n + 2) {
  padding: 0 10.5px 0 5.25px;
}

.grid-col-4 > .grid-item:nth-of-type(4n + 3) {
  padding: 0 5.25px 0 10.5px;
}

.grid-col-4 > .grid-item:nth-of-type(4n) {
  padding: 0 0 0 15.75px;
}

/**********************************/
/************ LAZY LOAD ***********/
/**********************************/
.lazy-img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}

.lazy-img-src {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.lazy-img--bg > .lazy-img-src {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.lazy-img--img > .lazy-img-src {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.lazy-img-src--loaded {
  opacity: 1;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.photo-placeholder--no-size {
  width: 350px;
  height: 200px;
}

.photo-placeholder__icon {
  width: 40px;
  height: 40px;
}

/**************************/
/******** LOADER **********/
/*************************/
.nloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: .5s;
  transition: .5s;
  opacity: 1;
}

.nloader--hidden {
  opacity: 0;
}

.nloader--removed {
  display: none !important;
}

.nloader__icon {
  width: 60px;
  height: 60px;
}

.slider-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #ffffff;
  -webkit-transition: .7s;
  transition: .7s;
  overflow: hidden;
}

.slider-loader--shrinked {
  height: 0;
}

.slider-loader .nloader__icon {
  width: 120px;
  height: 120px;
}

/**************************/
/******** TABLES **********/
/*************************/
table,
table.tablepress {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

table th, table td,
table.tablepress th,
table.tablepress td {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

table th:first-child, table td:first-child,
table.tablepress th:first-child,
table.tablepress td:first-child {
  padding-left: 40px;
  padding-right: 40px;
}

table tr:last-child td,
table.tablepress tr:last-child td {
  padding-bottom: 60px;
}

table td,
table.tablepress td {
  font-size: 1.6rem;
  font-weight: 400;
  color: #73737D;
}

table tbody td, table tfoot th,
table.tablepress tbody td,
table.tablepress tfoot th {
  border-top: 1px solid #e1e1e1;
}

table tfoot th, table thead th,
table.tablepress tfoot th,
table.tablepress thead th {
  font-size: 1.6rem;
  font-weight: 500;
  color: #44444F;
}

table tr,
table.tablepress tr {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: .4s;
  transition: .4s;
}

table tr:hover,
table.tablepress tr:hover {
  background-color: #ffffff;
}

table.tablepress tfoot th, table.tablepress thead th {
  background-color: rgba(255, 255, 255, 0);
}

table.tablepress caption {
  display: none;
}

/**************************/
/******** BUTTONS *******/
/*************************/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  text-decoration: none !important;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn__title {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}

.btn__arrow {
  margin-left: 10px;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: auto;
  height: auto;
  max-width: 25px;
}

.btn:hover .btn__arrow, .btn:focus .btn__arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.btn__icon {
  margin-left: 10px;
  position: relative;
  width: auto;
  height: auto;
  max-width: 25px;
}

.btn--primary {
  border-radius: 60px;
  padding: 20px 30px;
  background-color: #206c6b;
}

.btn--primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  background-color: #005bed;
}

.btn--primary:hover:before, .btn--primary:focus:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.btn--primary .btn__title {
  color: #ffffff;
}

.btn--simple-primary .btn__title {
  color: #206c6b;
}

.btn--simple-white .btn__title {
  color: #ffffff;
}

/**************************/
/******** FANCYBOX *******/
/*************************/
.fancybox-infobar span {
  color: #ffffff !important;
}

/**************************/
/******** SWIPER **********/
/*************************/
.slider-nav {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #206c6b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-nav--white {
  background-color: #ffffff;
}

.slider-nav--white:first-child {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.5;
}

.slider-nav--primary {
  background-color: #206c6b;
}

.slider-nav:hover, .slider-nav:focus {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.slider-nav--next {
  right: 0;
}

.slider-nav--prev {
  left: 0;
}

.slider-nav--prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider-pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-pag--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.slider-pag .swiper-pagination-bullet {
  opacity: 1;
  border: none;
  background: rgba(255, 255, 255, 0);
  padding: 10px;
  width: initial;
  height: initial;
  outline: none !important;
}

.slider-pag .swiper-pagination-bullet > span {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-pag--grey .swiper-pagination-bullet > span {
  border: 1px solid #C7CBD0;
}

.slider-pag--small .swiper-pagination-bullet {
  padding: 10px 7px;
}

.slider-pag--small .swiper-pagination-bullet > span {
  width: 13px;
  height: 13px;
}

.slider-pag .swiper-pagination-bullet:hover > span,
.slider-pag .swiper-pagination-bullet:focus > span,
.slider-pag .swiper-pagination-bullet-active > span {
  background-color: #206c6b;
  border: 2px solid #206c6b;
}

/**************************************/
/********** SITE OVERLAY **************/
/************************************/
.site-overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313235;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.site-overlay--visible {
  opacity: 0.9;
}

/**********************************************/
/*********** SEARCH FORM & ICON **************/
/*********************************************/
.search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #206c6b;
    display: none;
}

.search-icon svg {
  width: auto;
  height: auto;
  max-width: 25px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: inherit;
  transition: inherit;
}

.search-icon:hover, .search-icon:focus {
  background-color: #6da5ff;
}

.search-icon:hover svg, .search-icon:focus svg {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.search-form {
  position: fixed;
  z-index: 210;
  top: -300px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 700px;
  padding: 0 25px;
  -webkit-transition: top .5s;
  transition: top .5s;
}

.search-form--visible {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.search-form__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.search-form__title {
  color: #ffffff;
}

.search-form__close {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #206c6b;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-form__close svg {
  width: auto;
  height: auto;
  max-width: 25px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: inherit;
  transition: inherit;
}

.search-form__close:hover, .search-form__close:focus {
  background-color: #6da5ff;
}

.search-form__close:hover svg, .search-form__close:focus svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.search-form__input {
  font-size: 1.7rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #206c6b;
  border: none;
  width: 80%;
  margin-right: 35px;
  padding: 10px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.search-form__input:focus {
  outline: 2px solid #ffffff;
}

.search-form__input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.search-form__input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.search-form__input::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.search-form__input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.search-form__submit-icon {
  width: auto;
  height: auto;
  max-width: 40px;
  cursor: pointer;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .4s;
  transition: .4s;
}

.search-form__submit-icon:hover, .search-form__submit-icon:focus {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/************************************/
/************ SCROLL DOWN ***********/
/**********************************/
.scroll-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
}

.scroll-down:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0;
  background-color: #206c6b;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: inherit;
  transition: inherit;
}

.scroll-down:hover:before, .scroll-down:focus:before {
  opacity: 0.35;
  -webkit-transform: translate(-50%, -50%) scale(2.5);
          transform: translate(-50%, -50%) scale(2.5);
}

.scroll-down img {
  position: relative;
  width: auto;
  height: auto;
  max-width: 25px;
}

/***********************************/
/*********** MOVIE (MP4) ***********/
/***********************************/
.lazy-movie {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.lazy-movie video {
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.lazy-movie--loaded video {
  opacity: 1;
}

.lazy-movie__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.2)), color-stop(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.movie-controls {
  position: absolute;
  z-index: 3;
  width: 80%;
  left: 10%;
  bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.movie-controls__btn {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.movie-controls__btn-icon-play, .movie-controls__btn-icon-pause {
  width: auto;
  height: auto;
  max-width: 100%;
}

.movie-controls__btn-icon-pause {
  display: none;
}

.movie-controls__btn--playing .movie-controls__btn-icon-play {
  display: none;
}

.movie-controls__btn--playing .movie-controls__btn-icon-pause {
  display: block;
}

.movie-controls__bar {
  width: calc(100% - 100px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.movie-controls__bar-progress {
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 3px;
  background-color: #206c6b;
}

/************************************************/
/*************** POSTS BOXES ********************/
/***********************************************/
.post-box {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.post-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
}

.post-box:hover .post-box__inner,
.post-box:focus .post-box__inner {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  border-color: #206c6b;
}

.post-box__inner-top {
  margin-bottom: 30px;
}

.post-box__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #73737D;
  margin-bottom: 40px;
}

.post-box__date svg {
  width: auto;
  height: auto;
  max-width: 15px;
  margin-left: 15px;
}

.post-box__title {
  font-size: 2.6rem;
  color: #121212;
  margin-bottom: 30px;
}

.post-box__excerpt {
  font-size: 1.6rem;
  color: #73737D;
}

.post-blog {
  display: inline-block;
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-color: #fafafd;
}

.post-blog__top {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.post-blog__top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 40px 60px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}

.post-blog__top-overlay * {
  color: #ffffff;
}

.post-blog__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.post-blog__date svg {
  width: auto;
  height: auto;
  max-width: 25px;
  margin-right: 10px;
}

.post-blog__title {
  font-size: 2.4rem;
}

.post-blog__bottom {
  padding: 15px;
  height: calc(100% - 280px);
}

.post-blog__bottom-inner {
  height: 100%;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
}

.post-blog:hover .post-blog__bottom-inner,
.post-blog:focus .post-blog__bottom-inner {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  border-color: #206c6b;
}

.post-blog__excerpt {
  font-size: 1.8rem;
  color: #121212;
}

.post-blog__excerpt:not(:last-child) {
  margin-bottom: 30px;
}

.post-box-feat {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: #313235;
  position: relative;
}

.post-box-feat > .lazy-img,
.post-box-feat > .photo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-box-feat__widget {
  max-width: 50%;
  height: 100%;
  padding: 10px;
  background-color: #206c6b;
  position: relative;
}

.post-box-feat__widget-fancy {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0.08;
}

.post-box-feat__widget-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,-webkit-transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out;
  transition: border-color .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
}

.post-box-feat:hover .post-box-feat__widget-inner,
.post-box-feat:focus .post-box-feat__widget-inner {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  border-color: #ffffff;
}

.post-box-feat__terms, .post-box-feat__title {
  color: #ffffff;
  margin-bottom: 20px;
}

.post-box-feat__terms {
  font-size: 1.6rem;
}

.post-box-feat__title {
  font-size: 2.4rem;
}

/************************************************/
/*************** PAGINATION ********************/
/***********************************************/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 80px 0 120px 0;
}

.pagination__label {
  font-size: 1.6rem;
  font-weight: 400;
  color: #777c84;
  margin: 0 40px 0 0;
  padding: 10px 0;
}

.pagination .page-numbers {
  background: #a0c5ff;
  margin: 10px 10px 10px 0;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

.pagination .page-numbers.current, .pagination .page-numbers:hover, .pagination .page-numbers:focus {
  background: #206c6b;
}

.pagination .next, .pagination .prev {
  font-size: 1.6rem;
  font-weight: 400;
  color: #777c84;
  border: none;
  background: none;
  padding: 10px 0;
}

.pagination .next:hover, .pagination .next:focus, .pagination .prev:hover, .pagination .prev:focus {
  color: #206c6b;
  background: rgba(255, 255, 255, 0);
}

.pagination .next {
  margin: 0 0 0 40px;
}

.pagination .prev {
  margin: 0 40px 0 0;
}

body.paged .pagination__label {
  display: none;
}

/***********************************/
/*********** SOCIAL MEDIA ***********/
/***********************************/
.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.social-media a {
  display: block;
  padding: 10px;
}

.social-media img {
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-filter: invert(0);
          filter: invert(0);
}

.social-media a:hover > img {
  -webkit-filter: invert(0.5);
          filter: invert(0.5);
}

/***************************************************/
/*********** NEWSLETTER - MAILPOET FORM ***********/
/*************************************************/
.mailpoet_form .mailpoet_checkbox_label {
  font-size: 1.7rem;
  font-weight: 500 !important;
  color: #ffffff;
  text-align: center;
}

.mailpoet_form input[type=checkbox] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  cursor: pointer;
  margin-right: 10px;
}

.mailpoet_form input[type=email] {
  padding: 25px 30px !important;
  border-radius: 30px;
  background-color: #ffffff;
  border: none;
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

.mailpoet_form input[type=email]::-webkit-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
  opacity: 1;
}

.mailpoet_form input[type=email]:-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
  opacity: 1;
}

.mailpoet_form input[type=email]::-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
  opacity: 1;
}

.mailpoet_form input[type=email]::placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000000;
  opacity: 1;
}

.mailpoet_form input[type=submit] {
  background-color: rgba(255, 255, 255, 0);
  border: 3px solid #206c6b !important;
  border-radius: 40px;
  padding: 10px 80px 10px 30px !important;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  height: 100%;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

.mailpoet_form input[type=submit]:hover, .mailpoet_form input[type=submit]:focus {
  background-color: #206c6b;
  color: #ffffff;
}

.mailpoet_form .parsley-errors-list {
  color: #206c6b !important;
  font-weight: 500 !important;
  text-align: center;
}

.mailpoet_form .parsley-errors-list li {
  color: #206c6b !important;
}

.mailpoet_form .mailpoet_paragraph.last {
  position: relative;
}

.mailpoet_form .mailpoet_paragraph.last .parsley-errors-list {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -20px;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}

.mailpoet_form .mailpoet_paragraph.last > .mailpoet_form_column:nth-child(2) > .mailpoet_paragraph {
  position: relative;
  height: 100%;
}

.mailpoet_form .mailpoet_paragraph.last > .mailpoet_form_column:nth-child(2) > .mailpoet_paragraph:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
  width: 50px;
  height: 50px;
  background: url("/wp-content/themes/blank/assets/img/icon-newsletter-submit.svg") no-repeat center;
}

.mailpoet_form.mailpoet_form_successfully_send .mailpoet_validate_success {
  color: #ffffff !important;
}

/***************************************/
/************ FIXED BUTTONS ***********/
/**************************************/
.fx-buttons {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fx-buttons__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff !important;
  padding: 15px 20px;
  border-radius: 3px;
  line-height: 1.3;
  position: relative;
}

.fx-buttons__btn:not(:last-child) {
  margin-right: 20px;
}

.fx-buttons__btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.fx-buttons__btn:hover:before, .fx-buttons__btn:focus:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.fx-buttons__btn--red {
  background-color: #206c6b;
}

.fx-buttons__btn--red:before {
  background-color: #3C3C3C;
}

.fx-buttons__btn--dark {
  background-color: #3C3C3C;
}

.fx-buttons__btn--dark:before {
  background-color: #206c6b;
}

.fx-buttons__btn img {
  width: auto;
  height: auto;
  max-width: 30px;
}

.fx-buttons__btn img:not(:last-child) {
  margin-right: 25px;
}

.fx-buttons__btn img, .fx-buttons__btn span {
  position: relative;
}

/***************************************/
/************ COOKIE NOTICE ***********/
/**************************************/
.cookie-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 7px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .7s;
  transition: .7s;
}

.cookie-notice--visible {
  bottom: 0;
}

.cookie-notice--displayed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cookie-notice__text {
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff;
  margin-right: 25px;
  text-align: center;
}

.cookie-notice__bttns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.cookie-notice__btn {
  padding: 5px 10px;
  background-color: #206c6b;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
}

.cookie-notice__btn:not(:last-child) {
  margin-right: 5px;
}

.cookie-notice__btn:hover, .cookie-notice__btn:focus {
  background-color: #6da5ff;
  color: #ffffff;
}

/**********************************/
/********** SELECTS **************/
/********************************/
.select {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.select__active {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E0E1E3;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  white-space: nowrap;
  overflow: hidden;
}

.select__active:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: calc(100% - 5px);
  background-color: #ffffff;
}

.select__active:after {
  content: '\0221F';
  position: absolute;
  top: 18px;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 1.4rem;
  color: #878686;
  line-height: 1;
}

.select__options-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #E0E1E3;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.select__option {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  padding: 10px 15px;
  background-color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  margin-bottom: 0 !important;
}

.select__option > a {
  display: block;
  width: 100%;
  height: 100%;
  color: #58585E;
}

.select__option:hover, .select__option:focus {
  background-color: #f5f6f8;
}

.select.opened {
  z-index: 2;
}

.select.opened .select__active {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.select.opened .select__options-list {
  display: block;
}

/***********************************/
/*********** SITE FOOTER ***********/
/***********************************/
.sfoot {
  background-color: #f2f2f2;
  padding: 50px 0 70px 0;
}

.sfoot__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0 60px 0;
}

.sfoot__col {
  max-width: 250px;
  margin-right: 120px;
}

.sfoot__col--primary {
  max-width: 300px;
  margin-right: 100px;
}

.sfoot__col-title {
  font-size: 1.6rem;
  color: #cf178c;
  margin-bottom: 20px;
}

.sfoot__col > p {
  font-size: 1.6rem;
  color: #838383;
  margin-bottom: 5px;
}

.sfoot__btm {
  border-top: 1px solid #e3e3e3;
  padding: 50px 0;
  font-size: 1.4rem;
  color: #9C9CA0;
}

.sfoot__btm > * {
  margin-right: 30px;
}

/**************************************/
/************ NAVBAR ****************/
/*************************************/
.navbar {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.navbar .primary-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.navbar .primary-logo > img {
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 80px;
  -webkit-transition: inherit;
  transition: inherit;
}

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

.navbar__right > *:not(:first-child) {
  margin-left: 20px;
}

.navbar .nav-btn {
  padding: 15px 20px;
  border-radius: 30px;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar__menu li {
  position: relative;
}

.navbar__menu li.menu-item-mobile-only {
  display: none;
}

.navbar__menu a {
  font-weight: 500;
  color: #206c6b;
}

.navbar__menu a:hover,
.navbar__menu a:focus,
.navbar__menu li.current-menu-item > a,
.navbar__menu li.current-page-ancestor > a {
  color: #206c6b;
}

.navbar__menu > li {
  margin: 0 20px;
}

.navbar__menu > li > a {
  font-size: 1.7rem;
  display: inline-block;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .4s;
  transition: .4s;
}

.navbar__menu > li > a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A4A4A4;
  opacity: 0.3;
  -webkit-transition: inherit;
  transition: inherit;
}

.navbar__menu > li:hover > a:after,
.navbar__menu > li.current-menu-item > a:after,
.navbar__menu > li.current-page-ancestor > a:after {
  background-color: #cf178c;
  opacity: 1;
}

.navbar__menu > li.menu-item-has-children > a {
  padding-right: 15px;
}

.navbar__menu > li.menu-item-has-children > a:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("/wp-content/themes/blank/assets/img/arrow-expand.svg") no-repeat center;
}

.navbar__menu > li.menu-item-has-children:hover > a:before,
.navbar__menu > li.menu-item-has-children.current-menu-item > a:before,
.navbar__menu > li.menu-item-has-children.current-page-ancestor > a:before {
  background: url("/wp-content/themes/blank/assets/img/arrow-expand-primary.svg") no-repeat center;
}

.navbar__menu .sub-menu {
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #ffffff;
  padding: 20px 0;
  -webkit-box-shadow: 0px 15px 14px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 15px 14px rgba(0, 0, 0, 0.21);
  opacity: 0;
  pointer-events: none;
}

.navbar__menu > li > .sub-menu a {
  display: block;
  min-width: 250px;
  padding: 5px 20px 5px 70px;
  position: relative;
  font-size: 1.5rem;
}

.navbar__menu > li > .sub-menu a:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 2rem;
  left: 40px;
  width: 15px;
  height: 1px;
  background-color: #A4A4A4;
}

.navbar__menu > li > .sub-menu {
  z-index: 2;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
}

.navbar__menu > li:hover > .sub-menu,
.navbar__menu > li:focus > .sub-menu {
  opacity: 1;
  pointer-events: initial;
  -webkit-transform: translate(-50%, -20px);
          transform: translate(-50%, -20px);
}

.navbar__menu > li > .sub-menu > li.menu-item-has-children > a:after {
  content: '>';
  margin-left: 5px;
}

.navbar__menu > li > .sub-menu > li > .sub-menu {
  top: 50%;
  right: 0;
  -webkit-transform: translate(110%, -50%);
          transform: translate(110%, -50%);
}

.navbar__menu > li > .sub-menu > li:hover > .sub-menu,
.navbar__menu > li > .sub-menu > li:focus > .sub-menu {
  opacity: 1;
  pointer-events: initial;
  -webkit-transform: translate(90%, -50%);
          transform: translate(90%, -50%);
}

.navbar--shrinked .navbar__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar--shrinked .primary-logo > img {
  max-height: 60px;
}

.navbar--shrinked .navbar__menu > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar--shrinked .navbar__menu > li > a:after {
  bottom: 10px;
}

.navbar--shrinked .navbar__menu > li > .sub-menu {
  top: calc(100% + 10px);
}

/*******************************/
/************ HERO ************/
/*****************************/
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.hero__swiper {
  height: 100%;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.hero__slide {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__slide .nloader__icon {
  width: 120px;
  height: 120px;
}

.hero__overlay {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: rgba(60, 60, 60, 0.41);
  padding: 250px 25px 150px 25px;
}

.hero__text {
  max-width: 1000px;
  text-align: center;
}

.hero__text * {
  color: #ffffff;
}

.hero__title, .hero__btn {
  position: relative;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  opacity: 0;
  -webkit-transition: opacity .4s, -webkit-transform .7s;
  transition: opacity .4s, -webkit-transform .7s;
  transition: transform .7s, opacity .4s;
  transition: transform .7s, opacity .4s, -webkit-transform .7s;
}

.hero__title {
  font-size: 6.2rem;
  letter-spacing: -0.03em;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.hero__btn {
  margin-top: 50px;
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}

.hero .swiper-slide-active .hero__title, .hero .swiper-slide-active .hero__btn, .hero .swiper-slide-active .hero__scroll {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 2;
}

.hero__scroll .scroll-down {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hero__scroll .scroll-down svg {
  max-width: 35px;
}

.hero__slider-pag {
  position: absolute;
  z-index: 2;
  left: calc( ((100vw - 1550px) / 2) + 25px);
  bottom: 245px;
}

.hero .slider-loader {
  background-color: #313235;
}

/**************************************/
/************ HEADER BANNER ************/
/*************************************/
.h-banner {
  position: relative;
  background-color: #313235;
}

.h-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.h-banner__overlay {
  position: relative;
  padding-top: 265px;
  padding-bottom: 120px;
  background-color: rgba(60, 60, 60, 0.41);
}

.h-banner__text * {
  color: #ffffff;
}

.h-banner__text-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.9rem;
  font-weight: 500;
  color: #ffffff;
}

.h-banner__text-date svg {
  width: auto;
  height: auto;
  max-width: 15px;
  margin-right: 15px;
}

.h-banner__text-title {
  max-width: 1000px;
}

.h-banner__text-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.h-banner__text-sub *:not(:first-child) {
  margin-left: 20px;
}

.breadcrumbs {
  font-size: 1.9rem;
  font-weight: 500;
  color: #ffffff;
}

.breadcrumbs a {
  margin-right: 10px;
}

.breadcrumbs span:nth-child(2) {
  margin-left: 10px;
}

/********************************/
/********* JUMBOTRON ***********/
/******************************/
.jumbotron {
  max-width: 1250px;
  margin: 0 auto 70px auto;
  text-align: center;
}

.jumbotron__icon {
  width: 120px;
  height: 120px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.jumbotron__icon:not(:last-child) {
  margin-bottom: 20px;
}

.jumbotron__icon:before {
  content: '';
  background-color: #206c6b;
  opacity: 0.05;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.jumbotron__icon:hover:before {
  height: 100%;
}

.jumbotron__icon .lazy-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.jumbotron__icon .lazy-img-src {
  max-width: 80px;
}

.jumbotron__title {
  font-size: 5.2rem;
}

.jumbotron__title:not(:last-child) {
  margin-bottom: 50px;
}

.jumbotron__intro {
  font-size: 2.4rem;
}

/*******************************/
/********** BURGER ************/
/******************************/
.burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-left: 20px;
}

.burger__bar {
  position: relative;
  top: 45%;
  width: 20px;
  height: 4px;
  background: #206c6b;
  -webkit-transition: .5s;
  transition: .5s;
}

.burger__bar:before, .burger__bar:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: #206c6b;
  -webkit-transition: .5s;
  transition: .5s;
}

.burger__bar:before {
  top: -10px;
}

.burger__bar:after {
  top: 10px;
}

.burger--active .burger__bar {
  background: transparent;
}

.burger--active .burger__bar:before,
.burger--active .burger__bar:after {
  top: 0;
}

.burger--active .burger__bar:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger--active .burger__bar:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/***********************************/
/********** MOBILE MENU ************/
/**********************************/
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  max-width: 500px;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 90;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background-color: #313235;
}

.mobile-menu--visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu__inner {
  padding: 50px;
  padding-top: 175px;
  margin: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mobile-menu .nav-btn {
  display: none;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 30px;
}

.mobile-menu__menu-title {
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 25px;
}

.mobile-menu__nav:not(:last-child) {
  margin-bottom: 50px;
}

.mobile-menu__nav li {
  color: #ffffff;
}

.mobile-menu__nav a {
  display: inline-block;
  position: relative;
  color: #ffffff;
}

.mobile-menu__nav > li > a {
  padding: 0 0 10px 30px;
}

.mobile-menu__nav > li.menu-item-has-children > a::before {
  content: '\025B8';
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 2.4rem;
  font-weight: 300;
  color: inherit;
}

.mobile-menu__nav > li > a {
  font-size: 2.6rem;
  color: inherit;
}

.mobile-menu__nav > li > .sub-menu {
  margin-left: 20px;
  overflow: hidden;
  height: 0;
  -webkit-transition: height .5s;
  transition: height .5s;
}

.mobile-menu__nav .sub-menu li > a {
  font-size: 1.8rem;
  padding: 0 0 5px 15px;
  color: inherit;
}

.mobile-menu__nav .sub-menu li > a:before {
  content: '\000AC';
  position: absolute;
  left: 0;
  top: 5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 1.5rem;
  font-weight: 300;
  color: inherit;
}

.mobile-menu__nav .sub-menu li:last-child > a {
  padding: 0 0 15px 15px;
}

.mobile-menu__nav > li > .sub-menu > li > .sub-menu {
  padding-left: 15px;
}

.mobile-menu__nav > li.current-menu-item,
.mobile-menu__nav > li.current-menu-ancestor,
.mobile-menu__nav .sub-menu li.current-menu-item,
.mobile-menu__nav li:hover {
  color: #206c6b;
}

/*****************************/
/********* COMMON ***********/
/***************************/
.sec-title {
  margin-bottom: 50px;
  text-align: center;
}

.sec-footer {
  margin-top: 60px;
  text-align: center;
}

.header-sec > .cont-y-grey {
  padding-top: 40px;
  padding-bottom: 40px;
}

/****************************/
/********* INTRO ***********/
/**************************/
.intro p:first-child strong {
  font-size: 2.6rem;
  font-weight: 500;
  color: #46464E;
}

/***********************************/
/********* BASIC ATICLE ***********/
/*********************************/
.art--text-lg {
  font-size: 2.4rem;
}

.art--centered {
  text-align: center;
}

.art--cont-small {
  max-width: 1050px;
}

.art .wp-editor:not(:last-child) {
  margin-bottom: 60px;
}

/******************************/
/********* COLUMNS ***********/
/****************************/
.cols__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.cols--reversed .cols__grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.cols__col-text, .cols__col-img {
  width: 50%;
}

.cols__col-text {
  padding: 50px 90px 50px 125px;
}

.cols__text:not(:last-child) {
  margin-bottom: 60px;
}

.cols__text p strong {
  font-size: 2.4rem;
  font-weight: 500;
  color: #46464E;
}

.cols--reversed .cols__col-text {
  padding: 50px 125px 50px 90px;
}

.cols__col-img .lazy-img {
  text-align: right;
}

.cols__col-img:only-child .lazy-img {
  text-align: center;
}

.cols__col-img .lazy-img-src {
  max-height: 650px;
}

.cols--reversed .cols__col-img .lazy-img {
  text-align: left;
}

/*************************************/
/********* GALLERY SLIDER ***********/
/************************************/
.gallery__slider {
  position: relative;
}

.gallery__right-cont {
  overflow: hidden;
}

.gallery__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.gallery .slider-pag {
  max-width: 50%;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.gallery__swiper {
  height: 450px;
  position: relative;
}

.gallery__swiper:before, .gallery__swiper:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
}

.gallery__swiper:before {
  width: 125px;
  left: -125px;
  background-color: #fafafd;
}

.gallery__swiper:after {
  width: 200px;
  right: -125px;
  background-image: -webkit-gradient(linear, right top, left top, from(#FAFAFD), to(rgba(250, 250, 253, 0)));
  background-image: linear-gradient(270deg, #FAFAFD 0%, rgba(250, 250, 253, 0) 100%);
  opacity: 0.8;
}

.gallery__slide {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.gallery__slide-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery__slide-lightbox:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: rgba(58, 134, 255, 0.5);
}

.gallery__slide-glass {
  width: auto;
  height: auto;
  max-width: 15%;
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 600px);
          transform: translate(-50%, 600px);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.gallery__slide-lightbox:hover:before {
  height: 100%;
}

.gallery__slide-lightbox:hover .gallery__slide-glass {
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.gallery__slide .nloader {
  background-color: #ffffff;
}

/***************************************/
/********* BRICKS EXPANDING ***********/
/*************************************/
.bricks-exp {
  position: relative;
  z-index: 2;
}

.bricks-exp .grid-col-3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bricks-exp .grid-col-3 > .grid-item {
  position: relative;
}

.bricks-exp .grid-col-3 > .grid-item:hover {
  z-index: 2;
}

.bricks-exp__brick {
  position: relative;
  height: 500px;
}

.bricks-exp__brick * {
  color: #ffffff;
}

.bricks-exp__brick-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.bricks-exp__brick-bg .lazy-img {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: scale(1) rotate(0.001deg);
          transform: scale(1) rotate(0.001deg);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.bricks-exp__brick:hover .bricks-exp__brick-bg .lazy-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bricks-exp__brick-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  padding: 50px 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 48, 48, 0)), to(rgba(48, 48, 48, 0.62)));
  background-image: linear-gradient(rgba(48, 48, 48, 0), rgba(48, 48, 48, 0.62));
}

.bricks-exp__brick-icon {
  width: 100px;
  height: 100px;
  position: relative;
}

.bricks-exp__brick-icon:not(:last-child) {
  margin-bottom: 30px;
}

.bricks-exp__brick-icon:before {
  content: '';
  background-color: #206c6b;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.bricks-exp__brick-icon .lazy-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.bricks-exp__brick-icon .lazy-img-src {
  max-width: 60px;
}

.bricks-exp__brick-uptitle {
  font-size: 2.1rem;
  font-weight: 500;
}

.bricks-exp__brick-title {
  font-size: 3.8rem;
}

.bricks-exp__brick-title:not(:last-child) {
  margin-bottom: 30px;
}

.bricks-exp__cover {
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 10px solid #206c6b;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.bricks-exp__brick:hover .bricks-exp__cover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: initial;
}

.bricks-exp__links {
  position: absolute;
  left: -10px;
  bottom: 10px;
  width: calc(100% + 20px);
  background-color: #206c6b;
  padding: 50px 20px 50px 60px;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.bricks-exp__links-link {
  position: relative;
  padding-left: 50px;
}

.bricks-exp__links-link:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 25px;
  height: 1px;
  background-color: #ffffff;
}

.bricks-exp__brick:hover .bricks-exp__links {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 1;
  pointer-events: initial;
}

/*****************************/
/********* MOSAIC ***********/
/***************************/
.mosaic {
  padding-left: 15px;
  padding-right: 15px;
}

.mosaic__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.mosaic__grid-item {
  width: 33.33%;
  padding: 10px;
}

.mosaic__grid-item:nth-child(5n+4), .mosaic__grid-item:nth-child(5n) {
  width: 50%;
}

.mosaic__grid-item:nth-child(5n+4) .mosaic__brick, .mosaic__grid-item:nth-child(5n) .mosaic__brick {
  height: 450px;
}

.mosaic__brick {
  position: relative;
  height: 500px;
}

.mosaic__brick-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.mosaic__brick-bg .lazy-img {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: scale(1) rotate(0.001deg);
          transform: scale(1) rotate(0.001deg);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.mosaic__brick:hover .mosaic__brick-bg .lazy-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mosaic__brick-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  padding: 30px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.mosaic__brick-title {
  font-size: 3.8rem;
  color: #ffffff;
}

.mosaic__brick-title:not(:last-child) {
  margin-bottom: 30px;
}

.mosaic__cover {
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 10px solid #206c6b;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.mosaic__brick:hover .mosaic__cover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: initial;
}

/*************************************/
/********* BRICKS BUTTONS ***********/
/***********************************/
.bricks-btns .grid-col-2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bricks-btns__item {
  height: 100%;
  position: relative;
}

.bricks-btns__item > .lazy-img,
.bricks-btns__item > .photo-placeholder {
  position: absolute;
  left: 0;
  top: 0;
}

.bricks-btns__overlay {
  height: 100%;
  position: relative;
  padding: 220px 20px 80px 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(74, 74, 74, 0.3)), color-stop(rgba(74, 74, 74, 0.5)), to(rgba(0, 0, 0, 0.75)));
  background-image: linear-gradient(rgba(74, 74, 74, 0.3), rgba(74, 74, 74, 0.5), rgba(0, 0, 0, 0.75));
}

.bricks-btns__content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.bricks-btns__content > *:not(:last-child) {
  margin-bottom: 40px;
}

.bricks-btns__title, .bricks-btns__text {
  color: #ffffff;
}

.bricks-btns__text {
  font-size: 1.8rem;
  font-weight: 500;
}

/************************************/
/********* BRICKS SLIDER ***********/
/**********************************/
.bricks-sl__slider {
  position: relative;
}

.bricks-sl__slider-swiper {
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.bricks-sl__slider-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bricks-sl__slide {
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bricks-sl__col-content, .bricks-sl__col-img {
  height: 100%;
}

.bricks-sl__col-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 80px 60px 80px 120px;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #EBEAEA;
  -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
}

.bricks-sl__col-content-title {
  font-size: 2.7rem;
  font-weight: 500;
}

.bricks-sl__col-content-title:not(:last-child) {
  margin-bottom: 40px;
}

.bricks-sl__col-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3px;
}

/*********************************/
/********* FILES LIST ***********/
/*******************************/
.files__sec-title {
  margin-bottom: 50px;
}

.files__item {
  border-top: 1px solid #ECECEF;
}

.files__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  position: relative;
}

.files__item-link:before {
  content: '';
  position: absolute;
  left: -20px;
  height: 100%;
  width: 0;
  background-color: #206c6b;
  opacity: 0.05;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.files__item-link:hover:before, .files__item-link:focus:before {
  width: calc(100% + 40px);
}

.files__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
  position: relative;
}

.files__item-icon {
  width: auto;
  height: auto;
  max-width: 20px;
}

.files__item-name {
  margin-left: 30px;
  font-size: 1.9rem;
  color: #73737D;
}

.files .btn {
  position: relative;
}

/************************************/
/************* TABLE ***************/
/**********************************/
.table__title {
  margin-bottom: 50px;
}

.table__scroll-cont {
  overflow-x: auto;
}

.table__scroll-cont > div {
  min-width: 992px;
}

.table__sub-text {
  margin-top: 30px;
}

/************************************/
/********* MOVIE SECTION ***********/
/**********************************/
.movie__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.movie__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.33% - 20px);
  margin-right: 20px;
  background-color: #fafafd;
  padding: 70px;
  height: auto;
}

.movie__header-tag {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  padding: 10px;
  border-radius: 3px;
  background-color: #206c6b;
}

.movie__header-tag:not(:last-child) {
  margin-bottom: 50px;
}

.movie__player {
  height: 560px;
  width: 66.66%;
  background-color: #fafafd;
}

/********************************/
/********* ACCORDION ***********/
/******************************/
.acco__sec-title {
  margin-bottom: 50px;
}

.acco__row {
  border-bottom: 1px solid rgba(144, 144, 144, 0.25);
}

.acco__row:last-child {
  border-bottom: none;
}

.acco__row-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}

.acco__row-header:before {
  content: '';
  position: absolute;
  left: -20px;
  height: 100%;
  width: 0;
  background-color: #206c6b;
  opacity: 0.05;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.acco__row-header:hover:before, .acco__row-header:focus:before {
  width: calc(100% + 40px);
}

.acco__row-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.acco__row-header-icon {
  width: auto;
  height: auto;
  max-width: 20px;
}

.acco__row-header-title {
  font-size: 1.9rem;
  font-weight: 400;
  color: #6B6B6D;
}

.acco__row-header-title:not(:first-child) {
  margin-left: 20px;
}

.acco__row--expanded .acco__row-header-title {
  color: #000000;
}

.acco__toggle-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  color: #206c6b;
}

.acco__toggle-btn svg {
  margin-left: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .4s;
  transition: .4s;
}

.acco__toggle-btn-hide {
  display: none;
}

.acco__row--expanded .acco__toggle-btn-hide {
  display: inline;
}

.acco__row--expanded .acco__toggle-btn-expand {
  display: none;
}

.acco__row--expanded .acco__toggle-btn svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.acco__row-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
}

.acco__row--no-trans .acco__row-content {
  -webkit-transition: none;
  transition: none;
}

.acco__row-layouts-item:not(:last-child) {
  margin-bottom: 30px;
}

.acco__row-layouts-item:first-child {
  padding-top: 30px;
}

.acco__row-layouts-item:last-child {
  padding-bottom: 60px;
}

.acco__table {
  overflow-x: auto;
}

.acco__table > div {
  min-width: 992px;
}

.acco__boxes-box {
  padding: 40px;
  height: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
  border-radius: 3px;
  position: relative;
}

.acco__boxes-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #206c6b;
  opacity: 0.05;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.acco__boxes-box:hover:before, .acco__boxes-box:focus:before {
  width: 100%;
}

.acco__boxes-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #73737D;
  position: relative;
}

.acco__boxes-title:not(:last-child) {
  margin-bottom: 20px;
}

.acco__boxes-text {
  font-size: 2.1rem;
  font-weight: 500;
  color: #212223;
  position: relative;
  letter-spacing: -0.03em;
}

.acco__boxes-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********************************/
/********* FORM SECTION ***********/
/**********************************/
.form__box {
  background-color: #ffffff;
  border: 1px solid #206c6b;
  -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.form__title {
  margin-bottom: 40px;
}

/*********************************/
/********* MAP IFRAME ***********/
/*******************************/
.map__text {
  padding-top: 80px;
  padding-bottom: 80px;
  border: 1px solid #EBEAEA;
  -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.map__col-iframe > iframe {
  height: 100% !important;
  width: 100% !important;
}

/*********************************/
/********* NEWS SLIDER ***********/
/*******************************/
.news-slider {
  background-color: #fafafd;
}

.news-slider .cont-x-inner-slider {
  position: relative;
}

.news-slider__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.news-slider__feat {
  width: calc(50% - 10px);
  margin-right: 10px;
  background-color: #206c6b;
  height: auto;
}

.news-slider__feat:only-child {
  width: 50%;
  margin-right: 0;
}

.news-slider__swiper {
  width: calc(50% - 10px);
  margin-left: 10px;
  overflow: hidden;
}

.news-slider__swiper:only-child {
  width: 50%;
  margin-left: 0;
}

.news-slider__slider-pag {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*****************************/
/********* BANNER ***********/
/***************************/
.banner__body {
  position: relative;
}

.banner__body > .lazy-img,
.banner__body > .photo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner__overlay {
  position: relative;
  height: 100%;
  padding-top: 125px;
  padding-bottom: 125px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 60, 60, 0.8)), color-stop(rgba(60, 60, 60, 0.7)), color-stop(rgba(60, 60, 60, 0.3)), to(rgba(60, 60, 60, 0.2)));
  background-image: linear-gradient(to right, rgba(60, 60, 60, 0.8), rgba(60, 60, 60, 0.7), rgba(60, 60, 60, 0.3), rgba(60, 60, 60, 0.2));
}

.banner__title, .banner__text {
  color: #ffffff;
  max-width: 600px;
}

.banner__title:not(:last-child), .banner__text:not(:last-child) {
  margin-bottom: 30px;
}

.banner__title {
  font-size: 5.6rem;
}

.banner__text {
  font-size: 2.1rem;
  font-weight: 500;
}

/***************************************/
/********* ANIMATED NUMBERS ***********/
/*************************************/
.numbers__header {
  max-width: 900px;
  text-align: center;
  margin-bottom: 80px;
}

.numbers__header-title:not(:last-child) {
  margin-bottom: 40px;
}

.numbers__header-intro {
  font-size: 2.4rem;
}

.numbers__bricks {
  height: 150px;
  position: relative;
  z-index: 2;
}

.numbers__bricks-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.numbers__brick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  background-color: #206c6b;
  padding: 60px 20px;
  border-radius: 3px;
}

.numbers__brick * {
  color: #ffffff;
}

.numbers__brick-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.numbers__brick-icon {
  width: 100px;
  min-width: 100px;
  height: 100px;
  position: relative;
}

.numbers__brick-icon:before {
  content: '';
  background-color: #FAEEF1;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.numbers__brick-icon .lazy-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.numbers__brick-icon .lazy-img-src {
  max-width: 80px;
}

.numbers__brick:hover .numbers__brick-icon:before {
  height: 100%;
}

.numbers__brick-num {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  min-width: 155px;
  text-align: center;
}

.numbers__brick-num-val {
  font-size: 5.8rem;
}

.numbers__brick-num-unit {
  font-size: 2.8rem;
}

.numbers__brick-text {
  font-size: 1.9rem;
  font-weight: 500;
  max-width: 170px;
}

.numbers__brick-text:nth-child(2) {
  margin-left: 50px;
}

.numbers__slider {
  height: 670px;
  position: relative;
}

.numbers__slider-swiper {
  height: 100%;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.numbers__slider-slide {
  height: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.numbers__slider-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.numbers__slider-pag {
  position: absolute;
  z-index: 2;
  left: calc( ((100vw - 1550px) / 2) + 25px);
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

/************************************/
/********* ASSETS SLIDER ***********/
/**********************************/
.assets__slider {
  position: relative;
  height: 280px;
}

.assets__slider-swiper {
  height: 100%;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.assets__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
  padding: 30px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
}

.assets__slide-icon {
  width: 120px;
  height: 120px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.assets__slide-icon:before {
  content: '';
  background-color: #206c6b;
  opacity: 0.05;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.assets__slide-icon img {
  width: auto;
  height: auto;
  max-width: 80px;
  position: relative;
}

.assets__slide:hover .assets__slide-icon:before {
  height: 100%;
}

.assets__slide-sub {
  font-size: 1.9rem;
  font-weight: 500;
  color: #303235;
  max-width: 270px;
}

.assets__slide .nloader {
  background-color: #ffffff;
}

/************************************/
/********* PARTNERS SLIDER *********/
/**********************************/
.partners__title {
  text-align: center;
  margin-bottom: 50px;
}

.partners__slider {
  position: relative;
}

.partners__swiper {
  height: 200px;
  overflow: hidden;
}

.partners__slide {
  height: 100%;
  border: 2px solid #E6E6E6;
  border-radius: 3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners__slide:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: #206c6b;
  opacity: 0.05;
}

.partners__slide:hover:before {
  height: 100%;
}

.partners__slide-logo {
  width: auto;
  height: auto;
  max-width: 75%;
  position: relative;
}

.partners__slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.partners__slide .nloader {
  background-color: #ffffff;
}

.partners .slider-nav {
  top: calc(100px - 30px);
}

.partners .slider-pag {
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

/*************************************/
/********* TIMELINE SLIDER ***********/
/************************************/
.timeline__slider {
  position: relative;
}

.timeline__right-cont {
  overflow: hidden;
}

.timeline__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.timeline .slider-pag {
  max-width: 50%;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.timeline__swiper {
  position: relative;
  cursor: -webkit-grab;
  cursor: grab;
}

.timeline__swiper:before, .timeline__swiper:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
}

.timeline__swiper:before {
  width: 125px;
  left: -125px;
  background-color: #fafafd;
}

.timeline__swiper:after {
  width: 200px;
  right: -125px;
  background-image: -webkit-gradient(linear, right top, left top, from(#FAFAFD), to(rgba(250, 250, 253, 0)));
  background-image: linear-gradient(270deg, #FAFAFD 0%, rgba(250, 250, 253, 0) 100%);
  opacity: 0.8;
}

.timeline__slide {
  padding: 50px 40px 40px 50px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.02);
  border-radius: 3px;
  height: auto;
  position: relative;
}

.timeline__slide:after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 70px;
  height: 2px;
  width: calc(100% + 20px);
  background: url("/wp-content/themes/blank/assets/img/dotted-line.svg") repeat center;
  opacity: 0.5;
}

.timeline__slide.swiper-slide-active:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background-color: #ffffff;
  z-index: 3;
}

.timeline__slide-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  padding: 0 25px;
  position: relative;
  left: -25px;
  z-index: 3;
}

.timeline__slide-icon {
  width: auto;
  height: auto;
  max-width: 20px;
}

.timeline__slide-title {
  margin-left: 15px;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
}

.timeline__slide-text {
  margin-top: 40px;
  font-size: 1.7rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

/*******************************************/
/********* SOCIAL MEDIA SECTION ***********/
/*****************************************/
.social-media-sec {
  margin-bottom: 0 !important;
}

.social-media-sec__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.social-media-sec__item {
  width: 25%;
  margin-bottom: 60px;
}

.social-media-sec__item:nth-of-type(4n + 1) {
  padding: 0 3.75em 0 0;
}

.social-media-sec__item:nth-of-type(4n + 2) {
  padding: 0 2.5em 0 1.25em;
}

.social-media-sec__item:nth-of-type(4n + 3) {
  padding: 0 1.25em 0 2.5em;
}

.social-media-sec__item:nth-of-type(4n) {
  padding: 0 0 0 3.75em;
}

.social-media-sec__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-media-sec__item:nth-child(4n+2) > a, .social-media-sec__item:nth-child(4n+3) > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-media-sec__item:nth-child(4n) > a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.social-media-sec__item-icon {
  width: 60px;
  height: 60px;
  background-color: #f3f3f3;
  -webkit-transition: inherit;
  transition: inherit;
}

.social-media-sec__item-icon:not(:only-child) {
  margin-right: 15px;
}

.social-media-sec__item-icon .lazy-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-media-sec__item-icon .lazy-img img {
  max-width: 80%;
}

.social-media-sec__item:hover .social-media-sec__item-icon {
  background-color: #dadada;
}

.social-media-sec__item-name {
  line-height: 1.1;
  -webkit-transition: .4s;
  transition: .4s;
}

.social-media-sec__item:hover .social-media-sec__item-name {
  color: #206c6b;
}

.social-media-sec__item-name-profile {
  font-size: 1.6rem;
  color: #676767;
}

.wpcf7-form {
  /* gdpr checkbox */
  /* submit */
  /* validation */
  /* turn off text validation and use colors instead */
  /* text validation only on checkbox acceptance: */
}

.wpcf7-form .cf-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.wpcf7-form .cf-cols__col {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}

.wpcf7-form .cf-cols__col:nth-child(odd) {
  padding-right: 25px;
}

.wpcf7-form .cf-cols__col:nth-child(even) {
  padding-left: 25px;
}

.wpcf7-form .cf-cols__col:nth-child(1), .wpcf7-form .cf-cols__col:nth-child(2) {
  margin-top: 0 !important;
}

.wpcf7-form .cf-cols__col > span {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 0;
}

.wpcf7-form .cf-cols__col > span.your-acceptance {
  margin-top: 35px;
}

.wpcf7-form input, .wpcf7-form textarea {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  display: block;
  width: 100%;
  padding: 15px 15px 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #E0E1E3;
  background-color: transparent;
}

.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  border-bottom: 1px solid #206c6b;
  outline: none;
}

.wpcf7-form input::-webkit-input-placeholder, .wpcf7-form textarea::-webkit-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  opacity: 1;
}

.wpcf7-form input:-ms-input-placeholder, .wpcf7-form textarea:-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  opacity: 1;
}

.wpcf7-form input::-ms-input-placeholder, .wpcf7-form textarea::-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  opacity: 1;
}

.wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #58585E;
  opacity: 1;
}

.wpcf7-form span.your-message {
  display: block;
  width: 100%;
}

.wpcf7-form textarea {
  height: auto;
  resize: none;
  max-height: 178px;
}

.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item > label > span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #73737D;
  padding-left: 10px;
}

.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item > label > input {
  display: initial;
  color: #ffffff;
  cursor: pointer;
  width: auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.wpcf7-form .cf-submit-wrap {
  display: inline-block;
  position: relative;
  margin-top: 25px;
}

.wpcf7-form .cf-submit-wrap:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
  width: 50px;
  height: 50px;
  background: url("/wp-content/themes/blank/assets/img/icon-form-submit.svg") no-repeat center;
}

.wpcf7-form .wpcf7-submit {
  background-color: #ffffff;
  border: 3px solid #206c6b;
  border-radius: 40px;
  padding: 10px 80px 10px 30px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000000;
  width: auto;
  height: 70px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

.wpcf7-form .wpcf7-submit:hover, .wpcf7-form .wpcf7-submit:focus {
  background-color: #313235;
  color: #ffffff;
}

.wpcf7-form .wpcf7-not-valid-tip {
  display: none;
  color: #206c6b;
}

.wpcf7-form .selectric-wrapper + .wpcf7-not-valid-tip {
  display: block;
}

.wpcf7-form .wpcf7-acceptance + .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-checkbox + .wpcf7-not-valid-tip {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
}

.wpcf7-form .wpcf7-response-output {
  text-align: center;
  padding: 15px;
  margin: 0 !important;
  font-size: 1.7rem;
  font-weight: 500;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  color: #d7181f;
  border: 2px solid #d7181f !important;
  border-radius: 3px;
}

.wpcf7-form.sent .wpcf7-response-output {
  color: #3CA442;
  border: 2px solid #3CA442 !important;
  border-radius: 3px;
}

.wpcf7-form input[type="text"].wpcf7-not-valid,
.wpcf7-form input[type="email"].wpcf7-not-valid,
.wpcf7-form input[type="tel"].wpcf7-not-valid,
.wpcf7-form input[type="url"].wpcf7-not-valid,
.wpcf7-form input[type="number"].wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
  border-right: 10px solid #d7181f;
}

/***********************************/
/*********** WCAG CONTROLS *********/
/***********************************/
.wcag {
  position: fixed;
  z-index: 80;
  right: 0;
  top: 20vh;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.wcag.hidden {
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
}

.wcag__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  margin-bottom: 10px;
  background-color: #206c6b;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
    display: none;
}

.wcag__control:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  background-color: #3C3C3C;
}

.wcag__control:hover:before, .wcag__control:focus:before, .wcag__control.active:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.wcag__control svg {
  width: 50%;
  height: 50%;
  position: relative;
}

body.mobile .wcag__control:hover:before, body.mobile .wcag__control:focus:before {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

body.mobile .wcag__control.active:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/********************************/
/******** WCAG EFFECTS *********/
/******************************/
html.wcag-text {
  font-size: 70%;
}

html.wcag-contrast body {
  background-color: #000000;
}

html.wcag-contrast body * {
  color: #ffffff !important;
}

html.wcag-contrast .cont-y-grey {
  background-color: #1a1a1a;
}

html.wcag-contrast .btn--radius-white {
  background-color: #000000;
}

html.wcag-contrast .navbar {
  background-color: #313235;
}

html.wcag-contrast .navbar__inner {
  border-bottom: none;
}

html.wcag-contrast .navbar .primary-logo > img {
  -webkit-filter: invert(1) grayscale(1) brightness(2);
          filter: invert(1) grayscale(1) brightness(2);
}

html.wcag-contrast .navbar__menu .sub-menu {
  background-color: #313235;
}

html.wcag-contrast .navbar__menu a:hover,
html.wcag-contrast .navbar__menu a:focus,
html.wcag-contrast .navbar__menu li.current-menu-item > a,
html.wcag-contrast .navbar__menu li.current-page-ancestor > a {
  color: #206c6b !important;
}

html.wcag-contrast .navbar__menu > li.menu-item-has-children > a:before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

html.wcag-contrast .navbar .social-media img {
  -webkit-filter: invert(1) brightness(2);
          filter: invert(1) brightness(2);
}

html.wcag-contrast .hero__overlay {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.7);
}

html.wcag-contrast .post-box {
  background-color: #313235;
}

html.wcag-contrast .news-slider {
  background-color: #1a1a1a;
}

html.wcag-contrast .bricks-btns__overlay {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.7);
}

html.wcag-contrast .gallery__swiper:before {
  background-color: #1a1a1a;
}

html.wcag-contrast .timeline__swiper:before {
  background-color: #1a1a1a;
}

html.wcag-contrast .timeline__swiper:after {
  background-image: none;
}

html.wcag-contrast .timeline__slide {
  background-color: #313235;
}

html.wcag-contrast .timeline__slide.swiper-slide-active:before {
  background-color: #313235;
}

html.wcag-contrast .timeline__slide-header {
  background-color: #313235 !important;
}

html.wcag-contrast .bricks-sl__col-content-inner {
  background-color: #313235;
}

html.wcag-contrast .movie__header {
  background-color: #313235;
}

html.wcag-contrast .wpcf7-form input, html.wcag-contrast .wpcf7-form textarea {
  color: #ffffff;
}

html.wcag-contrast .wpcf7-form input::-webkit-input-placeholder, html.wcag-contrast .wpcf7-form textarea::-webkit-input-placeholder {
  color: #ffffff;
}

html.wcag-contrast .wpcf7-form input:-ms-input-placeholder, html.wcag-contrast .wpcf7-form textarea:-ms-input-placeholder {
  color: #ffffff;
}

html.wcag-contrast .wpcf7-form input::-ms-input-placeholder, html.wcag-contrast .wpcf7-form textarea::-ms-input-placeholder {
  color: #ffffff;
}

html.wcag-contrast .wpcf7-form input::placeholder, html.wcag-contrast .wpcf7-form textarea::placeholder {
  color: #ffffff;
}

html.wcag-contrast .wpcf7-form .wpcf7-submit {
  background-color: #313235;
}

html.wcag-contrast .wpcf7-form .wpcf7-submit:hover, html.wcag-contrast .wpcf7-form .wpcf7-submit:focus {
  background-color: #4a4b50;
}

/****************************************/
/******** Accessibility styles *********/
/**************************************/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  word-wrap: normal;
  border: none;
}

.screen-reader-text:active, .screen-reader-text:focus {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  height: auto;
  width: auto;
  z-index: 100000;
  text-decoration: none;
}

/************************************/
/************ 1600 ******************/
/***********************************/
@media all and (max-width: 1600px) {
  .cont-x-inner-slider {
    padding-left: 0;
    padding-right: 0;
  }
  .slider-nav {
    z-index: 3;
  }
  .slider-nav--next {
    right: 25px;
  }
  .slider-nav--prev {
    left: 25px;
  }
  .navbar__menu > li {
    margin: 0 10px;
  }
  .hero__slider-pag {
    left: 25px;
  }
}

/************************************/
/************ 1400 ******************/
/***********************************/
@media all and (max-width: 1400px) {
  .cont-x-inner {
    padding-left: 50px;
    padding-right: 50px;
  }
  .navbar__menu > li > a {
    font-size: 1.5rem;
  }
  .cols__col-text, .cols--reversed .cols__col-text {
    padding: 50px;
  }
  .bricks-sl__col-content-inner {
    padding: 80px 30px 80px 60px;
  }
  .movie__header {
    padding: 70px 30px;
  }
  .movie__player {
    height: auto;
    min-height: 300px;
  }
  .sfoot__col {
    margin-right: 60px;
  }
  .sfoot__col--primary {
    margin-right: 50px;
  }
}

/************************************/
/************ 1280 ******************/
/***********************************/
@media all and (max-width: 1280px) {
  h1 {
    font-size: 5.4rem;
  }
  .cont-y {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .cont-y-grey {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wp-editor p, .wp-editor div, .wp-editor ul, .wp-editor ol, .wp-editor h1, .wp-editor h2, .wp-editor h3, .wp-editor h4, .wp-editor h5, .wp-editor h6, .wp-editor iframe {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .wp-editor p:first-child, .wp-editor div:first-child, .wp-editor ul:first-child, .wp-editor ol:first-child, .wp-editor h1:first-child, .wp-editor h2:first-child, .wp-editor h3:first-child, .wp-editor h4:first-child, .wp-editor h5:first-child, .wp-editor h6:first-child, .wp-editor iframe:first-child {
    margin-top: 0;
  }
  .wp-editor p:last-child, .wp-editor div:last-child, .wp-editor ul:last-child, .wp-editor ol:last-child, .wp-editor h1:last-child, .wp-editor h2:last-child, .wp-editor h3:last-child, .wp-editor h4:last-child, .wp-editor h5:last-child, .wp-editor h6:last-child, .wp-editor iframe:last-child {
    margin-bottom: 0;
  }
  .wp-editor--margin-sm p, .wp-editor--margin-sm div, .wp-editor--margin-sm ul, .wp-editor--margin-sm ol, .wp-editor--margin-sm h1, .wp-editor--margin-sm h2, .wp-editor--margin-sm h3, .wp-editor--margin-sm h4, .wp-editor--margin-sm h5, .wp-editor--margin-sm h6, .wp-editor--margin-sm iframe {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .wp-editor--margin-sm p:first-child, .wp-editor--margin-sm div:first-child, .wp-editor--margin-sm ul:first-child, .wp-editor--margin-sm ol:first-child, .wp-editor--margin-sm h1:first-child, .wp-editor--margin-sm h2:first-child, .wp-editor--margin-sm h3:first-child, .wp-editor--margin-sm h4:first-child, .wp-editor--margin-sm h5:first-child, .wp-editor--margin-sm h6:first-child, .wp-editor--margin-sm iframe:first-child {
    margin-top: 0;
  }
  .wp-editor--margin-sm p:last-child, .wp-editor--margin-sm div:last-child, .wp-editor--margin-sm ul:last-child, .wp-editor--margin-sm ol:last-child, .wp-editor--margin-sm h1:last-child, .wp-editor--margin-sm h2:last-child, .wp-editor--margin-sm h3:last-child, .wp-editor--margin-sm h4:last-child, .wp-editor--margin-sm h5:last-child, .wp-editor--margin-sm h6:last-child, .wp-editor--margin-sm iframe:last-child {
    margin-bottom: 0;
  }
  .navbar__menu {
    display: none;
  }
  .burger, .mobile-menu {
    display: block;
  }
  .h-banner__overlay {
    padding-top: 225px;
    padding-bottom: 80px;
  }
  .h-banner__text-sub {
    margin-top: 15px;
  }
  .bricks-exp__brick-overlay {
    padding: 50px 20px;
  }
  .bricks-exp__links {
    padding: 50px 20px 50px 40px;
  }
  .news-slider__feat, .news-slider__swiper {
    width: 100%;
    margin: 0;
    max-width: 800px;
  }
  .news-slider .slider-pag {
    display: none;
  }
  .post-box-feat {
    padding: 50px 20px;
  }
  .search-form__close {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .search-form__close img {
    max-width: 20px;
  }
  .pagination {
    margin: 40px 0;
  }
  .sfoot__cols {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    padding: 0 0 25px 0;
  }
  .sfoot__col {
    margin-bottom: 25px;
  }
  .sfoot__col--primary {
    width: 100%;
    max-width: initial;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .sfoot__btm {
    padding: 50px 0 0 0;
  }
  .sfoot__btm > * {
    display: block;
    margin: 0 0 5px 0;
  }
}

/************************************/
/************ 1200 ******************/
/***********************************/
@media all and (max-width: 1200px) {
  .grid-col-2 > .grid-item {
    width: 100%;
  }
  .grid-col-2 > .grid-item:nth-of-type(2) {
    margin-top: 21px;
  }
  .grid-col-2 > .grid-item:nth-of-type(odd), .grid-col-2 > .grid-item:nth-of-type(even) {
    padding: 0;
  }
  .grid-col-3 > .grid-item, .grid-col-4 > .grid-item {
    width: 50%;
  }
  .grid-col-3 > .grid-item:nth-of-type(3), .grid-col-3 > .grid-item:nth-of-type(4), .grid-col-4 > .grid-item:nth-of-type(3), .grid-col-4 > .grid-item:nth-of-type(4) {
    margin-top: 21px;
  }
  .grid-col-3 > .grid-item:nth-of-type(odd), .grid-col-4 > .grid-item:nth-of-type(odd) {
    padding: 0 10.5px 0 0;
  }
  .grid-col-3 > .grid-item:nth-of-type(even), .grid-col-4 > .grid-item:nth-of-type(even) {
    padding: 0 0 0 10.5px;
  }
  .cols--reversed .cols__grid {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
  .cols__col-text, .cols__col-img {
    width: 100%;
    max-width: 800px;
  }
  .cols__col-img .lazy-img {
    text-align: center !important;
  }
  .mosaic__grid-item {
    width: 50%;
  }
  .bricks-sl__slide {
    height: initial;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .bricks-sl__col-content, .bricks-sl__col-img {
    width: 100%;
    max-width: 800px;
  }
  .bricks-sl__col-content {
    height: initial;
  }
  .bricks-sl__col-content-inner {
    border: none;
  }
  .bricks-sl__col-img {
    height: 400px;
  }
  .numbers__bricks {
    height: initial;
  }
  .numbers__bricks:not(:last-child) {
    margin-bottom: 50px;
  }
  .numbers__bricks-grid {
    position: static;
  }
  .numbers__slider {
    height: 450px;
  }
  .numbers__slider-pag {
    left: 25px;
  }
  .movie__header, .movie__player {
    width: 100%;
  }
  .movie__header {
    margin-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .movie__player {
    min-height: initial;
    height: 40vw;
  }
  .map__text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .map__col-iframe {
    height: 300px;
  }
  .social-media-sec__item {
    width: 50%;
  }
  .social-media-sec__item:nth-of-type(odd) {
    padding: 0 2em 0 0;
  }
  .social-media-sec__item:nth-of-type(even) {
    padding: 0 0 0 2em;
  }
  .social-media-sec__item > a {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

/************************************/
/************ 992 ******************/
/***********************************/
@media all and (max-width: 992px) {
  .hero__overlay {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 250px 25px 60px 25px;
  }
  .hero__title {
    font-size: 5rem;
  }
  .hero__scroll {
    display: none;
  }
  .hero .slider-pag {
    bottom: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gallery__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gallery .slider-pag {
    max-width: initial;
  }
  .gallery .slider-pag:nth-child(2) {
    margin-top: 20px;
  }
  .gallery__swiper {
    overflow: hidden;
    height: 30vw;
  }
  .gallery__swiper:before, .gallery__swiper:after {
    content: none;
  }
  .banner__overlay {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner__title:not(:last-child), .banner__text:not(:last-child) {
    margin-bottom: 20px;
  }
  .banner__title {
    font-size: 4rem;
  }
  .timeline__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .timeline .slider-pag {
    max-width: initial;
  }
  .timeline .slider-pag:nth-child(2) {
    margin-top: 20px;
  }
  .timeline__swiper {
    overflow: hidden;
  }
  .timeline__swiper:before, .timeline__swiper:after {
    content: none;
  }
  .timeline .timeline__slide {
    padding: 50px 20px;
  }
  .cookie-notice__text {
    width: 100%;
    margin-right: 0;
  }
  .slider-nav {
    display: none;
  }
}

/************************************/
/************ 768 ******************/
/***********************************/
@media all and (max-width: 768px) {
  .grid-col-3 > .grid-item, .grid-col-4 > .grid-item {
    width: 100%;
  }
  .grid-col-3 > .grid-item:nth-of-type(2), .grid-col-4 > .grid-item:nth-of-type(2) {
    margin-top: 21px;
  }
  .grid-col-3 > .grid-item:nth-of-type(odd), .grid-col-3 > .grid-item:nth-of-type(even), .grid-col-4 > .grid-item:nth-of-type(odd), .grid-col-4 > .grid-item:nth-of-type(even) {
    padding: 0;
  }
  #wpadminbar {
    display: none;
  }
  .search-form {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mosaic__grid-item {
    width: 100%;
  }
  .mosaic__grid-item:nth-child(5n+4), .mosaic__grid-item:nth-child(5n) {
    width: 100%;
  }
  .wpcf7-form .cf-cols__col {
    width: 100%;
    margin-top: 21px;
  }
  .wpcf7-form .cf-cols__col:nth-child(odd), .wpcf7-form .cf-cols__col:nth-child(even) {
    padding: 0;
  }
  .wpcf7-form .cf-cols__col:nth-child(2) {
    margin-top: 21px;
  }
  .wpcf7-form .cf-cols__col > span.your-acceptance {
    margin-top: 21px;
  }
  .wpcf7-form textarea {
    max-height: 120px;
  }
}

/************************************/
/************ 750 ******************/
/***********************************/
@media all and (max-width: 750px) {
  .navbar .nav-btn {
    display: none;
  }
  .mobile-menu .nav-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .files__item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .files__item-left {
    margin-right: 0;
  }
  .timeline__slide {
    text-align: center;
  }
  .timeline__slide:after {
    content: none;
  }
  .timeline__slide.swiper-slide-active:before {
    content: none;
  }
  .timeline__slide-text {
    max-height: 200px;
    padding-right: 0;
  }
  .timeline__slide-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 0;
  }
  .timeline__slide-title {
    margin-left: 0;
    margin-top: 10px;
  }
}

/************************************/
/************ 576 ******************/
/***********************************/
@media all and (max-width: 576px) {
  body {
    font-size: 1.7rem;
  }
  h1 {
    font-size: 4.8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.2rem;
  }
  .intro p:first-child strong {
    font-size: 2rem;
  }
  .cont-x, .cont-x--lg, .cont-x--sm {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cont-y {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .cont-x-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
  .slider-loader .nloader__icon {
    width: 60px;
    height: 60px;
  }
  .wp-editor img.alignright, .wp-editor div.alignright {
    float: none;
    margin: 0 auto 15px auto;
    display: block;
  }
  .wp-editor img.alignleft, .wp-editor div.alignleft {
    float: none;
    margin: 0 auto 15px auto;
    display: block;
  }
  .wp-editor .alignright {
    float: none;
  }
  .wp-editor .alignleft {
    float: none;
  }
  .wp-editor ol {
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
  }
  .wp-editor blockquote {
    padding-left: 25px;
  }
  .navbar__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar .primary-logo > img {
    max-width: 200px;
    max-height: 50px;
  }
  .navbar__right > *:not(:first-child) {
    margin-left: 10px;
  }
  .burger {
    width: 30px;
    height: 30px;
  }
  .burger__bar {
    height: 3px;
    width: 20px;
  }
  .burger__bar:before, .burger__bar:after {
    height: 3px;
    width: 30px;
  }
  .burger__bar:before {
    top: -8px;
  }
  .burger__bar:after {
    top: 8px;
  }
  .mobile-menu {
    max-width: 80vw;
  }
  .mobile-menu__inner {
    padding: 100px 25px 25px 25px;
  }
  .mobile-menu__nav > li > a {
    font-size: 2rem;
  }
  .mobile-menu__nav > li.menu-item-has-children > a::before {
    top: -5px;
  }
  .mobile-menu__nav .sub-menu > li > a {
    font-size: 1.6rem;
  }
  .mobile-menu__nav .sub-menu li > a:before {
    top: 0;
  }
  .social-media a {
    padding: 5px;
    display: none;
  }
  .social-media a:nth-child(1), .social-media a:nth-child(2) {
    display: block;
  }
  .social-media img {
    max-width: 15px;
    max-height: 15px;
  }
  .search-icon {
    width: 30px;
    height: 30px;
  }
  .search-icon svg {
    max-width: 15px;
  }
  .search-form__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .search-form__title {
    text-align: center;
  }
  .search-form__close {
    position: absolute;
    right: 0;
    top: -50px;
  }
  .search-form__input {
    margin-right: 15px;
  }
  .search-form__btm {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .search-form__input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .hero {
    min-height: 400px;
  }
  .hero__title {
    font-size: 4rem;
  }
  .hero__btn {
    margin-top: 25px;
  }
  .hero__overlay {
    padding: 150px 15px 60px 15px;
  }
  .h-banner__overlay {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .breadcrumbs {
    font-size: 1.5rem;
    margin-left: 0 !important;
  }
  .breadcrumbs a {
    margin-right: 5px;
  }
  .breadcrumbs span:nth-child(2) {
    margin-left: 5px;
  }
  .scroll-down {
    display: none;
  }
  .jumbotron__title {
    font-size: 4rem;
  }
  .cols__col-text, .cols--reversed .cols__col-text {
    padding: 50px 25px;
  }
  .mosaic__brick {
    height: 350px !important;
  }
  .mosaic__brick-title {
    font-size: 2.8rem;
  }
  .bricks-btns__overlay {
    padding: 50px 20px;
  }
  .gallery__swiper {
    height: 250px;
  }
  .numbers__brick {
    padding: 30px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .numbers__brick-text {
    max-width: initial;
  }
  .numbers__brick-text:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
  .numbers__slider {
    height: 300px;
  }
  .numbers__slider-pag {
    left: 15px;
  }
  .files__item-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .files__item-name {
    margin-left: 0;
    margin-top: 10px;
  }
  .bricks-sl__col-content-inner {
    padding: 50px 25px;
  }
  .bricks-sl__col-img {
    height: 250px;
  }
  .movie__player {
    height: 250px;
  }
  .acco__row-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .acco__row-header:before {
    content: none;
  }
  .acco__row-header-left {
    margin-bottom: 10px;
  }
  .acco__boxes-box {
    padding: 20px;
  }
  .banner__title {
    font-size: 3rem;
  }
  .post-box {
    padding: 10px;
  }
  .post-box__inner {
    padding: 35px 15px;
  }
  .post-blog__top-overlay {
    padding: 20px 30px;
  }
  .post-blog__bottom-inner {
    padding: 40px 15px;
  }
  .post-box-feat__widget {
    max-width: initial;
  }
  .post-box-feat__widget-inner {
    padding: 15px;
  }
  .fx-buttons {
    right: 10px;
    bottom: 10px;
  }
  .fx-buttons__btn {
    padding: 10px 15px;
  }
  .fx-buttons__btn:not(:last-child) {
    margin-right: 10px;
  }
  .fx-buttons__btn span {
    display: none;
  }
  .fx-buttons__btn img {
    margin-right: 0 !important;
  }
  .social-media-sec__item {
    width: 100%;
  }
  .social-media-sec__item:nth-of-type(odd), .social-media-sec__item:nth-of-type(even) {
    padding: 0;
  }
  .cookie-notice__btn {
    padding: 5px 10px !important;
  }
  .cookie-notice__btn > span {
    font-size: 1.2rem !important;
  }
}

/************************************/
/************ 400 ******************/
/***********************************/
@media all and (max-width: 400px) {
  .navbar .primary-logo > img {
    max-width: 150px;
  }
  .mobile-menu__inner {
    padding: 100px 15px 25px 15px;
  }
}

/************************************/
/************ 350 ******************/
/***********************************/
@media all and (max-width: 350px) {
  body {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=main.css.map */