*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 42.2%;
  }
}
@font-face {
  font-family: myFirstFont;
  src: url(../material/century-gothic/CenturyGothic.ttf);
}
body {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow: visible;
  font-family: myFirstFont;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.7;
  color: #777;
}

.copyright--small {
  transform: scale(0.4) translate(-3rem, -3rem);
  display: inline;
}

.link,
.link:link,
.link:visited {
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.link:active,
.link:hover {
  color: #c93d89;
}

.section > * {
  opacity: 1;
  transition: all 0.5s;
}

.heading__primary {
  color: #fff;
  font-size: 7rem;
  line-height: 1;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
}

.heading__primary-sm {
  letter-spacing: -0.1rem;
  font-size: 2.2rem;
  font-weight: 500;
}

.heading__hero {
  color: #fff;
  font-size: 8rem;
  line-height: 1;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
}

.heading__secondary {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 4rem;
  text-shadow: 2px 2px 4px #bc0c6c;
  letter-spacing: 2px;
  text-align: center;
}

@media screen and (max-width: 37.5em) {
  .heading__secondary {
    font-size: 2.2rem;
  }
}
.heading__secondary--colorful-500 {
  color: #bc0c6c;
  font-weight: 500;
  font-size: 4rem;
}

.heading__tertiary {
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
}

.heading__subheading {
  color: #fff;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.heading__special {
  color: #710741;
  font-weight: 700;
  font-size: 2.4rem;
}

.paragraph {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  max-width: 60rem;
}

.paragraph__upper-number {
  font-size: 1.2rem;
  color: #555;
  transform: translateX(10rem);
}

.paragraph strong {
  color: #555;
  letter-spacing: 1px;
}

.u-container {
  margin: 0 auto !important;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-large {
  margin-bottom: 16rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 3rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-left-sm {
  margin-left: 2rem !important;
}

.u-margin-left-medium {
  margin-left: 4rem !important;
}

.u-margin-left-large {
  margin-left: 8rem !important;
}

.u-padding-top-medium {
  padding-top: 5rem !important;
}

.u-padding-top-big {
  padding-top: 10rem !important;
}

.u-margin-left-sm {
  margin-left: 4rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 3rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 6rem !important;
}

.u-animation-moveInRight {
  animation: moveInRight 1s ease-in-out !important;
  -webkit-animation: moveInRight 1s ease-in-out !important;
}

.U-animation-moveInLeft {
  animation: moveInLeft 1s ease-in-out !important;
  -webkit-animation: moveInLeft 1s ease-in-out !important;
}

.u-red-shadow {
  text-shadow: 3px 3px 3px #f03e3e;
}

.u-blue-shadow {
  text-shadow: 3px 3px 3px #66d9e8;
}

.bold {
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
    -webkit-transform: translateX(-10rem);
    -moz-transform: translateX(-10rem);
    -ms-transform: translateX(-10rem);
    -o-transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
    -webkit-transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    -o-transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
    -webkit-transform: translateX(10rem);
    -moz-transform: translateX(10rem);
    -ms-transform: translateX(10rem);
    -o-transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
    -webkit-transform: translateX(-1rem);
    -moz-transform: translateX(-1rem);
    -ms-transform: translateX(-1rem);
    -o-transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
    -webkit-transform: translateY(3rem);
    -moz-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    -o-transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
}
@keyframes slowBouncing {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    transform: translateX(3rem);
    -webkit-transform: translateX(3rem);
    -moz-transform: translateX(3rem);
    -ms-transform: translateX(3rem);
    -o-transform: translateX(3rem);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes slowBounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-6rem);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-0.7rem);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bgAnimation {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes skewing {
  0% {
    transform: skew(-30deg) translateX(-95rem) translateY(40rem) scale(1.4) rotate(10deg);
  }
  50% {
    transform: skew(0deg) translateX(-95rem) translateY(40rem) scale(1.4) rotate(-10deg);
  }
  100% {
    transform: skew(30deg) translateX(-95rem) translateY(40rem) scale(1.4) rotate(10deg);
  }
}
@keyframes right {
  0%, 100% {
    transform: translate(-15px);
  }
  50% {
    transform: translate(15px);
  }
}
@keyframes left {
  0%, 100% {
    transform: translate(15px);
  }
  50% {
    transform: translate(-15px);
  }
}
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100lvh;
  width: 100%;
  z-index: -2;
  opacity: 1;
  overflow: hidden;
}
.bg-video video {
  filter: saturate(0);
  -webkit-filter: saturate(0);
}
.bg-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.bg-video, .bg-video__content {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.btn-div {
  display: flex;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
  transform: translateY(5rem);
}

.btn,
.btn:link,
.btn:visited {
  display: block;
  text-align: center;
  font-family: inherit;
  font-weight: 700;
  padding: 1rem 3rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn--main,
.btn--main:link,
.btn--main:visited {
  background-color: #bc0c6c;
  color: #fff;
}
.btn--main:hover,
.btn--main:link:hover,
.btn--main:visited:hover {
  background-color: #710741;
}

.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  background-color: #fff;
  color: #555;
}
.btn--secondary:hover,
.btn--secondary:link:hover,
.btn--secondary:visited:hover {
  background-color: transparent;
  box-shadow: inset 0 0 0 0.3rem #fff;
}

.btn--tertiary,
.btn--tertiary:link,
.btn--tertiary:visited {
  color: #555;
  background-color: transparent;
}
.btn--tertiary:hover,
.btn--tertiary:link:hover,
.btn--tertiary:visited:hover {
  color: #bc0c6c;
}

.btn--popup-close {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 2rem;
  height: 1rem;
  cursor: pointer;
}

.languages-controll {
  position: fixed;
  bottom: 2rem;
  right: -2px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid #fff;
  padding: 1rem 2rem;
  transform: translateX(60%);
  transition: transform 0.2s;
}

.languages-controll:hover {
  transform: translateX(0);
}

@media only screen and (max-width: 67em) {
  .languages-controll {
    padding: 0.5rem 1rem;
    right: -0.5rem;
    bottom: 10rem;
    border: 1px solid #fff;
    transform: translateX(60%) !important;
  }
  .languages-controll.is-open {
    transform: translateX(0%) !important;
  }
}
.languages-controll .lang {
  color: #fff;
  display: block;
  transition: color 0.2s;
  cursor: pointer;
}

.languages-controll .lang:hover {
  color: #da0e7e;
}

.languages-controll .lang--active {
  color: #bc0c6c !important;
}

.languages-controll__icon {
  width: 2.8rem;
  padding-right: 10px;
  border-right: 2px solid #fff;
  color: white !important;
}

.mouse {
  display: block;
  height: 4rem;
  width: 2rem;
  border: 2px solid #fff;
  border-radius: 17px;
  position: absolute;
  left: 50%;
  bottom: 3%;
  z-index: 3;
}
.mouse:hover {
  animation: bounce 1.5s, opacity 3s;
}
.mouse:before {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 67em) {
  .mouse {
    animation: bounce 1.5s, opacity 3s;
  }
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(-2rem, 2rem);
  z-index: 2000;
}
@media only screen and (max-width: 67em) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav__btn {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  background-color: #fff;
}
.mobile-nav__btn:hover .mobile-nav__icon::before {
  top: -1rem;
}
.mobile-nav__btn:hover .mobile-nav__icon::after {
  top: 1rem;
}
.mobile-nav__background {
  display: none;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(-2.45rem, 2.45rem);
  background-color: #000;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.mobile-nav__background.active {
  transform: scale(80);
}
@media only screen and (max-width: 67em) {
  .mobile-nav__background {
    display: block !important;
  }
}
.mobile-nav__icon {
  position: relative;
  margin-top: 3.5rem;
  width: 3rem;
  height: 2px;
  background-color: #555;
  display: inline-block;
}
.mobile-nav__icon::before, .mobile-nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: #555;
  transition: all 0.2s;
}
.mobile-nav__icon::before {
  top: -0.8rem;
}
.mobile-nav__icon::after {
  top: 0.8rem;
}
.mobile-nav__icon.active {
  background-color: transparent;
  color: transparent;
}
.mobile-nav__icon.active::before {
  transform: rotate(135deg);
  top: 0 !important;
}
.mobile-nav__icon.active::after {
  transform: rotate(-135deg);
  top: 0 !important;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 1rem 5rem;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: transform 0.3s;
}
@media only screen and (max-width: 67em) {
  .nav {
    transform: translateY(-66px) !important;
  }
}
.nav__logo {
  width: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media only screen and (max-width: 67em) {
  .nav__logo {
    display: none;
  }
}
.nav__list {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  color: #fff;
  font-size: 2rem;
}
@media only screen and (max-width: 67em) {
  .nav__list {
    position: fixed;
    flex-direction: column;
    top: 50%;
    left: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
    visibility: none;
    text-align: center;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav__list {
    gap: 3rem;
  }
}
.nav__list.active {
  opacity: 1;
  top: 50svh !important;
  left: 50vw !important;
  pointer-events: all;
  visibility: visible;
  z-index: 999999;
}
@media only screen and (max-width: 67em) {
  .nav__list.active {
    transform: translate(-50%, -30%);
  }
}
.nav__link:link, .nav__link:visited {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.nav__link:hover, .nav__link:active {
  color: #bc0c6c;
}

.projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 25rem);
  gap: 1rem;
  padding: 5rem;
  max-width: 135rem;
  margin: 0 auto;
}
@media only screen and (max-width: 67em) {
  .projects {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem;
    height: 60svh;
    max-height: 55rem;
  }
}
.projects__project {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 67em) {
  .projects__project {
    flex: 0 0 80%;
    scroll-snap-align: center;
    height: 100%;
  }
}
.projects__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project1 {
  grid-column: 1/2;
  grid-row: 1/3;
}

.project2 {
  grid-column: 2/4;
  grid-row: 1/2;
}

.project3 {
  grid-column: 2/4;
  grid-row: 2/3;
}

.project4 {
  grid-column: 4/5;
  grid-row: 1/3;
}

.solutions {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25rem 15rem;
  transition: all 0.3s;
  z-index: 2;
}
@media only screen and (max-width: 67em) {
  .solutions {
    padding: 25rem 7%;
  }
}
.solutions .heading__secondary {
  grid-column: 1/2;
  grid-row: 1/2;
}
.solutions--subsection {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  height: 80svh;
  width: 70%;
  margin-left: auto;
  transition: all 0.3s;
  gap: 2.5rem;
}
@media only screen and (max-width: 67em) {
  .solutions--subsection {
    width: 60%;
  }
}
@media only screen and (max-width: 67em) {
  .solutions--subsection {
    width: 100%;
    text-align: center;
    margin: auto;
  }
}
.solutions--subsection--hidden {
  opacity: 0 !important;
  transform: scale(0.9);
}
.solutions__nav {
  z-index: 5;
  position: fixed;
  top: 50%;
  left: 10rem;
  transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4rem;
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-size: 2.4rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 67em) {
  .solutions__nav {
    left: 3rem;
  }
}
@media only screen and (max-width: 67em) {
  .solutions__nav {
    flex-direction: row;
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 3rem 5rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.solutions__nav--hidden {
  transform: translateY(-50%) translateX(-100rem);
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}
@media only screen and (max-width: 67em) {
  .solutions__nav--hidden {
    transform: translateX(-50%) translateY(20rem);
  }
}
@media only screen and (max-width: 67em) {
  .solutions__heading {
    display: none;
  }
}
.solutions__heading--mobile {
  display: none;
}
@media only screen and (max-width: 67em) {
  .solutions__heading--mobile {
    font-size: 3.4rem;
    display: block;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.solutions__link {
  text-decoration: none;
}
.solutions__item {
  text-decoration: none;
  list-style: none;
  color: #fff;
}
.solutions__item:hover, .solutions__item:active {
  color: #c93d89;
}
.solutions__item--active {
  color: #bc0c6c !important;
}

.solutions-content__text {
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: start;
  list-style: circle;
}
@media only screen and (max-width: 67em) {
  .solutions-content__text {
    list-style: none;
    text-align: center;
  }
}
.solutions-content__text:last-of-type {
  flex-direction: column-reverse;
}
.solutions-content__img--wheels {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 67em) {
  .solutions-content__img--wheels {
    align-self: center;
  }
}
.solutions-content__img--wheels--container {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.section__benefits {
  padding: 20rem 8vw;
}

.section__cta {
  padding-top: 10rem;
  padding-bottom: 15rem;
}

.section__about {
  padding-top: 45rem !important;
}

@media only screen and (max-width: 37.5em) {
  .section {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

.footer {
  padding-top: 10rem;
  margin-bottom: 15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

#stats,
.count-particles {
  display: none;
}

#particles-js {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: transparent url("") no-repeat center/cover;
  pointer-events: all;
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.dots__dot {
  border: none;
  background-color: #fff;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7);
}
.dots__dot:last-child {
  margin: 0;
}
.dots__dot--active {
  background-color: #e7f5ff;
  opacity: 1;
}

.socials {
  position: fixed;
  bottom: 10%;
  right: 0.8rem;
  padding: 0.5rem;
  border-radius: 9px;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
  z-index: 5;
  color: #e8d7d8;
  transition: 0.1s ease-in;
}
.socials:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 67em) {
  .socials {
    transform: scale(1);
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}
.socials__link {
  color: #fff;
}
.socials__link:hover {
  color: #bc0c6c;
}
.socials__icon {
  font-size: 3rem;
}

.underline,
.underline:link,
.underline:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(#bc0c6c, #bc0c6c), linear-gradient(transparent, transparent);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all 0.2s ease-out;
}
.underline:hover, .underline:active, .underline:link:hover, .underline:link:active, .underline:visited:hover, .underline:visited:active,
.underline:link:hover,
.underline:link:active,
.underline:link:link:hover,
.underline:link:link:active,
.underline:link:visited:hover,
.underline:link:visited:active,
.underline:visited:hover,
.underline:visited:active,
.underline:visited:link:hover,
.underline:visited:link:active,
.underline:visited:visited:hover,
.underline:visited:visited:active {
  background-size: 100% 2px, auto;
}

.typewriter h3 {
  overflow: hidden;
  border-right: 0.15em solid #fff;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

.about {
  padding: 25rem 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .about {
    padding: 22.5rem 10rem;
  }
}
@media only screen and (max-width: 67em) {
  .about {
    padding: 25rem 7%;
  }
}
@media only screen and (max-width: 37.5em) {
  .about {
    padding: 15rem 3rem;
  }
}
.about__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.img__div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts {
  padding: 25rem 15rem 15rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
  text-align: center;
  color: #e7f5ff;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .contacts {
    padding: 22.5rem 10rem;
  }
}
@media only screen and (max-width: 67em) {
  .contacts {
    padding: 25rem 7%;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts {
    padding: 15rem 3rem;
  }
}
.contacts__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.contacts__icon {
  margin: auto 0;
}
.contacts__bank ul {
  list-style: none;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.gallery {
  margin: 25rem 15rem;
  margin-top: 100svh !important;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  opacity: 100%;
}
@media only screen and (max-width: 75em) {
  .gallery {
    margin: 22.5rem 10rem;
  }
}
@media only screen and (max-width: 67em) {
  .gallery {
    margin: 25rem 7%;
  }
}
@media only screen and (max-width: 37.5em) {
  .gallery {
    margin: 15rem 3rem;
  }
}
.gallery__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.background {
  display: block;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0;
}

.section--hidden > * {
  opacity: 0;
  transform: scale(0.8);
}
@media only screen and (max-width: 67em) {
  .section--hidden > * {
    opacity: 1;
    transform: none;
  }
}
.section__hero {
  height: 100svh;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
}
.section__hero--container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  z-index: 1;
}
.section__hero--container > * {
  z-index: 2;
}
.section__hero--container-2 {
  width: 80%;
  z-index: 2;
}
.section__hero--logo {
  width: 40rem;
}
@media only screen and (max-width: 37.5em) {
  .section__hero--logo {
    width: 30rem;
  }
}
.section__hero--text {
  width: 40rem;
}
@media screen and (max-width: 45em) {
  .section__hero--text {
    width: 30rem;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  height: 100svh;
  width: 100vw;
  background-color: black;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
}
.loading-screen--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loader {
  height: 150px;
  position: relative;
}
.loader::before, .loader::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: relative;
  margin: 10px auto;
  border-radius: 50%;
  color: #bc0c6c;
  background: currentColor;
  box-shadow: 0 50px, 0 100px;
  animation: left 1s infinite ease-in-out;
}
.loader::after {
  animation: right 1.1s infinite ease-in-out;
}

.mission {
  padding: 25rem 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .mission {
    padding: 22.5rem 10rem;
  }
}
@media only screen and (max-width: 67em) {
  .mission {
    padding: 25rem 7%;
  }
}
@media only screen and (max-width: 37.5em) {
  .mission {
    padding: 15rem 3rem;
  }
}
.mission__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/*# sourceMappingURL=styles.css.map */