@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 -------------------------------------------------------- Variable Definitions */
/* #region -------------------------------------------------------- Scroll Down Arrow */
#wrapper {
  display: table;
  width: 100%;
  margin-top: 55px;
}

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

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

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

.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;
}
#scroll-title p {
  color: #f5f5f5;
  letter-spacing: 0.15em;
}

#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: 50px;
  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);
  }
}
.scroll-snap-container {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  height: 100vh;
  width: calc(100vw - 160px);
  position: relative;
  left: 160px;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}
@media screen and (max-width: 599px) {
  .scroll-snap-container {
    width: 100%;
    left: 0;
    scroll-snap-type: none;
  }
}

#navigation.hidden ~ .scroll-snap-container {
  width: 100vw;
  left: 0;
}

body {
  margin: 0;
  padding: 0;
  color: #0b0f1d;
  background: rgba(26, 33, 60, 0.031372549);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  transition: background-color 0.4s ease-in-out;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  color: #0b0f1d;
}
@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: #0b0f1d;
  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: #0b0f1d;
  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: 1rem;
  color: #0b0f1d;
  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: 1rem;
  color: #0b0f1d;
  margin: 0 0;
  text-decoration: none;
}
a:hover {
  color: #da0024;
}
a i {
  font-size: 0.8em;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  a {
    font-size: 0.9rem;
  }
}

.button {
  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: #0b0f1d;
  margin: 0 0;
  transition: all 0.2s ease;
  text-decoration: none;
}
.button:hover {
  color: #d5d5d5;
}
@media screen and (max-width: 959px) {
  .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .button {
    font-size: 0.9rem;
  }
}

a.mail,
a.website {
  position: relative;
  left: -17px;
  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 quote-anim {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logo-anim {
  0% {
    transform: scale(0);
  }
  65% {
    transform: scale(0);
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logol-anim {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* #region -------------------------------------------------------- Preloader */
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  width: 100%;
  height: 100%;
  animation: 5.5s ease-in 0.5s preloader-anim;
  -webkit-animation: 5.5s ease-in 0.5s preloader-anim;
  -moz-animation: 5.5s ease-in 0.5s preloader-anim;
}
.preloader circle {
  animation: 5.5s cubic-bezier(0, 0.55, 0.45, 1) svg-anim forwards;
}
.preloader.hidden {
  display: none;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.preloader .quote {
  position: fixed;
  top: 0px;
  color: #fff;
  opacity: 1;
  animation: 5.5s cubic-bezier(0, 0.55, 0.45, 1) quote-anim forwards;
  -webkit-animation: 5.5s cubic-bezier(0, 0.55, 0.45, 1) quote-anim forwards;
  -moz-animation: 5.5s cubic-bezier(0, 0.55, 0.45, 1) quote-anim forwards;
}
.preloader .preloader-container {
  text-align: center;
  width: 400px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -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: 5.5s cubic-bezier(0, 0.55, 0.45, 1) logo-anim forwards;
  -webkit-animation: 5.5s cubic-bezier(0, 0.55, 0.45, 1) logo-anim forwards;
  -moz-animation: 5.5s 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);
}
@keyframes svg-anim {
  0% {
    r: 0;
  }
  85% {
    r: 0;
  }
  100% {
    r: 80%;
  }
}
.description-container {
  margin-bottom: 40px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .description-container {
    flex-direction: column;
    margin-bottom: 18px;
  }
}
.description-container p {
  width: 50%;
  padding-right: 80px;
}
@media screen and (max-width: 599px) {
  .description-container p {
    padding: 0;
    padding-bottom: 5px;
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .showreel .content {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .showreel .content .head {
    position: relative;
    transform: translateY(-120px);
    margin-bottom: -120px;
    height: 120px;
  }
  .showreel .content .head h1 {
    color: #fff;
  }
}

#video-showreel {
  width: 100%;
  border: 1px solid #000;
  border-radius: 18px;
}
@media screen and (max-width: 599px) {
  #video-showreel {
    border: none;
    border-radius: 0;
    height: 100vh;
    width: auto;
    transform: translateX(-50%);
  }
}

.main {
  width: 100%;
}

.head {
  pointer-events: all;
  width: 100%;
  z-index: 20;
  pointer-events: none;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .head {
    padding-bottom: 7px;
    padding-top: 0;
  }
}
.head h1 {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .head p {
    margin-left: -10px;
  }
}

/*
.animated-title {
  margin: 0;
  top: 50%;
  left: 50%;
  height: 1em;
  cursor: pointer;
  color: #f5f5f5 !important;
  width: fit-content;
  margin-bottom: 15px;

  &.animate {
    &::after {
      transform: scaleX(1);
    }
  }
}

.animated-title::after{
  content: "";
  display: block;
  position: relative;
  bottom: 1.18em;
  left: -15px;
  z-index: -1;
  width: calc(100% + 30px);
  height: 1.1em;
  background: $secondary-color;
  transition: transform 0.2s ease-in-out;
  transform: scaleX(0);
  transform-origin: left center;

  transition: all .7s $easeOutQuart .4s;
}
*/
/*
body.swap-color {
  background-color: $secondary-color;

  h1, h2, h3, p, a {
    color: #f5f5f5;
  }

  #navigation {
    h1, h2, h3, p, a {
      color: #000;
    }
  }
}
*/
.logo.hidden {
  display: none;
}

.slogan-container {
  margin: 80px 0;
}
@media screen and (max-width: 599px) {
  .slogan-container {
    margin: 7px 0;
  }
}
.slogan-container h1 {
  text-align: center;
  margin: 0 auto;
  color: #da0024 !important;
}
.slogan-container h1::after {
  background-color: #f5f5f5 !important;
}

.client-container {
  box-sizing: border-box;
  padding: 0 80px;
}
.client-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}
.client-container ul li {
  height: 40px;
}
.client-container ul li img {
  height: 100%;
}
.client-container ul:nth-of-type(1) {
  animation: client-move-left linear;
  animation-timeline: view();
}
.client-container ul:nth-of-type(2) {
  margin-top: 40px;
  animation: client-move-right linear;
  animation-timeline: view();
}
@keyframes client-move-left {
  0% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-5%);
  }
}
@keyframes client-move-right {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
#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;
}
@media screen and (max-width: 599px) {
  .bg-video {
    height: 100svh;
  }
}

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

.main-background.top {
  top: -100vh;
}
@media screen and (max-width: 599px) {
  .main-background.top {
    top: 0;
  }
}

.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;
}
@media screen and (max-width: 599px) {
  .main-background {
    animation: main-background-fade linear;
    animation-timeline: scroll();
  }
}
@keyframes main-background-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* #endregion */
/* #region -------------------------------------------------------- @mixin */
/* #endregion */
/* #region -------------------------------------------------------- Button (deprecated) */
.button-primary {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  color: #0b0f1d;
  text-decoration: none;
  margin: 0;
  padding: 15px 25px;
  outline: none;
  background: rgba(26, 33, 60, 0.031372549);
  transition: all 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #000;
  display: block;
  position: relative;
  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);
  }
}

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

