﻿@import url("/fonts/helvetica/stylesheet.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Now Display";
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

i {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
}
i > svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
i.mirror_h > svg {
  transform: rotate(180deg);
}

html, body {
  min-height: 100%;
  height: auto;
}

body {
  background-color: #f5f5f5;
  position: relative;
  padding-top: 3rem;
  overflow-x: hidden;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  height: 3rem;
  padding: 2rem;
  padding-bottom: 1rem;
  background-color: #f5f5f5;
  z-index: 5;
}
nav > .brand {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
nav > .brand > i {
  width: 1.5rem;
  height: 1.5rem;
  color: #5f07f1;
}
nav > .brand > span {
  display: inline-block;
  height: 1.2rem;
  line-height: 0.8;
}
nav > .links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding-right: 1rem;
}
nav > .menu_button_wrap {
  display: none;
}
nav > .menu_button_wrap * {
  transition: 0.2s !important;
}
nav > .menu_button_wrap > button {
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
nav > .menu_button_wrap > button > span {
  display: inline-block;
  height: 4px;
  width: 100%;
  border-radius: 1.5px;
  background-color: #1b1b1b;
}
nav > .menu_button_wrap #menu_button.active > span:nth-child(1) {
  display: none;
  opacity: 0;
  transition-behavior: allow-discrete;
}
@media (max-width: 480px) {
  nav {
    padding: 2rem 0.75rem;
  }
  nav > .links {
    display: none;
  }
  nav > .menu_button_wrap {
    display: flex;
  }
}

.logo_icon {
  width: 1.3rem;
  height: 1.3rem;
}

menu {
  display: none;
  flex-direction: column;
  position: fixed;
  gap: 3rem;
  top: 0;
  left: 0;
  padding: 1rem;
  padding-top: 6rem;
  /*background-color: $bg;*/
  width: 100%;
  height: 100dvh;
  z-index: 4;
  transform: translateY(-100%);
  transition: 0.3s ease;
}
menu * {
  opacity: 0;
}
menu *#menu_bg, menu *#menu_bg * {
  opacity: 1;
  /*transition-delay: 0 !important;*/
  transition: 0.4s;
}
menu *#menu_bg {
  transition-delay: 0 !important;
}
menu *#menu_bg > span {
  transition-delay: 0 !important;
  transform: translateY(-100%);
}
menu *#menu_bg > span:nth-child(1) {
  transition-delay: 0 !important;
}
menu *#menu_bg > span:nth-child(2) {
  transition-delay: 0.1s !important;
}
menu *#menu_bg > span:nth-child(3) {
  transition-delay: 0.2s !important;
}
menu *#menu_bg > span:nth-child(4) {
  transition-delay: 0.3s !important;
}
menu.active {
  transform: translateY(0%);
}
menu.active #menu_bg {
  transition-delay: 0 !important;
}
menu.active #menu_bg > span {
  transition-delay: 0 !important;
  transform: translateY(0%);
}
menu.active * {
  transition-delay: 1s;
  opacity: 1;
  transition: 0.2s;
}
menu > .header > span {
  color: #4e4e4e;
  font-size: 1.2rem;
}
menu > .links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
menu > .links > a {
  font-size: 1.8rem;
}
menu > .footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
menu > .footer > a {
  font-weight: 600;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  menu {
    display: flex;
  }
}

footer {
  /*height: 45vh;*/
  width: 100%;
  background-color: #212121;
  margin-top: 7rem;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding-bottom: -3rem !important;
  position: relative;
  overflow: hidden;
}
footer > h1 {
  font-size: 2rem;
  color: #f5f5f5;
  padding: 0 2rem;
}
footer > .footer_logo {
  width: 20rem;
  height: 20rem;
  position: absolute;
  right: -1rem;
  top: 1rem;
  color: #4e4e4e;
}
footer > .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 2rem;
}
footer > .links > a {
  font-size: 1.2rem;
  color: #f5f5f5;
  width: fit-content;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
footer > .links > a::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #5f07f1;
  transform: translateX(-100%);
  transition: 0.2s;
}
footer > .links > a:hover::after {
  transform: translateX(0%);
}
footer > .footer_footer {
  /*background-color: $bg;*/
  /*height: 4rem;*/
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  max-width: 30%;
}
footer > .footer_footer > a {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 1rem;
  /*height: 4rem;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}
footer > .footer_footer > a > span > span {
  /*margin: 0 .25rem;*/
  font-weight: 700;
}
footer > .footer_footer > a > i {
  width: 1.1rem;
  height: 1.1rem;
}
@media (max-width: 480px) {
  footer > * {
    padding: 0 1rem !important;
  }
  footer > .footer_footer {
    margin: 0 1rem;
    border-radius: 0.35rem;
    right: 0rem;
    margin-right: 0;
  }
  footer > .footer_footer > a {
    text-align: end;
    text-decoration: underline;
  }
  footer > .footer_footer > a > i {
    display: none;
  }
}

