/* DARKS */
/* gradiants */
/* screen */
/* text */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-1);
  color: white;
}

section.global {
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  section.global {
    padding: 0 16px;
  }
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li a {
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
}
a.icon svg {
  width: 25px;
}

address {
  font-size: 14px;
}

.custom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.custom-flex.align-items-start {
  align-items: flex-start;
}

p {
  font-size: 16px;
}

section {
  width: 100%;
}

h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 20px;
}
h2 strong {
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 14px;
}

button {
  font-size: 14px;
  background: var(--color-1);
  border: none;
  color: #1e1e1e;
  padding: 3px 12px;
  border: solid 1px var(--color-1);
  cursor: pointer;
}

select {
  height: 29px;
  border: none;
  background: #cbfc01;
  cursor: pointer;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

[data-status=float-down] [data-float] {
  display: none;
}

body::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  background-color: black;
  outline: 1px solid black;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  justify-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
  align-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-auto {
  width: auto;
}

.ql-editor {
  color: black;
}

.click {
  cursor: pointer;
}

.lava {
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
}

.whatsapp {
  right: 16px;
  cursor: pointer;
  position: fixed;
  background-color: #00bb2d;
  fill: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 999;
}
.whatsapp a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.whatsapp svg {
  width: 60%;
  height: 60%;
  fill: white;
}

.hamburger {
  cursor: pointer;
}
.hamburger input {
  display: none;
}
.hamburger input:checked + svg {
  transform: rotate(-45deg);
}
.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line {
  fill: none;
  stroke: #291818;
  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);
}
.hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.menu {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 998;
  position: relative;
  left: 0;
  top: 0;
}
.menu .normal {
  width: calc(100% - 130px);
}
.menu .normal ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .normal a {
  margin: 0 10px;
  padding: 12px 12px;
}
.menu .login {
  width: 130px;
  margin-left: 8px;
}
.menu .login a {
  margin: 0;
  padding: 12px 12px;
}
.menu .login ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .content {
  max-width: 1400px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .menu .content {
    padding: 0;
  }
}
.menu .back {
  display: none;
  cursor: pointer;
}
.menu .relleno {
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu .relleno {
    display: flex;
  }
}
.menu .content-logo {
  width: 50%;
  display: flex;
  align-items: center;
  height: 50px;
}
.menu .content-logo .icon-menu {
  display: none;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo {
    width: 100%;
    justify-content: space-between;
  }
  .menu .content-logo .icon-menu {
    display: flex;
  }
}
.menu .content-logo a {
  display: flex;
  align-items: center;
}
.menu .content-logo a img {
  margin-left: 10px;
  width: 40px;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo a img {
    width: 30px;
    height: 30px;
  }
}
.menu .content-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 50px;
  position: relative;
  transition: left 0.6s;
}
.menu .content-menu li.link {
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .menu .content-menu {
    padding-top: 60px;
    position: absolute;
    width: 80%;
    left: -100vw;
    top: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: black;
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.menu .content-menu a {
  color: var(--color-1);
}
.menu .content-menu a svg {
  width: 25px;
  height: 25px;
}
.menu > ul {
  justify-content: center;
}
.menu > ul img {
  width: 30px;
  cursor: pointer;
}

.menu-opened .content-menu {
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .menu-opened .content-menu {
    left: 0;
  }
}
.menu-opened .menu .back {
  display: none !important;
  background-color: transparent;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .menu-opened .menu .back {
    display: flex !important;
  }
}
.menu-opened main {
  transition: opacity 1.6s;
}
@media only screen and (max-width: 768px) {
  .menu-opened main {
    opacity: 0.1;
  }
}

@media only screen and (max-width: 768px) {
  .menu .normal,
  .menu .login {
    width: 100%;
    margin: 0;
  }
  .menu .normal ul,
  .menu .login ul {
    justify-content: flex-start;
  }
  .menu .normal li {
    width: 100%;
  }
  .menu .login {
    position: absolute;
    bottom: 30px;
    left: 0;
  }
}
body main,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #181818;
  color: white;
}

body, html {
  display: flex;
  justify-content: center;
}

main {
  max-width: 1400px;
}

.menu {
  position: absolute;
}

.menu .title {
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.menu .content-menu a {
  color: white;
}
