:root {
  --primary-color: #D92938;
  --secondary-color: #A91C28;
  --dark-primary-color: #777;
  --dark-secondary-color: #111;
  --neutral-color: #f0f2f5;
  --oferta-color: #FE9D32;
}


body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	color: #222;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 0;
}

.display-1 {
    font-size: 4em;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (max-width: 600px) { 
.display-1 {
    font-size: 3em;
}
}

.display-2 {
    font-size: 40px;
    line-height: 1.3;
}

.display-3 {
    font-size: 20px;
    line-height: 1.2;
}

.display-4 {
    font-size: 16px;
    line-height: 1.6;
}

.display-5 {
  font-size: 2rem;
  line-height: 1.3;
}

.display-7 {
  font-size: 1.4rem;
  line-height: 1.5;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.at-left {
	margin-right: 20px;
    position: relative;
    top: 6px;
}

.at-right {
	margin-left: 20px;
    position: relative;
    top: 6px;
}

img {
    max-width: 100%;
}

.logo {
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.logo img {
	max-width:200px;
}


.item-img img, .item-img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 100%;
    height: 200px;
    object-fit: cover;
}



.card-wrap .content-wrap {
    padding: 2rem;
}


.flip-clock-wrapper ul li a {
    line-height: inherit;
}

div#vip__top {
    width: fit-content;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.title-icon {
    font-size: 3rem;
    color: var(--primary-color);
    padding-right: 1rem;
}

.title-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.title-col {
    text-align: center;
    color: var(--primary-color);
}
.cards {
    display: flex;
    flex-direction: row;
}
.card-wrapper, .item-wrapper {
    overflow: hidden;
}
.card-wrapper {
    -webkit-flex: 1;
}
.card-title {
  padding: 0;
  margin: 0;
}
.card-wrapper {
  border: 1px solid var(--dark-primary-color);
  padding: 0.6rem;
  background: var(--neutral-color);
  margin-left: -1px;
  display: flex;
  justify-content: center;
}

.card-icon {
    font-size: 1.5rem;
    color: currentColor;
    padding-right: 0.8rem;
}
.card-box {
    width: fit-content;
}
@media (max-width: 992px) {
  .card-wrapper {
    width: 100%;
  }
.cards {
    flex-direction: column;
    align-items: center;
}
}


/*******************************************/
/************** Headers ********************/
/*******************************************/
header {
  position: relative;
  min-height: 300px;
  padding-top: 40px;
}


header.svg svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10vw;
  /* set height to pixels if you want angle to change with screen width */
}

header.round-bottom {
  background-image: linear-gradient(var(--primary-color), var(--secondary-color));
  border-bottom-left-radius: 50% 20%;
  z-index: 2;
  border-bottom-right-radius: 50% 20%;
}

header.cut-bottom .bg{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#fff, #fff);
  transform: skewY(-6deg);
  transform-origin: top left;
}
header.cut-bottom {
	overflow: hidden;
}


/*******************************************/
/************** Background ********************/
/*******************************************/

.bg-dark-gradient {
  background-image: linear-gradient(var(--dark-primary-color), var(--dark-secondary-color));
}

.bg-primary-gradient {
  background-image: linear-gradient(var(--primary-color), var(--secondary-color));
}

.bg-primary {
	background-color: var(--primary-color) !important;
}

.bg-secondary {
	background-color: var(--secondary-color) !important;
}

.bg-neutral {
	background-color: var(--neutral-color) !important;
}

.bg-dark-primary {
	background-color: var(--dark-primary-color);
}

.bg-dark-secondary {
	background-color: var(--dark-secondary-color);
}

.white-text {
	color:#fff;
}

.drag-up-80 {
	margin-top:-80px;
	padding-top:80px;
}

.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-shape {
    position: absolute;
    height: 190%;
    width: 100%;
    display: block;
    border-radius: 120px;
    background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    bottom: 0;
    right: 0;
    -webkit-transform: translate(35%,-28%) rotate(-35deg);
    transform: translate(35%,-28%) rotate(-35deg);
    z-index: 0;
}

.bg-shape.dark-shape {
    background: linear-gradient(-47deg, var(--dark-primary-color) 0%, var(--dark-secondary-color) 100%);
}

section {
	position: relative;
}

.full-height {
	height: 100%;
}

.hide-over {
	overflow: hidden;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	position: relative;
}

/***********************************************/
/************** Animaciones ********************/
/***********************************************/

.bouncing {
    position: relative;
    -webkit-animation: bounceHero 3s infinite;
    animation: bounceHero 3s infinite;
}

@-webkit-keyframes bounceHero {
    0% {
        top: 0px;
    }

    50% {
        top: 25px;
    }

    100% {
        top: 0px;
    }
}

@keyframes bounceHero {
    0% {
        top: 0px;
    }

    50% {
        top: 25px;
    }

    100% {
        top: 0px;
    }
}

.ptb_100 {
    padding: 100px 0;
}


.fado {
  animation: fadeIn ease 1s infinite;
  -webkit-animation: fadeIn ease 1s infinite;
  -moz-animation: fadeIn ease 1s infinite;
  -o-animation: fadeIn ease 1s infinite;
  -ms-animation: fadeIn ease 1s infinite;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  25% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  75% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  25% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  75% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  25% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  75% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  25% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  75% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  25% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  75% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

/*************************************************************/
/************************** Colores **************************/
/*************************************************************/

.color-primary {
	color: var(--primary-color);
}
.color-secondary {
	color: var(--secondary-color);
}
.color-dark-primary {
	color: var(--dark-primary-color);
}
.color-dark-secondary {
	color: var(--dark-secondary-color);
}
.color-neutral {
	color: var(--neutral-color);
}




/*************************************************************/
/********************* Bloques de oferta *********************/
/*************************************************************/



.shape{    
	border-style: solid; border-width: 0 70px 70px 0; float:right; height: 0px; width: 0px;
	-ms-transform:rotate(360deg); /* IE 9 */
	-o-transform: rotate(360deg);  /* Opera 10.5 */
	-webkit-transform:rotate(360deg); /* Safari and Chrome */
	transform:rotate(360deg);
}
.offer{
	background:#fff;
	border:1px solid var(--primary-color);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	margin: 15px 0;
	overflow:hidden;
	min-height: 142px;
}
.offer:hover {
    -webkit-transform: scale(1.1); 
    -moz-transform: scale(1.1); 
    -ms-transform: scale(1.1); 
    -o-transform: scale(1.1); 
    transform:rotate scale(1.1); 
    -webkit-transition: all 0.4s ease-in-out; 
-moz-transition: all 0.4s ease-in-out; 
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
    }
.shape {
	border-color: rgba(255,255,255,0) var(--primary-color) rgba(255,255,255,0) rgba(255,255,255,0);
}
.offer-radius{
	border-radius:7px;
}

.offer-secondary {	border-color: var(--secondary-color); }
.offer-secondary .shape{
	border-color: transparent var(--secondary-color) transparent transparent;
}
.offer-dark-primary {	border-color: var(--dark-primary-color); }
.offer-dark-primary .shape{
	border-color: transparent var(--dark-primary-color) transparent transparent;
}
.offer-dark-secondary {	border-color: var(--dark-secondary-color); }
.offer-dark-secondary .shape{
	border-color: transparent var(--dark-secondary-color) transparent transparent;
}
.offer-neutral {	border-color: var(--neutral-color); }
.offer-neutral .shape{
	border-color: transparent var(--neutral-color) transparent transparent;
}

.shape-text{
	color:#fff; font-size:26px; font-weight:bold; position:relative; right:-40px; top:2px; white-space: nowrap;
	-ms-transform:rotate(30deg); /* IE 9 */
	-o-transform: rotate(360deg);  /* Opera 10.5 */
	-webkit-transform:rotate(30deg); /* Safari and Chrome */
	transform:rotate(30deg);
}	
.offer-content{
	padding:0 20px 10px;
}
.lead {
    margin: 20px 0;
}


/******************* Botones *************************/
.btn {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-align: center;
    padding: 18px 30px;
    border-radius: 6px;
    outline: 0 none;
    position: relative;
    z-index: 1;
}

.btn.btn-primary {
    display: inline-block;
    padding: 16px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
	background-color:#fff;
}

.btn.btn-primary.secondary-color {
	border-color: var(--secondary-color);
	color: var(--secondary-color);
}

.btn.btn-primary.dark-primary-color {
	border-color: var(--dark-primary-color);
	color: var(--dark-primary-color);
}

.btn.btn-primary.dark-secondary-color {
	border-color: var(--dark-secondary-color);
	color: var(--dark-secondary-color);
}

.btn.btn-primary.neutral-color {
	border-color: var(--dark-primary-color);
	color: var(--dark-primary-color);
}

.btn.btn-primary::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    -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.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn.btn-primary.secondary-color::before  {
	background: var(--secondary-color);
}

.btn.btn-primary.dark-primary-color::before  {
	background: var(--dark-primary-color);
}

.btn.btn-primary.dark-secondary-color::before  {
	background: var(--dark-secondary-color);
}

.btn.btn-primary.neutral-color::before  {
	background: var(--neutral-color);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    color: #fff;
}

.btn.btn-primary:hover::before,
.btn.btn-primary:focus::before,
.btn.btn-primary:active::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}




.btn.btn-tago {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  color: #fff;
  width: auto;
  border-radius: 22px;
  padding: 0 0 0 21px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  width: fit-content;
}
.btn.btn-tago.secondary-color {
  background-color: var(--secondary-color);
}
.btn.btn-tago.dark-primary-color {
  background-color: var(--secondary-color);
}
.btn.btn-tago.dark-secondary-color {
  background-color: var(--dark-secondary-color);
}
.btn.btn-tago.neutral-color {
  background-color: var(--neutral-color);
}

.btn.btn-tago:before {
  content: "";
  position: absolute;
  left: 21px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0);
  opacity: 0;
  transition: all .33s cubic-bezier(.68,-.55,.265,1.55);
}
.btn.btn-tago .text {
  white-space: nowrap;
  font-size: 14px;
  transition: all .3s cubic-bezier(.68,-.55,.265,1.55);
  padding-right: 15px;
}
.btn.btn-tago .icon-arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: all .3s cubic-bezier(.68,-.55,.265,1.55);
}
.btn.btn-tago .icon-arrow:after {
  content: "";
  display: inline-block;
  background-color: inherit;
  position: absolute;
  left: 100%;
  width: 26px;
  height: 2px;
  top: 4px;
}
.btn.btn-tago:hover {
   animation: icon-arrow-off .33s cubic-bezier(0,0,.2,1);
}
@keyframes icon-arrow-off {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(0.95); }
  100% {
    transform: scale(1); } 
}
.btn.btn-tago:hover:before {
  transform: scale(1);
  opacity: 1;
}
.btn.btn-tago:hover .text {
  transform: translateX(21px);
}
.btn.btn-tago:hover .icon-arrow {
  transform: translateX(30px) scale(.8);
  opacity: 0;
}





