/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: 'MetricHPE';
    src: url('../fonts/MetricHPE-Regular.eot');
    src: url('../fonts/MetricHPE-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/MetricHPE-Regular.woff2') format('woff2'),
         url('../fonts/MetricHPE-Regular.woff') format('woff'),
         url('../fonts/MetricHPE-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MetricHPE-Bold';
    src: url('../fonts/MetricHPE-Bold.eot');
    src: url('../fonts/MetricHPE-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/MetricHPE-Bold.woff2') format('woff2'),
         url('../fonts/MetricHPE-Bold.woff') format('woff'),
         url('../fonts/MetricHPE-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MetricHPE-Black';
    src: url('../fonts/MetricHPE-Black.eot');
    src: url('../fonts/MetricHPE-Black.eot?#iefix') format('embedded-opentype'),
         url('../fonts/MetricHPE-Black.woff2') format('woff2'),
         url('../fonts/MetricHPE-Black.woff') format('woff'),
         url('../fonts/MetricHPE-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

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

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

strong{
  font-family: 'MetricHPE';
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'MetricHPE';
}

body {
  width: 100vw;
  height: 100vh;
  background:  #fff url("../img/itw-fullscreen-bg3.jpg") no-repeat;
  background-size: cover;
  font-family: 'MetricHPE';
}

.modal{
  z-index: 9999;
}
.modal-dialog {
  margin-top: 1rem;
}
.modal-content{
  border-radius: 0px;
}
.modal-header{
  background: #fff;
  border-radius: 0px;
}
.modal-header .close{
  color: #000;
}
.modal-header .modal-title{
  color: #333333;
  font-family: 'MetricHPE-Bold';
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #000;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ff0000;
}

.section-header p {
  margin: 0 auto;
  color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 50px;
  font-family: 'MetricHPE-Bold';
  padding-bottom: 5px;
  margin-bottom: 0;
  position: relative;
}

.section-title p {
  line-height: 40px;
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.blue-bg{
  background: #1a2f5a;
}

.white-txt{
  color: #fff;
}
.yellow-txt{
  color: #fbe41f;
}

@media (max-width: 680px) {
  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    line-height: 25px;
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(0,0,0, 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #cacaca;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(0,0,0, 0.85);
  color: #fff;
}

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

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

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

.header.sticked {
  background: rgba(0,0,0,0.8);
  box-shadow: 0px 2px 20px rgba(0,0,0, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: #ff0000;
  font-family: 'MetricHPE-Bold';
}

.header .logo h1 span {
  color: #000;
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: #fff;
  background: #000;
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: 'MetricHPE-Bold';
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: rgba(0,0,0, 0.85);
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 26px 0px;
    font-family: 'MetricHPE-Bold';
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    border:1px solid #fff;
    border-radius: 50px;
    margin: 0 5px;
  }

  .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 {
    background: #fbe41f;
    border:1px solid #fbe41f;
    color: #000;
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: #fff;
    background: #ff0000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #ff0000;
    transition: 0.3s;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(0,0,0, 0.5);
  }

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

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

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

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(255,255,255, 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #fff;
    background: #000;
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(0,0,0, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255, 0.7);
    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: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(0,0,0, 0.3);
  }

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

  .mobile-nav-toggle {
    display: block !important;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: #fff;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .container {
  padding: 60px 0 0;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}


#hero .info-txt{
  background: #012b5b;
  width: 100%;
  padding: 60px 90px 100px 80px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

#hero .info-txt img{
  width: 25%;
  padding-bottom: 20px;
}

#hero .hero-img img{
  position: relative; 
  bottom: 0;
  left: 0;
  margin-left: -150px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  color: #fff;
  font-family: 'MetricHPE-Bold';
}

#hero h1 span {
  display: block;
}

#hero h2 {
  margin: 0 0 10px 0;
  font-size: 37px;
  font-weight: 300;
  color: #fff;
  font-family: 'MetricHPE-Bold';
}

#hero h2 span {
  color: #000;
}

#hero p {
  color: #fff;
  margin: 0;
  font-size: 19px;
  font-weight: 100;
}

#hero .animated {
  margin-bottom: 0px;
  animation: left-right 2s ease-in-out infinite alternate-reverse both;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .carousel-item.slide1 {
  background: url("../img/header_itw_bg2.jpg") center center; 
  background-size: cover;
}

#hero .carousel-item.slide2 {
  background: url("../img/header_fondo_slide2_itw.jpg") center center; 
  background-size: cover;
}

#hero .carousel-item.slide3 {
  background: url("../img/header_fondo_slide3_itw.jpg") center center; 
  background-size: cover;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: left;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 25px;
}


