/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

:root {
  scroll-behavior: unset;

  --primary: #661DC3; 
  --primary-rgb: 102, 29, 195;

  --secondary: #B1B4BA;
  --secondary-rgb: 177, 180, 186;
  --black: #000;
  --white-rgb: 0, 0, 0;

  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;

  --blue: #4073DC;
  --blue-rgb: 64, 115, 220;

  --gray-light: #E8E8E8; 
  --gray-light-rgb: 232, 232, 23; 

  --gray: #CBCBCB;
  --gray-rgb: 203, 203, 203;

  --gray-dark: #838383;
  --gray-dark-rgb: 131, 131, 131;


  --border-radius: .25rem;
  --box-shadow: 0 .5rem 1rem rgba(var(--primary-rgb), .15);

  --link-color:       var(--primary);
  --link-hover-color: var(--secondary);

  --bg-primary:  var(--primary);
  --bg-secondary:  var(--secondary);
  --bg-light:  var(--gray-light);
  --bg-dark:  var(--gray-dark);
  --bg-gray:  var(--gray);
  --bg-white:  var(--white);
  --bg-black:  var(--black);

  --nav-height:  65px;
  --em-gutter-x: .75rem;

  --font-family-primary: 'Bw Happy', sans-serif;
}


:root {
  --em-gutter-x: 2rem;
}


/*@media (min-width: 992) {
  :root {
    --nav-height:  87px;
    --em-gutter-x: 1rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --em-gutter-x: 1.5rem;
  }
}

@media (min-width: 1820px) {
  :root {
    --em-gutter-x: 1.5rem;
    --bs-gutter-x: 1.5rem;
  }
}

@media (min-width: 2560px) {
  :root {
    --em-gutter-x: 2.5rem;
  }
}*/


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: var(--primary);
  background: var(--white);
  font-size: 1em;
  line-height: 1.4;
  font-family: var(--font-family-primary);
  font-weight: normal;
  font-style: normal;
  /* Smoothing */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;

  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;

  width: 100%;
}

body {
  position: relative;
  background: var(--white);
  height: 100%;
  overflow: hidden;
  margin: 0;
  /* Allows you to scroll below the viewport; default value is visible */
  overflow-y: scroll;

  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;

  width: 100%;
  overflow-x: hidden;
}


/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

p {
  font-size: 14px;
  font-family: var(--font-family-primary);
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  color: var(--primary);
  font-weight: normal;
  font-style: normal;
  line-height: 1.1em;
  -ms-word-wrap: break-word;
  word-wrap: break-word
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 19px;
}

h6 {
  font-size: 17px;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
 {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit
}


a {
  font-family: var(--font-family-primary);
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: color .25s ease;
  -o-transition: color .25s ease;
  transition: color .25s ease
}

a:hover {
  color: var(--link-hover-color);
}

a,
a div,
a span,
button,
button div,
button span,
input,
textarea,
.touch-action {
  -ms-touch-action: manipulation;
  touch-action: manipulation; /*disable the delay of click events caused by support for the double-tap to zoom gesture. */
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: auto;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*Force Hand Cursor over Clickable Items*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.pointer,
.clickable,
.tappable {
  cursor: pointer;
}

/* ==========================================================================
   Author's custom styles
========================================================================== */
.cv-auto {
  content-visibility: auto;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

/*stop interaction with the page when page is loading*/
/*or when the search is open*/
body.is-loading,
body.is-loading * {
  pointer-events: none !important;
}


/* PRELOADER */
.ip-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1031;
  min-height: 460px;
  width: 100%;
  height: 100%;
  background: var(--gray-light);
}

.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.ip-logo {
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0,25%,0);
  transform: translate3d(0,25%,0);
}

.logo-title {
  font-family: var(--font-family-primary);
}

.ip-loader {
  bottom: 20%;
}

.ip-header .ip-inner {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}

.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}

.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: var(--primary);
}

.ip-container {
  position: relative;
  background: #B1B4BA;
  z-index: 1;
}

/* Content */
.ip-main {
  position: relative;
  /*overflow: hidden;*/
  margin: 0 auto;
  width: 100%;
  opacity: 1;
  background: #fff;
  z-index: 1;
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
}

