:root {
  --gray: #8c8c8c;
  --dark-gray: #37474f;
  --light-gray: #fafafa;
  --dark-gray-two: #27272727;
  --dark-gray-ff: #272727;
  --dark-gray-two-opposite: #d8d8d8;
  --black: #000000;
  --white: #ffffff;
  --privacy-policy-link: #49396a;
  --privacy-policy-link-opposite: #b6c695;
  --privacy-policy-link-hover: #221341;
  --privacy-policy-link-hover-opposite: #ddecbe;
  --svg-floor: #f5f5f5;
}

html,
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  background-color: var(--white);
  margin: 0;
}

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

html[theme='dark-mode'] {
  background-color: var(--black);
}

html[theme='dark-mode'] body {
  background-color: var(--black);
}

html[theme='dark-mode'] nav {
  background-color: var(--black);
}

html[theme='dark-mode'] nav.is-scrolling {
  box-shadow: 0px 0px 15px -3px rgb(255, 255, 255, 0.2);
}

html[theme='dark-mode'] nav .nav-component--logo h2 {
  color: var(--white);
  text-shadow: 0px 3.5px 5px rgb(255, 255, 255, 0.2);
}

html[theme='dark-mode'] nav .nav-component--menu {
  color: var(--white);
}

html[theme='dark-mode'] nav .nav-menu--item.theme-toggle .switch {
  background-color: var(--gray);
}

html[theme='dark-mode'] header .about-section--text-title {
  color: var(--white);
}

html[theme='dark-mode']
  header
  .about-section--image
  #MainImage-Wrapper
  #MainImage
  #Floor {
  fill: var(--gray);
}

html[theme='dark-mode'] .services .services--card-item {
  background-color: var(--dark-gray-ff);
  box-shadow: 0px 0px 15px -3px rgba(255, 255, 255, 0.2);
}

html[theme='dark-mode'] .services .services--card-item .card-item--image img {
  filter: invert(1) hue-rotate(180deg);
}

html[theme='dark-mode'] .services .services--card-item .card-item--title h4 {
  color: var(--white);
}

html[theme='dark-mode'] #footer {
  background-color: var(--dark-gray-ff);
}

html[theme='dark-mode'] #footer .footer--main__details h2 {
  color: var(--white);
}

html[theme='dark-mode']
  #footer
  .footer--main__details
  .footer--details__button {
  color: var(--black);
  background-color: var(--white);
  box-shadow: 0px 0px 13px 1px rgba(255, 255, 255, 0.2);
}

html[theme='dark-mode'] #footer .footer--copyright .footer--copyright__logo {
  color: var(--white);
  text-shadow: 0px 3.5px 5px rgb(255, 255, 255, 0.2);
}

html[theme='dark-mode']
  #footer
  .footer--copyright
  .footer--copyright__copyright,
html[theme='dark-mode']
  #footer
  .footer--copyright
  .footer--copyright__privacy-policy
  .footer--privacy-policy--link,
html[theme='dark-mode']
  #footer
  .footer--copyright__copyright
  p:last-child
  .footer--image-provider {
  color: var(--white);
}

html[theme='dark-mode'] .modal .modal-body {
  background-color: var(--dark-gray-ff);
  color: var(--white);
}

html[theme='dark-mode'] .modal .modal-body a,
html[theme='dark-mode'] .modal .modal-body a:visited {
  color: var(--privacy-policy-link-opposite);
}

html[theme='dark-mode'] .modal .modal-body a:hover {
  color: var(--privacy-policy-link-hover-opposite);
}

html[theme='dark-mode'] .modal .modal-body .modal-dismiss img {
  filter: invert(1) hue-rotate(180deg);
}

html[theme='dark-mode'] .splide__arrow svg {
  stroke: var(--white);
}

html {
  transition: color 300ms, background-color 300ms;
  -webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition: color 300ms, background-color 300ms;
}

body.modal-open {
  overflow: hidden;
}

nav {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background-color: var(--white);
  z-index: 1000;

  transition: box-shadow 150ms;
  -webkit-transition: box-shadow 150ms;
  -moz-transition: box-shadow 150ms;
  -o-transition: box-shadow 150ms;
}

