@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

html,
body {
  overflow-x: hidden;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
}

h1 {
  line-height: 135%;
}

#gradient-text {
  background: linear-gradient(45deg, #0288d1, #1de9b6);
  background: -webkit-linear-gradient(45deg, #0288d1, #1de9b6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collapsible,
.collection {
  border: none;
}

.title-h1 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 20px;
}

.title-h1.size-1 {
  font-size: 35px;
}

.title-h2 {
  font-size: 35px;
  font-weight: 500;
}

.title-h2.size-1 {
  font-size: 22px;
}

.title-h3 {
  font-size: 25px;
  font-weight: 500;
}

.title-h3.size-1 {
  font-size: 18px;
}

.title-h4 {
  font-size: 22px;
  font-weight: 500;
}

.subtitle {
  font-weight: 400;
  margin-top: 0;
  font-size: 18px;
}

.subtitle.size-1 {
  font-size: 16px;
}

.ms-20 {
  margin-left: 20px;
}

.me-20 {
  margin-right: 20px;
}

.z-depth-6 {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-floating.btn-image {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.social-links-group {
  display: flex;
  display: -webkit-flex;
}

.social-links-group .btn-floating {
  margin-left: 5px;
  margin-right: 5px;
}

.title-footer {
  font-size: 20px;
}

.item-footer {
  font-size: 12px;
}

.page-footer {
  padding-top: 30px;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}

.video-demo {
  position: fixed;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1000;
  width: 75%;
  aspect-ratio: 15/9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cookie-consent {
  position: fixed;
  border-radius: 20px;
  max-width: 300px;
  bottom: 30px;
  left: 30px;
  overflow: hidden;
  z-index: 1000;
  background-image: url("/img/bg-cookie.svg");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-notification {
  border-radius: 20px;
  max-width: 300px;
  overflow: hidden;
  background-image: url("/img/bg-cookie.svg");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-notification-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background-color: rgba(255, 255, 255, 0.5);
}

.white-text.t-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.white-text.t-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.oq-grey {
  background-color: #3b3f47;
}

.oq-grey.lighten-1 {
  background-color: #565c68;
}

.oq-grey.darken-1 {
  background-color: #27292f;
}

.cta {
  border-radius: 50px;
  font-weight: 500;
}

.text-medium {
  font-weight: 500;
  font-size: 14px;
}

.mb-10 {
  margin-bottom: 10px;
}

.tiny-text {
  font-size: 14px;
}

.m-0 {
  margin: 0;
}

.wrapper-section {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wrapper-section.full-height {
  height: 100vh;
}

.wrapper-section.full-height.center {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.custom-input {
  transition: 0.25s;
  font-family: "Gotham";
  border-radius: 15px;
  width: 100%;
  outline: none;
  border: none;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 20px 15px;
  font-weight: 500;
}

.custom-input:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

.custom-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.custom-input.input-light {
  transition: 0.25s;
  font-family: "Gotham";
  border-radius: 15px;
  width: 100%;
  outline: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 15px;
  font-weight: 500;
}

.custom-input.input-light.input-neon {
  border: 1px solid #0288d1;
}

.custom-input.input-light:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-input.input-light::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #3b3f47;
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.menu-mobile .header-menu {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 100%;
  height: 60px;
}

.menu-mobile ul li {
  display: flex;
  display: -webkit-flex;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 10px;
}

.input-field.horizontal-field {
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  border-radius: 10px;
}

.input-field.horizontal-field .btn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  border-radius: 10px;
}

.input-field.horizontal-field input {
  display: flex;
  display: -webkit-flex;
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: calc(100% - 50px);
  border-radius: 10px;
  padding: 10px;
}

.gradient-oq {
  background: linear-gradient(45deg, #0288d1, #1de9b6);
  background: -webkit-linear-gradient(45deg, #0288d1, #1de9b6);
}

.box-header-wrapper {
  min-height: 400px;
  padding: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box-header-wrapper.section {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 0;
}

.brand-logo {
  margin-top: 5px;
}

.card.card-oq {
  box-shadow: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.card .subtitle.size-1 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  font-size: 12px;
}

.page-footer .chip {
  background-color: #ffffff20;
  font-size: 10px;
}

.text-bold {
  font-weight: bold;
}

.large-text {
  font-size: 30px;
}

.grid-container {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid-item {
  width: 100%;
  padding: 10px;
}

.grid-item .card-panel {
  height: 100%;
}

.group-section {
  display: flex;
  display: -webkit-flex;
}

.group-section .section {
  width: 100%;
}

.group-section .section.picture {
  width: 30%;
  filter: opacity(70%);
}

.blue.lighten-6 {
  background-color: #f2faff !important;
}

/* TABLETS */
@media only screen and (min-width: 768px) {
  .grid-item {
    width: 50%;
  }
}

/* LAPTOP */
@media only screen and (min-width: 1024px) {
  .grid-item {
    width: 33.33%;
  }
}