#bg, #nav_bg, #menu_bg {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  min-height: 100%;
  width: 100%;
  display: flex;
  /*justify-content: space-between;*/
  z-index: -1;
  gap: 0;
}
#bg > span, #nav_bg > span, #menu_bg > span {
  height: auto;
  min-height: 100%;
  width: 25%;
  background-color: #f5f5f5;
  border-left: 0.5px solid #d1d1d1;
  /*border-right:.5px solid $gray1;*/
}
#bg > span:nth-last-child(1), #nav_bg > span:nth-last-child(1), #menu_bg > span:nth-last-child(1) {
  display: none;
}

.user_message {
  display: flex;
  background-color: #5f07f1;
  width: fit-content;
  max-width: 30rem;
  position: fixed;
  top: 0.5rem;
  z-index: 6;
  left: 25vw;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  animation: user_message_animation 4s linear forwards;
  border: 1px solid #f5f5f5;
}
@keyframes user_message_animation {
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.user_message * {
  color: #f5f5f5;
  font-size: 0.9rem;
}
.user_message:has(span:empty) {
  display: none;
}
.user_message > button {
  background-color: #f5f5f5;
  border: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  cursor: pointer;
}
.user_message > button * {
  color: #5f07f1 !important;
  width: 0.85rem;
  height: 0.85rem;
}
.user_message > .bar_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.user_message > .bar_wrap > * {
  position: absolute;
  bottom: 0;
  left: 0;
}
.user_message > .bar_wrap > .bar_bg {
  width: 100%;
  height: 100%;
  background-color: #5f07f1;
}
.user_message > .bar_wrap > .bar_move {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  z-index: 2;
  animation: user_message_bar_wrap_animation 4s linear forwards;
}
@keyframes user_message_bar_wrap_animation {
  0% {
    width: 100%;
  }
  90% {
    width: 0%;
  }
  95% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
@media (max-width: 480px) {
  .user_message {
    top: unset;
    bottom: 0;
    width: 100%;
    left: 0;
    padding-right: 1.25rem;
  }
  .user_message * {
    font-size: 1rem;
  }
}

main {
  /*min-height: 200vh;*/
  /*padding: 1rem 2rem;*/
  padding: 1rem 0;
}
main section {
  width: 100%;
}
@media (max-width: 480px) {
  main {
    padding: 1rem 0.5rem;
    padding-top: 1.25rem;
  }
}

#index {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#index > div {
  margin: 0 2rem;
}
@media (max-width: 480px) {
  #index > div {
    margin: 0 0.25rem;
  }
}
#index > #index_part_1 {
  height: 60vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
