* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  max-width: 100%;
  background-color: #121212;
  overflow-x: hidden;
  overflow-y: auto;
}

#preloader {
  position: fixed;
  z-index: 9999;
  background-color: #121212;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
#preloader > .spinner {
  width: 7rem;
  height: 7rem;
  border: 10px solid #ccc;
  border-top-color: #886FC8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.services_dropdown {
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #121212;
  border: 2px solid #433662;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s;
  top: 14rem;
}
.services_dropdown > a {
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #EAEAEA;
  font-size: 2rem;
  padding: 1.4rem 3.8rem;
  border-top: 2px solid #433662;
  border-bottom: 2px solid #433662;
  transition: 0.2s;
  opacity: 0.8;
}
.services_dropdown > a:first-child {
  border-top: none;
}
.services_dropdown > a:last-child {
  border-bottom: none;
}
.services_dropdown > a:hover {
  cursor: pointer;
  background-color: #101010;
  opacity: 1;
}
.services_dropdown__menu--active {
  visibility: visible;
  opacity: 1;
}

.languages_dropdown {
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #121212;
  border: 1px solid #433662;
  border-radius: 4px;
  overflow: hidden;
  transition: 0.2s;
  top: 14rem;
  right: 7rem;
}
.languages_dropdown > span {
  padding: 2rem 3rem;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 2rem;
  gap: 2rem;
  transition: 0.2s;
  opacity: 0.8;
  color: #EAEAEA;
}
.languages_dropdown > span > img {
  width: 3rem;
  aspect-ratio: 1/1;
}
.languages_dropdown > span:hover {
  cursor: pointer;
  background-color: #101010;
  opacity: 1;
}
.languages_dropdown__menu--active {
  visibility: visible;
  opacity: 1;
}

.body__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 7.5rem 5.8rem;
}
.body__header__menu_button {
  border: none;
  background-color: transparent;
  display: none;
}
.body__header__menu_button > img {
  width: 3rem;
}
.body__header__first__logo {
  width: 4vw;
}
.body__header__second {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 5rem;
}
.body__header__second__tab_span {
  display: flex;
  gap: 1rem;
  cursor: pointer;
}
.body__header__second__tab_span:nth-child(2) {
  opacity: 0.8;
}
.body__header__second__tab_span__text {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  user-select: none;
  color: #EAEAEA;
  cursor: pointer;
  transition: 0.1s;
}
.body__header__second__tab_span__icon {
  transition: transform 0.3s;
}
.body__header__second > .active_tab > a {
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.body__header__second > .active_tab > a::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #886FC8;
}

