:root {
  --gradient: linear-gradient(to left, #ffc04a, #ff3300);
  --orange: #ff8800;
  --light-orange: #c56900;
  --shadow: 10px 10px rgba(0, 0, 0, 0.5);
  --gray: #313131;
  --mid-gray: #3d3d3d;
  --light-gray: #525252;
  --X-light-gray: #616161;
  --XX-light-gray: #898989;
  --white: #ffffff;
  --green: #009e00;
  --red: rgb(122, 56, 56);
  --fa-display: flex;
}


.profile {
  background-color: var(--background-dark);
  width: 100%;
}

.profile-content {
  padding: 15px;
  font-size: 16px;
  color: var(--text-light);
  display: flex;
  flex-direction: row;
  flex-wrap : wrap;
  justify-content: center;
  align-items: center;
}

.profile-card-info-photo {
  border-radius: 50%;
  margin: 15px 0px 15px 0px;
  width: 50%;
  animation: glow 3s ease alternate;
  width: 130px;
  height: 130px;
  display: flex;
  border: 5px solid var(--gray);
}

.profile-content-title {
  font-weight: bold;
  font-size: 24px;
  color: var(--gray);
  font-weight: 700;
}

.profile-card {
  margin: 20px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
  min-width: 180px;
  max-width: 240px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--mid-gray);
}

.profile-card-wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: var(--gradient);
}

.profile-card-info {
  position: absolute;
  top: 1.6em;
  left: 0;
  right: 0;
  color: var(--white);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.profile-card-info-name {
  font-size: 14px;
  font-weight: 100;
  position: relative;
  top: 1em;
  text-transform: lowercase;
}

.profile-card-info-contact {
  top: 2em;
  font-size: 12px;
  font-weight: 100;
  position: relative;
  text-decoration: inherit;
  color: var(--mid-gray);
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: space-evenly;
  width: 120px;
  border-radius: 50px;
  margin-top: 5px;
  margin-right: 5px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  border: 3px solid var(--gray);
  background: transparent;
}

.profile-card-wave:nth-child(2),
.profile-card-wave:nth-child(3) {
  top: 210px;
}

.profile-card__playing .profile-card-wave {
  border-radius: 40%;
  animation: profile-card-wave 3000ms infinite linear;
}

.profile-card-wave {
  border-radius: 40%;
  animation: profile-card-wave 55s infinite linear;
}

.profile-card__playing .profile-card-wave:nth-child(2) {
  animation-duration: 4000ms;
}

.profile-card-wave:nth-child(2) {
  animation-duration: 50s;
}

.profile-card__playing .profile-card-wave:nth-child(3) {
  animation-duration: 5000ms;
}

.profile-card-wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes profile-card-wave {
  0% {
      transform: rotate(0deg);
  }

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

.profile-content-card {
  position: relative;
  text-align: center;
  width: 100%;
  min-width: 180px;
  max-width: 240px;
  height: 100px;
  background: var(--gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  flex-wrap: wrap;
  flex-direction: column;
  margin: 10px;
  box-shadow: var(--shadow);
}

  .profile-content-card i {
      height: 40px;
      width: 40px;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
      background-clip: text;
      background-image: var(--gradient);
      color: transparent;
      display: flex;
      flex-direction: row;
      align-content: center;
      justify-content: center;
      align-items: center;
      
  }

  .profile-content-card:hover {
      /* transform: rotate(-5deg) scale(1.1);*/
      width: 300px;
      height: 150px;
      bbox-shadow: var(--shadow);
  }

.profile-content-card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: var(--shadow);
  border-radius: 10px;
}

.profile-content-card:hover .profile-content-card-content {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.profile-content-card-title {
  font-size: 16px;
  color: transparent;
  background-clip: text;
  background-color: var(--XX-light-gray);
  font-weight: 700;
}

.profile-content-card-description {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.4;
}

.profile-programming-language {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 10px;
  flex-wrap: wrap;
  align-content: center;
}

.profile-programming-language_image {
  font-size: 50px;
  color: var(--XX-light-gray);
  background-color: var(--mid-gray);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  margin: 10px;
}

.profile-programming-language_image:hover {
  transform: scale(1.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  transform: translate(0, -10%);
  box-shadow: black 0px 5px 15px;
  cursor: pointer;
}

.profile-programming-language_image i {
  background-clip: text;
  background-color: var(--X-light-gray);
  color: transparent;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.profile-programming-language_image i:hover {
  background-image: var(--gradient);
}

.profile-programming-language_information {
  background-color: var(--gray);
  border-radius: 10px;
  padding: 10px;
  color: var(--XX-light-gray);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.profile-programming-language_information p {
  color: var(--XX-light-gray);
  padding: 0px 20px;
}

.profile-programming-language_information h3 {
  display: flex;
  top: 10px;
  left: 10px;
  color: transparent;
  background-image: var(--gradient);
  background-clip: text;
  align-items: center;
  justify-content: center;
}

.profile-programming-language_information_rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.masterd {
  color: transparent;
  background-image: var(--gradient);
  background-clip: text;
}

.master_star {
  margin: 10px 5px;
  height: 25px;
  width: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#star-rating {
  transition: opacity 0.5s ease, height 0.5s ease;
  overflow: hidden;
  opacity: 0;
  height: 0;
}

#star-rating.visible {
  opacity: 1;
  height: 30px;
}

#hiddenDiv {
  transition: opacity 0.3s ease;
  max-width: 970px;
}

l {
  list-style: none;
  margin: 0 !important;
}

a {
  text-decoration: none !important;
  display: inline-block;
}

img {
  max-width: 100%;
}

button:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.timelines h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 32px;
}

.d-flex-2 {
  display: flex;
  align-items: center;
}

.timeline-area {
  padding: 80px 0;
}

.all-timelines {
  position: relative;
}

.timelines h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
}

.all-timelines::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 2px;
  background: linear-gradient(rgba(255,136,0,1) 0%, rgba(255,136,0,1) 75%, rgba(0,0,0,0) 100%);
  top: 20px;
}

.single-timeline {
  margin-bottom: 22px;
}

.timeline-blank {
  width: 50%;
}

.timeline-text {
  width: 50%;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.timeline-text h6 {
  color: var(--white);
  font-weight: 900;
  display: inline-block;
  font-size: 1rem;
}

.timeline-text span {
  color: var(--XX-light-gray);
  display: block;
  width: 100%;
}

.single-timeline:nth-child(even) .timeline-text span {
  text-align: right;
}

.t-square {
  border-radius: 50%;
  background-color: #ff8800;
  animation: 1.5s pulse infinite ease-in-out;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -6px;
}

.single-timeline:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

  .single-timeline:nth-child(even) .t-square {
      right: -6px;
      left: unset;
  }

  .single-timeline:nth-child(even) .timeline-text {
      padding-left: 0;
      padding-right: 30px;
      text-align: right;
  }

@media all and (max-width: 991px) {
}

@media all and (max-width: 768px) {
  .all-timelines::before {
      right: unset;
      top: 0;
  }

  .single-timeline:nth-child(2n) .timeline-text {
      padding-left: 30px;
      padding-right: 0;
      text-align: left;
  }

  .single-timeline:nth-child(2n) .t-square {
      left: -6px;
      right: unset;
  }

  .timeline-blank {
      display: none;
  }

  .timeline-text {
      width: 100%;
  }

  .single-timeline:nth-child(even) .timeline-text span {
      text-align: left !important;
  }
}

@media all and (max-width: 575px) {
}

@media all and (max-width: 360px) {
  .all-timelines::before {
      top: 32px;
  }
}


@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 #ff8800;
  }

  100% {
      box-shadow: 0 0 0 14px #ff880000;
  }
}



