/*............................*/
/*         color             */
/*..........................*/
/*............................*/
/*         font               */
/*............................*/
/*............................*/
/*         transition               */
/*............................*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 65.5%; }
  @media only screen and (min-width: 1800px) {
    html {
      font-size: 75%; } }
  @media only screen and (max-width: 1008px) {
    html {
      font-size: 61.5%; } }
  @media only screen and (max-width: 900px) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 650px) {
    html {
      font-size: 47.37%; } }
  @media only screen and (max-width: 400px) {
    html {
      font-size: 40%; } }

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777777;
  box-sizing: border-box; }

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

li {
  list-style: none;
  display: inline-block; }

.main {
  background-color: #ffffff; }

.section {
  transition: transform 1s, opacity 1s; }

.hidden--section {
  opacity: 0;
  transform: translateY(8rem); }

.heading {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1.2rem;
  animation-delay: .9s;
  animation-duration: 800ms; }

.heading-hug {
  font-size: 5.5rem;
  font-family: "Merienda", cursive;
  letter-spacing: 1.6rem;
  background-image: linear-gradient(to right, #d05a5a, #470404);
  -webkit-background-clip: text;
  color: transparent; }
  @media only screen and (max-width: 910px) {
    .heading-hug {
      font-size: 5rem; } }
  @media only screen and (max-width: 500px) {
    .heading-hug {
      font-size: 3.5rem; } }
  @media only screen and (max-width: 330px) {
    .heading-hug {
      font-size: 2.5rem; } }

.heading-big {
  font-size: 3.5rem;
  font-family: "PT Serif", serif;
  letter-spacing: .6rem;
  display: inline-block;
  text-align: center;
  margin-top: 4.5rem;
  background-image: linear-gradient(to right, #a07171, #2d0202);
  -webkit-background-clip: text;
  color: transparent; }
  @media only screen and (max-width: 1008px) {
    .heading-big {
      margin-top: 2.5rem; } }

.heading-underline {
  width: 5rem;
  height: .2rem;
  background-color: #460000;
  margin: 0 auto 1rem; }

.heading-medium {
  font-size: 2rem;
  letter-spacing: .1rem;
  color: #ab3f3f; }

.heading-small {
  font-size: 1.6rem;
  display: block; }

.center-heading {
  text-align: center; }

.btn {
  width: max-content;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  padding: 1rem .8rem;
  text-transform: uppercase;
  border-radius: 1rem;
  border: 1px solid transparent;
  background-color: transparent;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.8);
  margin: 2.5rem auto;
  transition: all 1s ease-in-out;
  position: relative;
  cursor: pointer; }
  .btn:hover {
    background-color: #ffffff;
    color: #676767;
    animation: anim 1.4s .1s; }

@keyframes anim {
  0% {
    text-shadow: none;
    box-shadow: none; }
  40% {
    box-shadow: 0 0 5px #000c46; }
  100% {
    text-shadow: 0 0 5px #a2d9e7,
 0 0 25px #50a5a5,
 0 0 50px #3a45a4,
 0 0 60px #0d131d,
 0 0 50px #747880,
 0 0 25px #f5f5f8;
    box-shadow: 0 0 5px #c2cae0,
 0 0 25px #e1e0e7,
 0 0 50px #a1a6bc,
 0 0 60px #101026,
 0 0 50px #1d2139,
 0 0 25px #e3e7ec; } }

.header {
  grid-row: 1/2;
  height: 4rem;
  padding: 1.2rem;
  background-color: #0b1024;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  z-index: 22222; }
  .header__sticky {
    position: sticky;
    top: 0;
    left: 0; }
  .header__ul {
    display: inline-block; }
  .header__items {
    margin-right: 2.5rem;
    transition: .5s ease-out; }
    .header__items:hover {
      transform: translate(1px, 2px) rotate(-20deg) scale(1.2); }
  .header__svg {
    height: 1.4rem;
    width: 2rem;
    fill: #ab3f3f;
    margin-top: .5rem; }
  .header__eindhoven-img {
    display: inline-block;
    width: 10rem;
    height: 2.4rem;
    color: #ab3f3f; }

.nav {
  grid-row: 2/3;
  max-height: 7rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  z-index: 222222; }
  .nav--stick {
    position: sticky;
    top: 4rem;
    left: 0;
    transition: all 1s, transform .5s; }
  .nav__icon-box {
    padding-left: 2.5rem;
    margin-top: .5rem;}
  .nav__icon-img {
    height: 5.2rem; }
    @media only screen and (max-width: 800px) {
      .nav__icon-img {
        height: 5rem; } }
    @media only screen and (max-width: 706px) {
      .nav__icon-img {
        height: 3.5rem; } }
    @media only screen and (max-width: 480px) {
      .nav__icon-img {
        height: 3.2rem; } }
  @media only screen and (max-width: 900px) {
    .nav__nav-box {
      width: 100%; } }
  .nav--ul {
    font-weight: 700;
    line-height: 1.6rem; }
    @media only screen and (max-width: 900px) {
      .nav--ul {
        display: none; } }
  .nav--items {
    font-size: 1.7rem;
    padding-right: 4.5rem;
    transition: .5s ease-out;
    text-transform: uppercase; }
    .nav--items:hover, .nav--items:visited {
      transform: translateY(3px) scale(1.15); }
    @media only screen and (max-width: 1008px) {
      .nav--items {
        padding-right: 3.5rem; } }
    @media only screen and (min-width: 900px) and (max-width: 1100px) {
      .nav--items {
        padding-right: 3rem; } }
    @media only screen and (max-width: 900px) {
      .nav--items {
        font-size: 2.5rem;
        letter-spacing: .6rem; } }
  .nav--link {
    color: #ab3f3f;
    font-family: "PT Serif", serif; }
    @media only screen and (max-width: 900px) {
      .nav--link {
        color: #ffffff !important; } }
  .nav--contact {
    color: #b81919; }

.sticky {
  position: sticky;
  top: 0;
  background-color: #f4f4f4;
  transition: all 1s, transform .9s; }

.collapse-nav {
  font-weight: 700;
  background-color: rgba(11, 16, 36, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 50rem;
  transform: translateY(1rem);
  animation: drop .5s ease-in-out normal; }
  .collapse-nav__box {
    display: none;
    transition: all 1s, transform .5s; }
    @media only screen and (max-width: 900px) {
      .collapse-nav__box {
        display: inline-block; } }
  .collapse-nav__btn {
    width: 4rem;
    height: 4rem;
    border: 1px solid transparent;
    background-color: transparent;
    z-index: 100000;
    margin-right: 2.5rem; }
  .collapse-nav__svg {
    width: 100%;
    height: 100%;
    fill: #460000; }

.hidden {
  transform: translateY(-30rem);
  display: none; }

@keyframes drop {
  0% {
    height: 0;
    transform: translateY(2rem); }
  30% {
    height: 40rem;
    transform: translateY(1.75rem);
    opacity: .5;
    background-color: rgba(184, 25, 25, 0.35); }
  50% {
    height: 30rem;
    transform: translateY(1.5rem);
    opacity: .2;
    background-color: rgba(184, 25, 25, 0.35); }
  80% {
    height: 35rem;
    transform: translateY(.75rem);
    opacity: .4;
    background-color: rgba(100, 146, 202, 0.5); }
  90% {
    height: 45rem;
    transform: translateY(0.5rem);
    opacity: .8; }
  100% {
    height: 50rem;
    transform: translateY(0);
    opacity: 1;
    background-color: rgba(11, 16, 36, 0.95); } }

.active__links {
  color: #cf7474;
  text-shadow: 0 1rem 1rem #646262; }

.bg-header__header {
  font-size: 2.2rem;
  font-family: "Merienda", cursive;
  color: white;
  text-transform: uppercase;
  margin-top: 2.5rem; }

.relative {
  backface-visibility: hidden;
  height: 35vh;
  width: 100%;
  position: relative;
  display: table;
  z-index: -111; }

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

.fixed {
  position: fixed;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  transform: translateZ(0);
  display: table; }

.about {
  background-color: #ffffff;
  margin: 1.5rem 13rem 3.5rem; }
  @media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .about {
      margin: 1.5rem 8rem; } }
  @media only screen and (max-width: 1200px) {
    .about {
      margin: 1.5rem 7rem; } }
  @media only screen and (max-width: 1008px) {
    .about {
      margin: 1.5rem 6rem; } }
  @media only screen and (max-width: 800px) {
    .about {
      margin: 1.5rem 1.75rem; } }
  @media only screen and (max-width: 480px) {
    .about {
      margin: 1.5rem 2.5rem; } }
  .about__history {
    padding-left: 2.5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
    @media only screen and (max-width: 650px) {
      .about__history {
        flex-direction: column; } }
  .about__text {
    font-size: 1.6rem;
    line-height: 2;
    font-family: "PT Serif", serif;
    color: #454444;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem; }
  .about__megha {
    width: 30rem;
    height: 30rem;
    flex: 0 0 30rem; }
    @media only screen and (max-width: 940px) and (min-width: 900px) {
      .about__megha {
        margin-right: -5rem; } }
    @media only screen and (max-width: 750px) {
      .about__megha {
        height: 25rem;
        flex: 0 0 25rem; } }
    @media only screen and (max-width: 650px) {
      .about__megha {
        flex: 0 0 39rem;
        margin-top: -2.5rem; } }
  .about__megha--img {
    clip-path: circle(50% at 50% 50%);
    margin-top: -2.5rem; }
    @media only screen and (max-width: 650px) {
      .about__megha--img {
        height: 39rem;
        margin-top: 0; } }
  .about__title {
    margin-left: 2.5rem; }
  .about__svg {
    height: 4rem;
    width: 3rem;
    margin-right: 1.5rem;
    fill: #460000 !important;
    margin-top: 1.1rem;
    align-self: center; }
  .about__slider {
    max-width: 100rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden; }
  .about__slider--height {
    height: 30rem; }
    @media only screen and (max-width: 480px) {
      .about__slider--height {
        height: 34rem; } }
  .about__slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s; }
  .about__slide--contents {
    width: 75%;
    display: grid;
    grid-template-rows: repeat(3, max-content);
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 1.25rem;
    margin-top: 2.2rem; }
    @media only screen and (max-width: 800px) {
      .about__slide--contents {
        width: 80%; } }
  .about__slide--svg {
    grid-row: 1/2;
    grid-column: 1/2;
    height: 2rem;
    width: 2rem;
    fill: #ab3f3f; }
  .about__slide--header {
    grid-row: 1/2;
    grid-column: 1/-1;
    font-size: 1.4rem;
    font-family: "PT Serif", serif;
    padding-left: 1.2rem;
    padding-top: 2.1rem;
    color: #acacac; }
    @media only screen and (max-width: 700px) {
      .about__slide--header {
        padding-left: 1rem;
        padding-top: 1.5rem; } }
  .about__slide--quote {
    grid-row: 2/3;
    grid-column: 1/-1;
    font-size: 1.5rem;
    font-style: italic;
    color: #676767;
    margin-left: 2.2rem; }
    @media only screen and (max-width: 570px) {
      .about__slide--quote {
        margin: 0 1.2rem; } }
  .about__slide--address {
    grid-row: 3/4;
    grid-column: 1/4;
    display: flex;
    align-items: center;
    margin-left: 2.2rem; }
  .about__slide--img--box {
    height: 6rem;
    width: 6rem;
    border-radius: 50%; }
  .about__slide--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .about__slide--name {
    font-size: 1.1rem;
    font-family: "Merienda", cursive;
    font-weight: 400;
    font-style: italic;
    color: #000;
    margin-left: 1.5rem; }
  .about__slide--location {
    display: block; }
  .about__slider__btn {
    position: absolute;
    top: 35%;
    z-index: 10;
    border: transparent;
    background-color: transparent;
    color: #460000;
    cursor: pointer;
    font-size: 3.3rem;
    outline: transparent; }
  .about__slider__btn--left {
    left: 6%;
    transform: translate(-50%, -50%); }
  .about__slider__btn--right {
    right: 6%;
    transform: translate(50%, -50%); }
  .about__btn {
    text-align: center;
    margin-top: 2.75rem;
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 1300px) {
      .about__btn {
        margin-bottom: 4.5rem; } }

.dots__about {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%); }
  @media only screen and (max-width: 480px) {
    .dots__about {
      margin-top: 2.2rem; } }

.dots__dot {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(70, 0, 0, 0.5);
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: .3s ease; }

.dots__dot--active {
  background-color: #460000;
  transform: scale(1.1); }

.activities {
  height: 70rem;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden; }
  @media only screen and (max-width: 800px) {
    .activities {
      height: 80rem; } }
  @media only screen and (max-width: 580px) {
    .activities {
      height: 100rem; } }
  .activities__background {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 16, 36, 0.8), rgba(100, 146, 202, 0.1)), url("../img/activities/bg-homeActivities.png");
    background-position: bottom;
    background-size: 1500px;
    background-repeat: repeat-x;
    animation: bg 25s linear infinite;
    padding: 1rem 2.5rem; }
    @media only screen and (max-width: 1400px) {
      .activities__background {
        padding: 0 1rem; } }
    @media only screen and (max-width: 800px) {
      .activities__background {
        animation: bg 30s linear infinite;
        padding-bottom: 10rem; } }
    @media only screen and (max-width: 650px) {
      .activities__background {
        padding-bottom: 2.5rem; } }
  .activities__contents {
    color: #999999;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-template-rows: 1fr 5rem;
    justify-items: center;
    align-items: self-start;
    column-gap: 4.2rem;
    text-align: justify;
    text-indent: 1.5rem;
    overflow-y: hidden;
    margin-top: 2.5rem; }
    @media only screen and (max-width: 1008px) {
      .activities__contents {
        grid-template-rows: max-content 5rem; } }
    @media only screen and (max-width: 800px) {
      .activities__contents {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (max-width: 800px) {
      .activities__contents {
        width: 80%;
        margin: 2.78rem auto 0;
        display: block; }
        .activities__contents > * {
          margin-top: 2rem; } }
    @media only screen and (max-width: 790px) {
      .activities__contents {
        margin: 0 auto; } }
  .activities__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (max-width: 800px) {
      .activities__title {
        flex-direction: row;
        justify-content: center; } }
  .activities__header {
    color: #b81919;
    font-size: 1.7rem;
    text-align: center; }
    @media only screen and (max-width: 800px) {
      .activities__header {
        justify-self: flex-start;
        width: max-content; } }
  .activities__icons {
    height: 3.75rem;
    fill: #460000; }
    @media only screen and (max-width: 800px) {
      .activities__icons {
        width: 3.5rem;
        flex: 0 0 5rem; } }
  .activities__1 {
    width: 100%;
    grid-row: 1; }
    @media only screen and (max-width: 800px) {
      .activities__1 {
        grid-row: 1/2;
        grid-column: 1/2; } }
  .activities__2 {
    width: 100%;
    grid-row: 1; }
    @media only screen and (max-width: 800px) {
      .activities__2 {
        grid-row: 1/2;
        grid-column: 2/-1; } }
  .activities__3 {
    width: 100%;
    grid-row: 1; }
    @media only screen and (max-width: 800px) {
      .activities__3 {
        grid-row: 2/3;
        grid-column: 1/2; } }
  .activities__text {
    line-height: 1.7;
    font-size: 1.6rem;
    color: #f4f4f4;
    text-shadow: 0 5px 1rem #676767;
    margin: 2.2rem 1.5rem; }
    @media only screen and (max-width: 900px) {
      .activities__text {
        margin: 1rem 1rem; } }
  .activities__btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block; }

@keyframes bg {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: 1500px;} }

.cycling-1 {
  position: absolute;
  left: -250px;
  bottom: 10px;
  max-width: 200px;
  z-index: 10;
  animation: cycling1 10s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-1 {
      max-width: 150px; } }

@keyframes cycling1 {
  0% {
    transform: translateX(0px); }
  100% {
    transform: translateX(calc(100vw + 200px)); } }

.cycling-2 {
  position: absolute;
  right: -100px;
  bottom: 50px;
  max-width: 200px;
  z-index: 9;
  animation: cycling2 17s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-2 {
      max-width: 150px; } }
  @media only screen and (max-width: 650px) {
    .cycling-2 {
      display: none; } }

@keyframes cycling2 {
  0% {
    transform: translateX(0px) rotateY(180deg); }
  100% {
    transform: translateX(calc(-100vw - 500px)) rotateY(180deg); } }

.cycling-3 {
  position: absolute;
  right: -450px;
  bottom: 50px;
  max-width: 100px;
  z-index: 9;
  animation: cycling3 17s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-3 {
      display: none; } }

@keyframes cycling3 {
  0% {
    transform: translateX(0px) rotateY(180deg); }
  100% {
    transform: translateX(calc(-100vw - 500px)) rotateY(180deg); } }

.cycling-4 {
  position: absolute;
  right: -300px;
  bottom: 50px;
  max-width: 150px;
  z-index: 9;
  animation: cycling4 17s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-4 {
      display: none; } }

@keyframes cycling4 {
  0% {
    transform: translateX(0px) rotateY(180deg); }
  100% {
    transform: translateX(calc(-100vw - 500px)) rotateY(180deg); } }

.cycling-5 {
  position: absolute;
  left: -500px;
  bottom: 10px;
  max-width: 150px;
  z-index: 10;
  animation: cycling5 17s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-5 {
      max-width: 100px; } }
  @media only screen and (max-width: 650px) {
    .cycling-5 {
      display: none; } }

@keyframes cycling5 {
  0% {
    transform: translateX(0px); }
  100% {
    transform: translateX(calc(100vw + 200px)); } }

.cycling-6 {
  position: absolute;
  right: -650px;
  bottom: 50px;
  max-width: 150px;
  z-index: 9;
  animation: cycling6 17s linear infinite; }
  @media only screen and (max-width: 800px) {
    .cycling-6 {
      max-width: 100px;
      right: -200px;
      animation: cycling6 10s linear infinite; } }

@keyframes cycling6 {
  0% {
    transform: translateX(0px) rotateY(180deg); }
  100% {
    transform: translateX(calc(-100vw - 500px)) rotateY(180deg); } }

.project {
  max-height: max-content;
  padding: 1rem 1.5rem; }
  @media only screen and (max-width: 1200px) {
    .project {
      padding: 0; } }
  .project__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); }
  .project__pics {
    background-position: center;
    background-size: cover;
    grid-column: 1/2;
    height: 70rem; }
    @media only screen and (max-width: 650px) {
      .project__pics {
        grid-column: 1/-1; } }
    @media only screen and (min-width: 479px) and (max-width: 540px) {
      .project__pics {
        height: 65rem; } }
    @media only screen and (max-width: 480px) {
      .project__pics {
        height: 60rem; } }
  .project__img--box {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, minmax(6rem, 8rem)); }
  .project__img--header {
    grid-column: 3/6;
    grid-row: 1/2;
    justify-self: center;
    align-self: center;
    z-index: 100;
    padding-bottom: 1.2rem; }
  .project__img--1 {
    grid-column: 2/7;
    grid-row: 3/6;
    width: 100%; }
    @media only screen and (max-width: 1008px) {
      .project__img--1 {
        grid-column: 2/8;
        grid-row: 2/8; } }
    .project__img--1 img {
      width: 100%; }
  .project__img--2 {
    grid-column: 6/-1;
    grid-row: 5/7;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100; }
    @media only screen and (max-width: 1200px) {
      .project__img--2 {
        grid-column: 5/8;
        grid-row: 5/7; } }
    @media only screen and (max-width: 1008px) {
      .project__img--2 {
        grid-column: 2/8;
        grid-row: 6/8; } }
    @media only screen and (max-width: 650px) {
      .project__img--2 {
        grid-column: 4/-1;
        grid-row: 5/6; } }
    .project__img--2 img {
      width: 120%; }
      @media only screen and (max-width: 1200px) {
        .project__img--2 img {
          width: 110%; } }
      @media only screen and (max-width: 1008px) {
        .project__img--2 img {
          width: 95%; } }
      @media only screen and (min-width: 719px) and (max-width: 811px) {
        .project__img--2 img {
          width: 90%; } }
      @media only screen and (max-width: 650px) {
        .project__img--2 img {
          width: 90%; } }
  .project__text-content {
    grid-column: 2/3;
    background-color: #f4f4f4;
    padding: 10rem 10rem 0; }
    @media only screen and (max-width: 1400px) {
      .project__text-content {
        padding: 6rem 6rem 0; } }
    @media only screen and (max-width: 1200px) {
      .project__text-content {
        padding: 3.5rem 4rem; } }
    @media only screen and (max-width: 900px) {
      .project__text-content {
        padding: 4.5rem 5rem; } }
    @media only screen and (max-width: 800px) {
      .project__text-content {
        padding: 3rem 3.2rem; } }
    @media only screen and (max-width: 650px) {
      .project__text-content {
        grid-column: 1/-1;
      padding: 3rem 4rem;} }
  .project__text-box {
    font-size: 1.6rem;
    color: #676767;
    line-height: 3rem;
    text-align: justify; }
    .project__text-box p {
      margin-top: 2.5rem;
      text-indent: 2.5rem; }
  .project__quoits {
    font-style: italic;
    margin-top: 3.2rem; }
  .project__btn {
    margin-top: 10%;
    text-align: center; }
    @media only screen and (max-width: 650px) {
      .project__btn {
        margin-bottom: 2.6rem; } }

.gallery-content {
  margin-bottom: 2.5rem; }

.gallery {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 6vw);
  grid-gap: 1.5rem; }
  @media only screen and (max-width: 650px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(5, 1fr); } }
  .gallery__fig {
    overflow: hidden; }
    @media only screen and (max-width: 650px) {
      .gallery__fig {
        height: 30rem;
        width: auto; } }
    @media only screen and (max-width: 480px) {
      .gallery__fig {
        width: 340px;
        height: auto;
        grid-column: 1/-1 !important;
        margin: 0 auto; } }
    @media only screen and (max-width: 370px) {
      .gallery__fig {
        width: 300px; } }
    @media only screen and (max-width: 330px) {
      .gallery__fig {
        width: 230px; } }
  .gallery__pic--1 {
    grid-row: 1/3;
    grid-column: 1/3; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--1 {
        grid-row: 1/3;
        grid-column: 1/2; } }
    @media only screen and (max-width: 480px) {
      .gallery__pic--1 {
        grid-row: 1/2; } }
  .gallery__pic--2 {
    grid-row: 1/4;
    grid-column: 3/5; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--2 {
        grid-row: 1/3;
        grid-column: 2/-1; } }
    @media only screen and (max-width: 480px) {
      .gallery__pic--2 {
        grid-row: 1/2; } }
  .gallery__pic--3 {
    grid-row: 1/3;
    grid-column: 5/6; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--3 {
        grid-row: 2/3;
        grid-column: 1/2; } }
  .gallery__pic--4 {
    grid-row: 3/6;
    grid-column: 1/3; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--4 {
        grid-row: 2/3;
        grid-column: 2/-1; } }
  .gallery__pic--5 {
    grid-row: 1/5;
    grid-column: 6/-1; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--5 {
        grid-row: 3/4;
        grid-column: 1/2; } }
  .gallery__pic--6 {
    grid-row: 6/8;
    grid-column: 1/5; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--6 {
        grid-row: 3/4;
        grid-column: 2/-1; } }
  .gallery__pic--7 {
    grid-row: 4/6;
    grid-column: 3/5; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--7 {
        grid-row: 4/5;
        grid-column: 1/2; } }
  .gallery__pic--8 {
    grid-row: 5/-1;
    grid-column: 5/-1; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--8 {
        grid-row: 4/5;
        grid-column: 2/-1; } }
  .gallery__pic--9 {
    grid-row: 3/5;
    grid-column: 5/6; }
    @media only screen and (max-width: 650px) {
      .gallery__pic--9 {
        grid-row: 5/6;
        grid-column: 1/2; } }
  .gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .gallery__img--hover {
    transition: all .4s ease-in-out; }
    .gallery__img--hover:hover {
      cursor: zoom-in;
      transform: translateY(-1rem) scale(1.3);
      overflow: hidden; }
  .gallery__btn {
    text-align: center;
    margin-top: 2.5rem;
    height: 4rem; }

.gallery-thumbs {
  max-height: 250px;
  overflow-y: scroll;
}

.members {
  background-image: linear-gradient(rgba(172, 172, 172, 0.5), rgba(255, 255, 255, 0.5)), url("../img/members/members-bg-homePage.jpg");
  max-height: 200vh;
  background-position: top;
  background-size: cover;
  padding: 2.5rem 2.5rem;
  position: relative; }
  @media only screen and (max-width: 800px) {
    .members {
      padding: 2.5rem 2rem; } }
  @media only screen and (max-width: 650px) {
    .members {
      padding: 3.2rem 2rem; } }
  .members__arrows--left {
    position: absolute;
    left: 5rem;
    top: 50%;
    z-index: 123; }
    @media only screen and (max-width: 1540px) {
      .members__arrows--left {
        left: 2.2rem; } }
    @media only screen and (max-width: 1400px) {
      .members__arrows--left {
        left: 10rem; } }
    @media only screen and (max-width: 1200px) {
      .members__arrows--left {
        left: 2.8rem; } }
    @media only screen and (max-width: 800px) and (min-width: 500px) {
      .members__arrows--left {
        left: 10rem; } }
  .members__arrows--right {
    position: absolute;
    right: 5rem;
    top: 50%;
    z-index: 123; }
    @media only screen and (max-width: 1540px) {
      .members__arrows--right {
        right: 2.2rem; } }
    @media only screen and (max-width: 1400px) {
      .members__arrows--right {
        right: 10rem; } }
    @media only screen and (max-width: 1200px) {
      .members__arrows--right {
        right: 2.8rem; } }
    @media only screen and (max-width: 800px) and (min-width: 500px) {
      .members__arrows--right {
        right: 10rem; } }
  .members__slider__btn {
    transition: transform 1s ease;
    fill: #ab3f3f;
    width: 5rem; }
    @media only screen and (max-width: 1493px) and (min-width: 1458px) {
      .members__slider__btn {
        width: 3.75rem; } }
    @media only screen and (max-width: 800px) {
      .members__slider__btn {
        width: 6rem; } }
  .members__cards {
    max-width: 130rem;
    margin: 10rem auto 10rem 17rem;
    display: -webkit-box;
    overflow: hidden; }
    @media only screen and (max-width: 1950px) and (min-width: 1800px) {
      .members__cards {
        margin-left: 10rem; } }
    @media only screen and (max-width: 1640px) {
      .members__cards {
        margin-left: 12rem; } }
    @media only screen and (max-width: 1596px) {
      .members__cards {
        margin-left: 8rem; } }
    @media only screen and (max-width: 1530px) {
      .members__cards {
        margin-left: 5.5rem; } }
    @media only screen and (max-width: 1493px) {
      .members__cards {
        margin-left: 3.6rem; } }
    @media only screen and (max-width: 1458px) {
      .members__cards {
        margin-left: 2rem; } }
    @media only screen and (max-width: 1457px) and (min-width: 1350px) {
      .members__cards {
        margin-left: 27rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 1349px) and (min-width: 1269px) {
      .members__cards {
        margin-left: 23rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 1269px) {
      .members__cards {
        margin-left: 21rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 1220px) {
      .members__cards {
        margin-left: 16rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 1171px) {
      .members__cards {
        margin-left: 13rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 1058px) {
      .members__cards {
        margin-left: 5.6rem;
        max-width: 88rem; } }
    @media only screen and (max-width: 800px) {
      .members__cards {
        max-width: 25rem;
        margin: 0 auto; } }
  .members__card {
    box-shadow: 2px 2.5rem 2.5rem #919090;
    transition: all 1s ease-in-out;
    border: 1px solid transparent;
    border-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    outline: none; }
  .members__card--homePage {
    max-width: 25rem;
    width: 100%;
    height: 50rem;
    background-color: rgba(172, 172, 172, 0.5);
    overflow: hidden;
    position: relative; }
    .members__card--homePage:hover {
      background-color: rgba(224, 224, 224, 0.9); }
    @media only screen and (max-width: 800px) {
      .members__card--homePage {
        max-width: 100%;
        margin: 6rem auto; } }
  .members__fig {
    width: 25rem;
    height: 25rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    overflow: hidden; }
  .members__img {
    width: 100%;
    object-fit: cover;
    display: block; }
  .members__name {
    font-size: 1.4rem;
    color: #0b1024;
    font-family: "PT Serif", serif;
    position: absolute;
    top: 21rem;
    right: 2.5rem;
    width: max-content;
    height: min-content;
    padding: .65rem .75rem;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #cf7474; }
  .members__card--info {
    margin: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20rem; }
    .members__card--info span:not(:last-child) {
      border-bottom: 1px solid #e0e0e0;
      margin-bottom: .75rem;
      display: block; }
  .members__text {
    font-size: 1.5rem;
    color: #000;
    font-style: italic;
    margin-bottom: 1.25rem;
    wrap-option: 2rem; }
  .members__date {
    font-size: 1.35rem;
    color: #454444;
    justify-self: flex-end;
    text-transform: capitalize; }
  .members__from {
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 1.25rem;
    font-style: italic;
    justify-self: flex-end;
    display: flex;
    align-items: stretch;
    margin-bottom: .5rem; }
    .members__from--svg {
      width: 1.25rem;
      height: 1.25rem;
      margin-right: .5rem;
      fill: #3d3d7a; }
  .members__btn {
    text-align: center;
    margin-bottom: 3.75rem; }

.from {
  cursor: pointer;
  color: #6492ca; }

.footer {
  max-height: 200vh;
  background-image: linear-gradient(rgba(11, 16, 36, 0.9), rgba(100, 146, 202, 0.5)), url("../img/Backgrounds/bg-contact2.jpg");
  background-position: bottom;
  background-size: cover;
  padding-top: 2.5rem; }
  .footer__content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
    @media only screen and (max-width: 700px) {
      .footer__content {
        justify-content: center; } }
  .footer__left {
    text-shadow: 1px 2px 3px;
    align-self: flex-start; }
    @media only screen and (max-width: 1200px) {
      .footer__left {
        padding-left: 5.5rem; } }
    @media only screen and (max-width: 1200px) {
      .footer__left {
        padding-left: 1.75rem; } }
  .footer__icon-box {
    width: 5.5rem;
    margin: 0 auto;
    padding-top: 2.2rem; }
  .footer__icon-img {
    width: 100%;
    border-radius: 50%; }
  .footer__ul {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; }
  .footer__items {
    transition: all .5s ease-in-out;
    text-align: center; }
    .footer__items:hover {
      transform: translate3d(-5px, -5px, -5px) rotate3d(3, 5, 2, 20deg); }
  .footer__last--item {
    flex: 100;
    display: flex;
    align-items: baseline; }
  .footer__number {
    font-size: 1.4rem;
    color: #e0e0e0; }
    .footer__number:before {
      content: ":";
      color: #acacac;
      margin-left: -2rem;
      margin-right: 1rem; }
  .footer__svg {
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 2.5rem;
    margin-top: 2.5rem;
    fill: #acacac;
    box-shadow: 12px 10px 10px rgba(0, 0, 0, 0.1); }
  .footer__right {
    align-self: flex-end; }
    @media only screen and (max-width: 700px) {
      .footer__right {
        flex-basis: 100%; } }
  .footer__form {
    display: flex;
    flex-direction: column;
    width: 30vw;
    padding: 2.5rem;
    margin-top: 1.75rem; }
    @media only screen and (max-width: 700px) {
      .footer__form {
        width: 50rem;
        margin: 0 auto; } }
    @media only screen and (max-width: 370px) {
      .footer__form {
        width: 250px; } }
  .footer__input {
    font-size: 1.6rem;
    font-family: "Merienda", cursive;
    border: 1px solid #999999;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    padding: .75rem 1.5rem;
    outline: none;
    opacity: .4;
    transition: opacity .5s ease-in-out; }
    .footer__input:hover, .footer__input:active {
      opacity: 1; }
  .footer__arrow {
    align-self: flex-end;
    fill: #676767;
    padding: 1.5rem 2.2rem;
    transition: trsnsform .8s;
    cursor: pointer; }
    .footer__arrow--svg {
      width: 3rem;
      height: 3rem; }
    .footer__arrow:hover {
      transform: translateY(-10px); }
  .footer__arrow--scroll {
    position: fixed;
    top: 90vh;
    right: .5rem; }
  .footer__maker {
    width: 95%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 2.2rem; }
    @media only screen and (max-width: 500px) {
      .footer__maker {
        flex-direction: column; } }
    .footer__maker--name {
      border-bottom: 1px solid #f4f4f4;
      font-style: oblique;
      font-size: 1.2rem;
      letter-spacing: .3rem;
      color: #f4f4f4;
      padding-bottom: 1rem;
      display: inline-block;
      text-transform: capitalize;
      text-align: center; }
      @media only screen and (max-width: 500px) {
        .footer__maker--name {
          letter-spacing: .1rem;
          margin-top: 2.2rem; } }
    .footer__maker--email {
      width: 2rem;
      height: 2rem;
      fill: #777777;
      transform: rotate(20deg);
      margin-left: .5rem;
      margin-bottom: -.5rem;
      transition: all .5s ease; }
      .footer__maker--email:hover {
        fill: #0b1024;
        transform: rotate(0) scale(1.2); }

.facebook:hover {
  fill: #3b5998; }

.footer__hover:hover {
  background-color: white;
  padding: .5rem;
  border-radius: 50%;
  transform: scale(1.5); }

.whatsapp:hover {
  fill: #25d366; }

.linkedin:hover {
  fill: #0a66c2; }

.email:hover {
  fill: #EA4335; }

.more-activities__header {
  height: 44vh;
  background-image: url("../img/Backgrounds/bg-activities.png");
  background-size: cover;
  background-position: bottom; }

@media only screen and (max-width: 900px) {
  .more-activities__header-heading {
    position: absolute;
    top: 8.5rem;
    left: 5%;
    right: 5%; } }

.more-activities__section {
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 2.2rem 1.75rem; }
  .more-activities__section:last-child {
    margin-bottom: 4.5rem; }

.more-activities__title {
  position: relative;
  height: 30rem;
  width: 30rem;
  text-align: center;
  flex-basis: 30rem;
  margin: .75rem; 
}
  @media only screen and (min-width: 900px) and (max-width: 1100px) {
    .more-activities__title {
      height: 27rem;
      width: 27rem;
      flex-basis: 27rem; 
    } 
  }

.more-activities__circle {
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 6px; }

.more-activities__shadow {
  top: 3rem;
  left: -.5rem;
  background-color: transparent;
  border: 2px solid black; }

.more-activities__img--box {
  top: 2rem;
  left: 1rem; 
}

.more-activities__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px; 
}

.more-activities__contents {
  flex-basis: 60%; }
  @media only screen and (max-width: 800px) {
    .more-activities__contents {
      padding: 0 2.2rem; } }
  @media only screen and (max-width: 800px) {
    .more-activities__contents {
      flex-basis: 90%; } }
  @media only screen and (max-width: 500px) {
    .more-activities__contents {
      padding: 0 1rem;
      flex-basis: 100%;
      text-align: justify; } }

.more-activities__heading {
  margin-top: 1.2rem;
  padding: 2.5rem 10%; }

.more-activities__date {
  height: 30%;
  width: 30%;
  position: absolute;
  bottom: -3.5rem;
  right: -2rem;
  background-color: #d6d6d6;
  clip-path: circle(50% at 50% 50%);
  color: #460000; 
}

.more-activities__heading--place {
  position: absolute;
  bottom: 5rem;
  left: 50%; 
}

.more-activities__text {
  font-size: 1.6rem;
  text-align: justify;
  color: #777777;
  width: 100%; 
}

.more-activities__text a {
    text-decoration: underline;
    color: #009;
}

.history {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5rem; }
  @media only screen and (max-width: 800px) {
    .history {
      margin: .5rem 1.75rem; } }
  @media only screen and (max-width: 800px) {
    .history {
      flex-direction: column; } }
  .history__megha {
    height: auto;
    width: 50rem;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    flex: 0 0 35rem;
    padding: .5rem 3.5rem; }
  .history__context {
    max-height: 100rem;
    width: 50vw;
    flex: 0 0 1; }
    @media only screen and (max-width: 800px) {
      .history__context {
        width: 80vw; } }
    @media only screen and (max-width: 650px) {
      .history__context {
        width: 85vw; } }
    @media only screen and (max-width: 480px) {
      .history__context {
        width: 90vw; } }
  .history__paragraph {
    color: #777777;
    font-size: 1.6rem;
    text-align: justify;
    font-style: italic; }
    @media only screen and (max-width: 800px) {
      .history__paragraph {
        padding: 1.75rem; } }
  .history__read-more {
    color: #777777;
    cursor: pointer; }

.stories__header {
  background: url("../img/Backgrounds/bg-stories.png") top;
  background-size: cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.stories__section {
  position: relative;
  z-index: 100;
  margin-bottom: 10rem; }

.stories__content {
  width: 75%;
  transform: skewX(-12deg);
  background-color: #cb5757;
  margin: 5rem auto;
  z-index: 100; }
  @media only screen and (max-width: 570px) {
    .stories__content {
      transform: skewX(0); } }

.stories__box {
  width: 100%;
  min-height: 30rem;
  height: auto;
  transform: skewX(12deg);
  padding: 1.75rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }
  @media only screen and (max-width: 900px) {
    .stories__box {
      padding: 2rem 5rem; } }
  @media only screen and (max-width: 800px) {
    .stories__box {
      padding: 1.5rem 5rem;
      margin-left: 1rem; } }
  @media only screen and (max-width: 650px) {
    .stories__box {
      padding: 1.5rem 2.9rem; } }
  @media only screen and (max-width: 570px) {
    .stories__box {
      transform: skewX(0);
      margin-left: 0;
      padding: 1rem .4rem;
      text-align: justify; } }

.stories__box--shadow {
  position: absolute;
  width: 70%;
  height: 25rem;
  bottom: -20%;
  right: 12%;
  background-color: #3e0202;
  transform: skewX(-12deg);
  z-index: -1;
  margin: 4.5rem auto; }
  @media only screen and (max-width: 570px) {
    .stories__box--shadow {
      transform: skewX(0); } }

.collection__bg {
  height: 30vh;
  background-image: url("../img/Backgrounds/bg-collection.jpg");
  background-size: cover;
  background-position: bottom; }

.collection__main {
  padding: 5rem 0; }

.collection__album {
  height: 100vh;
  width: 96vw;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  padding-top: 4rem; }

.collection__figure {
  width: auto; }
  @media only screen and (min-width: 1000px) and (max-width: 1100px) {
    .collection__figure {
      max-height: 35rem;
      width: 50vw; } }

.collection__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 10px solid #ffffff; }

.collection--1 {
  grid-row: 3/ 7;
  grid-column: 3/ 7;
  transform: rotate(-25deg);
  z-index: 115; }
  @media only screen and (max-width: 900px) {
    .collection--1 {
      grid-row: 1/3;
      grid-column: 1/6; } }

.collection--2 {
  grid-row: 7/10;
  grid-column: 4/ 6;
  transform: rotate3d(9, 6, 10, -20deg);
  z-index: 118; }
  @media only screen and (max-width: 900px) {
    .collection--2 {
      grid-row: 8/-1;
      grid-column: 2/7; } }

.collection--3 {
  grid-row: 2/5;
  grid-column: 7/ 10;
  transform: rotate3d(2, -5, -8, -30deg);
  z-index: 130; }
  @media only screen and (min-width: 1000px) and (max-width: 1100px) {
    .collection--3 {
      grid-column: 5/ 9; } }
  @media only screen and (max-width: 900px) {
    .collection--3 {
      transform: rotate3d(2, -5, -5, 10deg);
      grid-row: 3/5;
      grid-column: 2/ 9; } }

.collection--4 {
  grid-row: 5/10;
  grid-column: 6/ 9;
  transform: rotate3d(20, 50, 10, 30deg);
  z-index: 120; }
  @media only screen and (max-width: 900px) {
    .collection--4 {
      grid-row: 5/8;
      grid-column: 4/ 9; } }

.collection__form {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 2.5rem; }
  .collection__form > * {
    font-size: 1.6rem;
    font-family: "Merienda", cursive;
    padding: 1.2rem; }

.collection__select {
  width: 230px;/*max-content;*/
  padding: .5rem .75rem;
  font-size: inherit;
  font-family: inherit;
  margin-left: 1.2rem;
  border: 1px solid #eee;
  border-radius: 8px;
  outline: none; }
  .collection__select option {
    font-family: inherit;
    font-size: inherit;
    color: #8a8a8a; }

.collection__text--location {
  grid-column: 8/10;
  grid-row: 1/2;
  align-self: center; }

.collection__text--box {
  height: 20rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%); }