#index > #index_part_1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -webkit-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -moz-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  border-radius: 1rem;
}
#index > #index_part_1 > .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
  padding: 2rem;
  width: fit-content;
}
#index > #index_part_1 > .content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgb(0, 0, 0), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 65%);
  z-index: -1;
  border-radius: 1rem;
}
#index > #index_part_1 > .content > h1 {
  color: #f5f5f5;
  font-size: 2.8rem;
  line-height: 1.2;
}
#index > #index_part_1 > .content > a {
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
  padding: 1rem 1.5rem;
  width: 100%;
  border-radius: 0.4rem;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
  font-weight: 600;
  letter-spacing: 1px;
  align-items: center;
}
#index > #index_part_1 > .content > a > i {
  transition: inherit;
  margin-right: 0.5rem;
}
#index > #index_part_1 > .content > a:hover {
  background-color: #f5f5f5;
  color: #1b1b1b;
}
#index > #index_part_1 > .content > a:hover > i {
  margin-right: 0;
  width: 1.2rem;
  height: 1.2rem;
}
@media (max-width: 480px) {
  #index > #index_part_1 {
    height: 70vh;
  }
  #index > #index_part_1 > .content {
    width: 100%;
    padding: 1rem;
  }
  #index > #index_part_1 > .content::before {
    background: linear-gradient(35deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 75%) !important;
  }
  #index > #index_part_1 > .content > h1 {
    font-size: 3rem;
  }
}
#index > #index_part_2 {
  display: flex;
  /*flex-direction: column;*/
  gap: 0.75rem;
  margin-top: 2rem;
}
#index > #index_part_2 > .part_1 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
#index > #index_part_2 > .part_1 > span {
  font-size: 1.25rem;
  color: #4e4e4e;
  font-weight: 500;
}
#index > #index_part_2 > .part_1 > h1 {
  font-size: 2.4rem;
  line-height: 1.4;
}
#index > #index_part_2 > .part_1 > h1 > .faded {
  color: #7e7e7e;
}
#index > #index_part_2 > .part_1 > img {
  margin: 2rem 1rem;
  margin-left: 0.2rem;
  width: 80%;
}
#index > #index_part_2 > .part_2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
#index > #index_part_2 > .part_2 > h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding-right: 3rem;
  padding-top: 2.7rem;
}
#index > #index_part_2 > .part_2 > .parted_info {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  row-gap: 3rem;
  flex-wrap: wrap;
}
#index > #index_part_2 > .part_2 > .parted_info > .info_part {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-right: 0.5rem;
  width: 45%;
}
#index > #index_part_2 > .part_2 > .parted_info > .info_part > p {
  font-size: 1.05rem;
}
@media (max-width: 480px) {
  #index > #index_part_2 {
    flex-direction: column;
  }
  #index > #index_part_2 > .part_2 > h2 {
    margin-bottom: 0;
  }
}
#index > #index_part_3 {
  /*width: 100%;*/
  background-color: #212121;
  border-radius: 1rem;
  /*height:70vh;*/
  margin-top: 2rem;
  overflow: hidden;
}
#index > #index_part_3 > .header {
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
#index > #index_part_3 > .header > a {
  text-decoration: underline;
}
#index > #index_part_3 > .content {
  display: flex;
  flex-wrap: wrap;
}
#index > #index_part_3 > .content > .info_part {
  width: 25%;
  height: 17rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #7e7e7e;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#index > #index_part_3 > .content > .info_part * {
  color: #f5f5f5;
}
#index > #index_part_3 > .content > .info_part > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(32%) saturate(0%);
  -webkit-filter: brightness(32%) saturate(0%);
  -moz-filter: brightness(32%) saturate(0%);
  transition: 0.4s !important;
}
#index > #index_part_3 > .content > .info_part > .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
}
#index > #index_part_3 > .content > .info_part > .content > i {
  width: 1.5rem;
  height: 1.5rem;
}
#index > #index_part_3 > .content > .info_part > .content > div {
  background-color: transparent;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 4rem;
  margin-top: auto;
  padding: 0.45rem;
  border: 2px solid #f5f5f5;
  transition: 0.3s !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index > #index_part_3 > .content > .info_part:hover > img {
  transform: scale(1.06);
  filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -webkit-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -moz-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
}
#index > #index_part_3 > .content > .info_part:hover > .content > div {
  width: 3.5rem;
  background-color: #f5f5f5;
}
#index > #index_part_3 > .content > .info_part:hover > .content > div * {
  color: #1b1b1b;
}
#index > #index_part_3 > .content > .info_part_2 {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /*justify-content:center;*/
  padding-top: 3rem;
  text-align: end;
  gap: 1.5rem;
  padding-right: 3rem;
}
#index > #index_part_3 > .content > .info_part_2 * {
  color: #f5f5f5;
}
#index > #index_part_3 > .content > .info_part_2 > P {
  width: 70%;
  color: #7e7e7e;
}
@media (max-width: 480px) {
  #index > #index_part_3 > .header {
    padding: 1rem;
  }
  #index > #index_part_3 > .content > .info_part {
    width: 50%;
  }
  #index > #index_part_3 > .content > .info_part_2 {
    width: 100%;
    padding-bottom: 2rem;
    gap: 1rem;
    padding-top: 1rem;
    padding-right: 2rem;
  }
  #index > #index_part_3 > .content > .info_part_2 > p {
    width: 80%;
  }
}
#index > #index_part_4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
#index > #index_part_4 > .header > h1 {
  font-size: 1.8rem;
}
#index > #index_part_4 > .content {
  display: flex;
  gap: 2rem;
}
#index > #index_part_4 > .content > .part {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #7e7e7e;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
#index > #index_part_4 > .content > .part > p {
  font-size: 1.1rem;
  width: 90%;
}
#index > #index_part_4 > .content > .part > .profile_info {
  display: flex;
  gap: 1rem;
}
#index > #index_part_4 > .content > .part > .profile_info > .photo_wrapper {
  width: 3rem;
  height: 3rem;
  background-color: #d1d1d1;
  border-radius: 50%;
}
#index > #index_part_4 > .content > .part > .profile_info > .profile_details > span:nth-child(1) {
  font-weight: 600;
}
@media (max-width: 480px) {
  #index > #index_part_4 > .content {
    flex-direction: column;
  }
  #index > #index_part_4 > .content > .part {
    width: 100%;
  }
}
#index > #index_part_5 {
  /*display: flex;*/
  gap: 4rem;
  margin-top: 3rem;
  display: none !important;
}
#index > #index_part_5 > .header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}
#index > #index_part_5 > .header > h1 {
  font-size: 2.2rem;
}
#index > #index_part_5 > .header > .image_wrapper {
  height: 17rem;
  width: 90%;
  background-color: #d1d1d1;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #7e7e7e;
}
#index > #index_part_5 > .content {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 4rem;
  font-size: 1.3rem;
}
#index > #index_part_5 > .content > a {
  background-color: #5f07f1;
  width: fit-content;
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
  padding: 1rem 1.45rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  align-items: center;
  color: #f5f5f5;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px #5f07f1;
  transition: 0.2s all !important;
}
#index > #index_part_5 > .content > a > span:nth-child(1) {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 0 5px #f5f5f5, 0 0 10px #f5f5f5, 0 0 20px #f5f5f5, 0 0 30px #f5f5f5, 0 0 35px #f5f5f5;
  transition: 0.2s !important;
}
#index > #index_part_5 > .content > a:hover {
  box-shadow: 0 0 10px #5f07f1;
}
#index > #index_part_5 > .content > a:hover > span:nth-child(1) {
  width: 1.5rem;
}
@media (max-width: 480px) {
  #index > #index_part_5 {
    flex-direction: column;
    gap: 2rem;
  }
  #index > #index_part_5 > .header {
    width: 100%;
  }
  #index > #index_part_5 > .header > .image_wrapper {
    width: 100%;
    height: 20rem;
  }
  #index > #index_part_5 > .content {
    padding-top: 1rem;
    width: 100%;
  }
  #index > #index_part_5 > .content > a {
    margin-top: 2.5rem;
  }
}
#index > #index_part_6 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 0;
  margin-top: 3rem;
}
#index > #index_part_6 > .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 2rem;
}
#index > #index_part_6 > .header > .info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 40%;
}
#index > #index_part_6 > .header > .info > h1 {
  font-size: 2.2rem;
}
#index > #index_part_6 > .header > .slider_control {
  display: flex;
  gap: 2rem;
}
#index > #index_part_6 > .header > .slider_control > button {
  width: 3.5rem;
  height: 3.5rem;
  background-color: transparent;
  padding: 0.35rem;
  border-radius: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
