/* BODY */
body{
  margin: 0;
}

/* MENU */

#menu1{
  background-color: #fcfcfc;
}

#navbarSupportedContent a{
    font-size: 28px;
    color: rgb(0, 0, 0);
}

.container-fluid{
    margin-left: 5%;
}

nav{
    background-color: rgba(255, 255, 255, 0.378);
    /* background-color: rgb(255, 255, 255); */
    position: sticky;
    top: 0;
    width: 100%;
    font-family: castoro Titling;
}

.navbar-brand img{
  border-radius: 50%;
}

#menu1 button{
  background-color: #0000008b;
}

#menu button{
  background-color: #0000005b;
}

@media (max-width:991px)
{
  nav{
    background-color: rgba(255, 255, 255, 0.699);
  }
}

/* BOTON SUBIR ARRIBA */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.701);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}
  
#myBtn:hover {
  background-color: #000000;
}

/* ------------------------------------------------------------- */
/*-------------------------INDEX------------------------------*/
/* ------------------------------------------------------------- */

#indexpic{
  position: absolute;
  top: 5%;
  left: 85%;
}

@media (max-width:991px)
{
  #indexpic{
    position: absolute;
    top: 5%;
    left: 65%;
  }
}

#indexpic img{
  width: 70%;
}

@media (max-width:991px)
{
  #indexpic img{
    width: 90%;
  }
}

:root {
  --card-width: 900px;
  --card-height: 900px;
  --card-transition-duration: 800ms;
  --card-transition-easing: ease;
}

@media (max-width:991px)
{
  :root {
    --card-width: 200px;
    --card-height: 400px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
  }
}

#indexmain{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  overflow: hidden;
}

#indexbasics{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  overflow: hidden;
}

#indexbasics h1{
  font-family: 'Francois One', sans-serif;
}

#button1 {
  border: none;
  background: none;
  cursor: pointer;
}
#button1:focus {
  outline: none;
  border: none;
}

.app {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -5;
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.app__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 1;
  opacity: 0.8;
}
.app__bg__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
  width: 180%;
  height: 180%;
  transition: transform 1000ms ease, opacity 1000ms ease;
  overflow: hidden;
}
.app__bg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app__bg__image.current--image {
  opacity: 1;
  --image-translate-offset: 0;
}
.app__bg__image.previous--image, .app__bg__image.next--image {
  opacity: 0;
}
.app__bg__image.previous--image {
  --image-translate-offset: -25%;
}
.app__bg__image.next--image {
  --image-translate-offset: 25%;
}

.cardList {
  position: absolute;
  width: calc(3 * var(--card-width));
  height: auto;
}
.cardList__btn {
  --btn-size: 65px;
  width: var(--btn-size);
  height: var(--btn-size);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.cardList__btn.btn--left {
  left: -5%;
}
.cardList__btn.btn--right {
  right: -5%;
}

@media (max-width:991px)
{
  .cardList__btn {
    --btn-size: 75px;
    width: var(--btn-size);
    height: var(--btn-size);
    position: absolute;
    margin-top: 30%;
    /* transform: translateY(-50%); */
    z-index: 100;
  }
}

@media (max-width:991px)
{
  .cardList__btn.btn--left {
    left: 30%;
  }
}

@media (max-width:991px)
{
  .cardList__btn.btn--right {
    right: 30%;
  }
}

.cardList__btn .icon {
  width: 100%;
  height: 100%;
}
.cardList__btn .icon svg {
  width: 100%;
  height: 100%;
}
.cardList .cards__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.card {
  --card-translateY-offset: 100vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset)) rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
  display: inline-block;
  width: var(--card-width);
  height: var(--card-height);
  transition: transform var(--card-transition-duration) var(--card-transition-easing);
  user-select: none;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000097;
  z-index: 1;
  transition: opacity var(--card-transition-duration) var(--card-transition-easing);
  opacity: calc(1 - var(--opacity));
}
.card__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card.current--card {
  --current-card-rotation-offset: 0;
  --card-translateX-offset: 0;
  --card-rotation-offset: var(--current-card-rotation-offset);
  --card-scale-offset: 1.2;
  --opacity: 0.8;
}
.card.previous--card {
  --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
  --card-rotation-offset: 25deg;
}
.card.next--card {
  --card-translateX-offset: calc(var(--card-width) * 1.1);
  --card-rotation-offset: -25deg;
}
.card.previous--card, .card.next--card {
  --card-scale-offset: 0.9;
  --opacity: 0.4;
}

.infoList {
  position: absolute;
  width: calc(3 * var(--card-width));
  height: var(--card-height);
  pointer-events: none;
}

#activasion{
  pointer-events: all;
}

a{
  text-decoration: none;
}

