@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* #region -------------------------------------------------------- @mixin */
/* #endregion */
/* #region -------------------------------------------------------- General Definitions */
/* #region -------------------------------------------------------- Scroll Down Arrow */
#wrapper {
  display: table;
  width: 100%;
  height: 100%;
  margin-top: 100px;
}

#wrapper-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 38px;
}

.arrow-down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  behavior: url(-ms-transform.htc);
  transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

#scroll-down::before {
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: elasticus 3s cubic-bezier(1, 0, 0, 1) infinite;
  /* IE 10+, Fx 29+ */
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 90px;
  background: #fff;
  content: " ";
}
@keyframes elasticus {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0);
  }
}
body {
  margin: 0;
  padding: 0;
  color: #fbfbff;
  background: rgb(185, 192, 217);
  background: linear-gradient(180deg, rgb(185, 192, 217) 0%, rgb(104, 121, 164) 45%, rgb(26, 33, 49) 100%);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 4rem;
  color: #fbfbff;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  h1 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
  color: #fbfbff;
  margin: 20px 0;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  h2 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 0.9rem;
  }
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: #fbfbff;
  font-size: 1.2rem;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  h3 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  h3 {
    font-size: 19px;
  }
}

p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.1rem;
  color: #fbfbff;
  margin: 0 0;
}
p i {
  font-size: 0.8em;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  p {
    font-size: 0.9rem;
  }
}

a {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.1rem;
  color: #fbfbff;
  margin: 0 0;
  transition: all 0.2s ease;
  text-decoration: none;
}
a:hover {
  color: #d5d5d5;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  a {
    font-size: 0.9rem;
  }
}

a.mail,
a.website {
  position: relative;
  left: -25px;
  transition: all 0.2s ease;
}
a.mail i,
a.website i {
  opacity: 0;
  transition: opacity 0.2s ease;
}
a.mail:hover,
a.website:hover {
  left: 0;
}
a.mail:hover i,
a.website:hover i {
  opacity: 1;
}
@media screen and (max-width: 599px) {
  a.mail,
  a.website {
    left: 0;
  }
  a.mail i,
  a.website i {
    opacity: 1;
  }
}