.collection__text--title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 1.5rem 2.5rem; }

.collection {
  /* Position the image container (needed to position the left and right arrows) */ }
  .collection__slideshow {
    position: relative;
    width: 70%;
    margin: 0 auto; }
    @media only screen and (max-width: 900px) {
      .collection__slideshow {
        width: 90%; } }

img {
  vertical-align: middle; }

/* Hide the images by default */
.mySlides {
  display: none;
  margin: 0 auto; }

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer; }

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #070707;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none; }
  @media only screen and (max-width: 900px) {
    .prev,
    .next {
      padding: .2rem;
      top: 60%; } }

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px; }

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8); }

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0; }

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white; }

.row:after {
  content: "";
  display: table;
  clear: both; }

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
  height: 7rem;
  overflow-y: hidden;
  padding: .5rem; }

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  object-fit: cover;
  height: 100%;
width: 100%}

.active,
.demo:hover {
  opacity: 1; }

.moreMembers__header {
  height: 80vh;
  background-image: linear-gradient(to right, rgba(20, 20, 20, 0.35), rgba(119, 119, 119, 0.5)), url("../img/Backgrounds/bg-members.jpg");
  background-position: top;
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%); }
  .moreMembers__header__heading {
    text-align: center; }

.moreMembers {
  margin-bottom: 10rem; }
  .moreMembers__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 2rem 5rem; }
    .moreMembers__box > * {
      margin: 5rem 5rem; }
  .moreMembers__card {
    max-width: 35rem;
    width: 100%;
    height: 50rem;
    background-color: rgba(255, 255, 255, 0.5); }
  .moreMembers__fig {
    position: relative;
    margin-left: 2.2rem; }
  .moreMembers__shadow {
    position: absolute;
    top: 2.5rem;
    left: -2.5rem;
    height: 25rem;
    width: 25rem;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
  .moreMembers__img--box {
    height: 30rem;
    width: 30rem;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
  .moreMembers__img {
    width: 100%;
    height: auto; }

.popup {
  height: 100vh;
  width: 100%;
  background-color: rgba(224, 224, 224, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22222;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center; }

.popup__content {
  opacity: 0;
  transition: opacity .6s; }

.popup-hidden {
  display: none; }

.popup__close--btn {
  position: fixed;
  top: 7rem;
  right: 10%;
  z-index: 33333333; }

.country {
  background-color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5);
  font-size: 1.8rem;
  width: 35rem;
  height: max-content;
  border-radius: 10px;
  margin-top: 2.2rem; }
  .country__img-box {
    width: 100%;
    height: 25rem;
    text-align: center;
    border-top-right-radius: .7rem;
    border-top-left-radius: .7rem;
    overflow: hidden; }
  .country__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem; }
  .country__data {
    padding: 2.5rem 3.75rem 3rem 3.75rem; }
  .country__name {
    font-size: 2.2rem;
    margin-bottom: 0.7rem; }
  .country__region {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #888; }

.country__row:not(:last-child) {
  margin-bottom: 1rem; }

.country__row span {
  display: inline-block;
  margin-right: 2rem;
  font-size: 2.4rem; }

.more-projects__content {
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 5rem; }

.more-projects__bg {
  height: 50vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(238, 238, 238, 0.5)), url("../img/Backgrounds/bg-project.jpg");
  background-position: center;
  background-size: cover; }

.more-projects__img--box {
  justify-self: center;
  display: inline-block;
  width: 50%;
  height: 50%;
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%); }

