@charset "utf-8";
/* CSS Custom */
/*@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Palanquin+Dark:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pompiere&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pompiere&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Actor&display=swap');

@import url(header.css);
@import url(middle.css);
@import url(content-home.css);
@import url(form.css);
@import url(footer.css);
@import url(components.css);
:root {
  --color-black: black;
  --color-white: #fffef4;
  --color-gray: #f2f3f5;
  --color-primary: #f2292f;
  --color-secondary: #ff832e;
  --color-other: #0c183e;
  --color-default: #3a3a3a;
  --color-blue:#2971af;

  --primary: var(--color-secondary);
  --secondary: #5F656F;
  --light: #F5F5F5;
  --dark: #02245B;
  /*
  --font-primary: "Palanquin Dark", sans-serif;
  --font-secondary: "Hind", sans-serif;
  --font-default: "Poppins", sans-serif;*/
  --font-other: "Pompiere", sans-serif;
  --font-primary: "Kumbh Sans", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-default: "Kumbh Sans", sans-serif;
  --font-menu: "Actor", sans-serif;
}
.text-primary{
  color: var(--color-secondary) !important;
  /*color: var(--color-other) !important; */
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
  color: var(--color-primary);
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* ---------------------------------------------------------- */
/* ESTILOS PERSONALES PERMANENTES --------------------------- */
/* ---------------------------------------------------------- */
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
}
.pagina-error img {
  width: 100% !important;
  height: auto;
  max-width: 800px;
}
.container_big{
  max-width: 1400px !important;
}
/* ---------------------------------------------------------- */
.red, .green, .blue, .cian, .magenta, .yellow, .black {
  min-height: 113px;
  max-height: 300px;
}
.red {
  background-color: rgba(255, 0, 0, 0.3);
}
.green {
  background-color: rgba(0, 255, 0, 0.3);
}
.blue {
  background-color: rgba(0, 0, 255, 0.3);
}
.cian {
  background-color: rgba(0, 174, 239, 0.3);
}
.magenta {
  background-color: rgba(236, 0, 140, 0.3);
}
.yellow {
  background-color: rgba(255, 242, 0, 0.3);
}
.black {
  background-color: rgba(0, 0, 0, 0.3);
}
/* ---------------------------------------------------------- */
a.opacity img {
  transition: all 1s ease;
}
a.opacity:hover img {
  -webkit-filter: brightness(0.9) saturate(120%) contrast(150%) hue-rotate(15deg);
  filter: brightness(0.9) saturate(120%) contrast(150%) hue-rotate(15deg);
}
a{
  color: var(--color-blue);
  text-decoration: none;
}
.opacity-100 {
  filter: alpha(opacity=1.0) !important;
  -moz-opacity: 1.0;
  -webkit-opacity: 1.0;
  -ms-opacity: 1.0;
  -o-opacity: 1.0;
  opacity: 1.0 !important;
  text-decoration: none !important;
  transition: all 1s ease !important;
}
.opacity-100:hover {
  filter: alpha(opacity=0.5) !important;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5 !important;
}
.opacity-75 {
  filter: alpha(opacity=1.0) !important;
  -moz-opacity: 1.0;
  -webkit-opacity: 1.0;
  -ms-opacity: 1.0;
  -o-opacity: 1.0;
  opacity: 1.0 !important;
  text-decoration: none !important;
  transition: all 1s ease !important;
}
.opacity-75:hover {
  filter: alpha(opacity=0.75) !important;
  -moz-opacity: 0.75;
  -webkit-opacity: 0.75;
  -ms-opacity: 0.75;
  -o-opacity: 0.75;
  opacity: 0.75 !important;
}
.opacity--50 {
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  text-decoration: none !important;
  transition: all 1s ease !important;
}
.opacity--50:hover {
  filter: alpha(opacity=1.0);
  -moz-opacity: 1.0;
  -webkit-opacity: 1.0;
  -ms-opacity: 1.0;
  -o-opacity: 1.0;
  opacity: 1.0;
}
.filter-grayscale {
  transition: all 1s ease !important;
}
.filter-grayscale:hover {
  filter: grayscale(100%);
}
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hover {
  transition: all 1.0s ease;
}
/*------------------------------------------*/
.shadow-outer {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
}
.shadow-inner {
  -webkit-box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.5);
  -o-box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 20px 10px rgba(0, 0, 0, 0.5);
}
.shadow-text{
  text-shadow: 1px 2px 10px #000;
}
/* ---------------------------------------------------------- */
.nowrap {
  white-space: nowrap;
}
.text-color-whatsapp {
  color: #25d366 !important;
}
.text-color-facebook {
  color: #4267B2 !important;
}
.text-color-telegram {
  color: #0088CC !important;
}
.text-color-youtube {
  color: #FF0000 !important;
}
.bg-primary{
  background: var(--color-primary) !important;
}
/* ---------------------------------------------------------- */

.btn-warning{
  background: var(--color-secondary);
  color: var(--color-white);
  border: solid 1px var(--color-secondary);
  border-radius: 0px;
  font-weight: 600;
  font-family: var(--font-secondary);
  font-size: .9rem !important;
}
.btn-warning:hover{
  background: var(--color-secondary); 
  border: solid 1px var(--color-secondary);
  color: var(--color-other);
}

.btn-primary {
  width: max-content;
  height: 51px;
  margin: auto;
  margin-top: 20px;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--color-secondary);
  background-color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transition: all 1.0s ease;
}
.btn-primary i {
  margin-left: 10px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-secondary);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.50);
}
.btn-primary:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-primary:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.btn-red {
  width: max-content;
  height: 51px;
  margin: auto;
  margin-top: 20px;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--color-primary);
  background-color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transition: all 1.0s ease;
}
.btn-red i {
  margin-left: 10px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-red:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-red:hover {
  background-color: var(--color-primary);
  border-color: var(--color-secondary);
  color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.50);
}
.btn-red:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-red:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* ---------------------------------------------------------- */
/* ---------------------------------------------------------- */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
/* Extra large devices (large desktops, 1440px and up) */
@media (min-width: 1400px) {}
/* Extra large devices (large desktops, 1600px and up) */
@media (min-width: 1600px) {}