html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Helvetica, Arial;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: rgba(245, 198, 191, .9);
}

.navbar {
    position: fixed;
    max-width: 100%;
}

.hero {
    min-height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background: rgb(110, 181, 168);
    background: linear-gradient(180deg, rgba(110, 181, 168, .9) 0%, rgba(247, 193, 190, .8) 91%, rgba(245, 198, 191, .9) 100%), url(/media/fondo.png);
    background-size: cover, no-repeat;

}

.yelow {
    color: #ffbd59;
}

.black {
    color: black;
}

.hero .row {
    min-height: 90vh;
}

.mobil_no {
    display: inline-flex;
}

.web_no {
    display: none;
}

.bondy {
    background: rgba(245, 245, 245, .9);
}

#player {
    position: relative;
    top: 80px;
    height: 10vh;
    z-index: 3;
}

#player-track {
    position: absolute;
    top: 0;
    right: 15px;
    left: 15px;
    padding: 13px 22px 10px 184px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
}

#player-track.active {
    top: -92px;
}

#album-name {
    color: #54576f;
    font-size: 17px;
    font-weight: bold;
}

#track-name {
    color: #acaebd;
    font-size: 13px;
    margin: 2px 0 13px 0;
}

#track-time {
    height: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

#current-time {
    float: left;
}

#track-length {
    float: right;
}

#current-time,
#track-length {
    color: transparent;
    font-size: 11px;
    background-color: #ffe8ee;
    border-radius: 10px;
    transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
    color: #f86d92;
    background-color: transparent;
}

#s-area,
#seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
}

#s-area {
    background-color: #ffe8ee;
    cursor: pointer;
}

#ins-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
}

#s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

#ins-time,
#s-hover {
    background-color: #3b3d50;
}

#seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #fd6d94;
    transition: 0.2s ease width;
    z-index: 1;
}

#player-content {
    position: relative;
    height: 100%;
    background-color: rgba(255, 215, 243, 0.4);
    box-shadow: 0 30px 80px #656565;
    border-radius: 15px;
    z-index: 2;
}

#album-art {
    position: absolute;
    top: -40px;
    width: 115px;
    height: 115px;
    margin-left: 40px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    box-shadow: 0 0 0 10px #fff;
    border-radius: 50%;
    overflow: hidden;
}

#album-art.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: #d6dee7;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
}

#album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}

#album-art img.active {
    opacity: 1;
    z-index: 1;
}

#album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

#buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    font-family: Helvetica;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    background-color: rgba(255, 255, 255, 0.19);
    opacity: 0;
    z-index: 2;
}

#album-art img,
#buffer-box {
    transition: 0.1s linear all;
}

#album-art.buffering img {
    opacity: 0.25;
}

#album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
    opacity: 1;
}

#player-controls {
    width: 250px;
    height: 100%;
    margin: 0 5px 0 141px;
    float: right;
    overflow: hidden;

}

.control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
    z-index: 15;
}

.button {
    width: 26px;
    height: 26px;
    padding: 25px;
    border-radius: 6px;
    cursor: pointer;
}

.button i {
    display: block;
    color: #000;
    font-size: 26px;
    text-align: center;
    line-height: 1;
}

.button,
.button i {
    transition: 0.2s ease all;
}

.button:hover {
    background-color: #d6d6de;
}

.button:hover i {
    color: #fff;
}

/*TGZUz*/
.tgzus {
    background: rgb(98, 98, 98);
    background: linear-gradient(0deg, rgba(98, 98, 98, 1) 0%, rgba(0, 0, 0, 1) 38%);
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100%;
}

/*AR*/
.ar {
    background: rgb(198, 198, 198);
    background: linear-gradient(0deg, rgba(198, 198, 198, 1) 0%, rgba(255, 255, 255, 1) 38%);
    overflow-y: hidden;
    overflow-x: hidden;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LAZY content*/
/* Estilos específicos para el video swiper */
/* Contenedor principal */
#videoSwiperVertical {
    height: 100vh;
    width: 100%;
}

/* Slides y videos */
#videoSwiperVertical .swiper-slide {
    position: relative;
    overflow: hidden;
}