.btn.btn-circlo {
  height: 60px;
  border: none;
  border-radius: 5px;
  background: #fff;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  box-shadow: 0 6px 6px var(--primary-color);
  outline: none;
  border: 1px solid var(--primary-color);
}
.btn.btn-circlo.secondary-color {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 6px 6px var(--secondary-color);
}
.btn.btn-circlo.dark-primary-color {
  color: var(--dark-primary-color);
  border-color: var(--dark-primary-color);
  box-shadow: 0 6px 6px var(--dark-primary-color);
}
.btn.btn-circlo.dark-secondary-color {
  color: var(--dark-secondary-color);
  border-color: var(--dark-secondary-color);
  box-shadow: 0 6px 6px var(--dark-secondary-color);
}
.btn.btn-circlo.neutral-color {
  color: var(--neutral-color);
  border-color: var(--neutral-color);
  box-shadow: 0 6px 6px var(--neutral-color);
}

.btn.btn-circlo:hover {
  /* set time duration to your needs */
  background: var(--primary-color);
  color: #fff;
  box-shadow: none;
  transition-duration: 0.5s;
}
.btn.btn-circlo.secondary-color:hover {
  background: var(--secondary-color);
}
.btn.btn-circlo.dark-primary-color:hover {
  background: var(--dark-primary-color);
}
.btn.btn-circlo.dark-secondary-color:hover {
  background: var(--dark-secondary-color);
}
.btn.btn-circlo.neutral-color:hover {
  background: var(--neutral-color);
}



