/*///////////////////////// GENERALES /////////////////////////*/

body {
  font-family: 'Poppins', sans-serif;
  color: #1D1D1B;
  background-color: white;
}

img {
  width: 100%;
}

.img-rounded {
  border-radius: 25px;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.primary {
  color: #29B9F6;
}

.primary-bg {
  background-color: #29B9F6;
}

.dark {
  color: #161F23 !important;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/

.btn {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  display: flex;
  width: fit-content;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-primary {
  border: 2px solid #fff;
  color: #161F23;
  background-color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background: #29B9F6;
  color: #fff;
  border: 2px solid #fff;
  transition: all ease .25s;
}

/*///////////////////////// HEADER /////////////////////////*/

header {
  -webkit-transition: background 0.3s 0s linear;
  -moz-transition: background 0.3s 0s linear;
  -o-transition: background 0.3s 0s linear;
  transition: background 0.3s 0s linear;
  position: fixed;
  z-index: 500;
  width: 100%;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
}

.nav-logo {
  transition: .3s;
}

.scroll-logo {
  filter: invert(1);
  width: 120px;
}

.dropdown-menu {
  border: 0;
  min-width: auto;
  padding: .25rem 0rem;
}

.dropdown-toggle {
  transition: .3s;
}

.dropdown-toggle::after {
  content: none !important;
}

.dropdown-menu .dropdown-item {
  padding: .25rem 1rem;
  font-weight: 300;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #29B9F6;
  background-color: #ededed;
}


.bg-white a.dropdown-toggle {
  color: #161F23 !important;
}

.nav-shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

header .menu-btn,
header .close-button {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

header a {
  transition: .3s;
}

header nav a:hover {
  color: #29B9F6 !important;
}

header .nav {
  display: block;
}

header .nav-link {
  font-size: 48px;
  font-weight: 700;
  color: #626B70 !important;
  position: relative;
  padding: 10px 0px !important;
  transition: .3s;
}

header .nav-link:hover {
  color: #29B9F6 !important;
  text-decoration: underline;
}

nav {
  position: absolute;
  background: url("../images/menu-logo.svg") #161F23;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 1em;
  width: 100vw;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  z-index: 5;
  align-items: center;
  opacity: 1;
}

nav .close-button {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  top: 20px;
  right: 50px;
  font-size: 24px;
}

nav .header-contact {
  opacity: 0;
}

nav ul li {
  opacity: 0;
}

.show-menu {
  display: flex;
  -webkit-animation: slide-menu .5s ease-in forwards;
  animation: slide-menu .5s ease-in forwards;
}

.hide-menu {
  display: flex;
  -webkit-animation: slide-menu-out .5s ease-in forwards;
  animation: slide-menu-out .5s ease-in forwards;
}

.show-menu .close-button {
  -webkit-animation: show-x .8s .8s forwards;
  animation: show-x .8s .8s forwards;
}

.show-menu .header-contact {
  -webkit-animation: show-x .5s .5s forwards;
  animation: show-x .5s .5s forwards;
}

.show-menu li:nth-of-type(1) {
  -webkit-animation: menu-item-anim .6s forwards .2s ease-in-out;
  animation: menu-item-anim .6s forwards .2s ease-in-out;
}

.show-menu li:nth-of-type(2) {
  -webkit-animation: menu-item-anim .6s forwards .3s ease-in-out;
  animation: menu-item-anim .6s forwards .3s ease-in-out;
}

.show-menu li:nth-of-type(3) {
  -webkit-animation: menu-item-anim .6s forwards .4s ease-in-out;
  animation: menu-item-anim .6s forwards .4s ease-in-out;
}

.show-menu li:nth-of-type(4) {
  -webkit-animation: menu-item-anim .6s forwards .5s ease-in-out;
  animation: menu-item-anim .6s forwards .5s ease-in-out;
}

.show-menu li:nth-of-type(5) {
  -webkit-animation: menu-item-anim .6s forwards .6s ease-in-out;
  animation: menu-item-anim .6s forwards .6s ease-in-out;
}

/* Animacion para abrir el menu */

@-webkit-keyframes slide-menu {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slide-menu {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/* Animacion para mostrar la X que cierra el menu */

@-webkit-keyframes show-x {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes show-x {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Animacion para los items del menu */

@-webkit-keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animacion para cerrar el menu */

@-webkit-keyframes slide-menu-out {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slide-menu-out {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    display: none;
  }
}


/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  min-height: 100vh;
  /* background: linear-gradient(-45deg, #80d9ff, #007eb4, #004360);
  background-size: 400% 400%;
  animation: gradient 7s ease infinite; */
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;

}

.main-video {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -5;
  height: 100%;
  object-fit: cover;
}

/* @keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-bg {
  position: absolute;
  mix-blend-mode: plus-lighter;
  width: 100%;
  height: 100%;
} */

.main-section .container {
  position: relative;
  z-index: 2;
}

/* Animación que invita a scrollear */

.scrolling-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 150px;
}

.scrolling-container-icon {
  position: relative;
  width: 2.2rem;
  height: 4rem;
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 2.5rem;
  padding: 10px 0px
}

.scrolling-container-icon:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2rem;
  background-color: white;
  top: .5rem;
  border-radius: .4rem;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  left: 0;
  right: 0;
  margin: 0 auto;
}


@keyframes scroll {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
    transform: translateY(1rem)
  }
}

.floating-bar {
  position: fixed;
  right: 15px;
  bottom: 40%;
  z-index: 100;
}

.floating-bar-scroll {
  background-color: #29B9F6;
  border-color: #29B9F6 !important;
}

.floating-bar-scroll:hover {
  color: white;
}

/*///////////////////////// CLIENTES //////////////////////////*/
.clients {
  margin-top: -100px;
}

.clients .container .row {
  margin-right: -7px;
  margin-left: -7px;
}

.clients .container .row .col-12,
.clients .container .row .col-md-6,
.clients .container .row .col-md-4 {
  padding-right: 5px;
  padding-left: 5px;
}

.content {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  background: black;
}

.content a {
  cursor: pointer;
}

.content .content-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
  opacity: 1;
  background: black;
}

.content-image {
  width: 100%;
  height: 100%;
  transition: .3s;
  object-fit: cover;
}

.content:hover .content-image {
  opacity: .2;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.fadeIn-bottom {
  top: 80%;
}

.h-800 {
  height: 800px;
}

.h-400 {
  height: 400px;
}

/*///////////////////////// SOCIAL CAROUSEL //////////////////////////*/
.social {
  padding: 80px 0px;
  background-color: #161F23;
}
.social .more-info {
  transition: .3s;
  color: white;
}
.social .more-info:hover {
  color: #29B9F6;
}
.carousel__slide {
  width: 30%;
}
.carousel__nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
}
.carousel__button.is-prev, .carousel__button.is-next {
  position: relative;
  transform: translateY(0);
  transition: .3s;
}
.carousel__button.is-next {
 right: -40px;
}

.carousel__button.is-prev:hover, .carousel__button.is-next:hover {
transform: scale(1.3);
}
.social-block {
  border-radius: 10px;
  height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.social-block:hover {
  outline: 2px solid #29B9F6;
}
.social-block:hover .social-block-overlay {
  opacity: .5;
}

.social-block-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.social-block-logo {
  width: 69px;
  height: 69px;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 10;
  border-radius: 50%;
  background: rgb(254,199,7);
  background: linear-gradient(90deg, rgba(254,199,7,1) 0%, rgba(255,91,27,1) 51%, rgba(211,0,197,1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-block-logo img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.social-block-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 5;
  transition: .3s;
}

.social-block-text {
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 10;
  color: white;
}

.social-block-title {
  transform: translateY(15px);
  transition: all .3s;
  color: white;
}

.social-block:hover .social-block-title {
  transform: translateY(0px);
}
.social-block-link {
  transform: translateY(50px);
  transition: all .3s;
}

.social-block:hover .social-block-link {
  transform: translateY(0px);
}

/*///////////////////////// SERVICIOS //////////////////////////*/

.services {
  padding: 80px 0px;
}

.nav-pills .nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.nav-pills .nav-link::before {
  content: "—";
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 3px;
}

.nav-pills .nav-link.active {
  color: #fff;
  background-color: transparent;
  font-weight: 800;
}

.nav-pills .nav-link.active::before {
  text-decoration: none;
}

.tab-content {
  font-weight: 300;
}

.relative{ position: relative;}
.relative img{ opacity: .6; transition: all .2s ease-in-out;}
.relative:hover img{ opacity: .7;}
.play-btn{
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
}
.relative:hover .play-btn{
  
}
*:focus {
  outline: none !important;
}
/*///////////////////////// INTERNAS //////////////////////////*/
.main-works {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.main-works h2, .main-works p{
  opacity: 0;
}

.work-description {
  background-color: #FFFFFF;
  padding: 50px;
  color: #161F23;
}

.work-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*///////////////////////// FOOTER //////////////////////////*/

footer {
  background: url(../images/footer-bg.png) #161F23;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin: 8px 0px
}

footer ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: .3s
}

footer ul li a:hover {
  color: #4DC2FF;
  margin-left: 8px;
}

footer a {
  transition: .3s;
}

.social-media {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.social-media-container a:hover {
  text-decoration: none;
  color: #29B9F6 !important;
}

.social-media-container a i {
  transition: .3s;
}

.social-media-container a:hover i {
  color: #29B9F6 !important;
}

.social-media:hover {
  background: #fff;
}

footer img {
  max-width: 140px;
  display: flex;
  margin-left: auto;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1140px) {}

@media (max-width: 1024px) {

  .main-section {
    min-height: 100vh;
    padding: 180px 0px;
  }

  .carousel__slide {
    width: 40%;
  }
  .play-btn{
    width: 75px;
    height: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
  }

}

@media (max-width: 768px) {
  header .nav-link {
    font-size: 36px;
  }

  .header-contact .h4,
  .header-contact .h5 {
    font-size: 20px !important;
  }
  .carousel__slide {
    width: 55%;
  }
}

@media (max-width: 525px) {

  nav {
    background-size: contain;
  }

  header .nav-link {
    font-size: 28px;
  }

  .header-contact .h4,
  .header-contact .h5 {
    font-size: 16px !important;
  }

  nav .close-button {
    right: 20px;
    top: 10px;
  }

  .show-menu li {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1;
  }

  .mobile-alignment {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .button-center {
    margin: 0 auto;
  }
  .carousel__slide {
    width: 80%;
  }

  footer img {
    margin: 0 auto;
  }

}

@media (max-width: 375px) {}

@media (max-width: 320px) {}