.infoList .info__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  perspective: 1000px;
  transform-style: preserve-3d;
}

@media (max-width:991px)
{
  .infoList .info__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 15%;
    margin-left: -10%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
}

.info {
  margin-bottom: calc(var(--card-height) / 8);
  margin-left: calc(var(--card-width) / 1.5);
  transform: translateZ(2rem);
  transition: transform var(--card-transition-duration) var(--card-transition-easing);
}
.info .text {
  position: relative;
  font-family: "Montserrat";
  font-size: calc(var(--card-width) * var(--text-size-offset, 0.2));
  white-space: nowrap;
  color: #ffffff;
  width: fit-content;
  -webkit-text-stroke: 1px rgb(36, 36, 36); 
}

.info .name,
.info .location {
  text-transform: uppercase;
}
.info .location {
  font-weight: 800;
}
.info .location {
  --mg-left: 40px;
  --text-size-offset: 0.12;
  font-weight: 600;
  margin-left: var(--mg-left);
  margin-bottom: calc(var(--mg-left) / 2);
  padding-bottom: 0.8rem;
}
.info .location::before, .info .location::after {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 0%;
  transform: translate(calc(-1 * var(--mg-left)), -50%);
}
.info .location::before {
  top: 50%;
  width: 20px;
  height: 5px;
}
.info .location::after {
  bottom: 0;
  width: 60px;
  height: 2px;
}
.info .description {
  --text-size-offset: 0.065;
  font-weight: 500;
}
.info.current--info {
  opacity: 1;
  display: block;
}
.info.previous--info, .info.next--info {
  opacity: 0;
  display: none;
}

.loading__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 200;
}
.loading__wrapper .loader--text {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.loading__wrapper .loader {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgb(255, 255, 255);
}
.loading__wrapper .loader span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 0, 0);
  transform: scaleX(0);
  transform-origin: left;
}

@media only screen and (min-width: 800px) {
  :root {
    --card-width: 250px;
    --card-height: 400px;
  }
}

/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/*--------------------ABOUT---------------------*/

#mainabout{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfc;
  font-family: 'IM Fell Great Primer', serif;
}

#tibout{
  display: flex;
  font-size: 40px;
  width: 100%;
  margin-bottom: 5%;
  font-family: Ruthie;
  justify-content: center;
}

#tibout img{
  width: 20%;
}

@media (max-width:991px)
{
  #tibout img{
    width: 40%;
  }
}

#cuerpout{
    text-align: center;
    /* width: 80%; */
    margin-bottom: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #fcfcfc;
}

#cuerpext{
  width: 40%;
}

#cuerpext p{
  font-size: 18px;
}

#cuerpimg1{
  display: none;
}

@media (max-width:991px)
{
  #cuerpout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width:991px)
{
  #cuerpext{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 80%;
  }
}

@media (max-width:991px)
{
  #cuerpimg1{
    display: block;
    width: 90%; 
    align-items: center;
  }
}

@media (max-width:991px)
{
  #cuerpimg1 img{
    margin-left: 10%;
  }
}

@media (max-width:991px)
{
  #cuerpimg{
    display: none;
  }
}

#cuerpout1 p{
  font-size: 18px;
}

#cuerpimg{
  width: 40%;
}

#cuerpout img{
    /* margin-top: 5%; */
    margin-right: 10%;
    width: 90%;
}

#cuerpout1{
  width: 60%;
  /* display: flex; */
  text-align: center;
}
#aboutend{
  width: 80%;
  margin-bottom: 5%;
}
#aboutend img{
  width: 100%;
}

@media (max-width:991px)
{
  #cuerpout1{
    width: 90%;
    text-align: center;
  }
}

@media (max-width:991px)
{
  #aboutend{
    width: 100%;
  }
}

/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/*--------------------GALLERY----------------------*/
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
#maingaleria{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#galerintro{
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
  margin-top: 5%;
}
#galerintro img{
  width: 60%;
}

@media (max-width:991px)
{
  #galerintro img{
    width: 90%;
    margin: auto;
  }
}

.collageri{
  display: flex;
  justify-content: center;
}

.collageri img{
  width: 90%;
}

.maingaleria{
  position: relative;
  background-color: #ffffff;
  color: #000;
}

#tigal{
  color: #000000;
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  cursor: default;
}

#fondopant{
  position: fixed;
  width: 100%;
  z-index: -1;
  top: 0;
}
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* Grid colabs */

#magscontent{
  width: 100%;
}

.rowmag {
  display: -ms-flexbox; 
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
  padding: 0 4px;
  width: 90%;
  margin-left: 5%;
}

.columnmag {
  -ms-flex: 25%; 
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  margin-top: 5%;
  margin-bottom: 5%;
}