.btn-container.btn-float{display: inline-block;}

.btn.btn-float {
	background-color: var(--primary-color);
	border-radius: 8px;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	position: relative;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-animation-name: hover;
	animation-name: hover;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.btn.btn-float.secondary-color {
	background-color: var(--secondary-color);
}
.btn.btn-float.dark-primary-color {
	background-color: var(--dark-primary-color);
}
.btn.btn-float.dark-secondary-color {
	background-color: var(--dark-secondary-color);
}
.btn.btn-float.neutral-color {
	background-color: var(--neutral-color);
}

 .btn.btn-float:before{
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
	opacity: .4;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
	-webkit-animation-name: hover-shadow;
	animation-name: hover-shadow;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
  }
	&:hover{
	background-color: #e16e50;
	}
}

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@-webkit-keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }

  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}

@keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }

  50% {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}

@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

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

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}





.btn.btn-icon {
	border-radius: 4px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: inline-block;
    overflow: hidden;
    padding: 24px 60px 24px 16px;
    position: relative;
    text-decoration: none;
    line-height: 1;
}
.btn.btn-icon.secondary-color {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.btn.btn-icon.dark-primary-color {
    border: 2px solid var(--dark-primary-color);
    color: var(--dark-primary-color);
}
.btn.btn-icon.dark-secondary-color {
    border: 2px solid var(--dark-secondary-color);
    color: var(--dark-secondary-color);
}
.btn.btn-icon.neutral-color {
    border: 2px solid var(--neutral-color);
    color: var(--neutral-color);
}
.btn.btn-icon:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 300ms ease;
}
.btn.btn-icon.secondary-color:after {
    background-color: var(--secondary-color);
}
.btn.btn-icon.dark-primary-color:after {
    background-color: var(--dark-primary-color);
}
.btn.btn-icon.dark-secondary-color:after {
    background-color: var(--dark-secondary-color);
}
.btn.btn-icon.neutral-color:after {
    background-color: var(--neutral-color);
}
.btn.btn-icon .btn-content {
    font-size: 1em;
    line-height: 1.2;
    padding: 0 26px;
    position: relative;
    right: 0;
    transition: right 300ms ease;
    display: block;
    text-align: left;
}
.btn.btn-icon .icon {
    border-left: 1px solid var(--primary-color);
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transition: all 300ms ease;
    transform: translateY(-50%);
    width: 58px;
    height: 70%;
}
.btn.btn-icon.secondary-color .icon {
    border-left: 1px solid var(--secondary-color);
}
.btn.btn-icon.dark-primary-color .icon {
    border-left: 1px solid var(--dark-primary-color);
}
.btn.btn-icon.dark-secondary-color .icon {
    border-left: 1px solid var(--dark-secondary-color);
}
.btn.btn-icon.neutral-color .icon {
    border-left: 1px solid var(--neutral-color);
}
.btn.btn-icon .icon i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.btn.btn-icon:hover .btn-content {
    right: 100%;
}
.btn.btn-icon:hover:after {
    opacity: 0.2;
}
.btn.btn-icon:hover .icon {
    border-left: 0;
    font-size: 1.8em;
    width: 100%;
}