/* #region -------------------------------------------------------- Preloader Animation */
@keyframes preloader-anim {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}
@keyframes logo-anim {
  0% {
    transform: scale(0.5);
  }
  85% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes logol-anim {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cloudh1-anim {
  0% {
    top: 50vh;
    left: 50vw;
  }
  30% {
    top: calc(50vh - 400px);
    left: calc(50vw - 500px);
  }
  60% {
    top: calc(50vh - 400px);
    left: calc(50vw - 500px);
  }
  100% {
    top: 50vh;
    left: 50vw;
  }
}
/* #region -------------------------------------------------------- Preloader */
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: rgb(218, 0, 36);
  background: linear-gradient(180deg, rgb(218, 0, 36) 0%, rgb(218, 0, 36) 20%, rgb(218, 0, 36) 30%, rgb(135, 36, 52) 100%);
  background-size: 200% 200%;
  animation: 4s ease-in preloader-anim;
  -webkit-animation: 4s ease-in preloader-anim;
  -moz-animation: 4s ease-in preloader-anim;
}
.preloader.hidden {
  display: none;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.preloader .cloud {
  width: 100vw;
  height: 100vh;
}
.preloader .cloud h1 {
  position: fixed;
}
.preloader .cloud h1:nth-of-type(1) {
  top: calc(50vh - 400px);
  left: calc(50vw - 500px);
  animation: 2s cubic-bezier(0.65, 0, 0.35, 1) cloudh1-anim;
  -webkit-animation: 2s cubic-bezier(0.65, 0, 0.35, 1) cloudh1-anim;
  -moz-animation: 2s cubic-bezier(0.65, 0, 0.35, 1) cloudh1-anim;
}
.preloader .cloud h1:nth-of-type(2) {
  top: 50vh;
  left: calc(50vw + 300px);
}
.preloader .cloud h1:nth-of-type(3) {
  top: calc(50vh + 100px);
  left: calc(50vw - 380px);
}
.preloader .cloud h1:nth-of-type(4) {
  top: calc(50vh - 300px);
  left: calc(50vw + 350px);
}
.preloader .preloader-container {
  text-align: center;
  width: 400px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .preloader .preloader-container {
    width: 250px;
  }
}
.preloader .preloader-container .preloader-logo {
  margin-bottom: 7px;
}
.preloader .preloader-container .preloader-logo .logo-icon {
  width: 150px;
  height: 150px;
  animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logo-anim forwards;
  -webkit-animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logo-anim forwards;
  -moz-animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logo-anim forwards;
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 599px) {
  .preloader .preloader-container .preloader-logo .logo-icon {
    width: 80px;
    height: 80px;
  }
}
.preloader .preloader-container .preloader-logo .logo-long {
  animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logol-anim;
  -webkit-animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logol-anim;
  -moz-animation: 2s cubic-bezier(0, 0.55, 0.45, 1) logol-anim;
  height: 80px;
  transform: translateY(-100px);
}

.main {
  width: 100%;
}

.popup .content {
  display: block !important;
}

@media screen and (max-width: 599px) {
  .content {
    display: flex !important;
  }
}
@media screen and (max-width: 599px) {
  .content .main {
    align-self: flex-end;
    margin-bottom: 60px;
  }
}

.head {
  pointer-events: all;
  width: 100%;
  min-height: 100px;
  z-index: 20;
  pointer-events: none;
  margin-top: 40px;
  padding-bottom: 80px;
}
.head h1 {
  top: 50%;
  left: 50%;
  font-size: 80px;
  cursor: pointer;
  color: #fff !important;
  width: -moz-fit-content;
  width: fit-content;
}
.head h1::after {
  content: "";
  display: block;
  position: relative;
  bottom: 1.18em;
  left: -15px;
  z-index: -1;
  width: calc(100% + 30px);
  height: 1.1em;
  background: #da0024;
  transition: transform 0.2s ease-in-out;
  transform: scale(0);
  transform-origin: left center;
  animation: h1-underline 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both;
  -moz-animation: h1-underline 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both;
  -o-animation: h1-underline 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both;
}
@media screen and (max-width: 599px) {
  .head {
    position: absolute;
  }
}

@keyframes h1-underline {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.head {
  padding-top: 15px;
}
.head h1 {
  color: #da0024;
  margin: 0;
}

.button-primary {
  font-family: "UlagadiSans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08rem;
  text-decoration: none;
  color: #fbfbff;
  font-size: 1rem;
  margin: 0;
  padding: 15px 25px;
  cursor: pointer;
  outline: none;
  background: none;
  transition: all 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  border: 2px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 50px;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .button-primary {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}
.button-primary:before {
  left: -5px;
  top: -4px;
  text-shadow: 2px 0 #fff;
  box-shadow: 2px 0 #fff;
}
.button-primary:after {
  left: 4px;
  bottom: -5px;
  text-shadow: -1px 0 #fff;
  box-shadow: -1px 0 #fff;
}
.button-primary:hover {
  background: #1a213c;
  color: #fff;
  /*-webkit-box-shadow: 0px 0px 25px 1px $background-color;
  -moz-box-shadow: 0px 0px 25px 1px $background-color;
  box-shadow: 0px 0px 25px 1px $background-color;*/
  border: 2px solid #1a213c;
}
@media screen and (max-width: 599px) {
  .button-primary:hover {
    background: unset;
    border: 2px solid hsla(0, 0%, 100%, 0.2);
  }
}

#main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

#main-container.fadeout {
  opacity: 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.main-background.hidden {
  z-index: -1 !important;
  display: none !important;
}

.main-background.top {
  top: -100vh;
}

.main-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}

/* #endregion */
/* #region -------------------------------------------------------- Mouse Trailer */
#trailer {
  height: 20px;
  width: 20px;
  background-color: white;
  color: #000;
  border-radius: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
}
#trailer i {
  text-align: center;
  font-size: 6px;
  line-height: 4px;
  opacity: 0;
  transition: opacity 400ms ease;
}

#trailer:not([data-type=""]) > #trailer-icon {
  opacity: 1;
}

body:hover > #trailer {
  opacity: 1;
}

/* #endregion */
/* #region -------------------------------------------------------- Animations */
.delay-1 {
  animation-delay: 0.125s !important;
}

