#ContenedorProd1, #ContenedorProd2{
  display: none;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #f41717;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #660000 ;/*#ffc451*/
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #cccccc;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff2d49;
}

.back-to-top:hover i {
  color: #ffffff ;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #f41717;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255, 255, 255);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #040404;
}

#header .logo a span {
  color: #f41717;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff3939;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #f41717;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #f41717;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #f41717;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*---------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
    background: url("../../img/chaos/vray1.jpg") top center;/*hero-bg.jpg*/
  background-size: 100% ;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: auto;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #f41717;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: auto;
  margin: 10px 0 0 0;
  font-size: 28px;
  font-weight: bold;
}

#hero p{
  color: rgb(255, 255, 255);
  font-size: 20px;
  text-align: center;
  margin: auto;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #f41717;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #f41717;
}

#hero .icon-box:hover {
  border-color: #f41717;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    padding-top: 30px;
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #565656;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f41717;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 0px 0px 80px 0px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 10px 0px 20px 50px;
  transition: 0.3s;
}

.services .icon-box i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  padding-left: 5px;
}

.services .icon-box .encabezado {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  padding-left: 5px;
  position: relative;
  margin-top: -73px;
  margin-bottom: 30px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #f41717;
}

.services .icon-box p{
  line-height: 24px;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
  margin-left:15px;
  margin-right: 15px;
}

.services .icon-box .puntosP ul{
  line-height: 24px;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
  margin-left:15px;
  margin-right: 15px;
  margin-top: 15px;
}

  .services .icon-box e{
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #ffffff;
    background: #990000;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*background: rgba(21, 21, 21, 0.6);*/
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    /*background: rgba(21, 21, 21, 0.6);*/
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #ffc451;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f41717;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f41717;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  /*----------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 0px 0;
    background: rgb(255, 255, 255);
    min-height: 40px;
    margin-top: 10px;
  }
  
  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
    color: #000000;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #000000;
    content: "/";
  }

  #creativeCloudMedio h1{
    text-align: center;
    font-weight: bold;
  }

  #creativeCloudMedio p{
    text-align: center;
    font-size: 25px;
  }
  
  @media (max-width: 1445px) {
    #creativeCloudProductos{
      width: auto;
    }

    #creativeCloudProductos .encabezado{
      margin: auto;
    }

    #creativeCloudProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

    #acrobatProductos .encabezado{
      margin: auto;
    }
    
  }

  @media (max-width: 1200px) {
    #creativeCloudProductos .encabezado{
      margin: auto;
    }

    #creativeCloudProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

    #acrobatProductos div{
      margin-bottom: 10px;
      padding-left: 5px;
      padding-right: 5px;
    }

    #acrobatProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #acrobatProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }
  }

  @media (max-width: 1025px) {
    #creativeCloudProductos{
      width: auto;
    }

    #creativeCloudProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #creativeCloudProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

    #acrobatProductos div{
      width: auto;
      margin: auto;
      margin-bottom: 10px;
      padding-left: 5px;
      padding-right: 5px;
    }

    #acrobatProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #acrobatProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }
  }

  @media (max-width: 995px) {
    #creativeCloudProductos{
      width: auto;
    }

    #creativeCloudProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #creativeCloudProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

    #acrobatProductos div{
      width: auto;
      margin: auto;
      margin-bottom: 10px;
      padding-left: 5px;
      padding-right: 5px;
    }

    #acrobatProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #acrobatProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

  }

  @media (max-width: 700px) {
    .breadcrumbs {
      margin-top: 18px;
    }
  
    .breadcrumbs .d-flex {
      display: block !important;
    }
  
    .breadcrumbs ol {
      display: block;
    }
  
    .breadcrumbs ol li {
      display: inline-block;
    }
  }

  @media (max-width: 450px) {
    .breadcrumbs {
      margin-top: 14px;
      font-size: 12px;
    }

    .breadcrumbs ol li+li{
      padding-left: 2px;
    }

    .breadcrumbs ol li+li::before{
      padding-right: 4px;
    }

  }

  @media (max-width: 380px) {
    .breadcrumbs {
      margin-top: 14px;
      font-size: 11px;
    }

    .breadcrumbs ol li+li{
      padding-left: 2px;
    }

    .breadcrumbs ol li+li::before{
      padding-right: 4px;
    }

    #creativeCloudProductos{
      width: auto;
    }

    #creativeCloudProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #creativeCloudProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }

    #acrobatProductos{
      width: auto;
    }

    #acrobatProductos .encabezado{
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: auto;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    #acrobatProductos .icon{
      display: flex;
      position: relative;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-top: 10px;
    }
  }
  