nav.is-scrolling {
  box-shadow: 0px 0px 15px -3px rgb(0, 0, 0, 0.2);
}

.nav-component--menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-component--logo h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 50px;
  text-shadow: 0px 3.5px 5px rgb(0, 0, 0, 0.2);
  animation: pop infinite 2000ms linear;
}

.nav-menu--item.theme-toggle .switch {
  position: relative;
  display: block;
  width: 60px;
  height: 30px;
  border-radius: 20px;
  background-color: var(--dark-gray);
  margin-left: 25px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.nav-menu--item.theme-toggle .switch:hover {
  cursor: pointer;
}

.nav-menu--item.theme-toggle .theme-switch {
  display: none;
}

.nav-menu--item.theme-toggle .switch .toggle-button {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--white) !important;
  box-shadow: 0px 0px 6px rgb(0, 0, 0, 0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  -webkit-transition: transform 200ms linear;
  -moz-transition: transform 200ms linear;
  -o-transition: transform 200ms linear;
  transition: transform 200ms linear;
}

.nav-menu--item.theme-toggle .switch .toggle-button .theme-style {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-menu--item.theme-toggle .switch .toggle-button.dark-toggled {
  transform: translate(-80%, -50%);
}

.nav-menu--item.theme-toggle .switch .toggle-button.dark-toggled #lightMode {
  opacity: 0;
}

.nav-menu--item.theme-toggle .switch .toggle-button.dark-toggled #darkMode {
  opacity: 1;
}

.nav-menu--item.theme-toggle .switch .toggle-button svg {
  width: 20px;
  height: 20px;
}

.nav-menu--item.theme-toggle .switch .toggle-button #lightMode {
  opacity: 1;
}

.nav-menu--item.theme-toggle .switch .toggle-button #darkMode {
  opacity: 0;
}

.nav-menu--item.theme-toggle .switch .toggle-button #darkMode,
.nav-menu--item.theme-toggle .switch .toggle-button #lightMode {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: opacity 150ms linear;
  -webkit-transition: opacity 150ms linear;
  -moz-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
}

.about {
  display: flex;
  align-items: center;
  padding: 0 60px;
  margin: 30px auto;
}

.about .about-section--image {
  width: 50%;
  padding: 0 30px;
}

.about .about-section--image #MainImage-Wrapper #MainImage #Floor {
  fill: var(--svg-floor);
}

.about .about-section--text {
  width: 50%;
}

.about .about-section--text .about-section--text-description {
  color: var(--gray);
  width: 70%;
  text-align: justify;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.about .about-section--text .about-section--text-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  width: 70%;
}

.services {
  padding: 0 60px;
  margin: 100px auto 150px auto;
}

.mobile-cards {
  position: relative;
  display: none;
}

.splide__arrow svg {
  stroke: var(--black);
}

.splide__arrow svg:hover {
  opacity: 0.5;
}

.splide__arrow {
  border: none;
  background-color: transparent;
}

.splide__arrow.splide__arrow--next {
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.splide__arrow.splide__arrow--prev {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.splide__arrow {
  outline: none;
}

.services .services--cards-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}

.services .services--cards-wrapper .services--card-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.2);
  background-color: var(--light-gray);
  border-radius: 40px;
  padding: 60px 40px;
  width: 10%;
  transform-style: preserve-3d;
}

.services .services--cards-wrapper .services--card-item.splide__slide {
  margin: 15px;
}

.mobile-cards.splide {
  margin: auto;
  padding: 0 5px;
  border-radius: 40px;
}

.services
  .services--cards-wrapper
  .services--card-item:nth-of-type(2)
  .card-item--image
  img {
  width: 100%;
}

.services .services--cards-wrapper .services--card-item .card-item--image {
  width: 100%;
}

.services .services--cards-wrapper .services--card-item .card-item--image img {
  width: 75px;
  height: 75px;
}

.services .services--cards-wrapper .services--card-item .card-item--image,
.services .services--cards-wrapper .services--card-item .card-item--title,
.services
  .services--cards-wrapper
  .services--card-item
  .card-item--description {
  font-weight: 600;
  font-size: 15px;
  text-align: center;

  transition: transform 750ms ease-in-out;
  -webkit-transition: transform 750ms ease-in-out;
  -moz-transition: transform 750ms ease-in-out;
  -o-transition: transform 750ms ease-in-out;
}