.delay-2 {
  animation-delay: 0.25s !important;
}

.delay-3 {
  animation-delay: 0.375s !important;
}

.delay-4 {
  animation-delay: 0.5s !important;
}

.delay-5 {
  animation-delay: 0.625s !important;
}

.delay-6 {
  animation-delay: 0.75s !important;
}

.delay-7 {
  animation-delay: 0.875s !important;
}

.delay-8 {
  animation-delay: 1s !important;
}

.delay-9 {
  animation-delay: 1.125s !important;
}

.delay-10 {
  animation-delay: 1.25s !important;
}

.delay-11 {
  animation-delay: 1.375s !important;
}

.delay-12 {
  animation-delay: 1.5s !important;
}

.delay-13 {
  animation-delay: 1.625s !important;
}

.delay-14 {
  animation-delay: 1.75s !important;
}

.delay-15 {
  animation-delay: 1.875s !important;
}

.delay-16 {
  animation-delay: 2s !important;
}

.delay-17 {
  animation-delay: 2.125s !important;
}

.delay-18 {
  animation-delay: 2.25s !important;
}

.delay-19 {
  animation-delay: 2.375s !important;
}

.delay-20 {
  animation-delay: 2.5s !important;
}

.delay-21 {
  animation-delay: 2.625s !important;
}

.delay-22 {
  animation-delay: 2.75s !important;
}

.delay-23 {
  animation-delay: 2.875s !important;
}

.delay-24 {
  animation-delay: 3s !important;
}

.delay-25 {
  animation-delay: 3.125s !important;
}

#background-transition {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0a0a2c;
  z-index: 10;
  display: none;
}