.btn.btn-frame {
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    transition: all 225ms ease;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    line-height: normal;
    background: var(--primary-color);
    -webkit-transition: background 225ms ease!important;
    -moz-transition: background 225ms ease!important;
    transition: background 500ms ease!important;
}

.btn.btn-frame.dark-color {
    background: var(--dark-primary-color);
}

.btn.btn-frame:before {
    content: "";
    display: block;
    width: 86%;
    height: 65%;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transition: all 400ms cubic-bezier(.32,1.25,.1,1.47);
    -moz-transition: all 400ms cubic-bezier(.32,1.25,.1,1.47);
    transition: all 400ms cubic-bezier(.32,1.25,.1,1.47);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.btn.btn-frame:before, .btn.btn-frame:focus, .btn.btn-frame:hover {
    background: var(--secondary-color);
}

.btn.btn-frame.dark-color:before, .btn.btn-frame.dark-color:focus, .btn.btn-frame.dark-color:hover {
    background: var(--dark-secondary-color);
}
.btn.btn-frame span {
    z-index: 8;
    position: relative;
}





.btn.btn-square-one {
  position: relative;
  width: auto;
  height: auto;
  line-height: normal;
  transition: all 0.3s;
  background: var(--primary-color);
  color:#fff;
  span {
    transition: all 0.3s;
    tranform: scale(1, 1);
  }
}
.btn.btn-square-one.secondary-color {
  background: var(--secondary-color);
}
.btn.btn-square-one.dark-primary-color {
  background: var(--dark-primary-color);
}
.btn.btn-square-one.dark-secondary-color {
  background: var(--dark-secondary-color);
}
.btn.btn-square-one.neutral-color {
  background: var(--neutral-color);
}
.btn.btn-square-one:hover {
	color:#fff;
}

.btn.btn-square-one::before, 
.btn.btn-square-one::after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.btn.btn-square-one::before {
	left: 0px;
	z-index: 1;
  
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.1, 1);
}

