::selection {
  background: #888A9F;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: white;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: #0e1111;
}
*::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 10px;
}

html {
  font-size: 14px;
}

body {
  width: 100vw;
  position: relative;
  background: linear-gradient(298deg, #0e1111 46%, #1d2222 67%, #292f2f 86%, #414949 100%);
  background-repeat: no-repeat;
  overflow-y: scroll;
  overflow-x: hidden;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: unset;
  font-size: clamp(1rem, 0.7857rem + 0.4464vw, 1.5rem);
  width: 100%;
  height: 4.5em;
  padding: 0.3em 5em;
  position: sticky;
  top: 0%;
  left: 0;
  z-index: 9;
  transition: 0.3s ease-in-out;
  transition-property: top, background-color, font-size;
  backdrop-filter: blur(10px);
}
nav .logo,
nav .mainbutton {
  flex: 1;
}
nav .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: unset;
  height: 100%;
}
nav .logo img {
  height: 80%;
  width: auto;
}
nav .navigation {
  width: 19em;
  font-size: 0.9em;
  font-weight: 500;
}
nav .navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: unset;
  list-style: none;
  padding: 0;
}
nav .navigation ul li a {
  text-decoration: none;
  color: white;
}
nav .navigation ul li {
  position: relative;
}
nav .navigation ul li a {
  color: white;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
  transition-property: opacity;
}
nav .navigation ul li::after {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 0.15em;
  width: 0;
  content: "";
  background-color: white;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
  transition-property: width;
}
nav .navigation ul li:hover a {
  opacity: 1;
}
nav .navigation ul li:hover::after {
  width: 80%;
}
nav .navigation ul li.active a, nav .navigation ul li.active:hover a {
  opacity: 1;
}
nav .navigation ul li.active::after, nav .navigation ul li.active:hover::after {
  width: 100%;
}
nav .mainbutton {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: unset;
}
nav .mainbutton button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 0.75em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: transparent;
  color: white;
}
nav .mainbutton button img {
  height: 1em;
  margin-right: 0.7em;
}
nav .mainbutton button:hover {
  background-color: white;
  color: #0e1111;
}
nav .mainbutton button:active {
  opacity: 0.8;
}

.overlay {
  display: none;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0e1111;
  z-index: 11;
}
.overlay::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  height: 100%;
  width: 100%;
  font-size: clamp(0.5rem, 0.1429rem + 1.7857vw, 1rem);
  content: "This page not yet support viewport with dimension at 767px or lower";
}