.slide-in-blurred-bottom {
  animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-6-28 12:2:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-7 16:14:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-blurred-bottom
 * ----------------------------------------
 */
@keyframes slide-in-blurred-bottom {
  0% {
    transform: translateY(100px);
    transform-origin: 50% 100%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
.fade-in-bck {
  animation: fade-in-bck 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.slide-in-blurred-top {
  animation: slide-in-blurred-top 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.tracking-in-expand {
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.fade-in-top {
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.tracking-in-contract-bck {
  animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.divider-in {
  animation: divider-in 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.vertical-divider-in {
  animation: vertical-divider-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.tracking-in-expand {
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-bck {
  0% {
    transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred-top {
  0% {
    transform: translateY(-100px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes divider-in {
  0% {
    width: 0;
  }
  100% {
    width: 150px;
  }
}
@keyframes vertical-divider-in {
  0% {
    height: 0;
  }
  100% {
    height: 1200px;
  }
}
@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/* #endregion*/
/* #region -------------------------------------------------------- Navigation */
#progress {
  position: absolute;
  right: -2px;
  top: 0;
  width: 2px;
  height: 0vh;
  background-color: #ffffff;
  transition: height 0.6s ease-in-out;
}

@media screen and (max-width: 959px) {
  .desktop-only {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .responsive-only--dt-md {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .responsive-only--dt {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .responsive-only--dt {
    display: none;
  }
}

.responsive-only--md {
  display: none;
}
@media screen and (max-width: 959px) {
  .responsive-only--md {
    display: block;
  }
}

.responsive-only--sm {
  display: none;
}
@media screen and (max-width: 599px) {
  .responsive-only--sm {
    display: block;
  }
}

.mobile-only {
  display: none;
}
@media screen and (max-width: 959px) {
  .mobile-only {
    display: block;
  }
}

#navigation.expanded {
  left: 0;
}

#navigation.hidden {
  z-index: -1;
  visibility: hidden;
  margin-left: -200px;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  position: relative;
}

#navigation {
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 200px;
  height: 100%;
  padding: 50px 0;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-right: solid 2px hsla(0, 0%, 100%, 0.2);
  z-index: 999;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}
@media screen and (max-width: 599px) {
  #navigation {
    width: 58px;
    padding: 0 0;
    left: -58px;
  }
}
#navigation .logo {
  width: 75%;
  position: relative;
  left: -15px !important;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 599px) {
  #navigation .logo {
    height: 40px;
    margin-left: -10px;
    left: 58px !important;
  }
}
@media screen and (max-width: 599px) {
  #navigation.expanded .logo {
    position: relative;
    left: 0 !important;
    transition: all 0.4s ease-in-out;
  }
}
#navigation ul:nth-child(1n) h3 {
  animation-delay: 0.125s;
}
#navigation ul:nth-child(2n) h3 {
  animation-delay: 0.25s;
}
#navigation ul:nth-child(3n) h3 {
  animation-delay: 0.375s;
}
#navigation ul:nth-child(4n) h3 {
  animation-delay: 0.5s;
}
#navigation ul:nth-child(5n) h3 {
  animation-delay: 0.625s;
}
#navigation ul:nth-child(6n) h3 {
  animation-delay: 0.75s;
}
#navigation ul:nth-child(7n) h3 {
  animation-delay: 0.875s;
}
#navigation ul:nth-child(8n) h3 {
  animation-delay: 1s;
}
#navigation ul:nth-child(9n) h3 {
  animation-delay: 1.125s;
}
#navigation ul:nth-child(10n) h3 {
  animation-delay: 1.25s;
}
#navigation ul {
  position: absolute;
  top: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#navigation ul li {
  padding: 0;
  width: 100%;
  height: calc(0.125 * (100vh - 150px));
  text-align: center;
}
@media screen and (max-width: 599px) {
  #navigation ul li {
    height: 45px;
    margin: 20px 0;
  }
}
#navigation ul li:first-of-type {
  height: 150px;
}
@media screen and (max-width: 599px) {
  #navigation ul li:first-of-type {
    height: 70px;
  }
}
#navigation ul li button {
  all: unset;
  display: block;
  height: 100%;
  width: 100%;
  color: #fbfbff;
  text-align: left;
  padding-left: 50px;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  #navigation ul li button {
    padding-left: 20px;
  }
}
#navigation ul li button h2 {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 2px -5px;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 599px) {
  #navigation ul li button h2 {
    font-size: 18px;
  }
}
#navigation ul li button h2.active {
  color: #da0024;
}
#navigation ul li button h2.active ~ h3 {
  color: #da0024;
}
#navigation ul li button h2.active + h2.responsive-only--sm {
  color: #da0024;
}
#navigation ul li button h2.active + h2.responsive-only--sm ~ h3 {
  color: #da0024;
}
#navigation ul li button h3 {
  position: relative;
  left: -25px;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  transition: all 0.2s ease-out;
}
#navigation ul li button h3 i {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
#navigation ul li button:hover h3 {
  left: 0;
}
#navigation ul li button:hover h3 i {
  opacity: 1;
}
#navigation ul li a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 100px;
  color: #fbfbff;
  text-decoration: none;
  font-family: "UlagadiSans";
  font-size: 2rem;
  font-weight: 500;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100vw !important;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-top: solid 2px hsla(0, 0%, 100%, 0.2);
  z-index: 999;
  display: flex;
  text-align: center;
  padding-top: 18px;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}
.footer p {
  margin: 0 auto;
}

/* #endregion */
/* #region -------------------------------------------------------- Content Side */
#navigation.hidden ~ .content-container {
  width: 100vw !important;
  position: fixed;
  left: 0;
}

.content-container {
  position: relative;
  display: inline-flex;
  width: calc(100vw - 200px - 200px);
  height: 100%;
}

.content-side {
  position: absolute;
  display: block;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  animation: fadein 0.4s ease-in-out both;
}
@media screen and (max-width: 959px) {
  .content-side {
    width: calc(100vw - 58px);
  }
}
@media screen and (max-width: 599px) {
  .content-side {
    position: absolute;
    left: 58px;
  }
}

.content-side.hidden {
  transition: opacity 0.4s ease-in-out;
  animation: fadeout 0.4s ease-in-out both;
}

@keyframes fadein {
  0% {
    opacity: 0;
    z-index: -1;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
    margin-top: 0;
    display: block;
  }
  99% {
    opacity: 0;
    margin-top: -100px;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
    margin-top: -100px;
  }
}
.fadeout {
  animation: fadeout 0.4s ease-in-out 0s forwards;
}

.fadein {
  animation: fadein 0.4s ease-in-out 0.4s forwards;
}

.content-side.c0 {
  position: absolute;
  width: 100vw !important;
  left: 0 !important;
  opacity: 1 !important;
}