.btn.btn-square-one:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn.btn-square-one::after {
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}
.btn.btn-square-one.secondary-color::after {
  border: 1px solid var(--primary-color);
}
.btn.btn-square-one.dark-primary-color::after {
  border: 1px solid var(--dark-primary-color);
}
.btn.btn-square-one.dark-secondary-color::after {
  border: 1px solid var(--dark-secondary-color);
}
.btn.btn-square-one.neutral-color::after {
  border: 1px solid var(--neutral-color);
}

.btn.btn-square-one:hover::after {
  transform: scale(1, .1);
  opacity: 0;
  background: #fff;
  color: #fff;
}





/**************** Price Tag ******************/

span.price_land_s2 {
    text-decoration: line-through;
}



.price>div {
    display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    line-height: 1.2em;
    margin: 0 3px;
}


.price .new {
	display: inline-block;
	width: auto;
	height: 50px;
	background-color: var(--oferta-color);
	-webkit-border-radius: 3px 4px 4px 3px;
	-moz-border-radius: 3px 4px 4px 3px;
	border-radius: 3px 4px 4px 3px;
	border-left: 1px solid var(--oferta-color);
	/* This makes room for the triangle */
	margin-left: 30px;
	position: relative;
	color: white;
	font-weight: 300;
	font-size: 40px;
	line-height: 40px;
	padding: 5px 10px 0 10px;
}