#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.8);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #f1f1f1;
}

#hero .btn-get-started {
  font-family: 'MetricHPE-Bold';
  font-size: 25px;
  display: inline-block;
  padding: 5px 30px 3px;
  border-radius: 50px;
  transition: 0.5s;
  color: #000;
  animation-delay: 0.8s;
  background: #fbe41f;
  border: 2px solid #fbe41f;
  margin-right: 10px;
  text-align: center;
}

#hero .btn-get-started:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #000;
}

@media (max-width: 992px) {
  #hero {
    height: 600px;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero .btn-get-started {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (min-width: 992px) {
  #hero .animated {
    max-width: 80%;
  }
}

@media (max-width: 991px) {
  #hero .animated {
    max-width: 60%;
  }
  .hero-animated .hero-img{
    text-align: center;
  }
  #hero .hero-img img{
    position: initial; 
    margin-left: 0px;
  }
  .text-col{
    align-items: center;
  }
  #hero .info-txt{
    padding: 60px 40px 60px 40px;
  }
  #hero h1 {
    font-size: 32px;
  }
  #hero .info-txt img{
    width: 100px;
  }
  #hero {
    height: 700px;
  }
}

@media (max-width: 575px) {
  #hero .animated {
    max-width: 80%;
  }
  #hero {
    height: 600px;
  }
}

@media (max-width: 640px) {
  #hero h1 {
    font-size: 32px;
  }
  #hero h2 {
    font-size: 20px;
  }

  #hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  #hero .info-txt{
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0px;
}

.hero-animated.home {
  background: url("../img/header_itw_bg2.jpg") center center;
  background-size: cover;
}
.hero-animated.recursos {
  background: url("../img/header_itw_bg.jpg") center center;
  background-size: cover;
}
.hero-animated.nosotros {
  background: url("../img/header_itw_bg3.jpg") center center;
  background-size: cover;
}
.hero-animated.soluciones {
  background: url("../img/header_fondo_soluciones_itw.jpg") center center;
  background-size: cover;
}
.hero-animated.compute {
  background: url("../img/header_fondo_compute_itw.jpg") center center;
  background-size: cover;
}

.hero-animated .container {
  padding: 60px 0 0;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}

.text-col{
  align-items: flex-end;
}

.hero-animated .info-txt{
  background: #012b5b;
  width: 100%;
  padding: 60px 90px 60px 80px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.hero-animated .info-txt img{
  width: 33%;
  padding-bottom: 20px;
}

.hero-animated .hero-img img{
  position: relative; 
  bottom: 0;
  left: 0;
  margin-left: -150px;
}

.hero-animated h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  color: #fff;
  font-family: 'MetricHPE-Bold';
}

.hero-animated h1 span {
  display: block;
}

.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 37px;
  font-weight: 300;
  color: #fff;
  font-family: 'MetricHPE-Bold';
}

.hero-animated h2 span {
  color: #000;
}

.hero-animated p {
  color: #fff;
  margin: 0;
  font-size: 19px;
  font-weight: 100;
}

.hero-animated .animated {
  margin-bottom: 0px;
  animation: left-right 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
  .hero-animated .hero-img{
    text-align: center;
  }
  .hero-animated .hero-img img{
    position: initial; 
    margin-left: 0px;
  }
  .text-col{
    align-items: center;
  }
  .hero-animated .info-txt{
    padding: 60px 40px 60px 40px;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .hero-animated h1 {
    font-size: 32px;
  }
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-animated .info-txt{
    width: 100%;
  }
}

@keyframes left-right {
  0% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(-10px);
  }
}

/*--------------------------------------------------------------
# Interior Page Hero
--------------------------------------------------------------*/

.hero-animated-inter {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0px;
}