.trans-delay-1 {
  transition-delay: 0.125s !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.trans-delay-25 {
  transition-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, Footer */
:root {
  --color-secondary: #75757C;
  --color-dark: #364C62;
  --color-light: #F5F5F5;
  --font-family-primary: "Roboto Mono", monospace;
  --font-family-secondary: "Rubik Mono One", sans-serif;
  --td: 150ms;
  --te: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-main {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: -100%;
  position: fixed;
  transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
  width: 100%;
  z-index: 999;
}
.nav-main::before {
  content: "";
  background-color: #da0024;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform-origin: 0 50%;
  transition: 0.6s all cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -100;
  -webkit-clip-path: circle(0% at 100% 0);
          clip-path: circle(0% at 100% 0);
}
.nav-main .menu__item {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}

[id=main-navigation-toggle] {
  opacity: 0;
  position: fixed;
  top: -100%;
}
[id=main-navigation-toggle] ~ label {
  position: relative;
  right: 1rem;
  margin-right: 20px;
  top: 1rem;
  z-index: 9999;
}
[id=main-navigation-toggle] ~ label span {
  display: block;
  height: 2rem;
  padding: 0.5rem;
  position: relative;
  transition: transform calc(var(--td) * 3) var(--te);
  width: 2rem;
}
[id=main-navigation-toggle] ~ label span::before, [id=main-navigation-toggle] ~ label span::after {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: transform calc(var(--td) * 3) var(--te);
  top: 0;
  width: calc(100% - 1rem);
}
[id=main-navigation-toggle] ~ label span::before {
  transform: rotate(0) translateY(-100%);
}
[id=main-navigation-toggle] ~ label span::after {
  transform: rotate(0) translateY(100%);
}

[id=main-navigation-toggle]:checked ~ label span {
  transform: rotate(1turn);
}
[id=main-navigation-toggle]:checked ~ label span::before, [id=main-navigation-toggle]:checked ~ label span::after {
  background-color: #fff;
}
[id=main-navigation-toggle]:checked ~ label span::before {
  transform: rotate(45deg);
}
[id=main-navigation-toggle]:checked ~ label span::after {
  transform: rotate(-45deg);
}

[id=main-navigation-toggle]:checked ~ .nav-main {
  left: 0;
  transition: transform 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::before {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(1) {
  transition-delay: calc(var(--td) * 2 * 1 * 0.25);
  z-index: -1;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(2) {
  transition-delay: calc(var(--td) * 2 * 2 * 0.25);
  z-index: -2;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(3) {
  transition-delay: calc(var(--td) * 2 * 3 * 0.25);
  z-index: -3;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(4) {
  transition-delay: calc(var(--td) * 2 * 4 * 0.25);
  z-index: -4;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(5) {
  transition-delay: calc(var(--td) * 2 * 5 * 0.25);
  z-index: -5;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(6) {
  transition-delay: calc(var(--td) * 2 * 6 * 0.25);
  z-index: -6;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(7) {
  transition-delay: calc(var(--td) * 2 * 7 * 0.25);
  z-index: -7;
}

.menu {
  position: relative;
  text-align: center;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.menu > .menu__item {
  font-family: var(--font-family-secondary);
  font-size: 10vmin;
}

.submenu {
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(-10%);
  top: 100%;
  width: 100%;
  visibility: hidden;
  z-index: 2;
}
.submenu .menu__item {
  font-family: var(--font-family-primary);
  font-size: 3.5vmin;
  width: 100%;
}
.submenu .menu__link {
  color: #da0024;
  text-shadow: 1px 1px 0 #da0024, 2px 2px 0 #da0024;
}
.submenu .menu__link::before, .submenu .menu__link::after {
  display: none;
}

.menu__item {
  display: block;
  position: relative;
}
.menu__item:hover .menu__link::before, .menu__item:hover .menu__link::after {
  animation: blink 1s var(--td) steps(1, end) forwards infinite;
  transform: translateX(calc(100% - 0.5rem));
  transition-duration: calc(var(--td) * 3);
}
.menu__item:hover .menu__link::after {
  transition-delay: calc(var(--td) / 2);
}
.menu__item:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  transition: transform calc(var(--td) * 2) calc(var(--td) * 3) var(--te), opacity calc(var(--td) * 2) calc(var(--td) * 3) var(--te), visibility 0s calc(var(--td) * 3);
  visibility: visible;
}

.menu__link {
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  padding: 0.5rem 1rem 0.125rem;
  position: relative;
  text-decoration: none;
  transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
  z-index: 1;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  color: #0b0f1d;
  color: #fff;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .menu__link {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .menu__link {
    font-size: 32px;
  }
}
.menu__link::before, .menu__link::after {
  content: "";
  background-color: var(--color-light);
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform 0s var(--te);
  width: 100%;
  z-index: -1;
}
.menu__link::before {
  top: 0;
}
.menu__link::after {
  bottom: 0;
}

.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
  opacity: 1;
  transform: translate(0, 0);
}

.menu__item {
  --pull: 30%;
}
.menu__item .menu__link {
  background: unset;
  border: unset;
  opacity: 0.25;
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, calc(var(--pull) * -1));
}
.menu__item .submenu .menu__link {
  opacity: 1;
}
.menu__item:hover > .menu__link {
  color: var(--color-secondary);
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item:hover > .menu__link:hover {
  color: var(--color-light);
  transition-delay: 0s;
}
.menu__item:hover ~ .menu__item > .menu__link {
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, var(--pull));
}
@keyframes blink {
  50%, 100% {
    opacity: 0;
  }
}
#progress {
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
  height: 0vh;
  background-color: #da0024;
  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: -160px;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

#navigation {
  position: fixed;
  z-index: 100;
  display: inline-block;
  width: 160px;
  height: 100%;
  padding: 50px 0;
  text-align: left;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-right: solid 1px #0b0f1d;
  z-index: 999;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  background-color: #F5F5F5;
}
@media screen and (max-width: 599px) {
  #navigation {
    display: none;
  }
}
#navigation .logo {
  width: 75%;
  position: relative;
  left: -15px !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;
}
#navigation ul li:first-of-type {
  height: 150px;
}
#navigation ul li button {
  all: unset;
  display: block;
  height: 100%;
  width: 100%;
  color: #0b0f1d;
  text-align: left;
  padding-left: 50px;
}
#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;
}
#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: -10px;
}
#navigation ul li button:hover h3 i {
  opacity: 1;
}
#navigation ul li a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 100px;
  color: #0b0f1d;
  text-decoration: none;
  font-family: "UlagadiSans";
  font-size: 2rem;
  font-weight: 500;
}

