/* Responsive */
@import url('responsive.css');
/* End Responsive */

/* Fuentes */
@font-face {
    font-family: "Druk Wide Bold";
    src: url("../fonts/DrukWide/DrukWideBold.ttf");
    font-weight: bold;
    font-style: normal;
  }
  
@font-face {
    font-family: "Helvetica";
    src: url("../fonts/Helvetica/Helvetica.ttf");
    font-style: normal;
}

#canvas-container canvas {
    width: 100% !important;
    height: 100vh !important;
}

:root {
    --bg-background: #868686;
    --text-color-1 : #AFAFAF;
    --text-color-3: color: rgba(0, 0, 0, 0.50);
    --font-drunk: "Druk Wide Bold";
    --font-helvica: "Helvetica";
    --bg-input: #F1F1F1;
    --w-full: 100%;
    --h-full: 100%;
    --h-screen: 100vh;
    --font-1: 250px;
    --spacing-contact: 6rem;
}

body {
    background-color: #868686;
}

.bg-dropdown {
    border-radius: 10px;
    background: #F0F0F0;
    box-shadow: 0px 4px 11.1px 0px rgba(0, 0, 0, 0.12);
}
#toggleMachinesMenu:checked + label + #machinesMenu {
    display: block;
}

/* TEXT COLORS */
.text-color-1 {
    color: var(--text-color-1);
}
.text-color-2 {
    background: linear-gradient(180deg, #E5E6FF 0%, #EEE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: luminosity;
}
.text-color-3 {
    color: var(--text-color-3) !important;
}
/* TEXT COLORS */
.z-99999 {
    z-index: 999999 !important;
}
/* BACKGROUNDS */
.bg-hero1 {
    background-image: url('../media/bg1.png');
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bg-hero2 {
    background-image: url('../media/bg2.png');
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bg-footer {
    border-radius: 67px 67px 0px 0px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px);
    z-index: 2;
}
/* */

/* FORMS */
textarea {
    border-radius: 12px;
    border: 1px solid #C3C3C3;
    background: var(--bg-input);
}
.bg-input {
    border: 1px solid #C3C3C3;
    background: var(--bg-input);
}
/* End forms */

/* Section Materials */
.card-materials {
    border-radius: 10px;
    border: 2px solid #8E8E8E;
    background: #181818;
}
/* Section Materials */

/* Section Lists */
.list-items {
    min-height: 200px;
    border-bottom: 1px solid white;
    transition: all 0.5s linear;
}

/* Case */
.case {
    border-radius: 35px;
    background: linear-gradient(115deg, #DBDBDB -7.18%, #EEE 86.05%);
}

/* Fonts */
.font-drunk {
    font-family: var(--font-drunk);
}
.font-helvica {
    font-family: var(--font-helvica);
}
.font-hero-title {
    font-family: var(--font-drunk);
    font-size: 110px;
}

/* Btn */
.btn-white {
    background-color: #fff;
    border-radius: 15px;
    transition: scale 0.3s ease-in-out;
}
.btn-border {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 15px;
    transition: scale 0.3s ease-in-out;
}
.btn-black {
    background-color: #000;
    border-radius: 15px;
    transition: scale 0.3s ease-in-out;
}
.btn-learn-more {
    border-bottom: 1px solid #fff;
    z-index: 99 !important;
    transition: scale 0.3s ease-in-out;
}
.btn-white:hover,.btn-border:hover,.btn-black:hover,.img-hero:hover,.btn-learn-more:hover {
    scale: 1.03;
}

.img-hero {
    transition: scale 0.3s ease-in-out;
}

/* Section 3 */
.displayImg {
    display: flex;
    position: absolute;
    right: 360px;
    transform: scale(0, 1);
}
.list-items:hover .displayImg {
    width: 15%;
    transform: scale(0.8, 0.8);
    transition: transform 0.5s ease-in-out;
}
.number {
    margin-right: 0px;
    transition: all 0.5s linear;
}
.hola:hover .number {
    padding-left: 40px;
    transition: all 0.5s linear;
}
.background-image {
    background-image: url("../media/backgroundlayer3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider */
.swiper {
    padding: 5rem 0;
    overflow: visible;
}
.swiper .swiper-slide {
    width: 350px;
}

.single {
    position: relative;
    pointer-events: none;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-radius: 35px;
    background: linear-gradient(115deg, #DBDBDB -7.18%, #EEE 86.05%);
}

/* Slider 2 */
.swiper-button-next, .swiper-button-prev {
    width: fit-content !important;
}
.swiper-container + .swiper-container {
    margin-top: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 180px;
    height: 10px;
    display: inline-block;
    border-radius: 25px !important;
    background: transparent;
    border: 1px solid #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff !important;
}
.swiper-paginations .swiper-pagination-bullet {
    width: 15px !important;
    border-radius: 25px !important;
    height: 15px;
}
.swiper-paginations .swiper-pagination-bullet-active {
    opacity: 1;
    background: #575757 !important;
}
@-webkit-keyframes slide-progress {
0% {
    transform: translateX(-100%);
}
100% {
    transform: translateX(0);
}
}

@keyframes slide-progress {
0% {
    transform: translateX(-100%);
}
100% {
    transform: translateX(0);
}
}