.element-pop {
  transform: translateZ(100px);
  -webkit-transform: translateZ(100px);
  -moz-transform: translateZ(100px);
  -o-transform: translateZ(100px);
}

.services .services--cards-wrapper .services--card-item .card-item--title h4 {
  margin: 10px 0 20px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
}

.services
  .services--cards-wrapper
  .services--card-item
  .card-item--description {
  color: var(--gray);
}

.img-responsive {
  width: 100%;
}

footer {
  background-color: var(--light-gray);
  padding: 70px 60px 10px 60px;
  margin: 250px auto 0 auto;
}

.footer--main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 60px;
}

.footer--main__details {
  width: 70%;
}

.footer--main__photo {
  width: 30%;
}

.footer--main__details h4 {
  color: var(--gray);
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
}

.footer--main__details h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  font-size: 40px;
  margin: 0 auto;
}

.footer--main__details p {
  color: var(--gray);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  margin: 5px auto 80px auto;
}

.footer--details__button {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  padding: 20px 40px;
  text-decoration: none;
  text-transform: capitalize;
  text-align: center;
  border-radius: 10px;
  background-color: var(--black);
  color: var(--white);
  box-shadow: 0px 0px 13px 1px rgba(0, 0, 0, 0.2);
}

.footer--details__button:hover {
  opacity: 0.8;
}

.footer--details__button:visited {
  text-decoration: none;
}

.footer--copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
}

.footer--copyright__logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-align: left;
  text-shadow: 0px 3.5px 5px rgb(0, 0, 0, 0.2);
  animation: pop infinite 2000ms linear;
}

.footer--copyright__copyright {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 10px;
}

.footer--copyright__copyright p {
  text-align: center;
}

.footer--copyright__copyright p:first-child {
  margin: 0 auto 5px 0;
}

.footer--copyright__copyright p:last-child {
  margin: 0;
}

.footer--copyright__copyright p:last-child .footer--image-provider {
  color: var(--black);
}

.footer--copyright__copyright p:last-child .footer--image-provider:hover,
.footer--copyright__copyright p:last-child .footer--image-provider:visited,
.footer--copyright__copyright p:last-child .footer--image-provider:focus {
  text-decoration: underline;
}

.footer--copyright__privacy-policy {
  text-align: right;
}

.footer--privacy-policy--link {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  text-transform: capitalize;
  text-align: right;
  color: var(--black);
}

.footer--privacy-policy--link:visited {
  text-decoration: none;
}

aside .main-section-animation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse {
  background: #4e5559
    linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  position: relative;
  width: 52px;
  height: 88px;
  margin: auto;
  border-radius: 100px;
  background-size: 100% 200%;
  animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.mouse:before,
.mouse:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.mouse:before {
  width: 46px;
  height: 82px;
  background-color: #222a30;
  border-radius: 100px;
}
.mouse:after {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation: trackBallSlide 5s linear infinite;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;

  -webkit-transition: opacity 200ms ease-in-out;
  -moz-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal.show .modal-body {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

.modal .modal-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal .modal-body {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);

  -webkit-transition: transform 200ms ease-in-out;
  -moz-transition: transform 200ms ease-in-out;
  -o-transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;

  background-color: var(--white);
  width: 50%;
  height: 70%;
  padding: 40px 40px;
  border-radius: 20px;
}

.modal .modal-description {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: justify;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 85%;
  padding-right: 10px;
}

.modal .modal-description h1 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: left;
}

.modal .modal-description h2 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal .modal-description h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal .modal-description h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal .modal-description h5 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal .modal-description h6 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.modal .modal-description p {
  font-size: 14px;
  margin-bottom: 10px;
}

.modal .modal-description ul {
  font-size: 14px;
  list-style-type: disc;
  line-height: 2;
  margin-top: 15px;
  margin-bottom: 15px;
}

.modal .modal-description a {
  color: var(--privacy-policy-link);
  text-decoration: none;
  -webkit-transition: color 300ms;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  transition: color 300ms;
}

.modal .modal-description a:hover {
  color: var(--privacy-policy-link-hover);
}

.modal .modal-title {
  position: relative;
  width: 100%;
}

.modal .modal-title h2 {
  text-align: center;
  text-transform: capitalize;
  font-family: 'Nunito';
  font-weight: 900;
  font-size: 40px;
  margin-top: 5px;
}

.modal .modal-title .modal-dismiss {
  position: absolute;
  top: 6px;
  right: -7px;
  cursor: pointer;
}

.modal .modal-title .modal-dismiss img {
  width: 30px;
  height: 30px;
}

.modal .modal-body::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

@-moz-document url-prefix() {
  .modal .modal-body {
    scrollbar-width: none !important;
  }
}

#Monitor1 {
  animation: floatUpDown infinite 3000ms;
  -webkit-animation: floatUpDown infinite 3000ms;
  -moz-animation: floatUpDown infinite 3000ms;
  -o-animation: floatUpDown infinite 3000ms;
}