/*
body.swap-color #navigation {
  border-color: #fff;

  h2.active,
  h2.active ~ h3 {
    color: #adb0c9;
  }
}
*/ /*
body.swap-color .content-side {
  border-color: #fff;
}*/
.content_side_colorswap {
  background-color: #da0024;
}
.content_side_colorswap h1, .content_side_colorswap h2, .content_side_colorswap h3, .content_side_colorswap p, .content_side_colorswap a {
  color: #fff;
}
.content_side_colorswap .card-item {
  border-color: #fff;
  background-color: #da0024;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100vw !important;
  border-top: solid 1px #0b0f1d;
  z-index: 999;
  display: flex;
  text-align: center;
  padding-top: 10px;
  background-color: #f4f5f5;
  transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}
@media screen and (max-width: 599px) {
  .footer {
    display: none;
  }
}
.footer p, .footer a {
  margin: 0 auto;
  font-size: 0.8rem;
}
@media screen and (max-width: 599px) {
  .footer p, .footer a {
    font-size: 0.65rem;
  }
}

.footer-large {
  width: 100%;
  position: relative;
  align-self: end;
  /* align-content: end; */
  border-top: 1px solid #000;
  margin-top: 18px;
  display: flex;
  padding: 18px 12px;
  box-sizing: border-box;
  bottom: 41px;
}
@media screen and (max-width: 599px) {
  .footer-large {
    width: 100%;
    position: initial;
    left: 0;
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 36px;
  }
}
.footer-large .footer-section {
  height: 100%;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section {
    display: inline-block;
    padding-left: 0;
  }
}
.footer-large .footer-section.footer-section-1 {
  width: 25%;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section.footer-section-1 {
    width: 100%;
  }
}
.footer-large .footer-section.footer-section-2 {
  width: 15%;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section.footer-section-2 {
    width: 48%;
  }
}
.footer-large .footer-section.footer-section-3 {
  width: 15%;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section.footer-section-3 {
    width: 48%;
  }
}
.footer-large .footer-section.footer-section-4 {
  width: auto;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section.footer-section-4 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section.footer-section-4 img {
    display: block;
    height: 80px;
    margin: 0 auto;
  }
}
.footer-large .footer-section ul {
  margin: 0;
  padding-left: 5px;
  list-style-type: none;
}
.footer-large .footer-section ul li {
  height: 2.4em;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section ul li {
    height: 1.7em;
  }
}
.footer-large .footer-section ul li a i {
  font-size: 1.2em;
}
@media screen and (max-width: 599px) {
  .footer-large .footer-section ul li a i {
    font-size: 1em;
  }
}
.footer-large .footer-section ul li a:hover {
  border-bottom: 1px solid #da0024;
}
.footer-large .logo-section {
  padding-top: 40px;
}
@media screen and (max-width: 599px) {
  .footer-large .logo-section {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
.footer-large .logo-section img {
  height: 160px;
}

/* #endregion */
.button-test {
  height: 30px;
  width: 30px;
}
.button-test:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: 0 bottom 0;
  transform: scaleY(0);
  transition: 0.4s ease-out;
}
.button-test:hover .post-title {
  color: #FFF;
}
.button-test:hover:before {
  transform: scaleY(1);
}

.projects * {
  box-sizing: border-box;
}
.projects .left {
  display: inline-block;
  float: left;
  width: 50%;
  height: 100%;
  padding-left: 20px;
}
.projects .left ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.projects .left ul li h1 {
  width: -moz-fit-content;
  width: fit-content;
  height: 1em;
  transition: color 0.2s ease-in-out;
}
.projects .left ul li 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.5s cubic-bezier(0.76, 0, 0.24, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
.projects .left ul li h1:hover {
  color: #f5f5f5;
}
.projects .left ul li h1:hover::after {
  transform: scaleX(1);
}
.projects .right {
  display: inline-block;
  float: right;
  width: 50%;
  height: 100%;
}
.projects .right .wrapper {
  width: 100%;
  height: 100%;
  padding-right: 50px;
}
.projects .right .wrapper img {
  position: absolute;
  width: 450px;
  border-radius: 18px;
  border: 1px solid #0b0f1d;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
  transition: all 0.4s ease-in-out;
}
.projects .right .wrapper img.hidden {
  opacity: 0;
  filter: grayscale(100%);
  visibility: hidden;
}

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

#navigation.hidden ~ .content-container .footer {
  bottom: -45px;
}

.content-container {
  position: relative;
  display: inline-block;
  width: calc(100vw - 160px);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

.content-side {
  border-top: 1px solid #000;
  scroll-snap-align: start;
  display: block;
  width: calc(100vw - 160px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  animation: fadein 0.4s ease-in-out both;
  height: -moz-fit-content !important;
  height: fit-content !important;
  padding: 50px 0;
}
@media screen and (max-width: 599px) {
  .content-side {
    padding: 0;
    border: none;
  }
}
@media screen and (max-width: 599px) {
  .content-side {
    width: 100%;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
.content-side.noborder {
  border-top: none;
}

.content-side.hidden {
  animation: fadeout 0.4s cubic-bezier(0.76, 0, 0.24, 1) 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: -150px;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
    margin-top: -150px;
  }
}
.fadeout {
  animation: fadeout 0.4s ease-in-out 0s forwards;
}

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

.content-side.c0 {
  width: 100vw !important;
}

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

.content {
  z-index: 100;
  display: block;
  text-align: left;
  margin: 0 25px;
}
@media screen and (max-width: 599px) {
  .content {
    padding: 45px 15px;
    margin: 0;
  }
}

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

/* #endregion */
.header-mobile {
  width: 100%;
  height: 60px;
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #000;
  z-index: 999;
  padding: 5px 12px;
  display: flex;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (min-width: 960px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .logo-container {
  height: 100%;
  width: 50%;
}
.header-mobile .logo-container .logo {
  height: 50px;
}
.header-mobile.hidden {
  margin-top: -60px;
}

.hamburger-container {
  width: 50%;
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
}

.hamburger {
  height: 50px;
  width: 50px;
}

#menu_checkbox {
  display: none;
}

label {
  position: relative;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  transition: 0.3s ease transform;
}

label div {
  width: 4px;
  height: 4px;
  background-color: #000;
  margin-left: 0;
  margin-bottom: 6px;
  border-radius: 4px;
  transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom, 0.3s ease background-color;
}

label div:first-child {
  width: 22px;
}

label div:nth-child(2) {
  width: 15px;
}

label div:last-child {
  width: 30px;
  margin-bottom: 0;
}

#menu_checkbox:checked + label {
  transform: translateY(-50%) rotateZ(-90deg);
}

#menu_checkbox:checked + label div {
  width: 6px;
  margin-left: 12px;
  margin-bottom: 3px;
  background-color: #da0024;
}

#nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #da0024;
  z-index: 999;
}
#nav-mobile .nav-head {
  height: 120px;
  background-color: #f4f5f5;
  padding-top: 15px;
}
#nav-mobile .nav-head .logo-container {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#nav-mobile .nav-head .logo-container .logo {
  height: 80px;
}
#nav-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#nav-mobile ul .menu-item h1 {
  color: #f4f5f5;
}
#nav-mobile ul .menu-item h1 .menu-item_index {
  color: #f4f5f5;
  font-weight: 400;
}