#index > #index_part_6 > .header > .slider_control > button > i {
  width: 1.4rem;
  height: 1.4rem;
}
#index > #index_part_6 > .header > .slider_control > button:hover {
  width: 5rem;
  background-color: #212121;
  color: #f5f5f5;
}
#index > #index_part_6 > .content {
  overflow: hidden;
}
#index > #index_part_6 > .content > .slider_container {
  display: flex;
  max-width: 100vw;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}
#index > #index_part_6 > .content > .slider_container > .slider_item {
  width: 40vw;
  padding: 1rem;
  padding-bottom: 2rem;
  background-color: #212121;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.7rem;
  white-space: normal;
  flex: 0 0 auto;
}
#index > #index_part_6 > .content > .slider_container > .slider_item:nth-child(1) {
  margin-left: 2rem;
}
#index > #index_part_6 > .content > .slider_container > .slider_item > span {
  color: #7e7e7e;
}
#index > #index_part_6 > .content > .slider_container > .slider_item > h2 {
  color: #f5f5f5;
}
#index > #index_part_6 > .content > .slider_container > .slider_item > p {
  color: #d1d1d1;
}
#index > #index_part_6 > .content > .slider_container > .slider_item > a {
  color: #f5f5f5;
  text-decoration: underline;
}
@media (max-width: 480px) {
  #index > #index_part_6 > .header {
    margin: 0 0.25rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 3rem;
  }
  #index > #index_part_6 > .header > .info {
    width: 100% !important;
    padding-right: 2rem;
  }
  #index > #index_part_6 > .content > .slider_container {
    gap: 1rem;
    /*scrollbar-width: initial;*/
  }
  #index > #index_part_6 > .content > .slider_container > .slider_item {
    width: 80vw;
  }
  #index > #index_part_6 > .content > .slider_container > .slider_item:nth-child(1) {
    margin-left: 0.25rem;
  }
}