@media (max-width:991px)
{
  .columnmag {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.columnmag img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
}

/* @media (max-width:991px)
{
  .columnmag img {
    margin-top: 8px;
    width: 100%;
    cursor: pointer;
  }
} */

#myImg {
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

@media (max-width:991px)
{
  #myImg{
    pointer-events: none;
  }
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 10%;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  cursor: pointer;
}

.modal div{
  width: 50%;
  height: 50%;
  max-width: 700px;
  max-height: 300px;
  margin: auto;
}

.modal-content {
  display: block;
  width: 100%;
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

/*-----------------------------COLABS--------------------------*/

.magtain{
  width: 90%;
  margin: 5% auto;
  position: relative;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(9, 5vw);
  grid-gap: 80px;
  position: relative;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease-in-out;
  position: relative;
}

.gallery__item{
  overflow: hidden;
  position: relative;
}

.gallery__item:hover img{
  transform: scale(1.2);
}

@media (max-width:991px)
{
  .gallery__item:hover img{
    transform: scale(1.0);
  }
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 4;
}

.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 4;
}

.gallery__item--3 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;
}  

.gallery__item--4 {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 6;
  grid-row-end: 9;
}

.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 4;
  grid-row-end: 9;
}

.gallery__item--6 {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 9;
}

#ticolab h1{
  font-size: 40px;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
  color: #000000;
}

#ticolab a{
  font-size: 40px;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
  text-decoration: none;
  color: #000000;
}

@media (max-width:991px)
{
  .gallery {
    display: flex;
    flex-direction: column;
    position: relative;
  }
}

@media (max-width:991px)
{
  .gallery img {
    width: 80%;
    margin-left: 10%
  }
}

/* COLABORACIÓN */
#maincolab1{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (max-width:991px)
{
  #maincolab1{
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
}

.container1{
  background-color: #ffffff50;
  margin: 0;
  min-height: 500px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container2{
  /* width: 50%; */
  padding-top: 15%;
  /* padding-left: 90px; */
}

/* @media (max-width:991px)
{
  .container2{
    margin-left: 10%;
  }
} */

#opening{
  text-align: center;
  color: #000000;
}

#opening img{
  width: 60%;
}

@media (max-width:991px)
{
  #opening{
    margin-top: 15%;
  }
}

@media (max-width:991px)
{
  #opening img{
    display: none;
  }
}

#titulo1{
  font-size: 54px;
  text-align: center;
}

/* --------------------------------------------------------------------------- */
/*COLLAB L X W */
/* --------------------------------------------------------------------------- */
#lxwintro{
  width: 90%;
  margin: 0;
}

#lxwintro img{
  width: 100%;
  margin-top: 5%;
}

.parallax1{
  background-image: url(../assets/lieuweXwallien/BANNERESCALADO.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* min-height: 400px; */
}

@media (max-width:991px)
{
  .parallax1 {
    display: none;
  }
}

@media (max-width:991px)
{
  #openinglxw img{
    width: 100%;
    margin-top: 100%;
  }
}

#openinglxw{
  text-align: center;
}

#openinglxw img{
  width: 30%;
  margin-bottom: 10%;
}

#lxwmid{
  width: 400px;
  height: 500px;
}

#videoslxw{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5%;
}

#videoslxw div{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

#videoslxw video{
  width: 80%;
  margin-bottom: 40px;
}

#reellxw{
  max-width: 280px;
  max-height: 500px;
}

@media (max-width:991px)
{
  #videoslxw{
    display: block;
    width: 100%;
  }
}

@media (max-width:991px)
{
  #videoslxw div{
    display: block;
    width: 100%;
  }
}

@media (max-width:991px)
{
  #videolxw{
    width: 100%;
    margin-left: 10%;
  }
}

@media (max-width:991px)
{
  #reellxw{
    width: 100%;
    margin-left: 15%;
  }
}

/* --------------------------------------------------------------------------- */
/*COLLAB ONEILL */
/* --------------------------------------------------------------------------- */
#mainoneill{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfc;
}

#lxwintro{
  width: 90%;
  margin: 0;
}

#lxwintro img{
  width: 100%;
  margin-top: 5%;
}

.parallax2{
  background-image: url(../assets/ONEILL/ONEILLBANNER.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width:991px)
{
  .parallax2 {
    display: none;
  }
}

#openingoneil{
  text-align: center;
}

#openingoneil img{
  width: 30%;
  margin-bottom: 10%;
}

#lxwmid{
  width: 400px;
  height: 500px;
}

#videoneill{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5%;
}

#videoneill div{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

#videoneill video{
  max-width: 500px;
  max-height: 500px;
}