@media only screen and (min-width: 800px) {

  .profile-content {
      font-size: 18px;
      /*flex-direction: row;*/
  }

  .profile-content-card {
      width: 300px;
      height: 150px;
  }

  .profile-programming-language_image {
      font-size: 80px;
  }
}

/* FROM PAGE */

.form-contactpagin {
  display: flex;
  background : var(--gray);
  padding: 20px;
  border-radius: 10px;
  box-shadow : var(--shadow);
}

.form-contactpagina__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 10px;
}

.form-contactpagina__tel {
  margin: 4px 0px;
}

.iti--allow-dropdown input {
  width: 200px;
}

.form-contactpagina__inputelement .input {
  background: var(--mid-gray);
  margin: 5px;
  color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 5px;
  height: 25px
}

.form-contactpagina__inputelement textarea {
  background: var(--mid-gray);
  margin: 5px;
  color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 5px;
  height: 100px;
  width : 100%;
}

.form-contactpagina__inputelement__textarea {
  display: flex;
  flex-direction: column;
}

.form-contactpagina__form {
  display: flex;
  flex-direction: column;
}


.iti__country {
  width: 100%;
  height: 100%;
  background: var(--mid-gray);
}

.iti__highlight {
  background: var(--X-light-gray) !important;
}

.iti__divider {
  border-bottom: 3px solid;
  border-image : var(--gradient);
}

.iti__country-list {
  background-color: var(--gray) !important;
  border: 0px solid var(--orange) !important;
  -moz-border-radius: inherit;
  -webkit-border-radius: inherit;
  border-radius: 10px;
  box-shadow : var(--shadow) !important;
}