#services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1rem 2rem;
}
@media (max-width: 480px) {
  #services {
    margin: 2rem 0;
    gap: 4rem;
  }
}
#services > #services_part_1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#services > #services_part_1 > h1 {
  font-size: 2.3rem;
}
#services > #services_part_1 > p {
  font-size: 1.2rem;
}
#services > #services_part_2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#services > #services_part_2 > .item {
  width: 100%;
  height: 20vh;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 2rem;
  align-items: center;
}
#services > #services_part_2 > .item > .image_wrapper {
  position: relative;
  width: 50%;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
#services > #services_part_2 > .item > .image_wrapper > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(42%) saturate(0%);
  -webkit-filter: brightness(42%) saturate(0%);
  -moz-filter: brightness(42%) saturate(0%);
  transition: 0.4s !important;
  z-index: -1;
}
#services > #services_part_2 > .item > .image_wrapper > h2 {
  font-size: 2rem;
  color: #f5f5f5;
  font-weight: 500;
  padding: 1rem;
}
#services > #services_part_2 > .item > div {
  width: 50%;
}
#services > #services_part_2 > .item > div > p {
  font-size: 1.1rem;
  padding-right: 3rem;
}
#services > #services_part_2 > .item:hover > .image_wrapper > img {
  transform: scale(1.06);
  filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -webkit-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
  -moz-filter: grayscale(100%) sepia(50%) brightness(76%) hue-rotate(201deg) saturate(688%) contrast(135%);
}
@media (max-width: 480px) {
  #services > #services_part_2 {
    gap: 4rem;
  }
  #services > #services_part_2 > .item {
    flex-direction: column;
    height: auto;
  }
  #services > #services_part_2 > .item > div {
    width: 100%;
  }
  #services > #services_part_2 > .item > .image_wrapper {
    width: 100%;
    min-height: 8rem;
  }
}

#about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#about > * {
  margin: 0 2rem;
}
@media (max-width: 480px) {
  #about > * {
    margin: 0 0rem;
  }
}
#about > #about_part_1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 2rem;
  margin-top: 4rem;
}
#about > #about_part_1 > h1 {
  font-size: 2.4rem;
}
#about > #about_part_1 > h1 > span {
  text-decoration: 4px underline #5f07f1;
}
#about > #about_part_1 > p {
  font-size: 1.3rem;
  width: 70%;
}
@media (max-width: 480px) {
  #about > #about_part_1 {
    margin: 0 0rem;
    margin-top: 3rem;
  }
  #about > #about_part_1 > p {
    font-size: 1.3rem;
    width: 85%;
  }
}
#about > #about_part_2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#about > #about_part_2 > .part {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
  padding: 1rem;
  border-radius: 0.75rem;
}
#about > #about_part_2 > .part.colored {
  background-color: #5f07f1;
}
#about > #about_part_2 > .part.colored * {
  color: #f5f5f5;
}
#about > #about_part_2 > .part > p {
  font-size: 1.2rem;
}
#about > #about_part_2 > .part > .content {
  width: 100%;
  display: flex;
  gap: 2rem;
}
#about > #about_part_2 > .part > .content.content_2 > .item {
  width: 25rem;
}
#about > #about_part_2 > .part > .content.content_2 > .item > img {
  width: 100%;
  height: 100%;
}
#about > #about_part_2 > .part > .content > .item {
  width: 22rem;
  background-color: #d1d1d1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.5rem;
}
#about > #about_part_2 > .part > .content > .item > h2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 1;
}
#about > #about_part_2 > .part > .content > .item > h2 > i {
  color: #5f07f1;
}
@media (max-width: 480px) {
  #about > #about_part_2 {
    margin: 0 0rem;
    margin-top: 2rem;
  }
  #about > #about_part_2 > .part {
    width: 100%;
    padding: 0;
  }
  #about > #about_part_2 > .part.colored {
    padding: 1rem;
  }
  #about > #about_part_2 > .part > .content {
    flex-direction: column;
  }
  #about > #about_part_2 > .part > .content.content_2 {
    margin-top: 1rem;
    flex-wrap: wrap;
    flex-direction: row;
  }
  #about > #about_part_2 > .part > .content.content_2 > .item {
    width: 10rem;
  }
}