@media screen and (max-width: 599px) {
  .content-side.n {
    left: 10px;
    width: 100%;
    right: 10px;
    transition: all 0.4s ease-in-out;
  }
}

.content {
  width: 100%;
  z-index: 100;
  display: block;
  padding: 0px 80px 120px 80px;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .content {
    padding: 0 40px 60px 40px;
  }
}
@media screen and (max-width: 599px) {
  .content {
    padding: 15px 15px 100px 15px;
  }
}

.location {
  margin-top: 40px !important;
  font-style: italic;
}

/* #endregion */
/* #region -------------------------------------------------------- Home */
#background-0 {
  background-position-x: 30%;
}
@media screen and (max-width: 1400px) {
  #background-0 {
    background-position-x: 35%;
  }
}
@media screen and (max-width: 1000px) {
  #background-0 {
    background-position-x: 40%;
  }
}
@media screen and (max-width: 599px) {
  #background-0 {
    background-position-x: 50%;
  }
}

/*#content-0.n {
left: 0 !important;
}*/
#content-0 {
  transition: all 0.4s ease-in-out;
}
#content-0.top {
  opacity: 0;
}
#content-0 .center-middle-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  #content-0 .center-middle-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 599px) {
  #content-0 .center-middle-wrapper {
    top: calc(50% + 80px);
  }
}
#content-0 ul {
  list-style: none;
  margin: 0;
  margin-top: 200px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content-0 ul li {
  display: inline-block;
  margin: 0 40px;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.2s ease;
}
#content-0 ul li img {
  height: 100%;
  margin: 0 auto;
}
#content-0 .content {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
#content-0 .long-column .logo {
  height: 220px;
}
@media screen and (max-width: 599px) {
  #content-0 .long-column .logo {
    height: 90px;
  }
}
#content-0 .long-column h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.27);
}
#content-0 .long-column h2 span {
  font-size: 1.2em;
}

.carousel-head {
  margin-top: 80px;
}

.carousel {
  width: 100%;
  height: 100px;
  text-align: center;
  display: flex;
  /*  flex-wrap: wrap; */
  align-items: center;
  justify-content: center;
}

.line {
  /*  flex-basis: 50%; */
  position: absolute;
  opacity: 0;
}

/* #endregion */
@media screen and (max-width: 599px) {
  .q3 h1 {
    margin-bottom: -10px !important;
  }
}

@media screen and (max-width: 1300px) {
  #content-5 .sub h1 {
    font-size: 3rem;
  }
}

.gallery-container {
  width: 100%;
  height: calc(100% + 300px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas: "h4 h3 h1 q1" "h4 h3 h1 h2" "h4 q2 q2 h2" ".  q4  q3 q3";
  margin: 0 0 -140px 0;
}
@media screen and (max-width: 1300px) {
  .gallery-container {
    height: calc(100% + 100px);
  }
}
@media screen and (max-width: 599px) {
  .gallery-container {
    height: 100%;
    padding-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 110px);
    grid-auto-flow: row;
    grid-template-areas: "h1 q1" "h2 q2" "h3 q3" "h4 q4";
    margin: 0;
    gap: 5px 5px;
  }
}
.gallery-container .prj {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
}
@media screen and (max-width: 599px) {
  .gallery-container .prj {
    padding: 0;
  }
}
.gallery-container .prj h2 {
  display: none;
}
.gallery-container .prj a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}
.gallery-container .prj a i {
  opacity: 0;
  margin: 0 auto;
  font-size: 2rem;
}
@media screen and (min-width: 600px) {
  .gallery-container .prj a:hover {
    background-color: rgba(0, 0, 0, 0.4745098039);
  }
}
.gallery-container .prj a:hover i {
  opacity: 1;
}

.h1 {
  grid-area: h1;
}

.h2 {
  grid-area: h2;
}

.q2 {
  grid-area: q2;
}

.h3 {
  grid-area: h3;
}

.q1 {
  grid-area: q1;
}

.q3 {
  grid-area: q3;
}

.q4 {
  grid-area: q4;
}

.h4 {
  grid-area: h4;
}