#Chat3 {
  animation: sent-message-top infinite 3000ms;
  -webkit-animation: sent-message-top infinite 3000ms;
  -moz-animation: sent-message-top infinite 3000ms;
  -o-animation: sent-message-top infinite 3000ms;
}

#Chat4 {
  animation: sent-message-bottom infinite 3000ms;
  -webkit-animation: sent-message-bottom infinite 3000ms;
  -moz-animation: sent-message-bottom infinite 3000ms;
  -o-animation: sent-message-bottom infinite 3000ms;
}

#mailMan #Vector_74,
#mailMan #Vector_73,
#mailMan #Vector_72 {
  transform-box: fill-box;
  transform-origin: 70% 90%;
  -webkit-transform-origin: 70% 90%;
  -moz-transform-origin: 70% 90%;
  -o-transform-origin: 70% 90%;
  animation: lift-hat infinite cubic-bezier(0.215, 0.61, 0.355, 1) 3000ms;
  -webkit-animation: lift-hat infinite cubic-bezier(0.215, 0.61, 0.355, 1)
    3000ms;
  -moz-animation: lift-hat infinite cubic-bezier(0.215, 0.61, 0.355, 1) 3000ms;
  -o-animation: lift-hat infinite cubic-bezier(0.215, 0.61, 0.355, 1) 3000ms;
}

#mailMan #Bar {
  transform-box: fill-box;
  transform-origin: 70% 90%;
  -webkit-transform-origin: 70% 90%;
  -moz-transform-origin: 70% 90%;
  -o-transform-origin: 70% 90%;
  animation: move-mail-bar infinite cubic-bezier(0.215, 0.61, 0.355, 1) 3000ms;
  -webkit-animation: move-mail-bar infinite cubic-bezier(0.215, 0.61, 0.355, 1)
    3000ms;
  -moz-animation: move-mail-bar infinite cubic-bezier(0.215, 0.61, 0.355, 1)
    3000ms;
  -o-animation: move-mail-bar infinite cubic-bezier(0.215, 0.61, 0.355, 1)
    3000ms;
}

#mailMan #Envelope {
  transform-origin: center;
  animation: send-mail infinite 3000ms cubic-bezier(1, 0.61, 0.355, 0.215);
  -webkit-animation: send-mail infinite 3000ms
    cubic-bezier(1, 0.61, 0.355, 0.215);
  -moz-animation: send-mail infinite 3000ms cubic-bezier(1, 0.61, 0.355, 0.215);
  -o-animation: send-mail infinite 3000ms cubic-bezier(1, 0.61, 0.355, 0.215);
}

@media (max-width: 1440px) {
  .about .about-section--text .about-section--text-description {
    width: 85%;
    font-size: 18px;
  }

  .about .about-section--text .about-section--text-title {
    width: 85%;
    font-size: 30px;
  }

  .services .services--cards-wrapper {
    justify-content: space-evenly;
  }

  .services .services--cards-wrapper .services--card-item {
    width: 20%;
    padding: 60px 20px;
  }
}

@media (max-width: 1024px) {
  .about .about-section--text .about-section--text-description {
    width: 90%;
    font-size: 16px;
  }

  .about .about-section--text .about-section--text-title {
    width: 90%;
    font-size: 25px;
  }

  .services .services--cards-wrapper .services--card-item {
    width: 30%;
  }
}