.formSubmit {
  text-align: center;
  margin-top: 20px;
  display: none;
  background: var(--gray);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  flex-direction: column;
  opacity : 0;
}

.formSubmit h5 {
  font-size: 15px;
  font-weight: 100;
  padding-left: 10px;
}

.formSubmit p {
  font-size: 10px;
  font-weight: 100;
}


.formSubmitSuccess_indicator {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #06df00;
  animation: 1.5s pulse_green infinite ease-in-out;
  position: absolute;
  top: 10px;
  left: 10px;
}

.formSubmitError_indicator {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #e20000;
  animation: 1.5s pulse_red infinite ease-in-out;
  position: absolute;
  top: 10px;
  left: 10px;
}

.form-contactpagina_notify {
  position: relative;

}

@keyframes pulse_green {
  0% {
      box-shadow: 0 0 0 0 #69ffa8;
  }

  100% {
      box-shadow: 0 0 0 6px #69ffa800;
  }
}

@keyframes pulse_red {
  0% {
      box-shadow: 0 0 0 0 #e20000;
  }

  100% {
      box-shadow: 0 0 0 6px #e2000000;
  }
}

@keyframes notify {
  0% {
     opacity : 0;
     display : flex;
  }
  10% {
      opacity : 1;
  }
  90% {
      opacity : 1;
  }
  100% {
      opacity : 0;
      display : none;
  }
}

:root {
  --gradient: linear-gradient(to left, #ffc04a, #ff3300);
  --orange: #ff8800;
  --light-orange: #c56900;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.219);
  --gray: #313131;
  --mid-gray: #3d3d3d;
  --light-gray: #525252;
  --X-light-gray: #616161;
  --XX-light-gray: #898989;
  --white: #ffffff;
  --green: #009e00;
  --red: rgb(122, 56, 56);
}

.header {
  position: sticky;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient);
  border-image-slice: 1;
  width: 100%;
  background-color: rgba(0, 0, 0);
}

.header-menu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 70px;
}

.header-menu-logo a {
  height: 60px;
  display: flex;
  padding-left: 30px;
}

.header-menu__small {
  right: 0px;
  z-index: 50;
  position: absolute;
  padding-right : 30px;
}


.header-menu .admin {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

.header-menu ul li {
  list-style: none;
  z-index: 12;
}

.header-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  margin-left: 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 12;
}


.header-menu ul li a:hover {
  background-image: var(--gradient);
  color: #000;
}

/* Burger Menu */
.header-menu-burger {
  cursor: pointer;
  margin: 5px 5px;
}

.header-menu-burger input {
  display: none;
}

.header-menu-burger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 9999;
}

.header-menu-burger input:checked + svg {
  transform: rotate(-45deg);
}

.header-menu-burger input:checked + svg .header-menu-burger__line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.header-menu-burger__line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menu-burger__line-top-bottom {
  stroke-dasharray: 12 63;
}


.header-menu-side-bar {
  align-items: center;
}

.header-menu-side-bar .header-menu-dropdown {
  float: left;
  overflow: hidden;
}

.header-menu-side-bar .header-menu-dropdown .header-menu-dropdown-button {
  cursor: pointer;
  border: 1 solid transparent;
  outline: none;
  color: white;
  background-color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  margin-left: 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.header-menu-side-bar .navbar a:hover, .header-menu-dropdown:hover .header-menu-dropdown-button, .header-menu-dropdown-button:focus {
  background-image: var(--gradient);
}

.header-menu-side-bar .header-menu-dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--gray);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-left: -70px;
  border-radius: 15px;
}

.header-menu-side-bar .header-menu-dropdown-content a {
  float: none;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 15px;
}

.header-menu-side-bar .header-menu-dropdown-content a:hover {
  background-color: var(--mid-gray);
}

.header-menu-side-bar .show {
  display: block;
}

@media (min-width: 1220px) {
  .header-menu ul {
      display: flex;
      justify-content: center;
  }

  #header-menu-burger {
      display: none;
  }

  .header-menu-side-bar .header-menu-dropdown {
      display: block;
  }

  .header-menu__big {
      display: none;
  }
}