.hero-animated-inter .container {
  padding: 60px 30px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-animated-inter .container.page1 {
  background: url("../img/header_pag_1.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page2 {
  background: url("../img/header_pag_2.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page3 {
  background: url("../img/header_pag_3.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page4 {
  background: url("../img/header_pag_4.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page5 {
  background: url("../img/header_pag_5.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page6 {
  background: url("../img/header_pag_6.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page7 {
  background: url("../img/header_pag_7.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page8 {
  background: url("../img/header_pag_8.jpg") center center;
  background-size: cover;
}
.hero-animated-inter .container.page9 {
  background: url("../img/header_pag_9.jpg") center center;
  background-size: cover;
}

.hero-animated-inter h2 {
  margin: 0 0 10px 0;
  font-family: 'MetricHPE-Bold';
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.20);
}

.hero-animated-inter h2 span {
  color: #fff;
  display: block;
}

.hero-animated-inter p {
  color: #fff;
  margin: 0 0 30px 0;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
}

.hero-animated-inter p span{
  display: block;
}

.hero-animated-inter .animated {
  margin-bottom: 60px;
  width: 180px;
}

@media (min-width: 992px) {
  .hero-animated-inter .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated-inter .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated-inter .animated {
    max-width: 80%;
  }
}


@media (max-width: 640px) {
  .hero-animated-inter h2 {
    font-size: 38px;
  }

  .hero-animated-inter p {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Nosotros Header
--------------------------------------------------------------*/
#inside-header {
  width: 100%;
  height: 400px;
}

#inside-header.contacto-title {
  background: linear-gradient(45deg, rgba(23, 69, 123, 0.1), rgba(23, 69, 123, 0.3)), url("../img/header_fondo_contacto_itw.jpg") no-repeat center center;
  background-size: cover;
}

#inside-header .container {
  padding-top: 72px;
  padding-left: 100px;
}

#inside-header .logo {
  width: 100px;
}

#inside-header h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: 'MetricHPE-Bold';
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.20);
}

#inside-header h1 span{
  display: block;
}

#inside-header h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 34px;
  font-family: 'MetricHPE-Bold';
}

#inside-header p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 100;
  font-family: 'MetricHPE';
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.20);
}

#inside-header .hero-img {
  margin-bottom: -200px;
}

#inside-header .hero-img.mb-dist {
  margin-bottom: -50px;
}

#inside-header .hero-img img {
  max-width: 400px;
}


#inside-header .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #inside-header {
    height: 600px;
    text-align: center;
  }

  #inside-header .container {
    padding-left: 0px;
  }

  #inside-header .animated {
    animation: none;
  }

  #inside-header .hero-img {
    text-align: center;
    margin-bottom: 0px;
  }

  #inside-header .hero-img.mb-dist {
    margin-bottom: 0px;
    padding-top: 50px;
  }

  #inside-header .hero-img img {
    width: 30%;
  }
  #inside-header .logo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #inside-header h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #inside-header p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #inside-header .hero-img img {
    width: 50%;
  }

  #inside-header .hero-img.mb-dist img {
    width: 50%;
  }

  #inside-header .hero-img.mb-dist {
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  #inside-header .container {
    padding: 0px 30px;
  }

  #inside-header .hero-img img {
    width: 50%;
  }

  #inside-header .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #inside-header .hero-img.mb-dist {
    padding-top: 0px;
  }
}

/*--------------------------------------------------------------
# home
--------------------------------------------------------------*/
.home{
  padding: 0;
}
.home .info-banner{
  background: #fbe41f;
  padding: 40px 60px 30px;
}

.home .info-banner h2 {
  font-size: 40px;
  color: #1a2f5a;
  font-family: 'MetricHPE-Bold';
  margin-bottom: 0;
}

.home .info-banner p {
  font-size: 28px;
  color: #1a2f5a;
}

.home .icon-set{
  background: linear-gradient(45deg, rgba(23, 69, 123, 0.1), rgba(23, 69, 123, 0.3)), url("../img/imagenHi_home_itw.jpg") no-repeat center center;
  background-size: cover;
  padding: 20px;
}