#videoSwiperVertical .max_alto_video,
#videoSwiperVertical .video-lazy {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder */
#videoSwiperVertical .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Paginación */
#videoSwiperVertical .video-pagination {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
/*STACK CARDS */
/* -------------------------------- 

File#: _1_stacking-cards
Title: Stacking Cards
Descr: Cards stack effect on vertical scrolling
Usage: codyhouse.co/license

-------------------------------- */
/* reset 
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables 
:root {
  /* colors 
  --sg0-color-primary-hsl: 250, 84%, 54%;
  --sg0-color-bg-hsl: 0, 0%, 100%;
  --sg0-color-contrast-high-hsl: 230, 7%, 23%;
  --sg0-color-contrast-higher-hsl: 230, 13%, 9%;
  --sg0-color-bg-light-hsl: 0, 0%, 100%;

  /* spacing 
  --sg0-space-sm: 0.75rem;
  --sg0-space-md: 1.25rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing 
    --sg0-space-sm: 1.125rem;
    --sg0-space-md: 2rem;
  }
}

/* component 
.stack-cards {
  --stack-cards-gap: var(--sg0-space-sm);
  --stack-cards-item-ratio: 2/1;
}

.stack-cards__item {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: var(--sg0-space-md);
  height: 0;
  padding-bottom: calc(100%/(var(--stack-cards-item-ratio)));
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.stack-cards__item > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* utility classes 
.sg0-overflow-hidden {
  overflow: hidden;
}

.sg0-shadow-md {
  box-shadow:0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
}

.sg0-radius-lg {
  border-radius: 0.5em;
}

.sg0-bg {
  --sg0-bg-o: 1;
  background-color: hsla(var(--sg0-color-bg-hsl), var(--sg0-bg-o, 1));
}

.sg0-flex-center {
  justify-content: center;
  align-items: center;
}

.sg0-flex {
  display: flex;
}

:where(.sg0-inner-glow) {
  position: relative;
}

.sg0-inner-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.sg0-bg-light {
  --sg0-bg-o: 1;
  background-color: hsla(var(--sg0-color-bg-light-hsl), var(--sg0-bg-o, 1));
}



/*TEAM y ENTRE, CONT*/

.same {
    height: 250px;
    width: 250px;
}

.entre {
    background-image: url(/media/bg_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.entre h1,
p {
    color: black;
}

.teamg {
    background-image: url(/media/background4.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.teamg h2,
p {
    color: black;
}

.cont {
    background-image: url(/media/background15.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 80vh;
}

.cont .title {
    text-align: center;
    letter-spacing: 3px;
    line-height: 48px;
}

.contact-form .form-field {
    position: relative;
    margin: 32px 0;
    border-radius: 10px;
}

.contact-form .input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: aqua;
    line-height: 26px;
    border-radius: 10px;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
    transform: translateY(-24px);
}

.contact-form .input-text:focus {
    outline: none;
}

.contact-form .label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    line-height: 26px;
    color: #ff738f;
    cursor: text;
    text-transform: capitalize;
    transition: transform 0.2s ease-in-out;

}

.contact-form .submit-btn {
    display: inline-block;
    background-image: linear-gradient(125deg, #ff738f, #44c7b2);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: none;
    width: 200px;
    cursor: pointer;
    border-radius: 10px;
}

/*GLASMORPH*/
.glass_aqua {
    background: rgba(80, 150, 254, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass_white {
    background: rgba(255, 255, 255 0.25);
    box-shadow: 0 8px 32px 0 rgba(177, 177, 177, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


/*MODAL*/
.modal.fade .modal-dialog {
    transform: translate(100%, 0);
    transition: transform 0.5s ease-out;
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

.modal-header .close {
    position: absolute;
    right: 15px;
    top: 15px;
}

/*BOTONES*/

.button_1 {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(125deg, #ff738f, #44c7b2);
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 1.25em;
  cursor: pointer;
}

.button_1 span {
  position: relative;
  z-index: 1;
}

.button_1::before {
  content: "Ver más";
  position: absolute;
  inset: 1px;
  color: white;
  background: rgba(245, 198, 191, .9);
  border-radius: 9px;
  transition: 0.5s;
}

.button_1:hover::before {
  opacity: 0.7;
}

.button_1::after {
  content: "";
  position: absolute;
  inset: 0px;
    color: white;
  background: linear-gradient(125deg, #ff738f, #44c7b2);
  border-radius: 9px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}

.button_1:hover:after {
  opacity: 1;
}


/*blog*/

.post-media {
    position: relative;
    overflow: hidden;
}

.post-media img {
    width: 100%;
}

.post-media img,
.masonry-box img {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.post-media:hover img,
.masonry-box:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.post-media:hover .hovereffect span::before,
.post-media:hover .hovereffect {
    visibility: visible;
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.max_alto_video{
    max-height: 80vh;
      
}

@media (max-width: 420px) or (max-height: 850px) {
    .mobil_no {
        display: none;
    }

    .web_no {
        display: block;
    }