/* --------------------------------------------------------------------------- */
/*COLLAB HURLEY */
/* --------------------------------------------------------------------------- */
#mainoneill{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfc;
}

#lxwintro{
  width: 90%;
  margin: 0;
}

#lxwintro img{
  width: 100%;
  margin-top: 5%;
}

.parallax3{
  background-image: url(../assets/HURLEY/BANNERHURLEY.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width:991px)
{
  .parallax3 {
    display: none;
  }
}

#openinhurley{
  text-align: center;
}

#openinhurley img{
  width: 20%;
  margin-bottom: 10%;
  margin-top: -5%;
}

#lxwmid{
  width: 400px;
  height: 500px;
}

/* --------------------------------------------------------------------------- */
/*COLLAB CORE */
/* --------------------------------------------------------------------------- */
#mainoneill{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfc;
}

#lxwintro{
  width: 90%;
  margin: 0;
}

#lxwintro img{
  width: 100%;
  margin-top: 5%;
}

.parallax4{
  background-image: url(../assets/CORE/BANNERCORE.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width:991px)
{
  .parallax4 {
    display: none;
  }
}

#openingcore{
  text-align: center;
}

#openingcore img{
  width: 30%;
  margin-top: -15%;
}

#lxwmid{
  width: 400px;
  height: 500px;
}

/* --------------------------------------------------------------------------- */
/*COLLAB SLINGSHOT */
/* --------------------------------------------------------------------------- */
#twsintro{
  width: 90%;
  margin: 0;
}

#twsintro img{
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.parallax6{
  background-image: url(../assets/SLINGSHOT/BANNERSLINGSHOT.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width:991px)
{
  .parallax6 {
    display: none;
  }
}

#openingslingshot{
  text-align: center;
}

#openingslingshot img{
  width: 40%;
  margin-bottom: 10%;
}

/* .containeroneil{
  margin: 0;
  min-height: 500px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */

#lxwmid{
  width: 400px;
  height: 500px;
}

#videoneill{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5%;
}

#videoneill div{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

#videoneill video{
  max-width: 500px;
  max-height: 500px;
}

/* --------------------------------------------------------------------------- */
/*COLLAB TWS */
/* --------------------------------------------------------------------------- */
#twsintro{
  width: 90%;
  margin: 0;
}

#twsintro img{
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.parallax5{
  background-image: url(../assets/TWS/BANERTHEWINDSEEKERS.gif);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width:991px)
{
  .parallax5 {
    display: none;
  }
}

#openingtws{
  text-align: center;
}

#openingtws img{
  width: 50%;
  margin-top: -10%;
  margin-bottom: 5%;
}

#lxwmid{
  width: 400px;
  height: 500px;
}

#videoneill{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5%;
}

#videoneill div{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

#videoneill video{
  max-width: 500px;
  max-height: 500px;
}

#videostws video{
  width: 100%;
  margin-bottom: 40px;
}

#videostws{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
}

@media (max-width:991px)
{
  #videostws video{
    width: 90%;
    margin-left: 10%;
  }
}

@media (max-width:991px)
{
  #videostws{
    display: flex;
    flex-direction: column;
  }
}

/* ------------------------------------------------------------- */
/* -----------------------MAGS---------------------- */
/* ------------------------------------------------------------- */
#magintro{
  display: flex;
  justify-content: center;
  margin-top: 5%;
}
#magintro img{
  width: 90%;
}

.collagmags{
  display: flex;
  justify-content: center;
}
.collagmagsend{
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}
.collagmagsend img{
  width: 80%;
}
.collagmags img{
  width: 80%;
}
/* ------------------------------------------------------------- */
/* ---------------------------FOOTER---------------------------------- */
/* ------------------------------------------------------------- */
.site-footer
{
  background-color:#ffffff48;
  padding:45px 0 20px;
  font-size:20px;
  line-height:24px;
  color:#000000;
  border-top:solid;
}

@media (max-width:991px)
{
  .site-footer{
    text-align: center;
  }
}

.site-footer hr
{
  border-top-color:#000000;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#000000;
  font-size:25px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#000000;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none;
}
.footer-links li
{
  display:block;
  margin-top: 10px;
}
.footer-links a
{
  color:#000000;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#000000
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}

.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}

@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}

#iconsociales{
  margin-right: 20px;
}

#iconsociales li{
  width: 60px;
}

.fa:hover {
  opacity: 0.7;
}

#facebook:hover {
  background: #3B5998;
  color: white;
  opacity: 0.7;
}

#twitter:hover {
  background: #55ACEE;
  color: white;
  opacity: 0.7;
}
#linkedin:hover {
  background: #0091d5;
  color: white;
  opacity: 0.7;
}
#instagram:hover {
  background: #73028a;
  color: white;
  opacity: 0.7;
}