.loading .ip-logo {
/*  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;*/
  -webkit-animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLogo {
  from { opacity: 0; }
}

@keyframes animInitialLogo {
  from { opacity: 0; }
}

.loading .ip-loader {
  -webkit-animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLoader {
  from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); }
}

@keyframes animInitialLoader {
  from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); transform: scale3d(0.5,0.5,1); }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}

.loaded .ip-logo {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLogo {
  to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

@keyframes animLoadedLogo {
  to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

@keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}

/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

/* Content animations */
/*This is only if there is a preloader*/
/*.loaded .ip-main {
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); }
}

@keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); transform: scale3d(0.3,0.3,1); }
}
*/
 
/*Helpers*/
.container-em,
.em-container {
  position: relative;
  max-width: 1660px;
}


.btn-em-link {
  font-family: var(--font-family-primary);
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  border-radius: 0;
}

.btn-em-link--primary {
   color: var(--primary);
   border-bottom: 1px solid var(--primary);
}

.btn-em-link--secondary {
   color: var(--secondary);
   border-bottom: 1px solid var(--secondary);
}

.btn-em-link--white {
   color: var(--white);
   border-bottom: 1px solid var(--white);
}

/* full side image within containers */
.side-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.side-image.full-left {
  width: 50vw;
  float: right;
}

.side-image.full-right {
  width: 50vw;
  float: left;
}

.side-image img {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .side-image.full-left {
    width: 100vw;
    float: left;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
  }
}



/*Botstrap overwritten extend*/
.ratio-9x16 {
  --bs-aspect-ratio: calc(16 / 9 * 100%);
}

.ratio-4x5 {
  --bs-aspect-ratio: calc(5 / 4 * 100%);
}

.ratio-3x4 {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
}

.ratio-2x1 {
  --bs-aspect-ratio: 50%;
}

/*@media (max-width: 767px) {
  .ratio-3x4 {
    --bs-aspect-ratio: calc(2 / 1 * 100%);
  }
}*/

.g-6,
.gx-6 {
  --bs-gutter-x: 5rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 7rem;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg--primary {
  background-color: var(--bg-primary);
}

.bg--secondary {
  background-color: var(--bg-secondary);
}

.bg--light {
  background-color: var(--bg-light);
}

.bg--dark {
  background-color: var(--bg-dark);
}

.bg--white {
  background-color: var(--bg-white);
}

.bg--black {
  background-color: var(--bg-black);
}

.bg--gray {
  background-color: var(--bg-gray);
}

.p-relative{
  position: relative;
}

.remove-p{
  padding: 0px;
}


.section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section--intro {
  padding-top: 115px ;
}

@media (max-width: 767px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .section--intro {
    padding-top: 115px;
  }

  .vh-100 {
    height: auto !important;
  }
}


.title,
.text {
  /*font-family: 'Everett';*/
  font-style: normal;
  font-weight: normal;
  color: #661DC3;
}


.title {
  font-size: 60px;
  line-height: 107%;
  color: #661DC3;
}

.text {
  font-size: 18px;
  line-height: 133%;
  color: #2C2C2C;
}

.title-lg {
  font-size: 90px;
}

@media (max-width: 991px) {
  .title {
    font-size: 22px;
    line-height: 117%;
  }

  .title-lg {
    font-size: 28px;
  }

  .text {
    font-size: 14px;
    line-height: 143%;
  }

}


/* Page navigation start */
.slide-from-top {
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  -webkit-transform: translate3d(0,-100%,0);
      -ms-transform: translate3d(0,-100%,0);
      transform: translate3d(0,-100%,0);

  -webkit-backface-visibility: hidden;
        backface-visibility: hidden;

  -webkit-perspective: 1000;
      -ms-perspective: 1000;
          perspective: 1000;
}

.slide-from-top--init {
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}

.has-nav-open .slide-from-top {
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}

.slide-from-top.in,
body:not(.home):not(.didScroll) .slide-from-top {
  transition-delay: 0.2s;
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}


.main-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 902;
  border-bottom: 1px solid var(--primary);
}

.revo-nav {
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  padding: 15px 60px;
  border-bottom: 1px solid var(--primary);
  list-style: none;
}


.nav-item {
  margin-right: 40px
}

.nav-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .nav-item {
    margin-right: 20px
  }
}

.nav-link {
  color: #2c3a24;
}

.btn-search {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.btn-search__svg {
  width: 32px;
  height: 32px;
}

.btn-search__svg path {
  fill: #2d3c23;
  -webkit-transition: fill .3s; /* For Safari 3.0 to 6.0 */
  transition: fill .3s; /* For modern browsers */
}

.has-nav-open .btn-search__svg path  {
  fill: #fff;
  transition-delay: .2s;
}



/* SEARCH */
.hidden-search-svg {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Layout for search container */
.search {
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: -webkit-flex;
  display: flex;

  -webkit-flex-direction: column;
  flex-direction: column;

  min-width: 0;

  -webkit-align-items: center;
  align-items: center;

  -ms-flex-pack: center;
  justify-content: center;
  
  text-align: center;
  background: rgba(255, 255, 255, 0.8);

  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in;

  /*transition-timing-function: ease-in;*/
  /*transition: opacity 0.2s;*/
}


/* Border */
.search::before,
.search::after {
  transition: transform 0.2s;
}

.search::before,
.search::after {
  transition: transform 0.2s;
  content: '';
  position: absolute;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  pointer-events: none;
  border: 1.5em solid var(--primary);
}

.search::before {
  top: 0;
  left: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  transform: translate3d(-15px, -15px, 0);
  transform: translate3d(-15px, -15px, 0);
}

.search::after {
  right: 0;
  bottom: 0;
  border-top-width: 0;
  border-left-width: 0;
  transform: translate3d(15px, 15px, 0);
}

.btn-search {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.btn-search__svg {
  width: 26px;
  height: 26px;
}

.btn-search__svg path {
  fill: var(--primary);
  -webkit-transition: fill .3s; /* For Safari 3.0 to 6.0 */
  transition: fill .3s; /* For modern browsers */
}

.has-nav-open .btn-search__svg path  {
  fill: var(--white);
  transition-delay: .2s;
}

.btn--search-close {
  font-size: 2em;
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  display: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
  color: rgba(var(--primary-rgb) 0.75);
  outline: none;
}

.btn--search-close:hover {
  color: var(--primary);
}

.btn--search-close {
  display: block;
}

.search__form {
  margin: 5em 0;
}

/* Reset Search Input */
.search__input {
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 10rem;
  font-size: 10vw;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  width: 75%;
  padding: 0.05em 0;
  color: var(--primary);
  border-bottom: 2px solid;
}

.search__input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  opacity: 0.3;
  color: var(--secondary);
}

.search__input::-moz-placeholder {
  opacity: 0.3;
  /* Mozilla Firefox 19+ */
  color: var(--secondary);
}

.search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 0.3;
  color: var(--secondary);
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search__input::-ms-clear {
  display: none;
}

.search__input:focus {
  outline: none;
}

.search__info {
  font-size: 90%;
  font-weight: bold;
  display: block;
  width: 75%;
  margin: 0 auto;
  padding: 0.75em 0;
  text-align: right;
  color: var(--primary);
}

.search__related {
  display: flex;
  width: 75%;
  pointer-events: none;
}

.search__suggestion {
  width: 33.33%;
  text-align: left;
}

.search__suggestion:nth-child(2) {
  margin: 0 3em;
}

.search__suggestion h3 {
  font-size: 1.35em;
  margin: 0;
}

.search__suggestion h3::before {
  content: '\21FE';
  display: inline-block;
  padding: 0 0.5em 0 0;
}

.search__suggestion p {
  font-size: 1.15em;
  line-height: 1.4;
  margin: 0.75em 0 0 0;
}

/************************/
/* Transitions      */
/************************/

/* Close button */
.btn--search-close {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s, transform 0.5s;
}

.btn--search-close .icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}

/* Search form with input and description */
.search__form {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s, transform 0.5s;
}

.search__suggestion {
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  transition: opacity 0.5s, transform 0.5s;
}

.search--open {
  pointer-events: auto;

  transition: 0.2s;
  transition-timing-function: ease-out;
  opacity: 1;
}

.search--open::before,
.search--open::after {
  transform: translate3d(0, 0, 0);
}

.search--open .btn--search-close {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.search--open .search__form {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.search--open .search__suggestion {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
  transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
  transition-delay: 0.2s;
}

@media screen and (max-width:40em) {
  .search__form {
    margin: 5em 0 1em;
  }
  .btn--search-close {
    font-size: 1.25em;
    top: 1.5em;
    right: 1.5em;
  }
  .search__info {
    text-align: left;
  }
  .search__suggestion {
    font-size: 80%;
    width: 100%;
  }
  .search__suggestion:nth-child(2),
  .search__suggestion:nth-child(3) {
    display: none;
  }
}
/*END Search*/




/* FULLSCREEN MENU */
.o-scroll {
    height: 100%;
}

.c-nav-button {
  display: inline-block;
  margin-top: 2px;
  padding: 0;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
  vertical-align: middle;
  z-index: 902;
  text-align: center;
  text-decoration: none;
    text-transform: none;
    line-height: normal;
  -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.c-nav-button:focus {
    outline: 0;
    box-shadow: none;
}

.c-nav-button--absolute {
  position: absolute;
  top: 25px;
  right: var(--em-gutter-x);
}

.c-nav-button_wrap {
  display: inline-block;
}

.c-nav-text{
  font-family: var(--font-family-primary);
  font-weight: normal;
  font-size: 25px;
  line-height: 50px;
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  cursor: pointer;
}

.c-nav-left {
  transform: translateX(-50%);
}

.c-nav-button_icon {
  display: inline-block;
  margin-top: 0.25rem;
  width: 40px;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-nav-open .c-nav-button_icon {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
      transition-delay: 0.2s;
}

.c-nav-button_line {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.c-nav-button_line::before,
.c-nav-button_line::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 0em;
  background-color: var(--white);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: background-color .3s; /* For Safari 3.0 to 6.0 */
  transition: background-color .3s; /* For modern browsers */
}

.c-nav-button--primary .c-nav-button_line::before,
.c-nav-button--primary .c-nav-button_line::after {
  background-color: var(--primary);
}

.c-nav-button_line::after {
  opacity: 0;
}

.c-nav-button_line:nth-child(1)::before {
  transition-delay: 0.2s;
}

.has-nav-open .c-nav-button_line:nth-child(1) {
  transition-delay: 0s, 0.2s;
}
.has-nav-open .c-nav-button_line{
  opacity: 1;
  visibility: visible;
}

.has-nav-open .c-nav-button_line::before,
.has-nav-open .c-nav-button_line::after { 
  background-color: var(--white);
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 699px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(11px);
        -ms-transform: translateY(11px);
            transform: translateY(11px);
  }
}

@media (min-width: 700px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(0.678rem);
        -ms-transform: translateY(0.678rem);
            transform: translateY(0.678rem);
  }
}

.c-nav-button_line:nth-child(2) {
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.c-nav-button_line:nth-child(2)::before {
  transition-delay: 0.1s;
}

.has-nav-open .c-nav-button_line:nth-child(2) {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  transition-delay: 0.15s;
}

.c-nav-button_line:nth-child(3) {
  position: relative;
  margin-bottom: 0;
}

.c-nav-button_line:nth-child(3)::before {
  transition-delay: 0.0s;
}

.has-nav-open .c-nav-button_line:nth-child(3) {
  -webkit-transform: translateY(-0.59375rem);
      -ms-transform: translateY(-0.59375rem);
          transform: translateY(-0.59375rem);
  opacity: 0;
  transition-delay: 0s, 0.15s;
}

.c-nav-button_line:nth-child(3)::after {
  top: 0.59375rem;
}

/* Navigation Overlay */
.c-nav {
  position: fixed;
  width: 50%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 901;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s 0.85s;
}

/*

.c-nav-top {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.c-nav-top .nav-left{
  background-color: rgba(12, 71, 94, .7);
  border-bottom: 1px solid var(--primary);
  transition: -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-nav-top .nav-right{
  background-color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid var(--primary);
}
.has-nav-open .c-nav-top .nav-left{
  background-color: rgba(12, 71, 94, .0);
  border-color: transparent;
  transition: -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}*/

@media (max-width: 991px) {
  .c-nav {
    width: 100%;
  }
}

.has-nav-open .c-nav {
  visibility: visible;
  transition-delay: 0s;
}

body.is-loading[data-route-option="via-nav"] .c-nav {
  visibility: visible;
}

/*background transition*/
.c-nav_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-nav_background::before,
.c-nav_background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_background::before {
  background-color: rgba( var(--primary-rgb), .7);
  transition-delay: 0.25s;
  z-index: 1;
}

.c-nav_background::after {
  background-color: var(--white); /*was #000*/
  transition-delay: 0.10s;
  z-index: 3;
}

/*@media (max-width: 575px) {
  .c-nav_background::after {
    bottom: 70px;
  }
}*/

.has-nav-open .c-nav_background::before, 
.has-nav-open .c-nav_background::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.has-nav-open .c-nav_background::before {
  transition-delay: 0s;
}

.has-nav-open .c-nav_background::after {
  transition-delay: 0.15s;
}

/*Navigation container*/
.c-nav_list-wrap {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  /*padding: 130px 60px 95px; */
  padding: 125px 60px 95px; 
  z-index: 4;
  display: flex;
  align-items: center;
  /*z-index: 999;*/
}

@media (max-width: 992px) {
  .c-nav_list-wrap {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 575px) {
  .c-nav_list-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    left: 0;
    height: auto;
    font-size: 26px;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .c-nav_list-wrap {
    height: 100%;
  }
}


@media (max-width: 1199px) {
  .c-nav_list-wrap {
    visibility: hidden;
    transition: visibility 0s 0.6s;
  }
  .has-nav-open .c-nav_list-wrap {
    transition-delay: 0s;
    visibility: visible;
  }
}

.c-nav_list {
  position: relative;
  list-style: none;
  z-index: 4;
  margin-bottom: 0;
  padding: 0px;
  /*  
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;*/
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}

/*List item element on menu*/
.c-nav_item {
  position: relative;
  margin-bottom: 56px;

  -webkit-transform: translateX(-100%) translateX(-7.5rem);
      -ms-transform: translateX(-100%) translateX(-7.5rem);
          transform: translateX(-100%) translateX(-7.5rem);

  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.c-nav_item:last-child {
    margin-bottom: 0;
}

.c-nav_item:nth-child(1) {
  transition-delay: 0.2s;
}

.c-nav_item:nth-child(2) {
  transition-delay: 0.1s;
}

.c-nav_item:nth-child(3) {
  transition-delay: 0.0666666667s;
}

.c-nav_item:nth-child(4) {
  transition-delay: 0.05s;
}

.c-nav_item:nth-child(5) {
  transition-delay: 0.04s;
}

.c-nav_item:nth-child(6) {
  transition-delay: 0.0333333333s;
}

.c-nav_item:nth-child(7) {
  transition-delay: 0.0285714286s;
}

.c-nav_item:nth-child(8) {
  transition-delay: 0.025s;
}

.c-nav_item:nth-child(9) {
  transition-delay: 0.0222222222s;
}

.c-nav_item:nth-child(10) {
  transition-delay: 0.02s;
}

.c-nav_item:nth-child(11) {
  transition-delay: 0.0181818182s;
}

.c-nav_item:nth-child(12) {
  transition-delay: 0.0166666667s;
}

.has-nav-open .c-nav_item {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.has-nav-open .c-nav_item:nth-child(1) {
  transition-delay: 0.19s;
}

.has-nav-open .c-nav_item:nth-child(2) {
  transition-delay: 0.23s;
}

.has-nav-open .c-nav_item:nth-child(3) {
  transition-delay: 0.27s;
}

.has-nav-open .c-nav_item:nth-child(4) {
  transition-delay: 0.31s;
}

.has-nav-open .c-nav_item:nth-child(5) {
  transition-delay: 0.35s;
}

.has-nav-open .c-nav_item:nth-child(6) {
  transition-delay: 0.39s;
}

.has-nav-open .c-nav_item:nth-child(7) {
  transition-delay: 0.43s;
}

.has-nav-open .c-nav_item:nth-child(8) {
  transition-delay: 0.47s;
}

.has-nav-open .c-nav_item:nth-child(9) {
  transition-delay: 0.51s;
}

.has-nav-open .c-nav_item:nth-child(10) {
  transition-delay: 0.55s;
}

.has-nav-open .c-nav_item:nth-child(11) {
  transition-delay: 0.59s;
}

.has-nav-open .c-nav_item:nth-child(12) {
  transition-delay: 0.63s;
}

.has-search-open .c-nav_item {
 -webkit-transform: translateX(-100%) translateX(-7.5rem);
      -ms-transform: translateX(-100%) translateX(-7.5rem);
          transform: translateX(-100%) translateX(-7.5rem);
    opacity: 0;
}


/*Item menu link*/
.c-nav_link {
  font-family: var(--font-family-primary);
  font-weight: 500;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


@media (max-width: 767px) {
  .c-nav_link {
    font-size: 30px;
    line-height: 120%;
  }
}
/* Page navigation end */


/*Page header titles*/
.em-page-title {
  font-size: 70px;
  line-height: 84px;
  font-family: var(--font-family-primary);
}

.em-page-subtitle {
  font-size: 23px;
  line-height: 45px;
  text-transform: uppercase;
  font-family: var(--font-family-primary);
}

.em-page-text {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .em-page-title {
    font-size: 30px;
    line-height: 120%;
  }

  .em-page-subtitle {
    font-size: 14px;
    line-height: 120%;
  }

  .em-page-text {
    font-size: 14px;
    line-height: 20px;
  }
}


/*text-fill overlay effect.*/
.em-reveal {
    display: inline;
    position: relative;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#000),to(#000));
    background-image: -o-linear-gradient(#000,#000);
    background-image: linear-gradient(#000,#000);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    -o-transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    transition: background-size .3s cubic-bezier(.165,.84,.44,1),color .1s;
    /*padding-right: 5px;*/
    padding: 5px 5px 5px 0;
    line-height: 1.26;
}

.em-reveal:hover {
    background-size: 100% 100%
}

.em-reveal:hover {
    color: var(--white);
    -webkit-transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s;
    -o-transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s;
    transition: background-size .6s cubic-bezier(.165,.84,.44,1),color .35s
}

/*reveal multiple line from top*/
.reveal-top span {
  width: 100%;
  display: inline-block;
  opacity: 0;
  animation-name: titleAnimation;
  animation-timing-function: ease;
  animation-duration: 0.6s;
}

.reveal-top span {
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
}

.reveal-top span:first-child {
  animation-delay: 0.7s;
}
.reveal-top span:last-child {
  animation-delay: 0.5s;
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
}


/* hover swipe effect. */
.em-hover {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.em-hover::before {
  background: hsl(45 100% 70%);
  content: "";
  inset: 0;
  position: absolute;
  top: -1%;
  left: 0;
  height: 102%;
  z-index: -1;
  transition: transform 0.5s ease-in-out;
  -webkit-animation: rest 10s forwards;
            animation: rest 10s forwards;
}

.em-hover:hover::before {
  -webkit-animation: swipe 500ms forwards;
          animation: swipe 500ms forwards;
}

@-webkit-keyframes rest {
  0% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}
@keyframes rest {
  0% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}

@-webkit-keyframes swipe {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}
@keyframes swipe {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}


/*End Helpers*/
.form-control-em {
  padding-left: 0;
  color: var(--secondary);
  border-radius: 0;
  background-color: unset;
  border: unset;
  border-bottom: 1px solid var(--secondary, #96E0F7);
}

.form-control-em:focus {
    color: var(--secondary);
    background-color: unset;
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-rgb, #96E0F7), .25);
}

.form-label-em {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
  font-size: 18px;
}

.form-control-em::-moz-placeholder {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
}

.form-control-em::placeholder {
  color:  var(--secondary, #96E0F7);
  opacity: 0.5;
}

.form-control-em--dark {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.form-control-em--dark:focus {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), .25);
}

.form-control-em--dark::-moz-placeholder {
  color: var(--primary);
}
.form-control-em--dark::placeholder {
  color: var(--primary);
}

.form-label-em--dark {
  color:  var(--primary);
  opacity: 1;
}


/*Author styles*/


.em-main {
  background-color: #B1B4BA;
}

.em-main-img {
  transform: translateY(calc(50%/2));
}

.em-scroll {
  min-height: 100vh;
}


.em-vector {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-origin: border-box;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: scroll;
  background-color: #B1B4BA;
  background-image: url('../img/icons/vectors/group.svg');
  background-position: top center;
  background-clip: border-box;


/*  background: url(../img/icons/vectors/1.png) no-repeat scroll 113% 13%/30% 30%,
              url(../img/icons/vectors/2.png) no-repeat scroll -10% 28%,
              url(../img/icons/vectors/3.png) no-repeat scroll center 3%,
              url(../img/icons/vectors/4.png) no-repeat scroll 14% top,
              url(../img/icons/vectors/5.png) no-repeat scroll center center,
              url(../img/icons/vectors/6.png) no-repeat scroll 6% 135%,
              url(../img/icons/vectors/7.png) no-repeat scroll 110% 120%;*/

}

.em-footer {
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
  width: 100%;
}

.em-info {
  color: #fff;
}

/*START - Main content*/
.main-content {
  padding-top: 150px;
  padding-bottom: 150px;

  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;

}


.main-content:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
/*  background: url(../img/icons/vectors/1.png) no-repeat scroll 113% 13%/30% 30%,
              url(../img/icons/vectors/2.png) no-repeat scroll -10% 28%,
              url(../img/icons/vectors/3.png) no-repeat scroll center 3%,
              url(../img/icons/vectors/4.png) no-repeat scroll 14% top,
              url(../img/icons/vectors/5.png) no-repeat scroll center center,
              url(../img/icons/vectors/6.png) no-repeat scroll 6% 135%,
              url(../img/icons/vectors/7.png) no-repeat scroll 110% 120%;*/
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .main-content {
    background: url(../img/icons/vectors/1.png) no-repeat scroll 130% 3%,
                url(../img/icons/vectors/5.png) no-repeat scroll 100% 50%,
                url(../img/icons/vectors/2.png) no-repeat scroll -30% 70%,
                url(../img/icons/vectors/4.png) no-repeat scroll 115% 90%
  }
}

@media (min-width: 1200px) {
  .main-content {
    background: url(../img/icons/vectors/1.png) no-repeat scroll 110% 5%,
                url(../img/icons/vectors/5.png) no-repeat scroll 95% 50%,
                url(../img/icons/vectors/2.png) no-repeat scroll -10% 70%,
                url(../img/icons/vectors/4.png) no-repeat scroll 105% 90%;
  }
}




.article {
   -webkit-column-count: 2;
      -moz-column-count: 2;
           column-count: 2;

   -webkit-column-gap: 30px;
      -moz-column-gap: 30px;
           column-gap: 30px;
}

.text-author {
  color: #A0A0A0;
}

.read-more-link {
  color: #661DC3;
  /*text-decoration: underline;*/
}

.curator  {
  background-color: transparent;
}

.curator-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.curator-subtitle,
.curator-title, 
.curator-text {
  /*font-family: 'Everett', sans-serif;*/
}

.curator-subtitle {
}

.curator-title {
}

.curator-text {
}

@media (max-width: 991px) {
  .main-content {
    padding-top: 75px;
    padding-bottom: 30px;

  }

  .article {
     -webkit-column-count: 1;
        -moz-column-count: 1;
             column-count: 1;

     -webkit-column-gap: 13px;
        -moz-column-gap: 13px;
             column-gap: 13px;
  }

}

/*END - Main content*/

/*START Team*/
.team {
  background-color: #B1B4BA;
  position: relative;
}

.members {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  /*If we want team images to stratch based on swiper*/
/*  width: 100%;
  height: 100%;*/
}

.member-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  max-height: 500px;
}

.member-card.active::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #661DC3;
  mix-blend-mode: screen;
  -webkit-transition: background-color .3s; /* For Safari 3.0 to 6.0 */
  transition: background-color .3s; /* For modern browsers */
}


.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*The right content of member*/

.member {
  display: flex;
  flex-direction: column;
  /*max-width: 768px;*/
  margin: 65px;
}

.member-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex: 0 0 auto;
  width: 100%;
}

.member-intro-title {
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  color: #000000;
}

.member-content {
  background-color: transparent;
  border-radius: 0;
  border: none;
/*  flex: 0 0 auto;
  width: 100%;*/
}

.member-content__header {
  border-radius: 0;
  border: none;
  background-color: transparent;
  text-align: justify;
  color: #FFFFFF;
}

.member-content__title {
}

.member-content__text {
}

.member-nav {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.member-button {
  width: 28px;
  height: 28px;
  display: flex;
  align-content: center;
  justify-content: center;
}

.member-button + .member-button {
  margin-left: 47px;
}


.art-slider-images {
  width: 100%;
  height: 100%;
}


.art-slider-images .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 991px) {

  .member {
    margin: 0;
  }

  .member-intro {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.5rem;
  }

  .member-intro-title {
    font-size: 14px;
  }

  .member-button + .member-button {
    margin-left: 20px;
  }


}

/*END Team*/


/*START Gallery*/

.swiper-clients {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.swiper-clients .swiper-wrapper {
    align-content: stretch;
    align-items: center;
}

.swiper-clients .swiper-slide {
  background-color: transparent;
  text-align: center;
  width: auto;
  height: 100%;
  cursor: pointer;
}

.swiper-clients .swiper-img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: auto;
  height: 320px;
  margin: 0;
  padding: 0;
}

.swiper-clients .swiper-button-next, 
.swiper-clients .swiper-button-prev {
  color: #fff;
}


@media (min-width: 768px) {
  .swiper-clients .swiper-img {
    height: 360px;
  }
}
@media (min-width: 992px) {
  .swiper-clients .swiper-img {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .swiper-clients .swiper-img {
    height: 460px;
  }
}
@media (min-width: 1400px) {
  .swiper-clients .swiper-img {
    height: 576px;
  }
}

/*END Gallery*/


/* Start Archive */
.archive {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #661DC3;
  color: #fff;
}

.archive-link {
  /*font-family: 'Everett';*/
  font-style: normal;
  font-weight: normal;
  font-size: 29px;
  line-height: 35px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 991px) {

  .archive {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .archive-link {
    font-size: 18px;
    line-height: 22px;
  }
}


/* END Archive */

/*START FOOTER*/

.footer {
  position: relative;
  padding-top: 85px;
  padding-bottom: 85px;
}

.footer-info {
  color: #661DC3;
}

.footer-mail,
.opening-hours {
}


.footer-mail,
.footer-mail a {
  color: #B1B4BA;
}

.opening-hours {
  font-size: 40px;
  line-height: 48px;
  color: #661DC3;
}

.download-btn {
  background-color: #661DC3;
  border-color: #661DC3;
  color: #fff;
  font-size: 17px;
  line-height: 21px;
  padding: 10px 20px;
  /*display: flex;*/
  align-items: center;
}

.sponsors  {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.socials .social-item,
.sponsors .sponsor-item {
  border: none;
  border-radius: 0;
  flex: 1 0 0%;
}

.socials .social-item a,
.sponsors .sponsor-item a {
  display: flex;
  justify-content: center;
}

.socials .social-item {
  padding: 0.25rem 0.5rem;
}


.copyright {
  text-transform: uppercase;
  color: #661DC3;
} 

@media (max-width: 991px) {

  .footer-mail {
    font-size: 22px;
  }

  .opening-hours {
    font-size: 12px;
    line-height: 14px;
  }

  .footer {
    padding-top: 50px;
    padding-bottom: 35px;
  }
}

/*END FOOTER*/

/*END - Author styles*/

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}
