@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(12, 12, 12, 0.088) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  overflow: hidden;
}
body #code-loader {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  background-color: #17171A;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 6;
  color: #fafafa;
  font-weight: bold;
  font-size: 100px;
}
body #code-loader span {
  display: inline-block;
  animation: pulse_414 0.4s alternate infinite ease-in-out;
  opacity: 0.4;
}
body #code-loader span:nth-child(odd) {
  animation-delay: 0.4s;
  opacity: 1;
}
body #code-loader span:nth-child(even) {
  opacity: 1;
}

header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  height: 10vh;
  position: relative;
}
header .navlogo i {
  color: #121214;
  font-size: 2rem;
  opacity: 0.5;
}
header .grpButton {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  background-color: #121214;
  color: #fafafa;
  border-radius: 0.7rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  width: 8.5rem;
  height: 3.3rem;
}
header .grpButton .toggle {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  color: #fafafa;
  border: none;
  outline: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 0.7rem;
}
header .grpButton .toggle:hover {
  color: rgba(175, 171, 182, 0.1254901961);
  transition: 0.5s;
}
header .grpButton .openBtn {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  color: #fafafa;
  font-size: 1.6rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
}
header .grpButton .openBtn:hover {
  color: rgba(175, 171, 182, 0.1254901961);
  transition: 0.5s;
}

.sidePanel {
  background-color: #202024;
  width: 0;
  height: 300px;
  top: 0;
  right: 0;
  position: fixed;
  overflow-x: hidden;
  transition: 0.5s;
  padding: 60px 0 0 0;
  z-index: 3;
  border-radius: 0 0 0 1rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
}
.sidePanel a {
  padding: 1rem 1rem 1rem 4rem;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fafafa;
  display: block;
}
.sidePanel a i {
  padding: 0 1rem 0 0;
  color: rgba(175, 171, 182, 0.1254901961);
  font-size: 1.7rem;
}
.sidePanel .closedBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.sidePanel .closedBtn i {
  font-size: 2rem;
  color: #fafafa;
}

.sidePanel:has(.item:hover) .item:not(:hover) {
  opacity: 0.1;
}

.darkMode {
  background-color: #17171A;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 2px, transparent 0);
  background-size: 40px 40px;
  background-position: -5px -5px;
  transition: 0.5s;
}
.darkMode .navlogo i {
  color: #fafafa;
}
.darkMode .grpButton {
  background-color: #fafafa;
}
.darkMode .grpButton .toggle {
  color: #121214;
}
.darkMode .grpButton .toggle:hover {
  color: #AFABB6;
}
.darkMode .grpButton .openBtn {
  color: #121214;
}
.darkMode .grpButton .openBtn:hover {
  color: #AFABB6;
}
.darkMode .sidePanel {
  background-color: #202024;
}
.darkMode .sidePanel a {
  color: #fafafa;
}
.darkMode .sidePanel a:hover, .darkMode .sidePanel a:hover i {
  color: #fafafa;
}
.darkMode .sidePanel a i {
  color: rgba(175, 171, 182, 0.1254901961);
}
.darkMode .sidePanel:has(.item:hover) .item:not(:hover) {
  opacity: 0.15;
}
.darkMode .serContainer .serContent .serCard:nth-child(1) {
  background-color: #202024;
  border: none;
}
.darkMode .serContainer .serContent .serCard:nth-child(1) i {
  color: #17b380;
}
.darkMode .serContainer .serContent .serCard:nth-child(1) h2 {
  color: #fafafa;
  opacity: 1;
}
.darkMode .serContainer .serContent .serCard:nth-child(1) .link i {
  color: #fafafa;
}
.darkMode .serContainer .serContent .serCard:nth-child(1):hover {
  border: 0.1rem solid #17b380;
  transition: all 1s ease-in-out;
}
.darkMode .serContainer .serContent .serCard:nth-child(2) {
  background-color: transparent;
  border: none;
  padding: 30px 20px 20px 20px;
}
.darkMode .serContainer .serContent .serCard:nth-child(2) i {
  color: #17b380;
}
.darkMode .serContainer .serContent .serCard:nth-child(2) h2 {
  color: #fafafa;
  opacity: 1;
}
.darkMode .serContainer .serContent .serCard:nth-child(2) .link i {
  color: #fafafa;
}
.darkMode .serContainer .serContent .serCard:nth-child(2):hover {
  border: 0.1rem solid #17b380;
  transition: all 0.7s linear;
}
.darkMode .serContainer .serContent .serCard:nth-child(3) {
  background-color: #202024;
  border: none;
}
.darkMode .serContainer .serContent .serCard:nth-child(3) i {
  color: #17b380;
}
.darkMode .serContainer .serContent .serCard:nth-child(3) h2 {
  color: #fafafa;
  opacity: 1;
}
.darkMode .serContainer .serContent .serCard:nth-child(3) .link i {
  color: #fafafa;
}
.darkMode .serContainer .serContent .serCard:nth-child(3):hover {
  border: 0.1rem solid #17b380;
  transition: all 1s ease-in-out;
}
.darkMode .serContainer .reserved {
  color: #fafafa;
}

.serContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 90vh;
  width: 100%;
  z-index: 1;
  position: relative;
}
.serContainer .serContent {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 20px;
  z-index: 2;
}
.serContainer .serContent .serCard:nth-child(1) {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 270px;
  height: 270px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  border-radius: 20px;
  padding: 30px 20px;
  gap: 10px;
}
.serContainer .serContent .serCard:nth-child(1) .icon {
  color: #17b380;
}
.serContainer .serContent .serCard:nth-child(1) h2 {
  color: #121214;
  font-weight: 700;
}
.serContainer .serContent .serCard:nth-child(1) .link {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.serContainer .serContent .serCard:nth-child(1) .link i {
  color: #121214;
  font-size: 2rem;
}
.serContainer .serContent .serCard:nth-child(2) {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  gap: 10px;
  width: 270px;
  height: 270px;
  background: #121214;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  border-radius: 20px;
  padding: 30px 20px 40px 20px;
}
.serContainer .serContent .serCard:nth-child(2) .icon {
  color: #17b380;
}
.serContainer .serContent .serCard:nth-child(2) h2 {
  color: #fafafa;
  font-weight: 700;
}
.serContainer .serContent .serCard:nth-child(2) .link {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.serContainer .serContent .serCard:nth-child(2) .link i {
  color: #fafafa;
  font-size: 2rem;
}
.serContainer .serContent .serCard:nth-child(3) {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 270px;
  height: 270px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 5px 20px;
  border-radius: 20px;
  padding: 30px 20px 65px 20px;
  gap: 10px;
}
.serContainer .serContent .serCard:nth-child(3) .icon {
  color: #17b380;
}
.serContainer .serContent .serCard:nth-child(3) h2 {
  color: #121214;
  font-weight: 700;
}
.serContainer .serContent .serCard:nth-child(3) .link {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.serContainer .serContent .serCard:nth-child(3) .link i {
  color: #121214;
  font-size: 2rem;
}
.serContainer .reserved {
  position: absolute;
  font-weight: 500;
  bottom: 2rem;
  left: auto;
  font-size: 1rem;
  opacity: 1;
  color: #121214;
}

.serContainer:has(.serCard:hover) .serCard:not(:hover) {
  opacity: 0.5;
}

::-moz-selection {
  background-color: #17b380;
  color: #fafafa;
}

::selection {
  background-color: #17b380;
  color: #fafafa;
}

@keyframes pulse_414 {
  to {
    transform: scale(0.8);
    opacity: 0.5;
  }
}
@media (min-width: 1200px) {
  .serContainer {
    height: 90vh;
    padding: 0;
  }
  .serContainer h1 {
    font-size: 2.7rem;
    margin: 0;
  }
  .serContainer .serContent {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  .serContainer .serContent .serCard:nth-child(1) {
    padding: 30px 20px 50px 20px;
  }
  .serContainer .serContent .serCard:nth-child(1) .icon {
    font-size: 4.5rem;
  }
  .serContainer .serContent .serCard:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(2) {
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(2) .icon {
    font-size: 4.5rem;
  }
  .serContainer .serContent .serCard:nth-child(2) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(3) {
    padding: 30px 20px 50px 20px;
  }
  .serContainer .serContent .serCard:nth-child(3) .icon {
    font-size: 4.5rem;
  }
  .serContainer .serContent .serCard:nth-child(3) h2 {
    font-size: 1.2rem;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .serContainer {
    height: 90vh;
    padding: 0;
  }
  .serContainer h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
  }
  .serContainer .serContent {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  .serContainer .serContent .serCard:nth-child(1) {
    width: 270px;
    height: 200px;
    padding: 30px 20px 50px 20px;
  }
  .serContainer .serContent .serCard:nth-child(1) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(2) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(2) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(2) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(3) {
    width: 270px;
    height: 200px;
    padding: 30px 20px 50px 20px;
  }
  .serContainer .serContent .serCard:nth-child(3) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(3) h2 {
    font-size: 1.2rem;
  }
  .serContainer .reserved {
    bottom: 10px;
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .serContainer {
    height: auto;
    padding: 0 0 40px 0;
  }
  .serContainer h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  .serContainer .serContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .serContainer .serContent .serCard:nth-child(1) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(1) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(2) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(2) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(2) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(3) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(3) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(3) h2 {
    font-size: 1.2rem;
  }
  .serContainer .reserved {
    bottom: 10px;
    font-size: 0.7rem;
  }
}
@media (min-width: 430px) and (max-width: 767px) {
  .serContainer {
    height: auto;
    padding: 0 0 40px 0;
  }
  .serContainer h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  .serContainer .serContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .serContainer .serContent .serCard:nth-child(1) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(1) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(2) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(2) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(2) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(3) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(3) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(3) h2 {
    font-size: 1.2rem;
  }
  .serContainer .reserved {
    bottom: 10px;
    font-size: 0.7rem;
  }
}
@media (max-width: 429px) {
  body {
    overflow: visible;
  }
  .serContainer {
    height: auto;
    padding: 5% 0 15% 0;
  }
  .serContainer h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  .serContainer .serContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .serContainer .serContent .serCard:nth-child(1) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(1) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(2) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(2) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(2) h2 {
    font-size: 1.2rem;
  }
  .serContainer .serContent .serCard:nth-child(3) {
    width: 270px;
    height: 200px;
    padding: 30px 20px;
  }
  .serContainer .serContent .serCard:nth-child(3) .icon {
    font-size: 3rem;
  }
  .serContainer .serContent .serCard:nth-child(3) h2 {
    font-size: 1.2rem;
  }
  .serContainer .reserved {
    bottom: 5px;
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=stile.css.map */