.more-projects__date {
  border-bottom: 1px solid #eee; }

.more-projects__context {
  width: 80%; }
  @media only screen and (max-width: 650px) {
    .more-projects__context {
      width: 90%; } }

.admin {
  width: 80%;
  margin: 0 auto; }
  .admin > * {
    font-size: 1.6rem;
    color: black;
    margin: 1.5rem 2.5rem; }
  .admin__header {
    background-color: #eee; }
  .admin__ul {
    height: 7rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
  .admin textarea,
  .admin label {
    display: block;
    border-radius: 5px; }
  .admin__title {
    width: 80%; }
  .admin__div {
    border-bottom: 5px solid #020202; }
    .admin__div > :not(:last-child) {
      font-size: 1.4rem;
      padding: 0.75rem 1.5rem;
      border-radius: 5px; }
    .admin__div :last-child {
      padding: .8rem 1rem;
      margin-left: 2.2rem;
      margin-bottom: 1.2rem;
      border-radius: 5px; }
  .admin__home-activities :last-child {
    padding: .8rem 1rem;
    margin: 2.2rem 5rem;
    border-radius: 8px; }
  .admin__home-gallery img {
    margin: 2rem; }
  .admin__stories--table {
    margin-left: 2.2rem; }
    .admin__stories--table tr:nth-of-type(odd) {
      background-color: #4d8683; }
  .admin__tr > * {
    padding: 1rem 2.5rem 0;
    text-align: center; }
  .admin__checkbox {
    transform: scale(1.4); }

  /*//Pagination*/
.pagination__ul {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3.5rem;
}

.pagination__a {
   padding: .75rem 1.75rem;
  margin-right: .5rem;
  font-size: 1.6rem;
  font-family: "Merienda", cursive;
  background-color: #eee;
  border-radius: 5px;
  color: #606060;
}
.disabled {
  display: none;
}
.pagination__active {
  color: #2d0202!important;
  background-color: #cf7474;
}

*{-webkit-box-sizing:border-box;box-sizing:border-box}
body{
  padding:0;
  margin:0
}

#notfound{
  position:relative;
  height:80vh
}

#notfound .notfound{
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%)
}

.notfound{
  max-width:520px;
  width:100%;
  line-height:1.4;
  text-align:center
}

.notfound .notfound-404{
  position:relative;
  height:240px
}

.notfound .notfound-404 h1{
  font-family:montserrat,sans-serif;
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
  font-size:252px;
  font-weight:900;
  margin:0;
  color:#353160;
  text-transform:uppercase;
  letter-spacing:-40px;
  margin-left:-20px
}

.notfound .notfound-404 h1>span{
  text-shadow:-8px 0 0 #fff
}

.notfound .notfound-404 h3{
  font-family:cabin,sans-serif;
  position:relative;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  color:#353160;
  margin:0;
  letter-spacing:3px;
  padding-left:6px
}

.notfound h2{
  font-family:cabin,sans-serif;
  font-size:20px;
  font-weight:400;
  text-transform:uppercase;
  color:#353160;
  margin-top:0;
  margin-bottom:25px
}

@media only screen and (max-width:767px){
  .notfound .notfound-404{
    height:200px
  }
  .notfound .notfound-404 h1{
    font-size:200px
  }
}

@media only screen and (max-width:480px){
  .notfound .notfound-404{
    height:162px
  }
  .notfound .notfound-404 h1{
    font-size:162px;
    height:150px;
    line-height:162px
  }
  .notfound h2{
    font-size:16px
  }
}

#close_cookie{display:none;}
	#close_cookie:checked + #cookie_consent_popup{display:none;}	
#cookie_consent_popup{
	position:fixed;
	bottom:30px;left:30px;
	width:400px;
	height:180px;
	background-color:#eee;
	padding:20px;
	 z-index:2;
}
	#cookie_consent_popup h1{
		font-size:1.2em;
	}
		#cookie_consent_popup h1:before{
			content:"";
			padding:0;
		}
	#cookie_consent_popup p{
		font-size:1em;
	}
	#cookie_consent_popup #close_cookie_box{
		position:absolute;
		top:20px;right:20px;
		cursor:pointer;
		font-size:1.3em;
	}
	#cookie_consent_popup #ok_cookie_box{
		position:absolute;
		bottom:20px;right:20px;
		cursor:pointer;
		font-size:1.6em;
		padding:10px 20px;
		font-weight:700;
		color:black;
	}