@media (orientation: landscape) {
  @media screen and (max-width: 900px) {
    nav .nav-menu--item:not(.theme-toggle) {
      display: none;
    }

    nav .nav-component--logo h2 {
      font-size: 40px;
      margin: 20px 0;
    }

    .about {
      flex-direction: column;
    }

    .about .about-section--text {
      width: 80%;
      order: 1;
    }

    .about .about-section--image {
      width: 70%;
      text-align: center;
      margin: auto auto 20px auto;
      padding: 0;
      order: 0;
    }

    .about .about-section--text .about-section--text-description,
    .about .about-section--text .about-section--text-title {
      width: 100%;
      text-align: center;
    }

    .mobile-cards {
      display: block;
    }

    .services .services--cards-wrapper:not(.splide__list) {
      display: none;
    }

    #services {
      margin: 40px auto 80px auto;
    }

    #footer {
      margin: 0 auto;
    }

    .footer--main .footer--main__photo {
      display: none;
    }

    .footer--main .footer--main__details {
      width: 100%;
    }

    .footer--main .footer--main__details h2 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .footer--main .footer--main__details h4 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .footer--main .footer--main__details p {
      margin: 5px auto 30px auto;
    }

    .footer--main .footer--main__details .footer--details__button {
      width: 140px;
      display: block;
      margin: auto;
    }

    .modal .modal-body {
      width: 60%;
      padding: 40px 40px;
    }

    .modal .modal-body .modal-dismiss img {
      width: 25px;
      height: 25px;
    }
  }

  @media (max-width: 610px) {
    .footer--main .footer--main__details h2 {
      font-size: 28px;
    }

    .footer--copyright .footer--copyright__logo,
    .footer--copyright .footer--copyright__copyright,
    .footer--copyright .footer--copyright__privacy-policy {
      width: 25%;
      margin: 0;
    }

    .modal .modal-body {
      width: 70%;
      padding: 30px 30px;
    }

    .modal .modal-body .modal-title h2 {
      font-size: 27px;
    }

    .modal .modal-body .modal-dismiss {
      top: 10px;
      right: 0px;
    }

    .modal .modal-body .modal-dismiss img {
      width: 20px;
      height: 20px;
    }

    nav,
    #about,
    #services,
    #footer {
      padding: 0 20px;
    }

    #footer {
      padding-bottom: 20px;
    }
  }

  @media (max-width: 575px) {
    .footer--copyright .footer--copyright__copyright {
      width: 50%;
      padding: 0px 28px;
    }

    nav .nav-menu--item.theme-toggle .switch {
      width: 60px;
      height: 25px;
    }

    nav .nav-menu--item.theme-toggle .switch .toggle-button.dark-toggled {
      transform: translate(-90%, -50%);
    }

    nav .nav-menu--item.theme-toggle .switch .toggle-button {
      width: 35px;
      height: 35px;
      transform: translate(-10%, -50%);
    }
  }

  @media (max-width: 500px) {
    .about .about-section--text {
      width: 100%;
      order: 1;
    }

    .about .about-section--image {
      width: 100%;
    }

    .modal .modal-body {
      padding: 20px 20px;
      width: 80%;
    }

    .modal .modal-body .modal-description {
      padding-right: 0;
    }
  }
}