.contact-main {
  display: flex;
}
@media screen and (max-width: 599px) {
  .contact-main {
    flex-direction: column;
  }
}
.contact-main .description-container {
  width: 40%;
  margin-top: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .contact-main .description-container {
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.contact-main .description-container p {
  width: 100%;
}

.form-container {
  width: 60%;
  width: 60%;
  display: flex;
  justify-content: flex-start;
  padding-right: 110px;
  padding-top: 60px;
  box-sizing: border-box;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 599px) {
  .form-container {
    width: 100%;
    padding: 20px 0;
  }
}
.form-container .mail {
  margin-left: 70px;
}
@media screen and (max-width: 599px) {
  .form-container .mail {
    display: none;
  }
}
.form-container .mail a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
  color: #0b0f1d;
  margin: 20px 0;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .form-container .mail a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .form-container .mail a {
    font-size: 0.9rem;
  }
}
.form-container .mail a:hover {
  color: #da0024;
  border-bottom: 1px solid #da0024;
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: none;
  border-bottom: 1px solid #000;
  display: flex;
  height: 2.5rem;
  width: 100%;
  line-height: 1.25rem;
  background-color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
}

.form-input::-moz-placeholder {
  color: #6b7280;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 1px solid #da0024;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100px;
  margin-top: 1.2rem;
  border: 1px solid #000;
  padding: 13px 5px;
  border-radius: 50px;
  background: none;
  transition: all 0.2s ease;
}
.form-submit:hover {
  background-color: #da0024;
}

/* #region -------------------------------------------------------- Home */
@keyframes fade {
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#content-0 {
  box-sizing: border-box;
  height: 100vh !important;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 599px) {
  #content-0 {
    height: 100svh !important;
  }
}
#content-0 video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
#content-0.top {
  opacity: 0;
}
#content-0 .center-middle-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 150px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fade linear;
  animation-timeline: view();
}
@media screen and (max-width: 599px) {
  #content-0 .center-middle-wrapper {
    padding-top: 0;
  }
}
#content-0 .clients {
  margin-top: 120px;
}
@media screen and (max-width: 599px) {
  #content-0 .clients {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  #content-0 .responsive-only--dt-md {
    display: none;
  }
}
#content-0 .line-break {
  width: 100%;
  height: 25px;
}
#content-0 .responsive-only--sm {
  display: none;
}
@media screen and (max-width: 599px) {
  #content-0 .responsive-only--sm {
    display: flex;
  }
}
#content-0 ul {
  list-style: none;
  margin: 0;
  margin-top: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #content-0 ul {
    flex-wrap: wrap;
  }
}
#content-0 ul li {
  display: inline-block;
  margin: 0 40px;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.2s ease;
}
@media screen and (max-width: 599px) {
  #content-0 ul li {
    margin: 0 12px;
    height: 20px;
  }
}
#content-0 ul li img {
  height: 100%;
  margin: 0 auto;
}
#content-0 .content {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #content-0 .content {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
#content-0 .long-column .logo {
  height: 180px;
}
@media screen and (max-width: 599px) {
  #content-0 .long-column .logo {
    height: 120px;
    margin-top: 150px;
  }
}
#content-0 .long-column h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.27);
  color: #fff;
}
#content-0 .long-column h2 span {
  font-size: 1.2em;
}