@media (max-width: 1219px) {

  .header-menu ul li {
      margin-left: 7px;
      text-align: left;
  }

  .checkblock {
      display: show;
  }

  .header-menu ul {
      position: absolute;
      width: 230px;
      height: 100vh;
      background-color: rgba(18, 18, 18);
      opacity: 0.85;
      padding-top: 20px;
      top: 0;
      right: -230px;
      text-align: center;
      transition: all .5s;
      z-index: 11;
  }

  .header-menu ul li {
      padding-top: 20px;
  }

  .header-menu nav ul li {
      display: block;
      margin: 0px 0;
  }

  .header-menu nav ul li a {
      font-size: 80px;
      padding-top: 20px;
  }

  #check:checked ~ ul {
      right: -50px;
      z-index: 12;
  }

  .screen_comp {
      width: 100%
  }

  #header-menu-burger {
      display: block;
  }

  .small_header-menu {
      position: fixed;
      top: 0;
  }

  .header-menu-side-bar .header-menu-dropdown {
      display: none;
  }

  .header-menu__big {
      display: block;
  }
}


@font-face {
  font-family: Mc;
  src: url(../fonts/ethnocentricrg.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Mc;
  scroll-behavior: smooth;
}

:root {
  --gradient: linear-gradient(to left, #ffc04a, #ff3300);
  --orange: #ff8800;
  --light-orange: #c56900;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.219);
  --gray: #313131;
  --mid-gray: #3d3d3d;
  --light-gray: #525252;
  --X-light-gray: #616161;
  --XX-light-gray: #898989;
  --white: #ffffff;
  --green: #009e00;
  --red: rgb(122, 56, 56);
  --fa-display: flex;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: var(--gray);
  height: 100%;
  color : var(--white);
  overflow-x : hidden;
  background-attachment: fixed;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(360,1280,480)'%3E%3Cstop offset='0' stop-color='%23000000'/%3E%3Cstop offset='1' stop-color='%23494949'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='548' height='456.7' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.02'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
}

.page {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  padding: 5% 10%;
  align-items: center;
}

.btn {
  align-items: center;
  background-image: var(--gradient);
  border: 0;
  border-radius: 8px;
  color: #FFFFFF;
  display: flex;
  font-size: 12px;
  justify-content: center;
  line-height: 1em;
  padding: 10px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s;
  position: relative; /* Add position relative */
  z-index: 1; /* Ensure button text is above pseudo-element */
}

.btn:active {
  transform: translateY(2px);
}

.btn::after {
  content: ''; /* Add content for pseudo-element */
  background: var(--gray);
  position: absolute; /* Position absolutely relative to the button */
  top: 2px; /* Adjust position to be slightly smaller */
  left: 2px; /* Adjust position to be slightly smaller */
  right: 2px; /* Adjust position to be slightly smaller */
  bottom: 2px; /* Adjust position to be slightly smaller */
  border-radius: 5px; /* Slightly smaller border-radius */
  transition: 300ms;
  z-index: -1; /* Ensure pseudo-element is behind the button text */
}

.btn--disabled {
  background-color: var(--mid-gray);
  cursor: not-allowed;
  background-image: none;
}

.error_message {
  color: var(--red);
  font-size: 12px;
  margin-top: 5px;
}

.loader_container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.loader {
  width: 12em;
  height: 12em;
}

.loader path {
  stroke: var(--orange);
  stroke-width: 4px;
  animation: dashPulse 5s linear infinite;
}

@keyframes dashPulse {
  0% {
      stroke-dasharray: 0 359 1 0;
      stroke-dashoffset: 365;
  }

  33% {
      stroke-dasharray: 359 1 0 0;
      stroke-dashoffset: 50;
  }

  66% {
      stroke-dasharray: 359 1 259 1;
      stroke-dashoffset: 50;
  }

  100% {
      stroke-dasharray: 0 359 1 0;
      stroke-dashoffset: 365;
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

/* GDPR STYLING */
.gdpr_container {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.gdpr-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  padding: 10px;
  background-color: var(--gray);
  border-radius: 15px;
  max-width: 600px;
}

.gdpr-consent-description {
  display: flex;
  justify-content: center;
}

.gdpr-consent-description i {
  position: absolute;
  display: flex;
  top: 10px;
  left: 10px;
  color: transparent;
  background-image: var(--gradient);
  height: 40px;
  width: 40px;
  background-clip: text;
  align-items: center;
  justify-content: center;
}

.gdpr-consent-description p {
  color: var(--XX-light-gray);
  padding-left: 60px;
}

.gdpr-consent__choice {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  width: 100%;
  padding-top: 20px;
}

.gdpr-consent__button--accept {
  background-color: var(--light-gray);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid gray;
  cursor: pointer;
}

.gdpr-consent__button--accept:hover {
  background-image: var(--gradient);
}

.gdpr-consent__button--reject {
  background-color: var(--light-gray);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid gray;
  cursor: pointer;
}

.gdpr-consent__button--reject:hover {
  background-image: var(--gradient);
}

.hide {
  display: none;
}

.show {
  display: flex;
}

/* END GDPR STYLING */