@charset "UTF-8";
.header-appear .navbar-default {
  background: #7e1bcb;
}

.nav_line li a:before {
  background: linear-gradient(to right, #6aeea5 0%, #6aeea5 100%);
}

nav.navbar.bootsnav.white-link ul.nav > li a:hover {
  color: #6aeea5 !important;
}

.header-social-icon a {
  background: linear-gradient(to right, #6aeea5 0%, #6aeea5 100%);
  color: #000 !important;
  font-weight: 600 !important;
}

a.slider-btn.btn.btn-white.btn-rounded.btn-large.btn-hvr-white.margin-10px-right:hover {
  background: linear-gradient(to right, #7e1bcb 0%, #7e1bcb 100%) !important;
}

.tp-bullet.selected, .tp-bullet:hover {
  background: #6aeea5;
  background: linear-gradient(to right, #6aeea5 0%, #6aeea5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fe563a", endColorstr="#e43a78",GradientType=1 );
  border: 1px solid transparent;
  transition: all 0.3s linear;
}

p.bottom40.text-center {
  color: #5b5b5b;
}

.counter-icon i.fa {
  background: linear-gradient(to right, #7e1bcb 0%, #7e1bcb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fe563a", endColorstr="#e43a78",GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 60px;
}

section.video-section.video-parallax.no-transition {
  background-image: url(../images/banner-notorio.jpg) !important;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-background-size: cover;
}

h1.text-white.font-weight-500 {
  font-size: 60px;
  color: #6aeea5;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 65px;
}

.heading-title > span {
  font-size: 38px;
  display: block;
  text-transform: capitalize;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1;
}

.our-services {
  font-size: 40px;
  background: #fb5340;
  background: #fe563a;
  background: linear-gradient(to right, #7e1bcb 0%, #7e1bcb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fe563a", endColorstr="#e43a78",GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 60px;
}

.process-number:hover {
  background: linear-gradient(to right, #6aeea5 0%, #6aeea5 100%) !important;
  color: #FFFFFF;
}

p.services {
  font-weight: 500;
}

.process-number {
  padding: 5px 40px 45px;
  height: 335px;
  margin-top: 30px;
}

.filter-buttons button {
  background: #7e1bcb;
  border: none;
  font-size: 15px;
  padding: 1.5rem 2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: white;
}

p.area-title.text-capitalize.margin-10px-bottom {
  padding-bottom: 10px;
  text-transform: math-auto;
}

.grid-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
  grid-auto-flow: dense;
}

.btn-send {
  background: #fe563a;
  background: linear-gradient(to right, #6aeea5 0%, #6aeea5 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fe563a", endColorstr="#e43a78",GradientType=1 );
  border: 1px solid transparent !important;
  color: #FFFFFF !important;
  padding: 9px 40px;
  text-align: center;
  text-decoration: none;
  width: auto;
  font-size: 15px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  line-height: 25px;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  transition: all 0.3s linear;
}

.bg-extra-dark-gray {
  background-color: #7e1bcb;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
}

footer .copyrights {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  margin-top: 25px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.menu1 {
  background-color: transparent;
  color: white;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.5s ease; /* Agregamos transición de color */
}

.container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 180px;
}

.menu-logo1 img {
  width: 150px;
}

.menu-items1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-items1 li {
  margin-right: 20px;
}

.menu-items1 a {
  text-decoration: none;
  color: white;
  transition: color 0.5s ease; /* Agregamos transición de color */
}

.menu-items1 a:hover {
  color: #7e1bcb;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
}

.content {
  margin-top: 80px; /* Para compensar la altura del menú fijo */
  /* Agregamos un margen superior para el contenido */
}

@media screen and (max-width: 768px) {
  .menu-items1 {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #7519c2;
    width: 100%;
    text-align: center;
  }
  .menu-items1.show {
    display: flex;
  }
  .menu-items1 li {
    margin: 10px 0;
  }
  .menu-toggle {
    display: block;
  }
  .container1 {
    padding: 0 30px;
  }
}
.slider-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  max-height: 90vh;
  overflow: hidden;
}

.slide {
  display: none;
}

img {
  width: 100%;
  height: auto;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

h2, p {
  margin: 0;
}

.prev, .next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background-color: #333;
  border: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* Añadir transición de desvanecimiento */
.slide {
  display: none;
  transition: opacity 0.8s ease-in-out;
}

/* Efecto hover */
.slider-container:hover .prev,
.slider-container:hover .next {
  background-color: rgba(0, 0, 0, 0.8);
}/*# sourceMappingURL=custom.css.map */

.video-gallery {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
  }

  .video-gallery h1.text-medium.margin-10px-bottom {
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-bottom: 20px;
    color: #000000;
  }

  .video-gallery .video-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
  }

  .video-gallery .video-item:hover {
    transform: translateY(-5px);
  }

  .video-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

.video-gallery .btn-watch {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background-color: #7e1bcb;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.3s ease;
}

  .video-gallery .video-item:hover .btn-watch {
    transform: scale(0.95);
    background-color: #a50000;
  }

  .whitecolor{background-color: white;}