.body__footer {
  background: linear-gradient(to top, #1c1922, #292536);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25rem;
}
.body__footer__citation_div {
  background-color: #121212;
  padding: 6rem 16rem;
  border-radius: 20px;
  border: 2px solid #433662;
  width: fit-content;
  margin-top: -10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 60%;
}
.body__footer__citation_div__citation_text, .body__footer__citation_div__citation_author {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #EAEAEA;
}
.body__footer__content_div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 16rem;
  padding: 0 8rem;
}
.body__footer__content_div__div {
  display: flex;
  flex-direction: column;
}
.body__footer__content_div__div img {
  width: 28rem;
}
.body__footer__content_div__div h1 {
  color: #EAEAEA;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.body__footer__content_div__div p,
.body__footer__content_div__div a {
  color: #EAEAEA;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0%;
  text-decoration: none;
}
.body__footer__content_div__div a {
  transition: 0.2s;
}
.body__footer__content_div__div a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.body__footer__content_div__div:not(:first-child) {
  padding-top: 1rem;
}
.body__footer__copyright_div {
  width: 100%;
  padding: 12rem 8rem 8rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
.body__footer__copyright_div > hr {
  width: 100%;
  color: #EAEAEA;
}
.body__footer__copyright_div > h1 {
  font-weight: 400;
  font-size: 2.5rem;
  color: #EAEAEA;
}

.body__site_menu {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(5px);
  z-index: 100;
  transition: 0.2s;
  padding: 3rem 3rem;
  z-index: 1001;
}
.body__site_menu__header {
  width: 100%;
  padding: auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.body__site_menu__header__close_div > img {
  width: 2rem;
  aspect-ratio: 1/1;
}
.body__site_menu__header__change_lang_div__span {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 1;
  transition: 0.2s;
}
.body__site_menu__header__change_lang_div__span > img {
  transition: 0.2s;
}
.body__site_menu__header__change_lang_div__span.show {
  opacity: 0.8;
}
.body__site_menu__header__change_lang_div__span.show > img:last-child {
  transform: rotate(-180deg);
}
.body__site_menu__header__change_lang_div__span__text {
  font-weight: 400;
  font-size: 4.5vw;
  color: #EAEAEA;
}
.body__site_menu__header__change_lang_div__span__dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 34%;
  top: 8rem;
  right: 2rem;
  text-align: center;
  z-index: 110;
  opacity: 0;
  transition: 0.2s;
}
.body__site_menu__header__change_lang_div__span__dropdown.show {
  opacity: 1;
}
.body__site_menu__header__change_lang_div__span__dropdown > span {
  text-align: center;
  font-weight: 400;
  font-size: 4.5vw;
  color: #EAEAEA;
}
.body__site_menu__main {
  padding-top: 15vh;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.body__site_menu__main__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.body__site_menu__main__row > a, .body__site_menu__main__row > h1 {
  font-weight: 400;
  font-size: 4.8vw;
  color: #EAEAEA;
  text-decoration: none;
  transition: 0.2s;
}
.body__site_menu__main__row > img {
  transform: rotate(-90deg);
  transition: 0.2s;
}
.body__site_menu__main__row.show > h1 {
  color: #886FC8;
}
.body__site_menu__main__row.show > img {
  transform: rotate(-180deg);
  filter: invert(53%) sepia(63%) saturate(747%) hue-rotate(217deg) brightness(94%) contrast(90%);
}
.body__site_menu__main__row__services_dropdown {
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  gap: 2rem;
}
.body__site_menu__main__row__services_dropdown.show {
  max-height: 500px;
}
.body__site_menu__main__row__services_dropdown.show > a {
  opacity: 1;
  transform: translateX(0);
}
.body__site_menu__main__row__services_dropdown.show > a:nth-child(1) {
  transition-delay: 0.05s;
}
.body__site_menu__main__row__services_dropdown.show > a:nth-child(2) {
  transition-delay: 0.1s;
}
.body__site_menu__main__row__services_dropdown.show > a:nth-child(3) {
  transition-delay: 0.15s;
}
.body__site_menu__main__row__services_dropdown.show > a:nth-child(4) {
  transition-delay: 0.2s;
}
.body__site_menu__main__row__services_dropdown > a {
  font-weight: 400;
  font-size: 2rem;
  color: #EAEAEA;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.body__site_menu__footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
}
.body__site_menu__footer__title {
  font-weight: 600;
  font-size: 4.8vw;
  color: #EAEAEA;
  margin-bottom: 1rem;
}
.body__site_menu__footer__contact {
  font-weight: 500;
  font-size: 1.5rem;
  color: #EAEAEA;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.body__site_menu__footer__social_div {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.body__site_menu__footer__social_div > a {
  font-weight: 600;
  font-size: 2rem;
  color: #EAEAEA;
  text-decoration: none;
  padding: 0 !important;
}
.body__site_menu__footer__social_div > a > img {
  width: 2.5rem;
  height: 2.5rem;
}

.contact_div__open_button {
  z-index: 1000;
  position: fixed;
  top: 88dvh;
  right: 4rem;
  background-color: rgb(120.7512562814, 92.5477386935, 192.9522613065);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 3px solid rgb(84.0201005025, 57.7638190955, 151.2361809045);
  border-radius: 8px;
  transition: 0.2s;
}
.contact_div__open_button > img {
  width: 4rem;
  aspect-ratio: 1/1;
}
.contact_div__open_button:hover {
  cursor: pointer;
  background-color: #886FC8;
}

.contact_div {
  position: fixed;
  z-index: 1000;
  top: 0 !important;
  width: 100vw;
  height: 100dvh;
  display: none;
  justify-content: center;
  align-items: center;
}
.contact_div__menu {
  display: flex;
  min-height: 5rem;
  background-color: #121212;
  border-radius: 7px;
  flex-direction: column;
  align-items: center;
  padding: 3rem 5rem;
  border: 2px solid rgb(43.0150753769, 29.5728643216, 77.4271356784);
}
.contact_div__menu__title {
  color: #EAEAEA;
  font-size: 5.8rem;
  margin-bottom: 0.5rem;
}
.contact_div__menu__h2 {
  color: #EAEAEA;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact_div__menu__error_text {
  color: rgb(163, 34, 34);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact_div__menu__info_div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 1rem;
}
.contact_div__menu__info_div__input {
  background-color: #121212;
  border: 2px solid #886FC8;
  color: #EAEAEA;
  padding: 1rem 0 1rem 2rem;
  font-size: 2rem;
  border-radius: 5px;
  outline: none;
  transition: 0.2s;
  width: 100%;
}
.contact_div__menu__info_div > textarea {
  padding: 1.5rem 2rem;
  height: 20rem;
}
.contact_div__menu__send_button {
  margin-top: 2rem;
  padding: 1rem 4rem;
  font-size: 2rem;
  background-color: rgb(105.5025125628, 74.0954773869, 185.9045226131);
  border: 2px solid #886FC8;
  color: #EAEAEA;
  border-radius: 6px;
  font-weight: 700;
  opacity: 0.8;
  transition: 0.2s;
}
.contact_div__menu__send_button:hover {
  cursor: pointer;
  opacity: 1;
}
.contact_div__menu__cancel_button {
  color: #EAEAEA;
  font-size: 1.4rem;
  margin-top: 2rem;
  opacity: 0.6;
  font-weight: 700;
  transition: 0.2s;
  user-select: none;
}
.contact_div__menu__cancel_button:hover {
  cursor: pointer;
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .body__footer__citation_div {
    padding: 6rem 14rem;
    max-width: 80%;
  }
  .body__footer__citation_div__citation_text, .body__footer__citation_div__citation_author {
    font-size: 2rem;
  }
  .body__footer__content_div {
    padding: 0 4rem;
  }
  .body__footer__content_div__div img {
    width: 20rem;
  }
  .body__footer__content_div__div h1 {
    font-size: 2rem;
  }
  .body__footer__content_div__div p,
  .body__footer__content_div__div a {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 850px) {
  .body__header {
    padding: 3rem 5rem;
  }
  .body__header__menu_button {
    display: flex;
    width: 3rem !important;
  }
  .body__header__menu_button > img {
    width: 2rem;
  }
  .body__header__first {
    position: absolute;
    left: 46.5%;
  }
  .body__header__first__logo {
    width: 3rem !important;
  }
  .body__header__second__tab_span {
    justify-content: end;
    display: none;
  }
  .body__footer__citation_div {
    margin-top: -5rem;
    padding: 5rem 14rem;
    max-width: 80%;
    gap: 5rem;
  }
  .body__footer__citation_div__citation_text, .body__footer__citation_div__citation_author {
    font-size: 2rem;
  }
  .body__footer__content_div__div img {
    width: 10rem;
  }
  .body__footer__content_div__div h1 {
    font-size: 1.4rem;
  }
  .body__footer__content_div__div p,
  .body__footer__content_div__div a {
    font-size: 1.4rem;
  }
  .contact_div__menu {
    width: 100vw;
    height: 100vh;
    padding: 3rem 5rem;
    border: none;
  }
  .contact_div__menu__title {
    font-size: 5.5vw;
  }
  .contact_div__menu__h2 {
    font-size: 2vw;
  }
  .contact_div__menu__error_text {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 600px) {
  .body__header {
    padding: 3rem 2rem;
  }
  .body__header__first__logo {
    width: 4rem;
  }
  .body__footer {
    margin-top: 8rem;
  }
  .body__footer__citation_div {
    margin-top: -5rem;
    padding: 2rem 8rem;
    max-width: 90%;
    gap: 2rem;
  }
  .body__footer__citation_div__citation_text, .body__footer__citation_div__citation_author {
    font-size: 1.8rem;
  }
  .body__footer__copyright_div {
    padding: 12rem 2rem 8rem;
  }
  .body__footer__copyright_div > h1 {
    font-size: 4vw;
  }
  .contact_div__open_button {
    width: 15vw;
    height: 15vw;
    bottom: 2rem;
    right: 2rem;
  }
  .contact_div__menu {
    padding: 2rem 1rem;
  }
  .contact_div__menu__title {
    font-size: 7vw;
  }
  .contact_div__menu__h2 {
    font-size: 2.8vw;
  }
  .contact_div__menu__error_text {
    font-size: 2.6vw;
    margin-bottom: 5rem;
  }
  .contact_div__menu__info_div {
    flex-direction: column !important;
  }
  .contact_div__menu__info_div__input {
    width: 100% !important;
    font-size: 3.5vw;
  }
  .contact_div__menu__info_div__input:nth-child(2) {
    margin-top: 2rem;
  }
  .contact_div__menu__info_div > textarea {
    padding: 1.4rem 1.8rem;
  }
}
@media only screen and (max-width: 400px) {
  .body__footer {
    margin-top: 5rem;
  }
  .body__footer__content_div {
    margin-top: 8rem;
  }
  .contact_div__open_button {
    top: 85vh;
  }
  .contact_div__open_button {
    width: 5rem;
    bottom: 2rem;
    right: 2rem;
  }
}

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