.carousel-head {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .carousel-head {
    margin-top: 0;
  }
}
.carousel-head h2 {
  color: #fff;
  margin-bottom: 0;
}

.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;
}
.line h1 {
  font-size: 3.5;
  color: #fff;
}

/* #endregion */
/* #region -------------------------------------------------------- What We Do */
.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-container {
  max-width: 1500px;
  margin: 0 auto;
}
.card-container * {
  box-sizing: border-box;
}
.card-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .card-container ul {
    flex-direction: column;
  }
}
.card-container ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 500px;
  width: 32%;
}
@media screen and (max-width: 599px) {
  .card-container ul li {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  overflow: auto;
  scroll-snap-type: x mandatory; /* <- the important piece */
}
.project-list li {
  width: 49%;
  height: 500px;
  flex-shrink: 0;
  scroll-snap-align: start; /* <- the other important piece */
}
@media screen and (max-width: 599px) {
  .project-list li {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.project-list li .image-container {
  width: 100%;
  height: 60%;
}
.project-list li .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #000;
}
.project-list li .description-container {
  margin: 0;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .project-list li .description-container {
    margin-top: 25px;
    padding-bottom: 25px;
  }
}
.project-list li .description-container .project-title {
  width: 40%;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .project-list li .description-container .project-title {
    width: 100%;
    padding-bottom: 20px;
    font-size: 2em;
  }
}
.project-list li .description-container p {
  width: 60%;
  padding: 0;
  padding-left: 40px;
}
@media screen and (max-width: 599px) {
  .project-list li .description-container p {
    width: 100%;
    padding-left: 60px;
    margin-top: 10px;
  }
}

.spacer {
  width: 100%;
  display: block;
}
.spacer.normal-space {
  height: 18px;
}

.card-container.card-container-secondary {
  gap: 0;
}
@media screen and (max-width: 599px) {
  .card-container.card-container-secondary ul {
    flex-direction: row !important;
  }
}

.team-card.team-card-secondary {
  height: 100px !important;
  width: 32% !important;
}
@media screen and (max-width: 599px) {
  .team-card.team-card-secondary {
    width: 45% !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    padding: 2px 0;
  }
}
.team-card.team-card-secondary .card-item {
  box-shadow: none;
  background: none;
  border: none;
}
.team-card.team-card-secondary .card-item h2 {
  margin: 0;
}
.team-card.team-card-secondary .card-item .inner-content {
  padding: 15px 25px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .team-card.team-card-secondary .card-item .inner-content {
    padding: 0 !important;
  }
}
.team-card.team-card-secondary .card-item .inner-content .icon-container {
  width: 70px;
  height: 70px;
}
.team-card.team-card-secondary .card-item .inner-content .icon-container img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .team-card.team-card-secondary .card-item .inner-content .icon-container img {
    width: 40px !important;
    height: 40px !important;
  }
}
.team-card.team-card-secondary .card-item .inner-content .text-container {
  margin-top: 0 !important;
  padding-left: 20px !important;
  width: unset;
  padding-top: 5px;
}
@media screen and (max-width: 599px) {
  .team-card.team-card-secondary .card-item .inner-content .text-container {
    width: 100%;
  }
}

.team-card {
  width: 49% !important;
  height: 480px !important;
}
@media screen and (max-width: 599px) {
  .team-card {
    width: 100% !important;
    height: 130px !important;
  }
}
@media screen and (max-width: 599px) {
  .team-card .card-item .inner-content {
    display: flex;
    padding: 15px 15px;
  }
}
.team-card .card-item .inner-content .icon-container {
  height: 55%;
}
.team-card .card-item .inner-content .icon-container img {
  height: 100%;
  aspect-ratio: 1;
  width: auto;
  border-radius: 18px;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .team-card .card-item .inner-content .icon-container {
    height: 100%;
    width: 30%;
  }
}
.team-card .card-item .inner-content .text-container {
  height: 45%;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .team-card .card-item .inner-content .text-container {
    height: 100%;
    width: 70%;
    padding-left: 20px;
    margin-top: 20px;
  }
}
.team-card .card-item .inner-content .text-container .spacer {
  height: 0;
}
.team-card .card-item .inner-content .text-container .role {
  font-weight: 600;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #da0024;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card-hover-3 {
  display: block;
  position: relative;
  background-color: #f2f8f9;
  padding: 32px 24px;
  text-decoration: none;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  background: rgba(26, 33, 60, 0.031372549);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  border: solid 1px #0b0f1d;
  border-radius: 18px;
}
.card-hover-3 .inner-content {
  height: 100%;
}
.card-hover-3 .inner-content .icon-container {
  height: 40%;
}
.card-hover-3 .inner-content .icon-container i {
  font-size: 7rem;
}
.card-hover-3:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #da0024;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.card-hover-3:hover:before {
  transform: scale(40);
}