.home .icon-set .icon-box {
  padding: 20px;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

.home .icon-set .icon-box .icon {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .icon-set .icon-box .icon img {
  max-width: 170px;
  transition: 0.3s;
}


.home .icon-set .icon-box .info-txt {
  padding: 15px;
  margin-top: 15px;
  text-align: center;
}


.home .icon-set .icon-box .info-txt h4 {
  margin-bottom: 0px;
  font-size: 30px;
  font-family: 'MetricHPE-Bold';
  color: #fbe41f;
}

.home .icon-set .icon-box .info-txt h3 {
  margin-bottom: 15px;
  font-size: 27px;
  font-family: 'MetricHPE-Bold';
  color: #fbe41f;
}


.home .icon-set .icon-box .info-txt p {
  line-height: 34px;
  font-size: 25px;
  margin-bottom: 0;
  color: #fff;
}

.home .icon-set .icon-box:hover {
  transform: translateY(-10px);
}

.home .icon-set .icon-box:hover h4 a {
  color: #47b2e4;
}

@media (max-width: 991px) {
  .home .info-banner{
    padding: 40px 40px 30px;
  }
  .home .info-banner h2{
    font-size: 30px;
  }
  .home .info-banner p{
    font-size: 20px;
  }
}

@media (max-width: 680px) {
  .home .icon-set .icon-box .info-txt p {
    line-height: 25px;
    font-size: 20px;
  }
  .home .icon-set .icon-box .icon {
    width: 150px;
    height: 150px;
}

.home .icon-set .icon-box .icon img {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Flip Cards
--------------------------------------------------------------*/
.flip-cards {
  padding: 20px 0px 60px;
}

.flip-cards .flip-card {
  background-color: transparent;
  width: 100%;
  min-height: 300px;
  perspective: 1000px;
}

.flip-cards .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-cards .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-cards .flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-cards .flip-card-front {
  background-color: #1A2F5A;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.flip-cards .flip-card-front h4{
  color: #fbe41f;
  font-size: 30px;
  font-family: 'MetricHPE-Bold';
}

.flip-cards .flip-card-back {
  background-color: #1A2F5A;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 30px;
}

.flip-cards .flip-card-back p{
  color: white;
  font-size: 22px;
}


/*--------------------------------------------------------------
# Soluciones
--------------------------------------------------------------*/
.soluciones{
  padding: 0;
}

.soluciones .posts-list .solucion-box {
  padding: 120px 30px 80px;
  height: 100%;
  border:1px solid #fff;
  text-align: center;
  background-size: cover;
}

.back1{
  background: url("../img/imagen_1.jpg") center center;
}
.back2{
  background: url("../img/imagen_2.jpg") center center;
}
.back3{
  background: url("../img/imagen_3.jpg") center center;
}
.back4{
  background: url("../img/imagen_4.jpg") center center;
}
.back5{
  background: url("../img/imagen_5.jpg") center center;
}
.back6{
  background: url("../img/imagen_6.jpg") center center;
}
.back7{
  background: url("../img/imagen_7.jpg") center center;
}
.back8{
  background: url("../img/imagen_8.jpg") center center;
}
.back9{
  background: url("../img/imagen_9.jpg") center center;
}

.soluciones .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.soluciones .posts-list .title {
  font-size: 24px;
  font-family: 'MetricHPE-Bold';
  padding: 0;
  margin: 20px 0 0 0;
}

.soluciones .posts-list .title a {
  color: #fbe41f;
  transition: 0.3s;
}

.soluciones .posts-list .title a:hover {
  color: #fbe41f;
  text-decoration: underline;
}

.soluciones .posts-list .content {
  margin-top: 20px;
}

.soluciones .posts-list .content p{
  color: #fff;
  font-size: 18px;
  font-family: 'MetricHPE';
  font-weight: 100;
  padding-bottom: 50px;
}

.soluciones .posts-list .read-more a {
  display: inline-block;
  font-family: 'MetricHPE-Bold';
  background: #fbe41f;
  color: #000;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 19px;
  border-radius: 50px;
}

.soluciones .posts-list .read-more a:hover {
  background: #fff;
  color: #000;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .container {
  background: #fbe41f;
  padding: 60px 60px;
}
.contact .container.modal-form {
  background: none;
  padding: 0px 10px;
}
.contact .member {
  padding: 30px;
  border:1px solid #333;
  border-radius: 10px;
  background: #fff;
  transition: 0.5s;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0px;
}

.contact .member img {
  width: 120px;
  transition: ease-in-out 0.3s;
}

.contact .member:hover {
  transform: translateY(-10px);
}

.contact .member .member-info {
  padding-left: 30px;
}

.contact .member h4 {
  font-size: 22px;
  color: #000;
  font-family: 'MetricHPE-Bold';
  width: 100%;
}

.contact .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.contact .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.contact .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.contact .contact-us {
  padding: 10px 20px;
  
}

.contact .contact-us img{
  border-radius: 20px;
}

.contact .contact-us .contact-us-info{
  padding: 20px 0px;
}

.contact .contact-us .contact-us-info h4{
  font-size: 40px;
  font-family: 'MetricHPE-Bold';
  color: #1a2f5a;
  padding-top: 10px;
}

.contact .contact-us .contact-us-info h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #17457b;
}

.contact .contact-us .contact-us-info p{
  font-family: 'MetricHPE';
  font-weight: 100;
  font-size: 20px;
  color: #1A2F5A;
  padding-top: 15px;
}

.contact .hero-form{
  background: #1a2f5a;
  padding: 30px;
  border-radius: 10px;
}
.contact .hero-form h1{
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-family: 'MetricHPE';
  font-weight: 700;
  padding: 10px 40px;
}

.contact .hero-form h3{
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: 'MetricHPE';
  padding: 10px 40px;
}

.contact .hero-form .php-email-form {
  width: 100%;
}

.contact .hero-form .php-email-form a{
  color: #fbe41f;
}

.contact .hero-form .php-email-form a:hover{
  color: #fff;
}

.contact .hero-form .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .hero-form .php-email-form .validate {
  display: none;
  color: yellow;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .hero-form .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .hero-form .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .hero-form .php-email-form .loading {
  display: none;
  background: none;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.contact .hero-form .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .hero-form .php-email-form input, #hero .hero-form .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 10px;
}

.contact .hero-form .php-email-form input:focus, #hero .hero-form .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .hero-form .php-email-form label, #hero .hero-form .php-email-form i {
  color: #fff;
}

.contact .hero-form .php-email-form input[type="text"] {
  height: 35px;
}

.contact .hero-form .php-email-form textarea {
  padding: 10px 12px;
}

.contact .hero-form .php-email-form button[type="submit"] {
  background: #fff;
  font-family: 'MetricHPE-Bold';
  border: 0;
  padding: 12px 34px;
  color: #012b5b;
  transition: 0.4s;
  border-radius: 10px;
  font-size: 22px;
}

.contact .hero-form .php-email-form button[type="submit"]:hover {
  background: #fbe41f;
  color: #000;
}

.contact .hero-form .php-email-form input[type="checkbox"]{
  position: absolute;
  left:-999px;
}

.contact .hero-form .php-email-form input[type="checkbox"]:focus + span{
  color:#46c0ef;
}
.contact .hero-form .php-email-form label{
  cursor: pointer;
}

.contact .hero-form .php-email-form label input[type="checkbox"] + span{
  font-size: 16px;
  font-weight: 100;
}

.contact .hero-form .php-email-form label input[type="checkbox"] + span:before { 
  font-family: FontAwesome;
  content: "\f096";  
  display: inline-block;
  font-weight: 100;
  font-style: normal;
  font-size: 16px;
  text-align:center;
  letter-spacing: 6px;
  }
.contact .hero-form .php-email-form label input[type="checkbox"]:checked + span:before { 
  content: "\f046";letter-spacing: 3px; 
} /* checked icon */
.contact .hero-form .php-email-form label input[type="checkbox"]:indeterminate + span:before{
  content: "\f147";letter-spacing: 6px;
}

@media (max-width: 991px) {
  .contact .member {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contact .member h4 {
    text-align: center;
    padding-top: 20px;
  }
  .contact .member .member-info {
    padding-left: 0px;
  }
  .contact .contact-us {
    text-align: center;  
  }
  .contact .contact-us .contact-us-info h4::after {
    left: calc(50% - 20px);
    position: absolute;
  }
}
@media (max-width: 680px) {
  .contact .hero-form h1{
    padding: 10px 20px;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .contact .container {
    padding: 60px 20px;
  }
}

/*--------------------------------------------------------------
# Soluciones Storage
--------------------------------------------------------------*/
.soluciones-storage{
  padding: 60px 30px;
  background: #1a2f5a;
}
.soluciones-storage .content{
  padding: 0px 30px;
}
.soluciones-storage .content h2{
  font-size: 48px;
  font-family: 'MetricHPE-Bold';
  color: #fff;
}
.soluciones-storage .content h2 span{
  display: block;
}
.soluciones-storage .content h5{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.soluciones-storage .content p{
  font-size: 25px;
  color: #fff;
}

.soluciones-storage .member {
  padding: 30px;
  background: #fbe41f;
  transition: 0.5s;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0px;
}

.soluciones-storage .member.flat {
  background: none;
  border: 3px solid #fbe41f;
}

.soluciones-storage .member img {
  max-width: 30%;
  animation: left-right 2s ease-in-out infinite alternate-reverse both;
  transition: ease-in-out 0.3s;
}

.soluciones-storage .member:hover {
  transform: translateY(-10px);
}

.soluciones-storage .member .member-info {
  padding-left: 30px;
}

.soluciones-storage .member h4 {
  font-size: 35px;
  color: #1a2f5a;
  font-family: 'MetricHPE-Bold';
  width: 100%;
}

.soluciones-storage .member.flat h4 {
  color: #fff;
}

.soluciones-storage .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.soluciones-storage .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.soluciones-storage .member p {
  margin: 10px 0 0 0;
  font-size: 28px;
  line-height: 32px;
  color: #1a2f5a;
  padding-bottom: 15px;
}

.soluciones-storage .member.flat p {
  color: #fff;
}

.soluciones-storage .member p strong{
  font-family: 'MetricHPE-Bold';
}

@media (max-width: 680px) {
  .soluciones-storage .content{
    padding: 0px;
  }
  .soluciones-storage .content h2{
    font-size: 35px;
  }
  .soluciones-storage .content p{
    font-size: 20px;
  }
  .soluciones-storage .member {
    flex-direction: column;
    text-align: center;
  }
  .soluciones-storage .member h4 {
    padding-top: 15px;
    font-size: 28px;
  }
  .soluciones-storage .member p {
    font-size: 20px;
    line-height: 25px;
  }
  .soluciones-storage .member .member-info {
    padding-left: 0px;
  }
  .soluciones-storage .member img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.feautures{
  padding: 20px 30px 80px;
  background: #1a2f5a;
}

.feautures .icon-box {
  padding: 20px 30px;
  transition: all ease-in-out 0.4s;
  width: 100%;
  border: 3px solid #fbe41f;
}

.feautures .icon-box.duo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feautures .icon-box .icon {
  background: #fbe41f;
  border-radius: 50%;
  padding: 10px;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feautures .icon-box .icon img {
  max-width: 130px;
  transition: 0.3s;
}

.feautures .icon-box.duo .icon {
  background: #fbe41f;
  border-radius: 50%;
  padding: 10px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feautures .icon-box.duo .icon img {
  max-width: 80px;
  transition: 0.3s;
}

.feautures .icon-box .info-txt {
  padding: 15px;
  margin-top: 15px;
  text-align: center;
}

.feautures .icon-box.duo .info-txt {
  padding: 15px;
  margin-top: 15px;
  text-align: left;
}

.feautures .icon-box .info-txt h4 {
  margin-bottom: 15px;
  font-size: 27px;
  font-family: 'MetricHPE-Bold';
  color: #fff;
}

.feautures .icon-box .info-txt h3 {
  margin-bottom: 15px;
  font-size: 27px;
  font-family: 'MetricHPE-Bold';
  color: #fbe41f;
}


.feautures .icon-box .info-txt p {
  line-height: 34px;
  font-size: 25px;
  margin-bottom: 0;
  color: #fff;
}

.feautures .icon-box:hover {
  transform: translateY(-10px);
}

.feautures .icon-box:hover h4 a {
  color: #47b2e4;
}

@media (max-width: 991px) {
  .feautures .icon-box.duo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .feautures .icon-box.duo .info-txt {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .feautures .icon-box .info-txt p {
    line-height: 25px;
    font-size: 20px;
  }
  .feautures .icon-box .icon {
    width: 150px;
    height: 150px;
}

.feautures .icon-box .icon img {
    max-width: 80px;
  }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta{
  padding: 0px 0px 80px;
  background: #1a2f5a;
}

.cta .content{
  padding: 0px;
}

.cta .member {
  padding: 0px 20px;
  transition: 0.5s;
  height: auto;
  display: flex;
  margin: 0px;
}

.cta .member img {
  max-width: 30%;
  border-radius: 20px;
  transition: ease-in-out 0.3s;
}

.cta .member:hover {
  transform: translateY(-10px);
}

.cta .member .member-info {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.cta .member h4 {
  font-size: 35px;
  color: #fbe41f;
  font-family: 'MetricHPE-Bold';
  width: 100%;
}

.cta .member h4 span{
  display: block;
}

.cta .member p {
  margin: 10px 0 0 0;
  font-size: 28px;
  line-height: 32px;
  color: #fff;
}

.cta .member p span{
  display: block;
  font-family: 'MetricHPE-Bold';
}

.cta .member .cta-btn {
  font-size: 25px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px 5px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: #fbe41f;;
  font-family: 'MetricHPE-Bold';
  color: #1a2f5a;
}

.cta .member .cta-btn:hover {
  background: #fff;
  color: #1a2f5a;
}

@media (max-width: 991px) {
  .cta .content{
    padding: 0px;
  }
  .cta .member {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .cta .member h4 {
    padding-top: 15px;
    font-size: 28px;
  }
  .cta .member p {
    font-size: 20px;
    line-height: 25px;
  }
  .cta .member .member-info {
    padding-left: 0px;
  }
  .cta .member img {
    max-width: 50%;
  }
  .cta .member .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Footer Cta
--------------------------------------------------------------*/
.footer-cta {
  background: #1a2f5a;
  padding: 60px 0;
}

.footer-cta h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.footer-cta p {
  color: #fff;
}

.footer-cta .cta-btn {
  font-size: 25px;
  display: inline-block;
  padding: 10px 30px 5px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: #fbe41f;;
  font-family: 'MetricHPE-Bold';
  color: #000;
}

.footer-cta .cta-btn:hover {
  background: #fff;
  color: #1a2f5a;
}

@media (max-width: 1024px) {
  .footer-cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .footer-cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Title Gracias
--------------------------------------------------------------*/

.title-gracias{
  padding: 180px 40px;
  background: #fff url("../img/itw-fullscreen-bg4.jpg") center center no-repeat;  
  background-size: cover;
}
.title-gracias h4{
  color: #1a2f5a;
  font-size: 50px; 
  text-align: center;
  padding: 0 40px;
  font-family: 'MetricHPE-Bold';
}
.title-gracias p{
  color: #000;
  font-size: 30px; 
  text-align: center;
  padding: 0 40px;
}

.title-gracias .cta-btn {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fbe41f;
  color: #000;
  background: #fbe41f;
  text-transform: uppercase;
  font-family: 'MetricHPE-Bold';
}

.title-gracias .cta-btn i{
  font-size: 22px;
}

.title-gracias .cta-btn:hover {
  background: #fff;
  border: 2px solid #fbe41f;
  color: #000;
}

@media (max-width: 991px) {
  .title-gracias{
    padding: 80px 30px;  
  }
  .title-gracias h4{
    font-size: 30px; 
  }
  .title-gracias p{
    font-size: 22px; 
    padding: 0px;
  }
  .title-gracias .cta-btn {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Long Title
--------------------------------------------------------------*/
.long-title{
  padding: 30px 0px 10px;
  background: #fbe41f;
}
.long-title h1{
  color: #1a2f5a;
  font-size: 50px; 
  text-align: center;
  padding: 0 40px;
  font-family: 'MetricHPE-Bold';
}
@media (max-width: 991px) {
  .long-title h1{
    font-size: 30px; 
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients{
  padding: 80px 0px 80px 0px;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #17457b;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #17457b;
}

.clients .swiper-slide img {
  opacity: 0.8;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-button-prev,
.clients .swiper-button-next{
  color: #000;
}

/* the new container */
.clients .swiper{
    position: relative;
    width: 100%;
    padding: 0 40px;
}

/* fix the buttons positions */
.clients .swiper-button-prev {
    left: 0;
}

.clients .swiper-button-next {
    right: 0;
}

/* Owl Carousel */
.clients .owl-carousel .card{
    border: none;
}
.clients .owl-carousel .card .card-text{
    text-align: center;
    font-size: 14px;
}
.clients .owl-carousel .card .card-img-top{
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .owl-carousel .card .card-img-top:hover{
  opacity: 1;
  filter: grayscale(0);
}

/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/
.about-us{
  padding: 60px 0px 20px;
  background: #1a2f5a;
}

.about-us p{
  color: #fff;
  font-size: 24px;
  padding: 0px 30px;
}
@media (max-width: 991px) {
  .about-us p{
    color: #fff;
    font-size: 20px;
    padding: 0px 30px;
  }
}

@media (max-width: 575px) {
  .about-us{
    padding: 60px 20px;
    background: #1a2f5a;
  }
}

.mision-vision{
  background: rgb(26,47,90);
  background: linear-gradient(180deg, rgba(26,47,90,1) 20%, rgba(255,255,255,0) 20%), url("../img/itw-fullscreen-bg4.jpg");
  padding: 0;
}

.mision-vision .content{
  background: #fbe41f;
  padding: 60px 80px;
}

.mision-vision .content .row-title{
  padding: 10px 0;
}

.mision-vision .content .row-title h2{
  font-size: 40px;
  color: #1A2F5A;
  font-family: 'MetricHPE-Bold';
}

.mision-vision .content .solucion-row{
  padding: 0px;
  margin: 0px 0px 30px;
}

.mision-vision .content .solucion-row .card{
  border-radius: 10px;
  border: 0px;
}

.mision-vision .content .card-img-top{
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 0px;
  height: 100%;
}

.mision-vision .content .card-body{
  padding: 30px;
}

.mision-vision .content .card-body .card-text{
  width: 100%;
}

.mision-vision .content .card-body p{
  font-size: 20px;
  line-height: 24px;
  color: #1A2F5A;
}

.mision-vision .content .card-body h4{
  font-size: 30px;
  color: #1A2F5A;
  font-family: 'MetricHPE-Bold';
}


@media (max-width: 1200px) {
  .mision-vision .content .card-body .card-text{
    width: 100%;
    font-size: 16px;
}
  .mision-vision .content .solucion-row{
    padding: 0px 30px;
  }
}

@media (max-width: 991px) {
  .mision-vision .content .card-img-top{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .mision-vision .content .card-body {
    width: 100%;
    text-align: center;
  }
  .mision-vision .content .row-title h2{
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .mision-vision .content .solucion-row{
    padding: 0px 20px;
  }
  .mision-vision .content{
    padding: 60px 40px;
  }
}

.tu-aliado{
  padding: 0px;
  background: #fff;
}

.tu-aliado .container{
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url("../img/imagenHi_home_itw.jpg") no-repeat center center;
  background-size: cover;
  padding: 60px 100px;
}

.tu-aliado h2{
  font-size: 35px;
  color: #fff;
  font-family: 'MetricHPE-Bold';
  padding-bottom: 30px;
}

.tu-aliado .inner-text{
  border:5px solid #fbe41f;
  padding: 45px 0 30px;
}

.tu-aliado .inner-text h4{
  font-size: 25px;
  color: #fbe41f;
  font-family: 'MetricHPE-Bold';
}

.tu-aliado .inner-text p{
  font-size: 22px;
  color: #fbe41f;
  padding: 0 100px;
}

@media (max-width: 991px) {
  .tu-aliado .inner-text p{
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .tu-aliado .container{
    padding: 60px 50px;
  }
}

/*--------------------------------------------------------------
# Solutions-info
--------------------------------------------------------------*/
.solutions-info{
  padding: 60px 0px;
  background: #1a2f5a;
}

.solutions-info p{
  color: #fff;
  font-size: 24px;
  padding: 0px 30px;
}

.solutions-info .btn-learn-more {
  font-family: 'MetricHPE-Bold';
  font-size: 30px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px 5px;
  border-radius: 50px;
  transition: 0.3s;
  color: #000;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #FBE41F;
  border: 2px solid #FBE41F;
  margin-left: 30px;
  text-align: center;
}

.solutions-info .btn-learn-more:hover {
  color: #fff;
  text-decoration: none;
  background: none;
}

@media (max-width: 991px) {
  .solutions-info p{
    color: #fff;
    font-size: 20px;
    padding: 0px 30px;
  }
  .solutions-info .btn-learn-more {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .solutions-info{
    padding: 60px 20px;
    background: #1a2f5a;
  }
  .solutions-info .btn-learn-more {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Solutions Flip Cards
--------------------------------------------------------------*/
.solutions-flip-cards {
  padding: 20px 0px 60px;
}
.solutions-flip-cards.white-bg {
  background: #fff;
}

.solutions-flip-cards .info-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  min-height: 300px;
}

.solutions-flip-cards .info-box .btn-watch-content {
  color: #000;
  font-size: 27px;
  font-family: 'MetricHPE-Bold';
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin: 0px;
  padding: 16px 30px;
  color: #fff;
  line-height: 1;
  border:3px solid #fff;
  border-radius: 10px;
}

.solutions-flip-cards .info-box .btn-watch-content i {
  line-height: 1;
  font-size: 14px;
  transition: 0.3s;
  margin-left: 5px;
}

.solutions-flip-cards .info-box .btn-watch-content:hover {
  color: #000;
  background: #fbe41f;
  border: 3px solid #fbe41f;
}


.solutions-flip-cards .info-box.opc1 {
  background: url("../img/img_proLiant.jpg") no-repeat center center;
  background-size: cover;
}
.solutions-flip-cards .info-box.opc2 {
  background: url("../img/img_hpesinergy.jpg") no-repeat center center;
  background-size: cover;
}
.solutions-flip-cards .info-box.opc3 {
  background: url("../img/img_hpeoneview.jpg") no-repeat center center;
  background-size: cover;
}
.solutions-flip-cards .info-box.opc4 {
  background: url("../img/img_hpe3par.jpg") no-repeat center center;
  background-size: cover;
}
.solutions-flip-cards .info-box.opc5 {
  background: url("../img/img_hyper.jpg") no-repeat center center;
  background-size: cover;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  font-size: 14px;
}

.footer .footer-legal {
  padding: 30px 0 20px;
  background: #000;
}

.footer .footer-aviso {
  padding: 20px 0;
  background: #000;
  border-top:1px solid #333;
}

.footer .footer-legal .copyright {
  text-align: left;
}

.footer .footer-legal .copyright img {
  display: block;
  width: 100px;
}

.footer .footer-legal .copyright p {
  font-size: 14px;
  padding-top: 14px;
}


.footer .footer-aviso.credits {
  padding-top: 0px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-aviso .credits a {
  color: #f1f1f1;
  display: block;
}

.footer .footer-aviso .credits a:hover {
  color: #fbe41f;
}

.footer .footer-legal .social-links h4{
  font-size: 16px;
  color: #fff;
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #012b5b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: #fbe41f;
  color: #000;
  text-decoration: none;
}


@media (max-width: 991px) {
  .footer .footer-legal .copyright {
    text-align: center;
  }
  .footer .footer-legal .copyright img{
    margin: 0 auto;
  }
}
