.header {
  width: 100vw;
  height: 100px;
  background-color: #ffffff;
  z-index: 100;
  position: absolute;
  transition: height 0.6s, background-color 0.3s ease-in;
  padding: 0px 7%;
  overflow: auto;
}
.header__desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100px;
  position: relative;
}
.header__logo {
  flex-grow: 1;
  flex-basis: 0;
}
.header__logo-container {
  max-width: 380px;
}
.header__logo-assisto {
  max-width: 100%;
}
.header__contact {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  justify-content: end;
}
.header .side-menu {
  display: none;
}
.header--none-element {
  opacity: 0;
}
.header .mobile-nav {
  display: none;
}
.header__mobile {
  height: 0;
  overflow: hidden;
  gap: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .mobile-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: end;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 28px;
  gap: 50px;
  max-width: 300px;
}
.header .mobile-nav__link {
  text-decoration: none;
  color: #ffffff;
}

@media only screen and (max-width: 1200px) {
  .header .header__contact {
    flex-basis: 0;
  }
}
@media only screen and (max-width: 992px) {
  .header__contact {
    display: none;
  }
  .header__logo-container {
    max-width: 280px;
  }
  .header .side-menu {
    display: block;
  }
  .header.open {
    width: 100vw;
    height: 100%;
    background-color: #FF6D00;
    position: fixed;
  }
  .header.open .header__logo-assisto {
    display: none;
  }
  .header.open .header__mobile {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header__logo-container {
    max-width: 235px;
  }
}
.home-page {
  margin-top: 220px;
}
.home-page__container {
  display: flex;
  justify-content: space-between;
  min-height: 450px;
  position: relative;
}
.home-page__blur {
  width: 360px;
  height: 360px;
  position: absolute;
  top: -60px;
  left: -100px;
  background: #182965;
  filter: blur(100px);
  border-radius: 50%;
  z-index: 1;
}
.home-page__text {
  display: flex;
  flex-direction: column;
  z-index: 2;
  max-width: 600px;
  align-items: flex-start;
}
.home-page__text-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 80px;
  -webkit-text-stroke: 1px black;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.home-page__text-description {
  margin: 40px 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}
.home-page__ilustration {
  display: flex;
  justify-content: end;
  flex: 0 1 623px;
  z-index: 2;
}
.home-page__ilustration-container {
  width: 100%;
  min-width: 350px;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../images/pictures/home-page-keyboard.png);
  max-width: 490px;
  background-size: 100%;
  min-height: 623px;
  margin: 0 50px;
}
.home-page__ilustration-wrench {
  width: 95px;
  height: 95px;
  position: absolute;
  top: 193px;
  right: 0;
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
  border-radius: 50%;
  transform: translate(50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page__ilustration-wrench-svg {
  width: 47px;
  height: 47px;
}
.home-page__ilustration-laptop {
  width: 95px;
  height: 95px;
  position: absolute;
  top: -20px;
  left: 10%;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page__ilustration-laptop-svg {
  width: 54px;
  height: 54px;
}
.home-page__ilustration-code-right {
  position: absolute;
  top: -20px;
  right: 0px;
  width: 64px;
  height: 48px;
  -webkit-animation: MoveUpDownRight 10s infinite ease-in-out;
          animation: MoveUpDownRight 10s infinite ease-in-out;
}
.home-page__ilustration-code-left {
  position: absolute;
  top: 200px;
  width: 64px;
  height: 48px;
  -webkit-animation: MoveUpDownLeft 10s infinite ease-in-out;
          animation: MoveUpDownLeft 10s infinite ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .home-page__ilustration-laptop {
    left: 20%;
  }
}
@media only screen and (max-width: 992px) {
  .home-page__text-title {
    font-size: 45px;
    line-height: 1;
  }
  .home-page__ilustration-container {
    min-height: auto;
    min-width: 310px;
  }
}
@media only screen and (max-width: 768px) {
  .home-page {
    margin-top: 160px;
  }
  .home-page__container {
    align-items: center;
    flex-direction: column;
    gap: 85px;
  }
  .home-page__text {
    max-width: 450px;
  }
  .home-page__ilustration {
    margin: 0;
    flex: 0 1 auto;
    margin-right: 50px;
  }
  .home-page__ilustration-container {
    min-width: 280px;
    aspect-ratio: 492/623;
  }
}
@-webkit-keyframes MoveUpDownLeft {
  50% {
    transform: translate(0, 0);
  }
  0%, 100% {
    transform: translate(20px, -20px);
  }
}
@keyframes MoveUpDownLeft {
  50% {
    transform: translate(0, 0);
  }
  0%, 100% {
    transform: translate(20px, -20px);
  }
}
@-webkit-keyframes MoveUpDownRight {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -15px);
  }
}
@keyframes MoveUpDownRight {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -15px);
  }
}
.services {
  margin-top: 200px;
  position: relative;
}
.services__blur {
  width: 490px;
  height: 490px;
  position: absolute;
  top: -200px;
  right: -80px;
  background: rgba(238, 117, 47, 0.2);
  filter: blur(100px);
  border-radius: 50%;
  display: block;
}
.services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.services__title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.01em;
  margin-top: 20px;
  max-width: 640px;
  margin-right: 40px;
}
.services__title::before {
  content: "";
  width: 47px;
  height: 3px;
  background: #FF6D00;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.services__arrows {
  display: flex;
  gap: 20px;
}
.services__arrow {
  width: 60px;
  height: 60px;
  border: 2px solid #FF6D00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
  color: white;
  cursor: pointer;
}
.services__arrow:disabled {
  background: transparent;
  color: #FF6D00;
}
.services__arrow:nth-child(2) svg {
  transform: rotateY(180deg);
}
.services__bottom {
  width: 100%;
  padding: 70px 7% 0 7%;
  margin-top: 100px;
  display: flex;
  gap: 40px;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  justify-content: normal;
  scroll-behavior: smooth;
}
.services__bottom::-webkit-scrollbar {
  width: 0 !important;
}
.services__wrapper {
  height: 386px;
  display: flex;
  align-items: flex-end;
}

