/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Raleway", sans-serif;
}

a {
  color: #F02E24;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #F02E24;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  /* background: #fff; */
  background-image: linear-gradient(to right, #313131 0%, black 100%);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #F02E24;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 996;
  background: #F02E2493;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #bd0000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  /* background: #bd0000; */
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  z-index: 1000;
  width: 100%;
  position: absolute;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 180px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo img {
  width: 160px;
  padding: 0;
  margin: 0;
}

#header #logo img.header-scrolled {
  width: 10px;
}

#header.header-transparent {
  background: #ffffff00;
}

#header.header-scrolled {
  background: #000;
  height: 75px;
  transition: all 0.5s;
}

.scrolled-offset {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #F02E24;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #F02E24;
}

.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(77, 77, 77, 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 > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #666666;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #F02E24;
}

.navbar-mobile .getstarted {
  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;
}

.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 {
  color: #F02E24;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url(../img/hero-bg.jfif) top center;
  background-size: cover; */
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

/*-------------------------------------------------------------
 #Video Background
 -------------------------------------------------------------*/

 #video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

@media (max-width: 768px) {
  #video-background {
    transform: translate(50%, 0);
  }
}


/*-------------------------------------------------------------
 #Inicio
 -------------------------------------------------------------*/

 .hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #F02E24;
  text-transform: uppercase;
}

.hero h1 span {
  color: #fff;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: #F02E24;
  border-color: #F02E24;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/* POPUP */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
  overflow-y: hidden;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.popup .close:hover {
  color: #F02E24;
  font-size: 32px;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 1220px){
  .popup{
    width: 50%;
  }
}

@media screen and (max-width: 700px){
  .popup{
    width: 95%;
  }
}

/* FORMULARIO */

.cotizador .php-email-form {
  width: 100%;
  /* border-top: 3px solid #F02E24;
  border-bottom: 3px solid #F02E24; */
  padding: 20px 17px 10px 17px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.39);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);

}

.cotizador .php-email-form .form-group {
  padding-bottom: 8px;
}

.cotizador .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.cotizador .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 0 15px 0 15px;
  font-weight: 600;
}

.cotizador .php-email-form .error-message br + br {
  margin-top: 25px;
}

.cotizador .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #00b454;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.cotizador .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.cotizador .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #00b454;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.cotizador .php-email-form .form-group {
  margin-bottom: 10px;
}

.cotizador .php-email-form label {
  padding-bottom: 3px;
  color: #000;
}

.cotizador .php-email-form input, .cotizador .php-email-form select, .cotizador .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.cotizador .php-email-form input:focus, .cotizador .php-email-form select:focus, .cotizador .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.cotizador .php-email-form input {
  height: 44px;
}

.cotizador .php-email-form textarea {
  padding: 10px 12px;
}

.cotizador .php-email-form button[type="submit"] {
  background: #F02E24;
  border: 0;
  padding: 12px 34px;
  font-weight: 700;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.cotizador .php-email-form button[type="submit"]:hover {
  background: #F02E24;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: whitesmoke;
  min-height: 40px;
  margin-top: 92px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
  background: #fff;
  padding: 50px 0 60px 0;
}

.about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /* padding-bottom: 15px; */
  padding-top: 20px;
}

.about .certified {
  padding-left: 20px;
}

.about h2 span{
  color: #F02E24;
}

.about .count-box {
  padding: 60px 0;
  width: 100%;
}

.about .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #365870;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
  color: #477392;
}

.about .content {
  font-size: 15px;
}

.about .content h2 {
  font-weight: 700;
  /* font-size: 24px; */
  color: #263d4d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 24px;
  color: #F02E24;
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about .video-box{
    padding-bottom: 10px;
  }
}

.about .video-box img{
  /* image-rendering: pixelated; */
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#F02E24 50%, #F02E24a2 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 74, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #F02E24;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

#about .container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  /* border: 2px solid #F02E24; */
}

#about .container .icon-box .icon i {
  color: #F02E24;
  font-size: 24px;
  line-height: 0;
}

#about .container .icon-box .icon img {
  width: 100%;
}


#about .container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .container .icon-box .title a {
  color: #111;
}

#about .container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Facts Section
--------------------------------*/

#facts .facts-container .section-title{
  color: #000;
}


#facts {
  background: rgb(241, 241, 241);
  padding: 50px 0 60px 0;
}

#facts .facts-container .icon-box {
  /* background: #fff; */
  background-size: cover;
  padding: 0 10px 10px 10px;
}