.card-hover-3:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.card-hover-3:hover h2, .card-hover-3:hover i {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

.button-large {
  background-color: #f7f8f8;
  border-radius: 60px;
  display: flex;
  height: 110px;
  width: 400px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #000;
}
@media screen and (max-width: 599px) {
  .button-large {
    height: 80px;
    width: 240px;
    margin: 0 auto;
  }
}
.button-large a {
  margin: 0 auto;
  font-size: 2em;
  font-family: "Montserrat";
  font-weight: 600;
  position: absolute;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 400px;
  text-align: center;
  transition: 0.2s all cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateY(-10px);
}
@media screen and (max-width: 599px) {
  .button-large a {
    font-size: 1.1em;
    width: 240px;
  }
}
.button-large .hover-replace {
  opacity: 0;
}
.button-large:hover a {
  opacity: 0;
}
.button-large:hover .hover-replace {
  opacity: 1;
}
.button-large p {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  /* padding-left: 50px; */
  font-size: 1em;
  font-family: "Montserrat";
  font-weight: 600;
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .button-large p {
    font-size: 0.8em;
    margin-top: 30px;
  }
}

.card-item {
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(26, 33, 60, 0.031372549);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  border: solid 1px #0b0f1d;
  border-radius: 18px;
  transition: all 0.2s ease-out;
  --x-px: calc(var(--x) * 1px);
  --y-px: calc(var(--y) * 1px);
  --border: 2px;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 0.5rem;
  overflow: hidden;
}
.card-item:before, .card-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  inset: 0px;
  border-radius: inherit;
  background: radial-gradient(800px circle at var(--x-px) var(--y-px), rgba(214, 214, 214, 0.3), transparent 40%);
}
.card-item:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}
.card-item:hover i {
  color: #0b0f1d;
}
.card-item.card-hover-1 p {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (max-width: 599px) {
  .card-item.card-hover-1 p {
    opacity: 1;
  }
}
.card-item.card-hover-1 i {
  font-size: 7rem;
  margin: 0 auto;
}
.card-item.card-hover-1 h2 {
  text-align: center;
}
.card-item.card-hover-1 .icon-container {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.card-item.card-hover-1 .text-container {
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  position: relative;
  padding-top: 35px;
  top: 0;
  left: 0;
}
.card-item.card-hover-1:hover p {
  opacity: 1;
}
.card-item.card-hover-1:hover .icon-container {
  opacity: 0;
}
.card-item.card-hover-1:hover .text-container {
  top: -50%;
}
.card-item .inner-content {
  width: 100%;
  height: 100%;
  padding: 35px 35px;
}
@media screen and (max-width: 599px) {
  .card-item .inner-content {
    padding: 25px 25px;
  }
}
.card-item .inner-content .icon-container {
  width: 100%;
  height: 40%;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .card-item .inner-content .icon-container {
    padding: 0;
    height: 200px;
  }
}
.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 .icon-container img {
  height: 100%;
  border-radius: 18px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .card-item .inner-content .icon-container img {
    height: 100%;
    width: auto;
  }
}
.card-item .inner-content .text-container {
  height: 60%;
  width: 100%;
  text-align: left;
}
.card-item .inner-content .text-container .spacer {
  width: 100%;
  height: 8px;
}
@media screen and (max-width: 599px) {
  .card-item .inner-content .text-container h2 {
    margin: 0;
  }
}

/* #endregion */
body:hover > #trailer {
  opacity: 1;
}

#trailer {
  height: 20px;
  width: 20px;
  background-color: #f5f5f5;
  border-radius: 20px;
  border: 1px solid #000;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 599px) {
  #trailer {
    display: none;
  }
}

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