.gallery__item {
  margin: 0;
  padding: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery__item h2 {
  position: relative;
  bottom: 0;
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery__item--3 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__item--4 {
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 4;
}

/* #region -------------------------------------------------------- What We Do */
#master-blur {
  width: 100vw;
  height: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  opacity: 1;
  transition: all 0.2s ease-in-out;
  z-index: 50;
}

#master-blur.hidden {
  z-index: -1 !important;
  opacity: 0 !important;
  left: 50px !important;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  display: unset !important;
}

.popup.hidden {
  z-index: -1 !important;
  opacity: 0 !important;
  left: 200px !important;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  display: unset !important;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}

.hide-on-popup {
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.hide-on-popup.hidden {
  z-index: -1 !important;
  opacity: 0 !important;
  left: 50px !important;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.sub.hidden {
  z-index: -1 !important;
  opacity: 0 !important;
  pointer-events: none;
}

@media screen and (min-width: 1300px) {
  #content-5 {
    padding-top: 40px;
  }
}

.imprint-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .imprint-container {
    width: 85%;
  }
}
.imprint-container p {
  width: auto;
  display: inline-block;
}

.imprint {
  align-self: flex-end;
  text-align: right;
  z-index: 999;
  pointer-events: all;
  display: inline-block;
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
  .member-popup {
    left: -80px !important;
  }
}

.member-popup.hidden {
  z-index: -1 !important;
  opacity: 0 !important;
  top: 100px !important;
  left: 400px !important;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  display: unset !important;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}

.popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999 !important;
  margin: 0;
  pointer-events: all;
  overflow-y: auto;
  overflow-x: hidden;
  transform: scale(1);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  color: #fbfbff;
  padding-top: 50px;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}