#facts .facts-container .icon-box:hover .icon {
  border: 2px solid #F02E24;
}

#facts .facts-container .icon-box:hover .icon i {
  color: #F02E24;
}

#facts .facts-container .icon-box .icon {
  float: left;
  /* background: #fff; */
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 2px;
  border: 2px solid #F02E24;
}

#facts .facts-container .data {
  margin-top: 50px;
}


#facts .facts-container .icon-box .icon i {
  color: #F02E24;
  font-size: 24px;
  line-height: 0;
}

#facts .facts-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#facts .facts-container .icon-box .title a {
  color: #000;
}

#facts .facts-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
  color: #000;
}

/*--------------------------------------------------------------
# equipos
--------------------------------------------------------------*/
.equipos {
  /* background: url(../img/equipos-bg.jpg) center center no-repeat; */
  background-size: cover;
  position: relative;
}

.equipos::before {
  content: '';
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.equipos .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #ffff;
  text-align: center;
}

.equipos .section-title h2 {
  color: #fff;
}

.equipos .container {
  position: relative;
}

@media (min-width: 1024px) {
  .equipos {
    background-attachment: fixed;
  }
}

.equipos .equipos-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.equipos .event-item {
  color: #fff;
}

.equipos .event-item img{
  /* image-rendering: pixelated; */
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.equipos .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #F02E24;
}

.equipos .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  /* font-weight: 700; */
  margin-bottom: 15px;
}

.equipos .container .button-equipos {
  width: 70%;
  text-align: center;
}

.equipos .container .btn-red {
  background: #F02E24;
  color: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

.equipos .container .btn-red:hover {
  background: #bd0000;
}

@media (max-width: 769px) {
  .equipos .container .button-equipos {
    width: 100%;
    text-align: center;
  }
}


.equipos .event-item ul {
  list-style: none;
  padding: 0;
}

.equipos .event-item ul li {
  padding-bottom: 10px;
}

.equipos .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F02E24;
}

.equipos .event-item p:last-child {
  margin-bottom: 0;
}

.equipos .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.equipos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.equipos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F02E24;
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  /* background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed; */
  background-size: cover;
  padding: 80px 0 80px 0;
  position: relative;
}

.about-boxes .section-header .section-title {
  font-size: 32px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-boxes::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container, .about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-boxes .card img{
  /* image-rendering: pixelated; */
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
  align-self: center;
}

.about-boxes .icon {
  /* position: absolute; */
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 2px;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 71px;
  height: 72px;
  background: #F02E24;
  z-index: 100;
}

.about-boxes .icon img{
  width: 60%;
}

.about-boxes .card:hover .icon {
  /* background: #fff; */
  border: 2px solid #F02E24;
}

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-body .description{
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: #F02E24;
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #F02E24;
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/heavy.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}

#call-to-action .cta-title {
  color: #F02E24;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #F02E24;
  border: 2px solid #F02E24;
}

/* Contact Section
--------------------------------*/
#contacto {
  background: #fff;
  padding: 80px 0 0px 0;
}

#contacto #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contacto .info {
  color: #333333;
}

#contacto .info i {
  font-size: 32px;
  color: #F02E24;
  float: left;
  line-height: 0;
}

#contacto .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contacto .info .email p {
  padding-top: 5px;
}

#contacto .social-links {
  padding: 20px 0;
}

#contacto .social-links a {
  font-size: 18px;
  background: #333;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contacto .social-links a i {
  line-height: 0;
}

#contacto .social-links a:hover {
  background: #F02E24;
  color: #fff;
}

#contacto .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contacto .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contacto .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #ce0000;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contacto .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contacto .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #ce0000;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contacto .php-email-form input, #contacto .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contacto .php-email-form input::focus, #contacto .php-email-form textarea::focus {
  background-color: #F02E24;
}

#contacto .php-email-form button[type="submit"] {
  background: #F02E24;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contacto .php-email-form button[type="submit"]:hover {
  background: #bd0000;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: rgb(0, 0, 0);
  padding: 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #000;
  border-bottom: 1px solid #000;
  padding: 30px 0 0px 0;
}

#footer .footer-top .row{
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a, #footer .cotizadoros a{
  color: #95d3ff;
  /* font-weight: 700; */
}

#footer .credits a:hover, #footer .cotizadoros a:hover{
  color: #62beff;
}

#footer .d-md-flex {
  padding-top: 26px;
  padding-bottom: 3px;
}