.tile-container {
  display: flex;
  flex-direction: column;
}
.tile-container::after {
  content: "";
  height: 0px;
  transition: height 0.1s ease-out;
  transition-delay: 0.1s;
}
.tile-container:hover:after {
  content: "";
  height: 20px;
}

.tile {
  width: 386px;
  flex: 1 0 386px;
  padding: 0 40px 33px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  scroll-margin: 7vw;
  pointer-events: all;
}
.tile__logo {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__logo-img {
  width: 42px;
}
.tile__title {
  margin-top: 78px;
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.tile__description {
  margin: 15px 0 40px 0;
  font-weight: 400;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  line-height: 24px;
  text-align: center;
  color: #9798A6;
}
.tile__link {
  width: 155px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  margin: 0 auto;
  border-radius: 31px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.tile__link--repair {
  border: solid 1px #FF8B47;
}
.tile__link--sale {
  border: solid 1px #80BEFF;
}
.tile__link--formation {
  border: solid 1px #18C688;
}
.tile__link--development {
  border: solid 1px #FFD772;
}
.tile--repair {
  border: 1px solid rgba(238, 117, 47, 0.4);
}
.tile--repair .tile__logo {
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
}
.tile--sale {
  border: 1px solid rgba(79, 160, 244, 0.4);
}
.tile--sale .tile__logo {
  background: linear-gradient(315deg, #3187DF 22.5%, #80BEFF 78.5%);
}
.tile--formation {
  border: 1px solid rgba(10, 167, 111, 0.4);
}
.tile--formation .tile__logo {
  background: linear-gradient(315deg, #007C50 22.5%, #0AA76F 51.38%, #18C688 78.5%);
}
.tile--development {
  border: 1px solid rgba(255, 202, 88, 0.4);
}
.tile--development .tile__logo {
  background: linear-gradient(315deg, #F8BE2B 22.5%, #FFCA58 51.38%, #FFD772 78.5%);
}
.tile:hover .tile__link--repair {
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
  box-shadow: 0px 10px 50px rgba(238, 117, 47, 0.5);
}
.tile:hover .tile__link--sale {
  background: linear-gradient(315deg, #3187DF 22.5%, #80BEFF 78.5%);
  box-shadow: 0px 10px 50px rgba(79, 160, 244, 0.5);
}
.tile:hover .tile__link--formation {
  background: linear-gradient(315deg, #007C50 22.5%, #0AA76F 51.38%, #18C688 78.5%);
  box-shadow: 0px 10px 50px rgba(10, 168, 112, 0.5);
}
.tile:hover .tile__link--development {
  background: linear-gradient(315deg, #F8BE2B 22.5%, #FFCA58 51.38%, #FFD772 78.5%);
  box-shadow: 0px 10px 50px rgba(255, 203, 125, 0.51);
}

@media only screen and (min-width: 2000px) {
  .services__bottom {
    padding: 70px 7% 0 7%;
    margin-top: 100px;
    display: flex;
    gap: 40px;
    overflow: auto;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    justify-content: center;
  }
  .services__arrow {
    display: none;
  }
  .tile {
    width: 386px;
    padding: 0 40px 33px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-margin: 7vw;
  }
}
@media only screen and (max-width: 768px) {
  .services {
    margin-top: 100px;
  }
  .services__title {
    font-size: 30px;
    margin-right: 0px;
  }
  .services__top {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .services__blur {
    display: none;
  }
  .services__arrows {
    display: none;
  }
  .tile {
    max-width: 92%;
  }
  .tile__title {
    font-size: 20px;
  }
  .tile__description {
    font-size: 14px;
  }
  .tile__link {
    font-size: 12px;
  }
}
.added-values {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.added-values__blur {
  position: absolute;
  top: 0px;
  left: -150px;
  width: 778px;
  height: 263px;
  background: rgba(238, 117, 47, 0.15);
  filter: blur(100px);
  transform: rotate(-29.88deg);
  display: block;
}
.added-values__main-title {
  font-weight: 500;
  font-size: 36px;
  text-align: center;
}
.added-values__container {
  display: flex;
  margin: 0 auto;
  gap: 40px;
  margin-top: 69px;
}
.added-values__block {
  max-width: 280px;
  display: flex;
  flex-direction: column;
}
.added-values__block-img {
  margin: 0 auto;
}
.added-values__block--map {
  max-width: 94px;
}
.added-values__block--star {
  max-width: 124px;
}
.added-values__block--valid {
  max-width: 120px;
}
.added-values__block-title {
  text-align: center;
  margin-top: 35px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.added-values__block-description {
  text-align: center;
  margin-top: 10px;
  color: #9798A6;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}
.added-values__block--expertise {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .added-values {
    margin-top: 110px;
  }
  .added-values__container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .added-values__main-title {
    font-size: 30px;
  }
  .added-values__blur {
    display: none;
  }
  .added-values__block--expertise {
    margin-top: 0px;
  }
}
.card {
  display: flex;
  margin-top: 200px;
  position: relative;
  justify-content: space-around;
  gap: 7%;
  align-items: center;
  padding: 0 8.3333333333%;
  z-index: 99;
}
.card--repair .card__title:after {
  background-color: #EE752F;
}
.card--repair .service__ilustration-bubble {
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
}
.card--sale .card__title:after {
  background-color: #80BEFF;
}
.card--sale .service__ilustration-bubble {
  background: linear-gradient(315deg, #3187DF 22.5%, #80BEFF 78.5%);
}
.card--formation .card__title:after {
  background-color: #18C688;
}
.card--formation .service__ilustration-bubble {
  background: linear-gradient(315deg, #007C50 22.5%, #0AA76F 51.38%, #18C688 78.5%);
}
.card--development .card__title:after {
  background-color: #FFD772;
}
.card--development .service__ilustration-bubble {
  background: linear-gradient(315deg, #F8BE2B 22.5%, #FFCA58 51.38%, #FFD772 78.5%);
}
.card--reverse {
  flex-direction: row-reverse;
}
.card__body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 50px;
  max-width: 416px;
  min-width: 320px;
}
.card__title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}
.card__title:after {
  width: 47px;
  height: 3px;
  content: "";
  margin-top: 24px;
}
.card .service-groupe {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card .service {
  display: flex;
  gap: 15px;
}
.card .service__ilustration-bubble {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0px 5px 7px rgba(184, 80, 0, 0.23));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.card .service__ilustration-img {
  width: 20px;
  height: 20px;
}
.card .service__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .service__text-title {
  font-weight: 700;
  font-size: 20px;
}
.card .service__text-description {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #9798A6;
}
.card .service__text-description a {
  color: #9798A6;
}
.card__ilustration {
  max-width: 493px;
}
.card__ilustration-img {
  border-radius: 20px;
  max-width: 100%;
}
.card__blur {
  width: 755px;
  height: 610px;
  position: absolute;
  right: -300px;
  bottom: -400px;
  background: rgba(24, 41, 101, 0.25);
  filter: blur(100px);
  transform: rotate(33.3deg);
  z-index: -1;
  display: block;
}
.card__blur2 {
  position: absolute;
  top: 220px;
  left: -450px;
  width: 755px;
  height: 490px;
  background: rgba(24, 41, 101, 0.6);
  filter: blur(100px);
  transform: rotate(-38.23deg);
  z-index: -1;
  display: block;
}

@media only screen and (max-width: 1200px) {
  .card {
    align-items: flex-end;
  }
}
@media only screen and (max-width: 768px) {
  .card {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    margin-top: 100px;
  }
  .card__title {
    font-size: 30px;
  }
  .card__blur {
    display: none;
  }
  .card__blur2 {
    display: none;
  }
  .card__body {
    min-width: auto;
  }
}
.footer {
  margin-top: 190px;
}
.footer .top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 105px 0 112px 0;
  border-top: 1px rgba(255, 255, 255, 0.4) solid;
}
.footer__text {
  display: flex;
  padding-right: 6%;
  gap: 149px;
}
.footer__logo {
  max-width: 322px;
}
.footer__logo-img {
  max-width: 100%;
}
.footer__title {
  width: 109px;
  height: 24px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  background: #FF6D00;
  border-radius: 5px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  display: flex;
}
.footer__description {
  margin-top: 23px;
  line-height: 26px;
  font-size: 20px;
}
.footer__contact-container {
  width: 282px;
  margin-top: 23px;
  font-weight: 400;
  font-size: 20px;
  gap: 20px;
}
.footer__contact-info {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
  text-align: left;
  color: #ffffff;
}
.footer__contact-info img {
  margin-right: 10px;
}
.footer .bottom {
  background: #FF6D00;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .bottom .container {
  gap: 49px;
  display: flex;
  font-weight: 400;
  font-size: 15px;
}

@media only screen and (max-width: 1200px) {
  .footer .top {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    padding: 50px 0 84px 0;
  }
  .footer__text {
    padding-right: 0;
  }
  .footer__logo {
    margin-bottom: 84px;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 100px;
  }
  .footer__contact-info {
    justify-content: center;
  }
  .footer__title {
    margin: 0 auto;
  }
  .footer__text {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column-reverse;
    gap: 75px;
  }
  .footer__smartphone {
    justify-content: center;
  }
  .footer__mail {
    justify-content: center;
  }
  .footer__location {
    justify-content: center;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  height: 65px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.btn--primary {
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn--navbar {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  margin-bottom: 12.5%;
  flex: 0 0 65px;
}
.btn__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 130px;
  padding: 52.5px 25px 0 25px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.7, -0.5, 1, 1);
  white-space: nowrap;
}
.btn__text:hover {
  transform: translateY(-53.5px);
}

.phone {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.phone--mobile {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 16px;
  margin-top: 1.6%;
}
.phone__bubble {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.phone__bubble--desktop {
  background: linear-gradient(315deg, #E3641A 22.5%, #FF8B47 78.5%);
}
.phone__bubble--mobile {
  background-color: #ffffff;
}
.phone__img {
  width: 20;
  height: 20px;
}
.phone__number {
  margin-left: 20px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.phone__number--desktop {
  color: #2B2B2B;
}
.phone__number--mobile {
  color: #ffffff;
}

@media only screen and (max-width: 992px) {
  .phone--desktop {
    display: none;
  }
}
.menu-btn {
  position: relative;
  display: block;
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
}
.menu-btn .close-row,
.menu-btn .close-row:before,
.menu-btn .menu-row {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1px;
}
.menu-btn .close-row {
  left: 50%;
}
.menu-btn .close-row:before {
  content: "";
  top: 0%;
  background-color: #FF6D00;
}
.menu-btn .menu-row {
  left: 0;
  background-color: #FF6D00;
}

.menu-btn {
  transform: rotate(0deg) translateZ(0) scale(1, 1);
  transition: transform calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-btn .menu-row {
  transform: rotate(0deg) translateZ(0) scale(1, 1);
  border-radius: 5px;
  display: flex;
}
.menu-btn .menu-row.top {
  margin-top: -12px;
  transition: transform calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms, margin calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) calc(500ms/2);
}
.menu-btn .menu-row.mid {
  opacity: 1;
  transition-duration: 0s;
  transition-delay: calc(500ms/2), 0s;
}
.menu-btn .menu-row.bot {
  width: 50%;
  margin-top: 12px;
  margin-left: 50%;
  transition: transform calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms, margin calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) calc(500ms/2);
}

.header.open .menu-btn {
  transform: rotate(180deg) translateZ(0) scale(1, 1);
}
.header.open .menu-btn .menu-row.top {
  background-color: #ffffff;
  margin-top: 0px !important;
  transform: rotate(45deg) translateZ(0) scale(1, 1);
  transition: margin calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms, transform calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) calc(500ms/2);
}
.header.open .menu-btn .menu-row.mid {
  opacity: 0;
  transition-delay: calc(500ms/2), 0s;
}
.header.open .menu-btn .menu-row.bot {
  background-color: #ffffff;
  width: 100%;
  margin-left: 0%;
  margin-top: 0px !important;
  transform: rotate(-45deg) translateZ(0) scale(1, 1);
  transition: margin calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms, transform calc(500ms/2) cubic-bezier(0.175, 0.885, 0.32, 1.275) calc(500ms/2);
}
.header.open .menu-btn .menu-row.background-white {
  background-color: #ffffff;
}

@font-face {
  font-family: "Proxima-Nova";
  src: url("../fonts/proxima-nova/Mark Simonson - Proxima Nova Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima-Nova";
  src: url("../fonts/proxima-nova/Mark Simonson - Proxima Nova Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
* {
  margin: 0;
  box-sizing: border-box;
}

body, html {
  color: #ffffff;
  font-family: "Proxima-Nova";
  background: #040A1C;
  width: 100%;
  overflow-x: hidden;
}

.remove-scroll {
  overflow-y: hidden;
}

.add-scroll {
  overflow-y: scroll;
}

.container-body {
  max-width: 1600px;
  margin: auto;
  padding: 0 7%;
}

.bold {
  font-weight: bold;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}/*# sourceMappingURL=style.css.map */