#trailer-icon {
  font-size: 6px;
  line-height: 4px;
  color: #000;
  opacity: 0;
  transition: opacity 400ms ease;
}

* {
  cursor: none;
}

.animated-title {
  line-height: 1.4;
  padding: 2px 0;
  margin: 20px auto;
}
@media screen and (max-width: 599px) {
  .animated-title {
    margin: 20px auto !important;
  }
}
.animated-title.animate span {
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: background-size 0.5s;
  background-image: linear-gradient(to top, #da0024 100%, transparent 0);
}
.animated-title span {
  color: #fff;
  display: inline;
  padding: 0.45rem;
  /* Needs prefixing */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-size: 0 auto;
}

/* #region -------------------------------------------------------- Team */
/* #endregion */
/* #region -------------------------------------------------------- Contact Form */
/* #endregion */
.logo-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.special-title {
  font-size: 6em;
  font-family: "Montserrat";
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 599px) {
  .special-title {
    font-size: 2.2em;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2000px);
  }
}
.slider {
  height: 100px;
  margin: 80px auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .slider {
    margin-left: -15px;
    width: 100vw;
    margin-bottom: 0;
    margin-top: 20px;
  }
}
.slider::before, .slider::after {
  background: linear-gradient(to right, #da0024 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 400px;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .slider::before, .slider::after {
    width: 0;
  }
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg) translateX(-1px);
}
.slider::before {
  left: 0;
  top: 0;
  transform: translateX(-1px);
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 4000px;
}
@media screen and (max-width: 599px) {
  .slider .slide-track {
    width: 2400px;
  }
}
.slider .slide {
  height: 100px;
  width: 250px;
}
@media screen and (max-width: 599px) {
  .slider .slide {
    width: 150px;
    height: 70px;
  }
}
.slider .slide img {
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .slider .slide img {
    width: 100px;
  }
}