.creditsmodal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  display: none;
  font-size: clamp(0.75rem, 0.3857rem + 0.7589vw, 1.6rem);
  position: fixed;
  width: 100vw;
  min-height: 100vh;
  z-index: 10;
  background-color: rgba(14, 17, 17, 0.5);
}
.creditsmodal .modal {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  width: 60em;
  height: 35em;
  margin: 1em 0;
  background-color: rgba(14, 17, 17, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 0.15em solid #ADADAD;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transition-property: opacity;
}
.creditsmodal .modal .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: unset;
  height: 5em;
  padding: 0 2em;
}
.creditsmodal .modal .head a img {
  width: 1.5em;
}
.creditsmodal .modal .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  flex: 1;
  gap: 15em;
}
.creditsmodal .modal .content .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 2em;
}
.creditsmodal .modal .content .card img {
  width: 10em;
  border-radius: 100%;
  border: 0.15em solid white;
}
.creditsmodal .modal .content .card ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  list-style: none;
  padding: 0;
  text-align: left;
}
.creditsmodal .modal .content .card ul li a {
  text-decoration: none;
  color: white;
}
.creditsmodal .modal .content .card ul li {
  position: relative;
}
.creditsmodal .modal .content .card ul li:nth-child(n+2) {
  margin-top: 1em;
}
.creditsmodal .modal .content .card ul li::after {
  position: absolute;
  top: 100%;
  left: 0%;
  height: 0.15em;
  width: 0;
  content: "";
  background-color: white;
  transition: 0.3s ease-in-out;
  transition-property: width;
}
.creditsmodal .modal .content .card ul li:hover::after {
  width: 80%;
}
.creditsmodal .modal .content .card ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  align-self: flex-start;
}
.creditsmodal .modal .content .card ul li a::before {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  margin-right: 0.5em;
  content: "";
  background-size: 90% 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.creditsmodal .modal .content .card ul li a.instagram::before {
  background-image: url("./assets/icons/icon_instagram.svg");
}
.creditsmodal .modal .content .card ul li a.github::before {
  background-image: url("./assets/icons/icon_github.svg");
}
.creditsmodal .modal .content .card ul li a.dribbble::before {
  background-image: url("./assets/icons/icon_dribbble.svg");
}

.views {
  width: 100%;
  padding-top: 3em;
}
.views .firstview {
  background-image: url("./assets/BG01.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 80%;
}
.views .firstview .firstaction {
  text-align: center;
}
.views .firstview .firstaction h1 {
  font-size: clamp(1.8rem, 0.8571rem + 1.9643vw, 4rem);
}
.views .firstview .firstaction p {
  margin-top: 1em;
  font-size: clamp(0.7rem, 0.1429rem + 1.1607vw, 2rem);
}
.views .firstview .ctabutton {
  margin-top: 3em;
  text-align: center;
}
.views .firstview .ctabutton button:nth-child(1) {
  padding: 0.5em 0.8em 0.4em;
  font-size: clamp(0.85rem, 0.4857rem + 0.7589vw, 1.7rem);
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: transparent;
  color: white;
  margin-right: 1em;
}
.views .firstview .ctabutton button:nth-child(1) img {
  height: 1em;
  margin-right: 0.7em;
}
.views .firstview .ctabutton button:nth-child(1):hover {
  background-color: white;
  color: #0e1111;
}
.views .firstview .ctabutton button:nth-child(1):active {
  opacity: 0.8;
}
.views .firstview .ctabutton button:nth-child(2) {
  padding: 0.5em 0.8em 0.4em;
  font-size: clamp(0.85rem, 0.4857rem + 0.7589vw, 1.7rem);
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: white;
  color: #0e1111;
  opacity: 0.8;
}
.views .firstview .ctabutton button:nth-child(2) img {
  height: 1em;
  margin-right: 0.7em;
}
.views .firstview .ctabutton button:nth-child(2):hover {
  opacity: 1;
}
.views .firstview .ctabutton button:nth-child(2):active {
  opacity: 0.8;
}
.views .firstview .details {
  position: relative;
  margin-top: 2.8em;
  text-align: center;
}
.views .firstview .details .toppeople,
.views .firstview .details .ceoquote {
  top: 30%;
}
.views .firstview .details .toppeople {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 10%;
  font-size: clamp(0.65rem, 0.3286rem + 0.6696vw, 1.4rem);
}
.views .firstview .details .toppeople h3 {
  font-size: 1.5em;
}
.views .firstview .details .toppeople .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5em 2em 1em;
  margin-top: 1em;
  width: max-content;
  border: 0.15em solid white;
  border-radius: 10px;
}
.views .firstview .details .toppeople .card .data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.views .firstview .details .toppeople .card .data div:nth-child(n+2) {
  margin-left: 1em;
}
.views .firstview .details .toppeople .card .data .detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.views .firstview .details .toppeople .card .data .contacts a:last-child {
  margin-left: 0.5em;
}
.views .firstview .details .toppeople .card .data .contacts a img {
  width: 3em;
}
.views .firstview .details .toppeople .card .data .profile img {
  width: 5em;
}
.views .firstview .details .toppeople .card .pagination button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 0.75rem;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  padding: 0;
  height: 0.4em;
  width: 1em;
  opacity: 0.5;
}
.views .firstview .details .toppeople .card .pagination button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .firstview .details .toppeople .card .pagination button.active {
  opacity: 1;
}
.views .firstview .details .toppeople .card .pagination button:hover {
  opacity: 0.8;
}
.views .firstview .details .ceoimg img {
  height: clamp(28rem, 10rem + 37.5vw, 70rem);
}
.views .firstview .details .ceoquote {
  position: absolute;
  right: 10%;
  text-align: left;
  font-style: italic;
  font-size: clamp(0.8rem, 0.3286rem + 0.9821vw, 1.9rem);
}
.views .firstview .details .ceoquote .quote,
.views .firstview .details .ceoquote .quoteby {
  width: fit-content;
}
.views .firstview .details .ceoquote .quote p {
  font-weight: 500;
  font-size: 1em;
}
.views .firstview .details .ceoquote .quoteby {
  position: relative;
  margin-top: 1em;
}
.views .firstview .details .ceoquote .quoteby p {
  font-size: 0.9em;
  display: inline;
  font-weight: 400;
}
.views .firstview .details .ceoquote .quoteby::before {
  content: "-";
  font-size: 1em;
}
.views .firstview .details .ceoquote .quoteby::after {
  position: absolute;
  height: 25em;
  width: 20em;
  top: -10em;
  right: -7em;
  content: "";
  background: url("./assets/ceoquote_bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.views .secondview {
  margin-top: 5em;
  background-image: url("./assets/BG02.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 90%;
  text-align: center;
}
.views .secondview h1 {
  font-size: clamp(1.5rem, 0.6429rem + 1.7857vw, 3.5rem);
}
.views .secondview section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  margin-top: 5em;
}
.views .secondview section div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  font-size: clamp(0.7rem, 0.2714rem + 0.8929vw, 1.7rem);
  height: 20em;
  width: 20em;
  padding: 0 1em;
  text-align: left;
  border: 0.15em solid white;
  border-radius: 10px;
}
.views .secondview section div img {
  width: 6em;
}
.views .secondview section div h3,
.views .secondview section div p {
  margin-left: calc(1em - 0.2em);
}
.views .secondview section div p {
  margin: 1em 0 0 1em;
  height: 35%;
}
.views .secondview section div:nth-child(n+2) {
  margin-left: 2em;
}
.views .secondview .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  margin: 2em 0;
  font-size: clamp(0.65rem, 0.2857rem + 0.7589vw, 1.5rem);
}
.views .secondview .pagination .dot button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 1.2em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  padding: 0;
  height: 0.4em;
  width: 1em;
  opacity: 0.5;
}
.views .secondview .pagination .dot button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .secondview .pagination .dot button.active {
  opacity: 1;
}
.views .secondview .pagination .dot button:hover {
  opacity: 0.8;
}
.views .secondview .pagination .arrow a:last-child {
  margin-left: 1rem;
}
.views .secondview .pagination .arrow a img {
  height: 1.6em;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
  transition-property: opacity;
}
.views .secondview .pagination .arrow a img:active {
  opacity: 1;
}
.views .secondview .pagination .arrow a img:hover {
  opacity: 0.8;
}
.views .secondview .pagination .arrow:last-child {
  margin-left: 60em;
}
.views .thirdview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  margin: 7em 0;
  font-size: clamp(0.65rem, 0.3071rem + 0.7143vw, 1.45rem);
}
.views .thirdview img:nth-child(n+2) {
  margin-left: 8em;
}
.views .thirdview img:nth-child(1) {
  width: 15em;
}
.views .thirdview img:nth-child(2) {
  height: 7em;
}
.views .thirdview img:nth-child(3) {
  width: 13em;
}
.views .thirdview img:nth-child(4) {
  height: 6em;
}
.views .forthview {
  font-size: clamp(0.7rem, 0.2286rem + 0.9821vw, 1.8rem);
  padding: 3em 0;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}