@media (orientation: portrait) {
  @media screen and (max-width: 768px) {
    nav .nav-menu--item:not(.theme-toggle) {
      display: none;
    }

    nav .nav-component--logo h2 {
      font-size: 40px;
      margin: 20px 0;
    }

    nav .nav-menu--item.theme-toggle .switch {
      width: 65px;
      height: 25px;
    }

    .about {
      flex-direction: column;
    }

    .about .about-section--text {
      width: 80%;
      order: 1;
    }

    .about .about-section--image {
      width: 70%;
      text-align: center;
      margin: auto auto 20px auto;
      padding: 0;
      order: 0;
    }

    .about .about-section--text .about-section--text-description,
    .about .about-section--text .about-section--text-title {
      width: 100%;
      text-align: center;
    }

    .mobile-cards {
      display: block;
    }

    .services .services--cards-wrapper:not(.splide__list) {
      display: none;
    }

    #services {
      margin: 40px auto 80px auto;
    }

    #footer {
      margin: 0 auto;
    }

    .footer--main .footer--main__photo {
      display: none;
    }

    .footer--main .footer--main__details {
      width: 100%;
    }

    .footer--main .footer--main__details h2 {
      font-size: 35px;
      margin-bottom: 10px;
    }

    .footer--main .footer--main__details h4 {
      margin-bottom: 10px;
    }

    .footer--main .footer--main__details p {
      margin: 5px auto 30px auto;
    }

    .footer--main .footer--main__details .footer--details__button {
      width: 140px;
      display: block;
      margin: auto;
    }

    .modal .modal-body {
      width: 60%;
      padding: 30px 30px;
    }

    .modal .modal-body .modal-dismiss img {
      width: 25px;
      height: 25px;
    }
  }

  @media (max-width: 610px) {
    .footer--main .footer--main__details h2 {
      font-size: 28px;
    }

    .footer--copyright .footer--copyright__logo,
    .footer--copyright .footer--copyright__copyright,
    .footer--copyright .footer--copyright__privacy-policy {
      width: 25%;
      margin: 0;
    }

    .modal .modal-body {
      width: 70%;
      padding: 30px 30px;
    }

    .modal .modal-body .modal-title h2 {
      font-size: 27px;
    }

    .modal .modal-body .modal-dismiss {
      top: 10px;
      right: 0px;
    }

    .modal .modal-body .modal-dismiss img {
      width: 20px;
      height: 20px;
    }

    nav,
    #about,
    #services,
    #footer {
      padding: 0 20px;
    }

    #footer {
      padding-bottom: 20px;
    }
  }

  @media (max-width: 575px) {
    .footer--copyright .footer--copyright__copyright {
      width: 50%;
      padding: 0px 28px;
    }

    nav .nav-menu--item.theme-toggle .switch {
      width: 60px;
      height: 25px;
    }

    nav .nav-menu--item.theme-toggle .switch .toggle-button.dark-toggled {
      transform: translate(-90%, -50%);
    }

    nav .nav-menu--item.theme-toggle .switch .toggle-button {
      width: 35px;
      height: 35px;
      transform: translate(-10%, -50%);
    }
  }

  @media (max-width: 500px) {
    .about .about-section--text {
      width: 100%;
      order: 1;
    }

    .about .about-section--image {
      width: 100%;
    }

    .modal .modal-body {
      padding: 20px 20px;
      width: 80%;
    }

    .modal .modal-body .modal-description {
      padding-right: 0;
    }
  }
}

.w-100 {
  width: 100% !important;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sent-message-bottom {
  0% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  25% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  50% {
    opacity: 0;
    transform: matrix(1.16, 0.12, 0, 1, 0, 0);
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sent-message-top {
  0% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0) rotate(0deg);
  }
  25% {
    transform: matrix(1, 0, 0, 1, 0, 0) rotate(0deg);
  }
  50% {
    transform: matrix(1, 0.07, -0.1, 1, 0, 40) rotate(-2.5deg);
  }
  75% {
    opacity: 1;
    transform: matrix(1.07, 0.1, -0.1, 1, 0, 40) rotate(-1.9deg);
  }
  100% {
    opacity: 0;
    transform: matrix(1.07, 0.1, -0.1, 1, 0, 40) rotate(-1.9deg);
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes move-mail-bar {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-25deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #4e5559;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #4e5559;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #4e5559;
  }
  90%,
  100% {
    background-color: #ffffff;
  }
}

@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%,
  19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%,
  29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%,
  49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%,
  59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%,
  79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%,
  100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}

@keyframes nudgeMouse {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(8px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(8px);
  }
  90% {
    transform: translateY(0);
  }
}

@keyframes send-mail {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    clip-path: inset(0px 0px 0px 0px);
  }

  25% {
    clip-path: inset(0px 0px 0px 400px);
  }

  50% {
    transform: translateX(-445px) translateY(60px) scale(0);
    clip-path: inset(0px 0px 0px 3000px);
  }

  65% {
    clip-path: inset(0px 0px 0px 0px);
    opacity: 0;
  }

  75% {
    transform: translate(0, 100px) scale(1);
  }

  100% {
    opacity: 1;
  }
}

@keyframes lift-hat {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