.showcase {
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .showcase {
    padding: 0;
  }
}
.showcase .container {
  display: flex;
}
.showcase .container .left {
  width: 40%;
  height: 100%;
}
.showcase .container .right {
  width: 60%;
  height: 100%;
}
.showcase .slogan-container .title-alt {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  color: #fff !important;
  text-align: left;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 599px) {
  .showcase .slogan-container .title-alt {
    font-size: 2.2em;
  }
}
.showcase .description-container .heading {
  width: 30%;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .showcase .description-container .heading {
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    padding-bottom: 12px;
  }
}
.showcase .description-container .heading h2 {
  margin: 0;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 2px solid #fff;
  font-size: 1.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  .showcase .description-container .heading h2 {
    text-align: left;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 599px) {
  #content-6 {
    padding-bottom: 0 !important;
  }
}

.blog-slider {
  width: 100%;
  position: relative;
  margin: 70px auto;
  border-radius: 25px;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.3s;
}
.blog-slider * {
  box-sizing: border-box;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 50px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 320px;
  }
}
.blog-slider__item {
  display: flex !important;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 600px;
  flex-shrink: 0;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .blog-slider__img {
    height: 300px;
  }
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: 25px;
    text-align: center;
    padding: 0 30px;
    height: 350px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
}
.blog-slider__code img {
  height: 60px;
  color: #000;
  filter: brightness(0.2);
}
@media screen and (max-width: 599px) {
  .blog-slider__code img {
    height: 40px;
  }
}
.blog-slider__title {
  color: #0d0925;
}
.blog-slider__title h1 {
  margin: 0;
  margin-bottom: 12px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
}
.blog-slider__button {
  display: inline-flex;
  height: 70px;
  width: 70px;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 2em;
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    display: inline-flex;
    height: 50px;
    width: 70px;
    padding: 0;
    border-radius: 50px;
    font-size: 2em;
    color: #000;
    border: 1px solid #000;
    text-decoration: none;
    justify-content: center;
    text-align: center;
    align-content: center;
    flex-direction: column;
  }
  .blog-slider__button i {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.blog-slider__button:hover {
  color: #da0024;
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    bottom: -15px !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #da0024;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}/*# sourceMappingURL=style.css.map */