.views .forthview::before {
  position: absolute;
  top: 0;
  left: -15em;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url("./assets/BG04_left.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.views .forthview::after {
  position: absolute;
  top: 0;
  left: 15em;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url("./assets/BG04_left.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  transform: scaleX(-1);
}
.views .forthview h1 {
  font-size: clamp(1.5rem, 0.6429rem + 1.7857vw, 3.5rem);
}
.views .forthview img {
  height: 20em;
}
.views .forthview p {
  margin-top: 1em;
}
.views .fifthview {
  margin-top: 5em;
  background-image: url("./assets/BG05.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 90%;
  text-align: center;
  font-size: 1em;
}
.views .fifthview > h1 {
  font-size: clamp(1.5rem, 0.6429rem + 1.7857vw, 3.5rem);
}
.views .fifthview > p {
  font-size: clamp(0.7rem, 0.3571rem + 0.7143vw, 1.5rem);
}
.views .fifthview > p:last-of-type {
  color: #ADADAD;
}
.views .fifthview section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  margin-top: 4em;
}
.views .fifthview section .pricecard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(0.7rem, 0.3571rem + 0.7143vw, 1.5rem);
  height: 33em;
  width: 19em;
  padding: 3em 0;
  background-color: transparent;
  border-radius: 10px;
  transform: scale(0.9);
}
.views .fifthview section .pricecard h2 {
  font-size: 1.6em;
}
.views .fifthview section .pricecard h1 {
  font-style: italic;
  font-weight: 700;
  font-size: 7em;
  line-height: 1em;
}
.views .fifthview section .pricecard h1 sup {
  font-size: 0.4em;
}
.views .fifthview section .pricecard .features {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  flex: 1;
  padding-top: 1em;
}
.views .fifthview section .pricecard .features .list-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.views .fifthview section .pricecard .features .list-wrapper p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  align-self: flex-start;
}
.views .fifthview section .pricecard .features .list-wrapper p::before {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  margin-right: 0.5em;
  content: "";
  background-image: url("./assets/icons/icon_bullet.svg");
  background-size: 90% 90%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(100%);
}
.views .fifthview section .pricecard .features .list-wrapper p:nth-child(n+2) {
  margin-top: 0.5em;
}
.views .fifthview section .pricecard button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 1.2em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: white;
  color: #0e1111;
  opacity: 0.8;
  padding: 0.5em 1.2em;
  border: none;
  font-weight: 700;
  font-style: italic;
  color: #0e1111;
  background-image: url("./assets/BG_accent.webp");
  background-size: cover;
  background-position: 1% -21%;
  opacity: 1;
  transition: 0.3s ease-in-out;
  transition-property: transform, background-position;
}
.views .fifthview section .pricecard button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .fifthview section .pricecard button:hover {
  opacity: 1;
}
.views .fifthview section .pricecard button:active {
  opacity: 0.8;
}
.views .fifthview section .pricecard button:hover {
  transform: scale(1.05);
  opacity: 1;
  background-position: 1% -25%;
}
.views .fifthview section .pricecard button:active {
  transform: scale(0.95);
  opacity: 1;
  background-position: 1% -18%;
}
.views .fifthview section .pricecard.main {
  position: relative;
  background: url("./assets/BG_accent.webp");
  background-size: cover;
  transform: scale(1);
}
.views .fifthview section .pricecard.main h1,
.views .fifthview section .pricecard.main h1 sup,
.views .fifthview section .pricecard.main h2,
.views .fifthview section .pricecard.main h3,
.views .fifthview section .pricecard.main .features .list-wrapper p {
  color: #0e1111;
}
.views .fifthview section .pricecard.main .list-wrapper p::before {
  filter: unset;
}
.views .fifthview section .pricecard.main button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 1.2em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: white;
  color: #0e1111;
  opacity: 0.8;
  padding: 0.5em 1.2em 0.55em;
  border: none;
  font-weight: 700;
  font-style: italic;
  color: white;
  background-image: none;
  background-color: #0e1111;
  opacity: 1;
  transition: 0.3s ease-in-out;
  transition-property: transform;
}
.views .fifthview section .pricecard.main button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .fifthview section .pricecard.main button:hover {
  opacity: 1;
}
.views .fifthview section .pricecard.main button:active {
  opacity: 0.8;
}
.views .fifthview section .pricecard.main button:hover {
  transform: scale(1.05);
  opacity: 1;
}
.views .fifthview section .pricecard.main button:active {
  transform: scale(0.95);
  opacity: 1;
}
.views .fifthview section .pricecard.main::after {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  position: absolute;
  top: 1em;
  right: 0;
  width: 8em;
  height: 1.5em;
  padding: 0.2em 0.2em 0.2em 0.7em;
  color: white;
  content: "Recomended";
  background-color: #191919;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
  font-size: 0.8em;
}
.views .fifthview section .pricecard:nth-child(n+2) {
  margin-left: 5em;
}
.views .sixthview {
  margin-top: 5em;
  position: relative;
  text-align: center;
  font-size: clamp(0.65rem, 0.2429rem + 0.8482vw, 1.6rem);
  overflow-y: visible;
}
.views .sixthview > h1 {
  font-size: clamp(1.5rem, 0.6429rem + 1.7857vw, 3.5rem);
}
.views .sixthview section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  margin-top: 2em;
  gap: 2em;
}
.views .sixthview section .card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  height: 32em;
  width: 25em;
  padding: 5em 1.5em;
  text-align: left;
  background-image: url("./assets/BG_contactcard.webp");
  background-size: cover;
  border-radius: 10px;
}
.views .sixthview section .card .features {
  flex: 1;
}
.views .sixthview section .card .features .list-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.views .sixthview section .card .features .list-wrapper p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  align-self: flex-start;
}
.views .sixthview section .card .features .list-wrapper p::before {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  margin-right: 0.5em;
  content: "";
  background-size: 90% 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.views .sixthview section .card .features .list-wrapper p#phone::before {
  background-image: url("./assets/icons/icon_call.svg");
}
.views .sixthview section .card .features .list-wrapper p#email::before {
  background-image: url("./assets/icons/icon_email.svg");
}
.views .sixthview section .card .features .list-wrapper p#address::before {
  background-image: url("./assets/icons/icon_home.svg");
}
.views .sixthview section .card .features .list-wrapper p:nth-child(n+2) {
  margin-top: 1em;
}
.views .sixthview section .card > p,
.views .sixthview section .card > div {
  margin-top: 1.5em;
}
.views .sixthview section .contact-form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  height: 32em;
  width: 40em;
  padding-top: 0.5em;
  text-align: left;
}
.views .sixthview section .contact-form > form,
.views .sixthview section .contact-form > div {
  margin-top: 1em;
}
.views .sixthview section .contact-form .categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: unset;
  gap: 1em;
  flex-wrap: wrap;
  width: 30em;
}
.views .sixthview section .contact-form .categories > input {
  display: none;
}
.views .sixthview section .contact-form .categories > label {
  display: inline-block;
  padding: 0.5em 0.8em 0.4em;
  font-size: 0.8em;
  font-weight: 500;
  user-select: none;
  cursor: pointer;
  border: 0.15em solid white;
  border-radius: 6px;
  background-image: none;
  transition: 0.3s ease-in-out;
  transition-property: background-position;
}
.views .sixthview section .contact-form .categories > input:checked + label {
  color: #0e1111;
  background-image: url("./assets/BG_accent.webp");
  background-size: cover;
  background-position: 1% -19%;
}
.views .sixthview section .contact-form .categories > input:checked + label:hover {
  background-position: 1% -25%;
}
.views .sixthview section .contact-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.views .sixthview section .contact-form form .form-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: unset;
  flex: 1;
  width: 100%;
  padding-top: 1em;
  gap: 1em;
}
.views .sixthview section .contact-form form .form-group .leftside div,
.views .sixthview section .contact-form form .form-group .rightside div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.views .sixthview section .contact-form form .form-group .leftside div input,
.views .sixthview section .contact-form form .form-group .leftside div textarea,
.views .sixthview section .contact-form form .form-group .rightside div input,
.views .sixthview section .contact-form form .form-group .rightside div textarea {
  padding: 0.9em 0.8em;
  background-color: transparent;
  border: none;
  border-bottom: 0.15em solid rgba(255, 255, 255, 0.5);
  outline: none;
  transition: 0.3s ease-in-out;
  transition-property: border-bottom;
}
.views .sixthview section .contact-form form .form-group .leftside div input:focus,
.views .sixthview section .contact-form form .form-group .leftside div textarea:focus,
.views .sixthview section .contact-form form .form-group .rightside div input:focus,
.views .sixthview section .contact-form form .form-group .rightside div textarea:focus {
  border-bottom: 0.15em solid white;
}
.views .sixthview section .contact-form form .form-group .leftside div input,
.views .sixthview section .contact-form form .form-group .rightside div input {
  width: 18em;
  font-size: 1em;
}
.views .sixthview section .contact-form form .form-group .leftside div:nth-child(n+2),
.views .sixthview section .contact-form form .form-group .rightside div:nth-child(n+2) {
  margin-top: 1em;
}
.views .sixthview section .contact-form form .form-group .leftside button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 1em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: white;
  color: #0e1111;
  opacity: 0.8;
  padding: 0.5em 1.2em;
  border: none;
  font-weight: 700;
  font-style: italic;
  color: #0e1111;
  background-image: url("./assets/BG_accent.webp");
  background-size: cover;
  background-position: 1% -21%;
  opacity: 1;
  transition: 0.3s ease-in-out;
  transition-property: transform, background-position;
  margin-top: 2em;
}
.views .sixthview section .contact-form form .form-group .leftside button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .sixthview section .contact-form form .form-group .leftside button:hover {
  opacity: 1;
}
.views .sixthview section .contact-form form .form-group .leftside button:active {
  opacity: 0.8;
}
.views .sixthview section .contact-form form .form-group .leftside button:hover {
  transform: scale(1.05);
  opacity: 1;
  background-position: 1% -25%;
}
.views .sixthview section .contact-form form .form-group .leftside button:active {
  transform: scale(0.95);
  opacity: 1;
  background-position: 1% -18%;
}
.views .sixthview section .contact-form form .form-group .rightside {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.views .sixthview section .contact-form form .form-group .rightside div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.views .sixthview section .contact-form form .form-group .rightside div textarea {
  width: 100%;
  height: 70%;
  font-size: 1em;
  resize: none;
}
.views .sixthview::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  content: "";
  background-image: url("./assets/BG06.svg");
  background-repeat: no-repeat;
  background-size: 100% 95%;
  z-index: -1;
}
.views .seventhview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(0.7rem, 0.4rem + 0.625vw, 1.4rem);
  margin-top: 5em;
  padding: 0 clamp(3rem, -6.4286rem + 19.6429vw, 25rem) 1em clamp(3rem, -6.4286rem + 19.6429vw, 25rem);
  width: 100vw;
}
.views .seventhview > div {
  width: 100%;
  margin-top: 1.2em;
}
.views .seventhview > img {
  width: 10em;
}
.views .seventhview .sitemaps div ul li,
.views .seventhview .footer ul li {
  position: relative;
}
.views .seventhview .sitemaps div ul li a,
.views .seventhview .footer ul li a {
  color: white;
}
.views .seventhview .sitemaps div ul li::after,
.views .seventhview .footer ul li::after {
  position: absolute;
  top: 100%;
  left: 0%;
  height: 0.15em;
  width: 0;
  content: "";
  background-color: white;
  transition: 0.3s ease-in-out;
  transition-property: width;
}
.views .seventhview .sitemaps div ul li:hover a,
.views .seventhview .footer ul li:hover a {
  opacity: 1;
}
.views .seventhview .sitemaps div ul li:hover::after,
.views .seventhview .footer ul li:hover::after {
  width: 3rem;
}
.views .seventhview .sitemaps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: unset;
}
.views .seventhview .sitemaps div {
  width: 10em;
}
.views .seventhview .sitemaps div label {
  color: #ADADAD;
}
.views .seventhview .sitemaps div ul {
  list-style: none;
  padding: 0;
}
.views .seventhview .sitemaps div ul li a {
  text-decoration: none;
  color: white;
}
.views .seventhview .sitemaps div ul li {
  margin-top: 0.5em;
}
.views .seventhview .sitemaps div ul#Connect {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.views .seventhview .sitemaps div ul#Connect li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  align-self: flex-start;
}
.views .seventhview .sitemaps div ul#Connect li a::before {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  margin-right: 0.5em;
  content: "";
  background-size: 90% 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.views .seventhview .sitemaps div ul#Connect li a.facebook::before {
  background-image: url("./assets/icons/icon_facebook.svg");
}
.views .seventhview .sitemaps div ul#Connect li a.twitter::before {
  background-image: url("./assets/icons/icon_twitter.svg");
}
.views .seventhview .sitemaps div ul#Connect li a.instagram::before {
  background-image: url("./assets/icons/icon_instagram.svg");
}
.views .seventhview .sitemaps div ul#Connect li a.whatsapp::before {
  background-image: url("./assets/icons/icon_whatsapp.svg");
}
.views .seventhview .sitemaps div ul#Connect li a:nth-child(n+2) {
  margin-top: 0.5em;
}
.views .seventhview .sitemaps div button {
  padding: 0.5em 0.8em 0.4em;
  font-size: 1.4em;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  transition-property: color, background-color, opacity;
  border: 0.15em solid white;
  background-color: white;
  color: #0e1111;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  padding: 0.5em 1.2em;
  position: relative;
  gap: 0.6em;
  border: none;
  font-weight: 700;
  background-image: url("./assets/BG_accent.webp");
  background-size: cover;
  background-position: 1% -21%;
  opacity: 1;
  transform: translate(-0.5em, -0.5em);
  transition: 0.3s ease-in-out;
  transition-property: transform, background-position;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.views .seventhview .sitemaps div button img {
  height: 1em;
  margin-right: 0.7em;
}
.views .seventhview .sitemaps div button:hover {
  opacity: 1;
}
.views .seventhview .sitemaps div button:active {
  opacity: 0.8;
}
.views .seventhview .sitemaps div button span {
  color: #0e1111;
}
.views .seventhview .sitemaps div button img {
  margin: 0;
  width: 1.6em;
  height: auto;
}
.views .seventhview .sitemaps div button:before {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  width: 100%;
  height: 100%;
  content: "";
  border: 0.15em dashed white;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  transition-property: top, left;
  z-index: -1;
}
.views .seventhview .sitemaps div button:hover {
  transform: translate(0, 0);
  opacity: 1;
  background-position: 1% -25%;
}
.views .seventhview .sitemaps div button:hover:before {
  top: -0.15em;
  left: -0.15em;
}
.views .seventhview .sitemaps div button:active {
  transform: translate(0, 0);
  transform: scale(0.95);
  opacity: 1;
  background-position: 1% -18%;
}
.views .seventhview .sitemaps div button:active:before {
  top: -0.15em;
  left: -0.15em;
}
.views .seventhview .sitemaps div:last-of-type {
  align-self: stretch;
  width: 20em;
}
.views .seventhview .dividerline {
  height: 5px;
  border-bottom: 0.15em solid white;
}
.views .seventhview .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: unset;
}
.views .seventhview .footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  list-style: none;
  padding: 0;
}
.views .seventhview .footer ul li a {
  text-decoration: none;
  color: white;
}
.views .seventhview .footer ul li:nth-child(n+2) {
  margin-left: 2em;
}

@media (max-width: 767px) {
  .overlay {
    display: block;
  }

  .views,
nav {
    display: none;
  }
}