.price.primary-color .new {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

.price.secondary-color .new {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

.price.dark-primary-color .new {
	background-color: var(--dark-primary-color);
	border-left: 1px solid var(--dark-primary-color);
}

.price.dark-secondary-color .new {
	background-color: var(--dark-secondary-color);
	border-left: 1px solid var(--dark-secondary-color);
}

/* Makes the triangle */
.price .new:before {
	content: "";
	position: absolute;
	display: block;
	left: -25px;
	width: 0;
	top: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 25px solid var(--oferta-color);
}
.price.primary-color .new:before {
	border-right: 25px solid var(--primary-color);
}
.price.secondary-color .new:before {
	border-right: 25px solid var(--secondary-color);
}
.price.dark-primary-color .new:before {
	border-right: 25px solid var(--dark-primary-color);
}
.price.dark-secondary-color .new:before {
	border-right: 25px solid var(--dark-secondary-color);
}

/* Makes the circle */
.price .new:after {
	content: "";
	background-color: white;
	border-radius: 50%;
	width: 6px;
	height: 6px;
	display: block;
	position: absolute;
	left: -9px;
	top: 20px;
}

.price {
	font-size: 0;
}

/******************** Subrayado ***********************/

.line-down {
	position:relative;
}

.line-down::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background: var(--primary-color);
    border-radius: 8px;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.line-down.secondary-color::after {
    background: var(--secondary-color);
}

.line-down.dark-primary-color::after {
    background: var(--dark-primary-color);
}

.line-down.dark-secondary-color::after {
    background: var(--dark-secondary-color);
}

.line-down.neutral-color::after {
    background: var(--neutral-color);
}


/*************************** Counter ******************************/

.countdown {
    padding: 20px 0px;
    display: block;
    position: fixed;
    z-index: 2000;
    bottom: 0;
    right: 0;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    min-width: 340px;
    margin: 10px;
}

div#vip__top {
    width: fit-content;
}



/************************* Shadow Blocks **********************/



.wrap-shadow {
    min-height: 281px;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
    text-align: left;
    -ms-text-align-last: center;
    padding: 40px 20px 0;
    position: relative;
    height: 100%;
}

.wrap-shadow-line {
	position: relative;
    -webkit-box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
    border-radius: 1.5rem;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	position: relative;
    border: 0;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
	height: 100%;
}

.wrap-shadow-line.secondary-color {
    border-bottom: 4px solid var(--secondary-color);
}

.wrap-shadow-line.dark-primary-color {
    border-bottom: 4px solid var(--dark-primary-color);
}

.wrap-shadow-line.dark-secondary-color {
    border-bottom: 4px solid var(--dark-secondary-color);
}

.wrap-shadow-line.neutral-color {
    border-bottom: 4px solid var(--neutral-color);
}

.wrap-shadow-line:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
    box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
}


/********************* Owl Carousel **********************/

.owl-dots{
	text-align: center;
	margin: 35px 0 40px;
}
.owl-dot{
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
	border-radius: 50%;
	border: 2px solid var(--primary-color);
	margin: 0 5px;
}
.owl-dot.active{
	background: var(--primary-color);
}

.reviews {
    max-width: 840px;
    padding: 0 20px;
}
.social-row .soc-item {
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
    padding-right: 3px;
    transition: all 0.3s;
}


.owl-prev {
    display: flex;
    height: 35px;
    width: 35px;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 4px;
    outline: none;
    margin: 5px;
    box-shadow: 0 1px 5px var(--primary-color);
    font-size:24px;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}

.owl-next {
    display: flex;
    height: 35px;
    width: 35px;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 4px;
    outline: none;
    margin: 5px;
    box-shadow: 0 1px 5px var(--primary-color);
    font-size:24px;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin: 35px 0 0px;
}


.featured-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-color);
    margin: 0;
}
.featured-icon.secondary-color {
    color: var(--secondary-color);
}
.featured-icon.dark-primary-color {
    color: var(--dark-primary-color);
}
.featured-icon.dark-secondary-color {
    color: var(--dark-secondary-color);
}
.featured-icon.neutral-color {
    color: var(--neutral-color);
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wrap-shadow-video {
    border-radius: 20px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
    height: 100%;
}