.popup .text-container {
  position: relative;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 25px 25px;
  margin-top: 40px;
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .popup {
    width: 100vw;
    padding: 50px 40px 0 15px;
  }
}
.popup ul {
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .popup ul {
    width: 70%;
  }
}
.popup ul li {
  text-align: left;
}
.popup > h3 {
  margin-top: 80px;
  padding: 0 15%;
}
@media screen and (max-width: 959px) {
  .popup > h3 {
    padding: 0 0;
  }
}
.popup .content {
  width: 60%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1300px) {
  .popup .content {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 599px) {
  .popup .content {
    padding: 40px 5px;
    padding-bottom: 120px;
    width: 100%;
  }
}
.popup .close {
  all: unset;
  transition: all 0.2s ease-in-out;
}
.popup .close i {
  color: #fff;
  font-size: 1.5rem;
}
.popup .close:hover {
  transform: scale(1.1);
}
.popup .button-wrapper {
  margin-top: 18px;
}
.popup .button-wrapper button {
  all: unset;
}

.grid-1 ul {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 ul {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 ul {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 ul {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 959px) {
  .grid-3 ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-item-alt.hoverable {
  transition: all 0.2s ease-in-out;
}
.card-item-alt.hoverable:hover {
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .card-item-alt.hoverable:hover {
    background-color: #1a213c !important;
  }
}

.card-container-alt {
  max-width: 100% !important;
}
.card-container-alt .card-item-alt {
  position: relative;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.2s ease-out;
}
@media screen and (min-width: 600px) {
  .card-container-alt .card-item-alt:hover {
    border-radius: 12px;
    background-color: #1a213c;
  }
}
.card-container-alt .card-item-alt:hover i {
  color: #fff;
}
.card-container-alt .card-item-alt .text-container {
  height: 40%;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .card-container-alt .card-item-alt .text-container {
    padding: 0;
  }
}
.card-container-alt .card-item-alt .text-container h1,
.card-container-alt .card-item-alt .text-container h2,
.card-container-alt .card-item-alt .text-container h3,
.card-container-alt .card-item-alt .text-container h4,
.card-container-alt .card-item-alt .text-container h5,
.card-container-alt .card-item-alt .text-container p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .card-container-alt .card-item-alt .text-container h1,
  .card-container-alt .card-item-alt .text-container h2,
  .card-container-alt .card-item-alt .text-container h3,
  .card-container-alt .card-item-alt .text-container h4,
  .card-container-alt .card-item-alt .text-container h5,
  .card-container-alt .card-item-alt .text-container p {
    font-size: 13px;
  }
}
.card-container-alt .card-item-alt .item-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 25px 15px 15px 15px;
}
@media screen and (max-width: 1300px) {
  .card-container-alt .card-item-alt .item-overlay {
    padding: 0px 15px 0px 15px;
  }
}
@media screen and (max-width: 599px) {
  .card-container-alt .card-item-alt .item-overlay {
    padding: 25px 7px 12px 7px;
  }
}
.card-container-alt .card-item-alt .item-overlay .inner-content {
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1300px) {
  .card-container-alt .card-item-alt .item-overlay .inner-content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .card-container-alt .card-item-alt .item-overlay .inner-content {
    padding: 10px;
  }
}
.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container {
  width: 100%;
  height: 30% !important;
  text-align: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 15px;
}
.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container i {
  font-size: 3rem;
  position: relative;
  bottom: 0;
  transition: all 0.2s ease-out;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .card-container-alt .card-item-alt .item-overlay .inner-content .icon-container i {
    font-size: 2.8rem;
  }
}
.card-container-alt .card-item-alt .item-overlay .inner-content .button.button-primary {
  opacity: 0 !important;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 40px;
  transition: all 0.2s ease-out;
}
.card-container-alt .card-item-alt .item-overlay .inner-content p {
  opacity: 0;
  margin: 20px 0;
}
.card-container-alt .card-item-alt .item-overlay .inner-content h2 {
  padding: 0 0;
  margin: 0;
  display: block;
  width: 100%;
}
.card-container-alt .card-item-alt:hover .item-overlay p {
  opacity: 1;
  transition: all 0.2s ease-out;
}
.card-container-alt .card-item-alt:hover .item-overlay .button.button-primary {
  opacity: 1 !important;
  top: 0;
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 599px) {
  .bg-mobile-4 {
    background-image: none !important;
    background-color: #1a213c !important;
  }
}

.bg-text {
  margin-bottom: 120px;
  margin-top: -100px;
}
.bg-text h1 {
  line-height: 1.1rem;
  color: #da0024;
  text-align: right;
}
@media screen and (max-width: 500px) {
  .bg-text {
    margin-top: -100px !important;
  }
}
@media screen and (max-width: 1300px) {
  .bg-text {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .bg-text {
    margin-bottom: 40px;
  }
}

.card-container.card-container-alt ul li {
  aspect-ratio: unset;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.29);
}
.card-container.card-container-alt .card-item-alt {
  position: relative;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.2s ease-out;
}
.card-container.card-container-alt .card-item-alt:hover {
  cursor: pointer;
}
.card-container.card-container-alt .card-item-alt .text-container {
  height: 40%;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .card-container.card-container-alt .card-item-alt .text-container {
    padding: 0;
    height: 100%;
    margin-top: -10px;
  }
}
.card-container.card-container-alt .card-item-alt .item-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 25px 15px 15px 15px;
}
@media screen and (max-width: 1300px) {
  .card-container.card-container-alt .card-item-alt .item-overlay {
    padding: 0px 15px 0px 15px;
  }
}
@media screen and (max-width: 599px) {
  .card-container.card-container-alt .card-item-alt .item-overlay {
    padding: 12px 7px 12px 7px;
  }
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content {
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1300px) {
  .card-container.card-container-alt .card-item-alt .item-overlay .inner-content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .card-container.card-container-alt .card-item-alt .item-overlay .inner-content {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container {
  width: 100%;
  height: 40%;
  text-align: center;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 599px) {
  .card-container.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container {
    display: none;
  }
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container i {
  font-size: 3rem;
  position: relative;
  bottom: 0;
  transition: all 0.2s ease-out;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .card-container.card-container-alt .card-item-alt .item-overlay .inner-content .icon-container i {
    font-size: 2.8rem;
  }
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content .button.button-primary {
  opacity: 0 !important;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 40px;
  transition: all 0.2s ease-out;
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content p {
  opacity: 0;
  margin: 20px 0;
}
.card-container.card-container-alt .card-item-alt .item-overlay .inner-content h2 {
  padding: 0 0;
  margin: 0;
  display: block;
  width: 100%;
}

.card-container * {
  box-sizing: border-box;
}
.card-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 15px;
}
.card-container ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 600px;
  width: 25%;
}

.card-item {
  width: 100%;
  height: 100%;
  text-align: center;
  background: #1a213c;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  transition: all 0.2s ease-out;
}
.card-item:hover i {
  color: #fff;
}
.card-item .inner-content {
  width: 100%;
  height: 100%;
  padding: 50px 45px;
}
.card-item .inner-content .icon-container {
  width: 100%;
  height: 50%;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.card-item .inner-content .icon-container i {
  font-size: 6rem;
  position: relative;
  bottom: 0;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 599px) {
  .card-item .inner-content .icon-container i {
    font-size: 2.8rem;
  }
}
.card-item .inner-content .text-container {
  height: 50%;
  width: 100%;
  text-align: left;
}
.card-item .inner-content .text-container .spacer {
  width: 100%;
  height: 8px;
}
/* #endregion */
.button-unset {
  all: unset;
}

#content-1 .text-wrapper {
  width: 100%;
  margin: 0;
  padding: 15px;
  text-align: center;
}
#content-1 .divider-spacer {
  width: 100%;
  height: 80px;
}
#content-1 .divider-spacer .divider-left {
  height: 100%;
  width: 50%;
  border-right: solid 2px #fff;
}

/* #region -------------------------------------------------------- Team */
#content-4 .content .inner-container {
  display: flex;
}

.member-container {
  margin: 0 auto;
}
.member-container ul.member-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .member-container ul.member-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .member-container ul.member-list {
    gap: 7px;
    margin: 0 auto;
  }
}
.member-container ul.member-list li.member-item {
  box-sizing: border-box;
  position: relative;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 10px 20px;
  height: 140px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}
@media screen and (max-width: 959px) {
  .member-container ul.member-list li.member-item {
    padding: 7px 15px;
    height: 130px;
  }
}
@media screen and (max-width: 599px) {
  .member-container ul.member-list li.member-item {
    padding: 7px 15px;
    height: 120px;
    width: 100%;
  }
}
.member-container ul.member-list li.member-item img {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 120px;
  margin-right: 30px;
}
@media screen and (max-width: 599px) {
  .member-container ul.member-list li.member-item img {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }
}
.member-container ul.member-list li.member-item .item-right-column {
  display: inline-block;
}
.member-container ul.member-list li.member-item .item-right-column h3 {
  display: block;
  margin: 4px 0;
  color: #da0024;
}
.member-container ul.member-list li.member-item .item-right-column .role {
  display: block;
  padding: 0;
  margin-bottom: 16px;
  font-style: italic;
}
@media screen and (max-width: 599px) {
  .member-container ul.member-list li.member-item .item-right-column .role {
    margin-bottom: 7px;
  }
}
.member-container ul.member-list li.member-item .item-right-column .mail,
.member-container ul.member-list li.member-item .item-right-column .website {
  display: block;
  padding: 0;
  color: #fbfbff;
  text-decoration: none;
  position: relative;
  left: -17px;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}
@media screen and (max-width: 1150px) {
  .member-container ul.member-list li.member-item .item-right-column .mail,
  .member-container ul.member-list li.member-item .item-right-column .website {
    font-size: 0.65rem;
  }
}
@media screen and (max-width: 599px) {
  .member-container ul.member-list li.member-item .item-right-column .mail,
  .member-container ul.member-list li.member-item .item-right-column .website {
    left: -20px;
    font-size: 0.8rem;
  }
}
.member-container ul.member-list li.member-item .item-right-column .mail i,
.member-container ul.member-list li.member-item .item-right-column .website i {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.member-container ul.member-list li.member-item .item-right-column .mail:hover,
.member-container ul.member-list li.member-item .item-right-column .website:hover {
  color: rgb(120, 120, 120);
  left: 0;
}
.member-container ul.member-list li.member-item .item-right-column .mail:hover i,
.member-container ul.member-list li.member-item .item-right-column .website:hover i {
  opacity: 1;
}

/* #endregion */
/* #region -------------------------------------------------------- Contact Form */
.negative-space {
  margin-left: -5px !important;
}

.form-container {
  margin-top: 50px;
}

p.margin-top {
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  #content-6 h1 {
    margin-left: 0 !important;
  }
}
#content-6 .mail {
  display: block;
  margin-top: 7px;
}

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