#contact {
  display: flex;
  gap: 8rem;
  margin: 0 2rem;
  margin-top: 3rem;
}
#contact > #contact_part_1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#contact > #contact_part_1 > h1 {
  font-size: 2.2rem;
}
#contact > #contact_part_1 > h1 > span {
  color: #5f07f1;
}
#contact > #contact_part_1 > .contact_group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#contact > #contact_part_1 > .contact_group > label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4e4e4e;
}
#contact > #contact_part_1 > .contact_group > a {
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#contact > #contact_part_1 > .contact_group > div {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
#contact > #contact_part_1 > .contact_group > div i {
  width: 1.4rem;
  height: 1.4rem;
}
#contact > #contact_part_2 {
  margin-right: 6rem;
  width: 50%;
}
#contact > #contact_part_2 > form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #e5e5e5;
  border-radius: 1rem;
  border: 1px solid #d1d1d1;
  padding: 1rem;
}
#contact > #contact_part_2 > form > .header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact > #contact_part_2 > form > .header > h2 {
  font-size: 1.7rem;
}
#contact > #contact_part_2 > form > .header > p {
  color: #212121;
  font-weight: 500;
  width: 70%;
}
#contact > #contact_part_2 > form > .form_group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
#contact > #contact_part_2 > form > .form_group > label {
  font-weight: 500;
}
#contact > #contact_part_2 > form > .form_group > input, #contact > #contact_part_2 > form > .form_group > textarea {
  background-color: transparent;
  border: 1px solid #4e4e4e;
  padding: 0.5rem;
  border-radius: 0.5rem;
  resize: vertical;
}
#contact > #contact_part_2 > form > .form_group > button {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #5f07f1;
  color: #f5f5f5;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  font-size: 1rem;
}
#contact > #contact_part_2 > form > .form_group > button > i {
  width: 1.5rem;
  height: 1.5rem;
}
#contact > #contact_part_2 > form > .form_group > span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5f07f1;
}
#contact > #contact_part_2 > form > .form_confirmation {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
}
#contact > #contact_part_2 > form > .form_confirmation > input {
  opacity: 0;
  z-index: 2;
  width: 25px;
  height: 25px;
}
#contact > #contact_part_2 > form > .form_confirmation a {
  text-decoration: underline;
}
#contact > #contact_part_2 > form > .form_confirmation > span {
  width: 25px;
  height: 25px;
  border: 2px solid #333;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
#contact > #contact_part_2 > form > .form_confirmation > input:checked + span {
  background: #5f07f1;
  border-color: #5f07f1;
}
#contact > #contact_part_2 > form > .form_confirmation > input:checked + span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateX(-110%) translateY(-20%);
}
@media (max-width: 480px) {
  #contact {
    flex-direction: column;
    margin: 0;
    margin-top: 3rem;
    gap: 4rem;
  }
  #contact > #contact_part_2 {
    width: 100%;
  }
  #contact > #contact_part_2 > form > .header > p {
    font-size: 1.1rem;
    width: 90%;
  }
  #contact > #contact_part_2 > form > .form_confirmation {
    gap: 2rem;
  }
}

#termsofuse {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 2rem;
}
#termsofuse > h1 {
  margin-bottom: 0.5rem;
}
#termsofuse > ul {
  margin-left: 1.5rem;
}
#termsofuse > h2 {
  margin-top: 2rem;
}
@media (max-width: 480px) {
  #termsofuse {
    margin: 0 0.2rem;
    margin-right: 1rem;
  }
}
