.transition-delay-05 {
  transition-delay: 0.5s; }
.transition-duration-03 {
  transition-duration: 0.3s; }
.transition-duration-05 {
  transition-duration: 0.5s; }
.transition-duration-1 {
  transition-duration: 1s; }
.transition-property-all {
  transition-property: all; }
.transition-timing-function-linear {
  animation-timing-function: linear; }
.transition-right-active {
  transform: translate3d(100px, 0, 0); }
.transition-left-active {
  transform: translate3d(-100px, 0, 0); }

.m-fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms; }

.m-fadeIn {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms; }

/****RESPONSIVE WEB****/
@media (max-width: 1220px) {
  .transition-right-active {
    transform: translate3d(0, 0, 0); }
  .transition-left-active {
    transform: translate3d(0, 0, 0); } }
/**=====COLORS=====**/
/**=====Font=====**/
* {
  font-family: "Montserrat", sans-serif; }

/*TEXTS SIZES*/
/*COLOR THEME*/
/*Border*/
/*Box Shadow*/
/**=====LINKS & LISTS STYLES=====**/
/*List types*/
.non-text-decoration {
  text-decoration: none; }

/*Link types*/
.non-list-style {
  list-style: none; }

.link {
  font-size: 0.75rem; }
  .link:hover {
    transform: scale(1.1); }
  .link-medium {
    font-size: 1rem; }
    .link-medium:hover {
      transform: scale(1.1); }
  .link-large {
    font-size: 1.5rem; }
    .link-large:hover {
      transform: scale(1.1); }

/*===BORDER TYPE & DECORATION====*/
.border-right-transparent {
  border-right: 2px solid rgba(129, 129, 129, 0.478); }
.border-right-primary {
  border-right: 2px solid #ca59b7; }
.border-right-secundary {
  border-right: 2px solid linear-gradient(90deg, #ad6ada 35%, #709ff7 100%); }
.border-left-transparent {
  border-left: 2px solid rgba(129, 129, 129, 0.478); }
.border-left-primary {
  border-left: 2px solid #ca59b7; }
.border-left-secundary {
  border-left: 2px solid linear-gradient(90deg, #ad6ada 35%, #709ff7 100%); }
.border-white {
  border: 2px solid white; }
.border-black {
  border: 1px solid black; }
.border-transparent {
  border: transparent; }
.border-primary {
  border: 1px solid #ca59b7; }
  .border-primary-size-2 {
    border: 2px solid #ca59b7; }
.border-bottom-primary {
  border-bottom: 1px solid #ca59b7; }
.border-bottom-lightgrey {
  border-bottom: 2px solid #efefef; }
.border-focus-outline-none:focus {
  outline: none; }
.border-radius {
  border-radius: 12px; }
.border-dashed {
  border: dashed 1px black; }

.resize-none {
  resize: none; }

/**=====FONT SIZE & STYLES=====**/
.font-xxs {
  font-size: 0.5rem; }
.font-xs {
  font-size: 0.75rem; }
.font-sm {
  font-size: 1rem; }
.font-s {
  font-size: 1.2rem; }
.font-m {
  font-size: 1.5rem; }
.font-l {
  font-size: 2rem; }
.font-xl {
  font-size: 3rem; }
.font-xxl {
  font-size: 4rem; }
.font-grey {
  color: grey; }
.font-transparent {
  color: transparent; }
.font-border-white {
  -webkit-text-stroke: 2px white; }
.font-border-primary {
  -webkit-text-stroke: 2px #ca59b7; }
.font-border-secondary {
  -webkit-text-stroke: 2px #48b5e4; }
.font-extra-bold {
  font-weight: 900; }
.font-bold {
  font-weight: bold; }
.font-light {
  font-weight: 300; }
.font-error {
  color: red;
  font-style: italic; }

.letter-spacing-2 {
  letter-spacing: 2px; }
.letter-spacing-3 {
  letter-spacing: 3px; }

/*TEXT POSITIONS & COLORS*/
.text-center {
  text-align: center; }
.text-start {
  text-align: start; }
.text-end {
  text-align: end; }
.text-justify {
  text-align: justify; }
.text-light {
  color: white; }
.text-dark {
  color: black; }
.text-grey {
  color: gray; }
.text-primary {
  color: #ca59b7; }
.text-uppercase {
  text-transform: uppercase; }
.text-light-blue {
  color: #48b5e4; }

/*BACKGROUND COLORS*/
.bg-light {
  background-color: white; }
.bg-dark {
  background-color: black; }
.bg-primary {
  background-color: #ca59b7; }
.bg-info-gradient {
  background-color: linear-gradient(90deg, #73e1fd 0%, #48b5e4 100%); }
.bg-transparent {
  background: transparent; }
.bg-purple {
  background: #621f96; }
.bg-light-blue {
  background-color: #48b5e4; }
.bg-very-light-blue {
  background-color: #73e1fd; }
.bg-grey {
  background: grey; }
.bg-light-grey {
  background-color: #efefef; }
.bg-disabled {
  background: grey !important; }

/*BACKGROUND PROPERTIES*/
.bg-repeat-no {
  background-repeat: no-repeat; }
.bg-size-cover {
  background-size: cover; }
.bg-position-center {
  background-position: center; }

/**=====BUTTONS CLASSES======**/
.button {
  border: 1px solid transparent;
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  /*   &:hover {
    font-size: $text-sm;
  } */ }
  .button:hover span {
    transform: scale(1.1); }
  .button-rounded {
    border-radius: 100px; }
  .button-circle {
    border-radius: 50%; }
    .button-circle-medium {
      height: 90px;
      width: 90px; }
  .button-medium {
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    /*     &:hover {
      font-size: $text-m;
    } */ }
    .button-medium:hover span {
      transform: scale(1.1); }
  .button-large {
    padding: 10px 35px 10px 35px;
    font-size: 1.5rem;
    /*     &:hover {
      font-size: $text-l;
    } */ }
    .button-large:hover span {
      transform: scale(1.1); }
  .button-primary {
    background-color: #ca59b7; }
  .button-secundary {
    background: linear-gradient(90deg, #ad6ada 35%, #709ff7 100%); }
  .button-image {
    background-position: center;
    background-size: cover; }
    .button-image-depto {
      background-image: url("../img/tourCubo_icon.jpg"); }
    .button-image-pirka {
      background-image: url("../img/tourPirka_icon.jpg"); }
    .button-image-kitchen {
      background-image: url("../img/kitchenConfig_icon.jpg"); }
    .button-image-bathroom {
      background-image: url("../img/bathroomConfig_icon.jpg"); }
    .button-image-boat {
      background-image: url("../img/boatConfig_icon.jpg"); }

/*SHADOWS*/
.icon-shadow {
  box-shadow: 5px 3px 7px rgba(160, 160, 160, 0.473); }

.shadow-dark-color {
  box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722);
  -webkit-box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722);
  -moz-box-shadow: 1px 10px 21px -2px rgba(41, 41, 41, 0.722); }

/*=====PADDING AND MARGIN======*/
/*====MARGIN=====*/
.m {
  /*MARGIN TOP*/
  /*MARGIN BOTTOM*/
  /*MARGIN LEFT*/
  /*MARGIN RIGHT*/ }
  .m-0 {
    margin: 0; }
  .m-1 {
    margin: 0.75rem; }
  .m-2 {
    margin: 1.5rem; }
  .m-3 {
    margin: 2.25rem; }
  .m-4 {
    margin: 3rem; }
  .m-5 {
    margin: 3.75rem; }
  .m-6 {
    margin: 4.5rem; }
  .m-7 {
    margin: 5.25rem; }
  .m-8 {
    margin: 6rem; }
  .m-auto {
    margin: auto; }
  .mt-0 {
    margin-top: 0; }
  .mt-1 {
    margin-top: 0.75rem; }
  .mt-2 {
    margin-top: 1.5rem; }
  .mt-3 {
    margin-top: 2.25rem; }
  .mt-4 {
    margin-top: 3rem; }
  .mt-5 {
    margin-top: 3.75rem; }
  .mt-6 {
    margin-top: 4.5rem; }
  .mt-7 {
    margin-top: 5.25rem; }
  .mt-8 {
    margin-top: 6rem; }
  .mt-auto {
    margin-top: auto; }
  .mb-0 {
    margin-bottom: 0; }
  .mb-1 {
    margin-bottom: 0.75rem; }
  .mb-2 {
    margin-bottom: 1.5rem; }
  .mb-3 {
    margin-bottom: 2.25rem; }
  .mb-4 {
    margin-bottom: 3rem; }
  .mb-5 {
    margin-bottom: 3.75rem; }
  .mb-6 {
    margin-bottom: 4.5rem; }
  .mb-7 {
    margin-bottom: 5.25rem; }
  .mb-8 {
    margin-bottom: 6rem; }
  .mb-auto {
    margin-bottom: auto; }
  .ml-0 {
    margin-left: 0; }
  .ml-1 {
    margin-left: 0.75rem; }
  .ml-2 {
    margin-left: 1.5rem; }
  .ml-3 {
    margin-left: 2.25rem; }
  .ml-4 {
    margin-left: 3rem; }
  .ml-5 {
    margin-left: 3.75rem; }
  .ml-6 {
    margin-left: 4.5rem; }
  .ml-7 {
    margin-left: 5.25rem; }
  .ml-8 {
    margin-left: 6rem; }
  .ml-auto {
    margin-left: auto; }
  .mr-0 {
    margin-right: 0; }
  .mr-1 {
    margin-right: 0.75rem; }
  .mr-2 {
    margin-right: 1.5rem; }
  .mr-3 {
    margin-right: 2.25rem; }
  .mr-4 {
    margin-right: 3rem; }
  .mr-5 {
    margin-right: 3.75rem; }
  .mr-6 {
    margin-right: 4.5rem; }
  .mr-7 {
    margin-right: 5.25rem; }
  .mr-8 {
    margin-right: 6rem; }
  .mr-auto {
    margin-right: auto; }

/*====PADDING=====*/
.p {
  /*PADDING TOP*/
  /*PADDING BOTTOM*/
  /*PADDING RIGHT*/
  /*PADDING LEFT*/ }
  .p-0 {
    padding: 0; }
  .p-1 {
    padding: 0.75rem; }
  .p-2 {
    padding: 1.5rem; }
  .p-3 {
    padding: 2.25rem; }
  .p-4 {
    padding: 3rem; }
  .p-5 {
    padding: 3.75rem; }
  .p-6 {
    padding: 4.5rem; }
  .p-7 {
    padding: 5.25rem; }
  .p-8 {
    padding: 6rem; }
  .p-auto {
    padding: auto; }
  .pt-0 {
    padding-top: 0; }
  .pt-1 {
    padding-top: 0.75rem; }
  .pt-2 {
    padding-top: 1.5rem; }
  .pt-3 {
    padding-top: 2.25rem; }
  .pt-4 {
    padding-top: 3rem; }
  .pt-5 {
    padding-top: 3.75rem; }
  .pt-6 {
    padding-top: 4.5rem; }
  .pt-7 {
    padding-top: 5.25rem; }
  .pt-8 {
    padding-top: 6rem; }
  .pt-auto {
    padding-top: auto; }
  .pb-0 {
    padding-bottom: 0; }
  .pb-1 {
    padding-bottom: 0.75rem; }
  .pb-2 {
    padding-bottom: 1.5rem; }
  .pb-3 {
    padding-bottom: 2.25rem; }
  .pb-4 {
    padding-bottom: 3rem; }
  .pb-5 {
    padding-bottom: 3.75rem; }
  .pb-6 {
    padding-bottom: 4.5rem; }
  .pb-7 {
    padding-bottom: 5.25rem; }
  .pb-8 {
    padding-bottom: 6rem; }
  .pb-auto {
    padding-bottom: auto; }
  .pr-0 {
    padding-right: 0; }
  .pr-1 {
    padding-right: 0.75rem; }
  .pr-2 {
    padding-right: 1.5rem; }
  .pr-3 {
    padding-right: 2.25rem; }
  .pr-4 {
    padding-right: 3rem; }
  .pr-5 {
    padding-right: 3.75rem; }
  .pr-6 {
    padding-right: 4.5rem; }
  .pr-7 {
    padding-right: 5.25rem; }
  .pr-8 {
    padding-right: 6rem; }
  .pr-auto {
    padding-right: auto; }
  .pl-0 {
    padding-left: 0; }
  .pl-1 {
    padding-left: 0.75rem; }
  .pl-2 {
    padding-left: 1.5rem; }
  .pl-3 {
    padding-left: 2.25rem; }
  .pl-4 {
    padding-left: 3rem; }
  .pl-5 {
    padding-left: 3.75rem; }
  .pl-6 {
    padding-left: 4.5rem; }
  .pl-7 {
    padding-left: 5.25rem; }
  .pl-8 {
    padding-left: 6rem; }
  .pl-auto {
    padding-left: auto; }

/*WIDTH*/
.w-5 {
  width: 5%; }
.w-10 {
  width: 10%; }
.w-15 {
  width: 15%; }
.w-20 {
  width: 20%; }
.w-25 {
  width: 25%; }
.w-30 {
  width: 30%; }
.w-35 {
  width: 35%; }
.w-40 {
  width: 40%; }
.w-45 {
  width: 45%; }
.w-50 {
  width: 50%; }
.w-55 {
  width: 55%; }
.w-60 {
  width: 60%; }
.w-65 {
  width: 65%; }
.w-70 {
  width: 70%; }
.w-75 {
  width: 75%; }
.w-80 {
  width: 80%; }
.w-85 {
  width: 85%; }
.w-90 {
  width: 90%; }
.w-95 {
  width: 95%; }
.w-100 {
  width: 100%; }

/*HEIGHTS*/
.h-40 {
  height: 40%; }
.h-50vh {
  height: 50vh; }
.h-100 {
  height: 100%; }

.max-h-50vh {
  max-height: 50vh; }

.flex-wrap {
  flex-wrap: wrap; }

.z-index-n1 {
  z-index: -1; }
.z-index-10 {
  z-index: 10; }

.placeholder-text-dark::placeholder {
  color: black; }

.opacity-80 {
  opacity: 0.8; }

.object-fit-cover {
  object-fit: cover; }

.rounded-pill {
  border-radius: 1rem; }

.cursor-pointer {
  cursor: pointer; }

section {
  padding-left: 7.5rem;
  padding-right: 7.5rem; }

.visibility-visible {
  visibility: visible; }
.visibility-hidden {
  visibility: hidden; }

.message-success {
  text-align: center;
  border-radius: 10px;
  padding: 0.3rem;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb; }
.message-error {
  text-align: center;
  border-radius: 10px;
  padding: 0.3rem;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }

.section-rounded-dt {
  margin-right: 4rem;
  margin-left: 4rem;
  background-color: white;
  border-radius: 1rem !important;
  box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722);
  -webkit-box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722);
  -moz-box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722); }

@media (max-width: 1220px) {
  .section-rounded {
    background-color: white;
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem !important;
    box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722);
    -webkit-box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722);
    -moz-box-shadow: 0px 0px 9px -1px rgba(41, 41, 41, 0.722); }

  section {
    padding-left: 0;
    padding-right: 0; } }
/***DISPLAYS***/
.display-flex {
  display: flex; }
.display-inline {
  display: inline; }
.display-block {
  display: block; }
.display-none {
  display: none; }

/***JUSTIFYS***/
.justify-space {
  justify-content: space-between; }
.justify-around {
  justify-content: space-around; }
.justify-center {
  justify-content: center; }
.justify-left {
  justify-content: left; }
.justify-right {
  justify-content: right; }
.justify-between {
  justify-content: space-between; }
.justify-end {
  justify-content: end; }

/***DIRECTIONS**/
.flex-column {
  flex-direction: column; }

/***ALIGNS***/
.align-end {
  align-items: flex-end; }
.align-start {
  align-items: flex-start; }
.align-center {
  align-items: center; }
.align-inherit {
  align-items: inherit; }

.vertical-align-bottom {
  vertical-align: bottom; }

/***POSITIONS***/
.position-relative {
  position: relative; }
.position-absolute {
  position: absolute; }

.top-0 {
  top: 0; }

.right-0 {
  right: 0; }

.left-0 {
  left: 0; }
.left-8 {
  left: 8%; }
.left-40 {
  left: 40%; }

.bottom-0 {
  bottom: 0; }

/*OVERFLOW*/
.overflow-hidden {
  overflow: hidden; }

.inline-block {
  display: inline-block; }

/**=====CLASES NECESARIAS PARA CONTACTO=====**/
.contact-side-img {
  visibility: hidden;
  width: 200px;
  height: auto; }
.contact-top-img {
  height: auto; }
.contact-input {
  width: 50%;
  padding: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 0; }
.contact-textarea {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0;
  padding-left: 0; }

/*
@media (max-width: 720px) {
  // .section-rounded{
  //   box-shadow: none !important;
  // }
  .section-rounded{
    box-shadow: 0px 0px 9px -1px $shadow-dark-color !important;
    -webkit-box-shadow: 0px 0px 9px -1px $shadow-dark-color !important;
    -moz-box-shadow: 0px 0px 9px -1px $shadow-dark-color !important;
  }
}
*/
@media only screen and (min-width: 200px) and (max-width: 767px) {
  .contact-section {
    position: inherit;
    justify-content: start;
    overflow-x: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0; } }
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  .contact-section {
    position: inherit;
    justify-content: center;
    overflow-x: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0; } }
@media (max-width: 1220px) {
  .contact-father-container {
    width: 100%;
    overflow-x: hidden;
    padding-left: 0;
    border-right: 0; }

  .contact-son-container {
    padding-left: 0rem;
    margin-left: 1rem;
    margin-right: 1rem;
    width: 100%;
    justify-content: center; }

  .contact-form {
    flex-direction: column; }

  .contact-form-title-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center; }

  .contact-top-img {
    width: 20%; }

  .contact-form-title-p {
    padding-left: 0; }

  .contact-input {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0;
    padding-left: 0; }

  .contact-textarea {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0;
    padding-left: 0; }

  .contact-swipe {
    display: block; }

  .contact-arrows-button {
    border: 0px;
    background-color: transparent;
    cursor: pointer; } }
@media (min-width: 750px) {
  .contact-section {
    width: 50%;
    margin: auto; } }
/**=====CLASES NECESARIAS PARA NEWS=====**/
.left-n4 {
  left: -4px; }

.bg-news {
  background: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%); }

.news-button:hover {
  background-color: #48b5e4; }

@media (max-width: 1220px) {
  .news-section {
    flex-direction: column;
    padding: 4.5rem; }

  .news-title {
    width: 100%;
    padding: 0; }

  .news-description {
    line-height: 1.5rem;
    margin-bottom: 2.25rem; }

  .news-form {
    width: 100%;
    padding: 0rem; }

  .news-input {
    padding: 0.75rem; }

  .news-button {
    font-size: 0.75rem;
    padding-right: 0.5rem; } }
.border-bold-primary {
  border: 4px solid #ca59b7; }

.detail-icon {
  width: 80px; }
.detail-p {
  max-width: 10rem; }
.detail-title {
  max-width: 14rem; }
.detail-subtitle {
  max-width: 24rem; }

@media (max-width: 1220px) {
  .detail-section {
    padding: 3.75rem !important; }

  .detail-title-section {
    text-align: center;
    flex-direction: column; }

  .detail-img {
    width: 100%; }

  .detail-title {
    max-width: 100%; }

  .detail-subtitle {
    padding-top: 1rem; }

  .detail-description {
    padding-left: 0; }

  .detail-icon-section {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    row-gap: 2.5rem; }

  .detail-icon-container {
    border-right: 0px;
    border-left: 0px;
    padding-right: 0;
    padding-left: 0;
    flex-direction: column;
    text-align: center; }

  .detail-icon {
    margin-bottom: 0.5rem; }

  .detail-p {
    padding-left: 0; } }
/**NAV & NAV ITEMS**/
.nav-item {
  padding-right: 13.5px;
  padding-left: 13.5px; }
.nav .logo-container {
  padding-top: 5px;
  padding-bottom: 5px;
  /*LOGOSIZE*/ }
  .nav .logo-container .logo-medium {
    width: 50px; }

.nav-fixed {
  height: auto;
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  z-index: 50;
  position: fixed; }

.nav-sticky {
  position: fixed;
  box-shadow: 1px 1px 21px -9px;
  background-color: white;
  z-index: 50; }
  .nav-sticky .logo-container {
    /*LOGOSIZE*/ }
    .nav-sticky .logo-container .logo-medium {
      width: 50px; }
  .nav-sticky a {
    color: black; }
  .nav-sticky p {
    color: black; }

/*END OF NAV*/
@media (max-width: 1142px) {
  /*   nav {
    display: grid !important;
    grid-template-rows: auto auto;
    justify-content: center !important;
    padding-right: 0%;
  } */
  .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2%; } }
#navBarsBtn {
  display: none; }

@media (max-width: 1220px) {
  header {
    position: relative; }

  #nav {
    padding: 0;
    margin: 0;
    justify-content: center; }
    #nav div {
      padding: 0;
      margin: 0; }
    #nav ul {
      display: none; }
    #nav button {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      margin: 0.5rem; } }
/*MAIN*/
.main-container {
  height: 100vh;
  background: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%); }
.main-card {
  width: 100%; }
.main-img {
  margin-bottom: -4px; }
.main-left-container {
  max-width: 450px;
  z-index: 1; }
.main-buttons {
  z-index: 1; }

video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.video-wrapper {
  position: relative;
  overflow: hidden; }

.cover {
  background: black;
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1; }

.iframe-wrapper {
  position: relative;
  overflow: hidden; }

iframe {
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  z-index: 0; }

#iframe-config3D,
#iframe-showroom {
  width: 100%; }

/*END OF MAIN*/
@media (max-width: 1220px) {
  .main-container {
    flex-direction: column; }
    .main-container #main-text {
      padding: 4rem; }
    .main-container .main-card {
      display: none; }
    .main-container .main-buttons {
      width: 100%;
      justify-content: center; }
      .main-container .main-buttons div {
        display: flex;
        margin: 1rem; }
      .main-container .main-buttons ul {
        display: flex;
        overflow-x: auto;
        align-items: center; }
        .main-container .main-buttons ul li {
          margin: 0.5rem; }
          .main-container .main-buttons ul li button {
            margin: 0; }
        .main-container .main-buttons ul::-webkit-scrollbar {
          display: none; }

  .main-left-container {
    padding: 0;
    align-content: center;
    text-align: center;
    align-self: center; }
    .main-left-container div {
      width: 100%; }
    .main-left-container p {
      font-size: 1.5rem;
      color: white;
      -webkit-text-stroke: 0; }

  .main-home-container {
    justify-content: center; }

  iframe {
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0; }

  .cover {
    background: black;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1); } }
.plan {
  max-width: 16%; }
  .plan-icon {
    width: 45px; }
  .plan-bg {
    background: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%);
    background-image: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%);
    background-repeat: no-repeat;
    background-size: 100% 72%, 100%; }
  .plan-card {
    min-width: 20vw; }
    .plan-card:hover {
      transform: translate(0, -10px); }
  .plan-speech-bubble {
    position: relative;
    background: black;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -ms-transform: skew(20deg);
    -o-transform: skew(20deg);
    transform: skew(20deg); }
    .plan-speech-bubble::after {
      content: "";
      position: absolute;
      display: block;
      width: 0;
      z-index: 1;
      border-style: solid;
      border-width: 0 1rem 1rem 0;
      border-color: transparent black transparent transparent;
      bottom: -1rem;
      left: 70%; }
    .plan-speech-bubble span {
      -webkit-transform: skew(-20deg);
      -moz-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
      -o-transform: skew(-20deg);
      transform: skew(-20deg); }
  .plan-counter {
    height: 2rem;
    width: 2rem;
    top: -3.2rem;
    z-index: 2; }
    .plan-counter:after {
      position: absolute;
      content: "";
      height: 2rem;
      width: 2rem;
      background: black;
      z-index: -1;
      transform: rotate(45deg);
      border-bottom-left-radius: 50%;
      border-top-left-radius: 50%;
      border-top-right-radius: 50%; }
  .plan-input {
    -webkit-appearance: none;
    height: 1.5rem;
    background: #73e1fd; }
    .plan-input::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: #48b5e4;
      border: transparent; }
    .plan-input::-moz-range-thumb {
      -webkit-appearance: none;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: #48b5e4;
      border: transparent; }
    .plan-input-disabled {
      background: #efefef; }
      .plan-input-disabled::-webkit-slider-thumb {
        background: grey; }
      .plan-input-disabled::-moz-range-thumb {
        background: grey; }

@media (max-width: 1220px) {
  .plan {
    max-width: 100%; }

  .plan-section {
    flex-direction: column; }

  .plan-bg {
    background: url();
    background-image: url();
    background: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%);
    background-repeat: no-repeat;
    background-size: 100% 72%, 100%;
    padding-left: 0;
    padding-right: 0; }

  .plan-card {
    min-width: 300px;
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    margin-left: 1rem;
    margin-right: 1rem; }
    .plan-card:hover {
      transform: none; }

  .plan-father-cards {
    overflow-x: auto;
    justify-content: start;
    align-items: inherit;
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 2rem; }

  .plan-card-title {
    font-size: 3rem; }

  .plan-card-swipe {
    display: block; }

  .plan-card-arrows-button {
    border: 0px;
    background-color: transparent;
    cursor: pointer; }

  .plan-title-section {
    padding: 1rem;
    padding-bottom: 3rem; }

  .plan-slider-section {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding: 0; }

  .plan-slider-container {
    width: 100%;
    flex-direction: column;
    margin-bottom: 1rem; }

  .plan-slider-img-container {
    flex: 1;
    text-align: center;
    flex-direction: column; }

  .plan-slider-img {
    padding: 0;
    border-right: 0px; }

  .plan-slider-description-container {
    width: 100%;
    padding: 0; }

  .plan-slider-description-text {
    font-size: 1rem; }

  .plan-slider-input {
    flex: 2;
    padding-left: 1rem;
    padding-right: 1rem; }

  .plan-slider-father {
    padding-bottom: 1rem; }

  .plan-img-section {
    padding: 0;
    width: 100%; }

  .plan-img-section-container {
    position: inherit; }

  .plan-img-container {
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    grid-area: 2 / 1 / 3 / 3; }

  .plan-img {
    display: none; }

  .plan-amount-container {
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0.75rem;
    grid-row-gap: 1rem; }

  .plan-speech-bubble-container {
    position: inherit;
    background-color: transparent;
    grid-area: 1 / 1 / 2 / 2; }

  .plan-speech-bubble {
    width: 100%;
    padding: 0;
    background-color: transparent;
    transform: skew(0); }
    .plan-speech-bubble::after {
      display: none; }
    .plan-speech-bubble span {
      transform: skew(0); }

  .plan_save {
    color: #73e1fd; }

  .plan_save_amount {
    background-color: #73e1fd;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem; }

  .plan-total-amount-container {
    justify-content: center;
    margin: 0rem;
    width: 100%;
    height: 100%;
    grid-area: 1 / 2 / 2 / 3; }

  .plan-total-amount {
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 0.25rem; } }
/* General Conditions */
@media (max-width: 1220px) {
  .general_considerations {
    text-align: center;
    border-radius: 0; }
    .general_considerations button {
      display: inline-block; }
    .general_considerations .button-medium:hover {
      font-size: 1rem; }
    .general_considerations p:first-child {
      margin-bottom: 1rem; }

  .text-hidden p:nth-child(3) {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
  .text-hidden p:nth-child(n + 4) {
    display: none; } }
.stair-title-section {
  background: linear-gradient(90deg, #653b7c 0%, #68a4fb 100%); }
.stair-legend {
  max-width: 40%; }
.stair-overlap-showroom-gif {
  background-image: url("../gif/showroom_v01.gif") !important; }
.stair-overlap-catalog-gif {
  background-image: url("../gif/Cat_Virtual_v01.gif") !important; }
.stair-overlap-config3D-gif {
  background-image: url("../gif/boatConfig3_index.gif") !important; }
.stair-overlap-showroom-1 {
  background-image: url("../gif/VT_A.gif") !important; }
.stair-overlap-showroom-2 {
  background-image: url("../gif/VT_B.gif") !important; }
.stair-overlap-showroom-3 {
  background-image: url("../gif/VT_C.gif") !important; }
.stair-overlap-catalog-1 {
  background-image: url("../gif/VC_A.gif") !important; }
.stair-overlap-catalog-2 {
  background-image: url("../gif/VC_B.gif") !important; }
.stair-overlap-catalog-3 {
  background-image: url("../gif/VC_C.gif") !important; }
.stair-overlap-about-1 {
  background-image: url("../img/ecommerce.png") !important; }
.stair-overlap-about-2 {
  background-image: url("../img/artist.png") !important; }
.stair-overlap-about-3 {
  background-image: url("../img/engineer.png") !important; }
.stair-overlap-config3D-1 {
  background-image: url("../gif/CNFG_A.gif") !important; }
.stair-overlap-config3D-2 {
  background-image: url("../gif/CNFG_B.gif") !important; }
.stair-overlap-config3D-3 {
  background-image: url("../gif/CNFG_C.gif") !important; }
.stair-overlap-main {
  border-radius: 25px; }
.stair-overlap-child {
  background-color: transparent;
  background-position: center;
  background-size: cover;
  border-radius: 1rem 1rem 0rem 0rem; }
.stair-overlap-link {
  height: 100%;
  width: 100%;
  color: white; }
.stair-text-right {
  flex-direction: row; }
.stair-text-left {
  flex-direction: row-reverse; }

.stair-overlap-main:hover .stair-overlap-child,
.stair-overlap-main:focus .stair-overlap-child {
  transform: scale(1.2); }

.hover-disable:hover, .hover-disable:focus {
  transform: none !important;
  cursor: auto !important; }

.stair-overlap-child::before {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(106, 150, 201, 0.562); }

.stair-overlap-main:hover .stair-overlap-child:before,
.stair-overlap-main:focus .stair-overlap-child:before {
  display: block; }

.stair-overlap-main:hover .stair-overlap-link,
.stair-overlap-main:focus .stair-overlap-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center; }

/****RESPONSIVE WEB****/
@media (max-width: 1220px) {
  .stair-title-section {
    flex-direction: column;
    padding: 1rem; }

  .stair-title-img {
    position: relative;
    width: 80%; }

  .stair-legend {
    max-width: 100%;
    margin: 0rem !important; }

  .stair-title-description {
    padding: 0.5rem; }

  .stair-container {
    flex-direction: column;
    padding: 0% !important; }

  .stair-overlap-main {
    width: 100%;
    border-radius: 1rem 1rem 0rem 0rem; }

  .stair-description {
    text-align: center;
    width: 100%;
    padding: 2.5rem; }

  .stair-number {
    font-size: 4rem; } }
@media (max-width: 1220px) {
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center; }

  .footer-logo-container {
    border-right: 0px;
    padding: 0;
    margin: 0; }

  .footer-menu {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10%; } }
.about .logo-container {
  justify-content: center;
  align-items: center; }
  .about .logo-container .logo-medium {
    width: 250px;
    height: 250px; }

.about-us {
  flex-direction: column; }

@media (max-width: 1220px) {
  .about-us p {
    column-gap: 40px; }

  .about .logo-container .logo-container-first-section {
    flex-direction: column; } }
/*GENERAL STYLES OF THE PAGE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  background: white; }

/****RESPONSIVE WEB****/
@media (max-width: 1220px) {
  body {
    background-color: #efefef; } }
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #8f54a0 transparent; }

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px; }

*::-webkit-scrollbar-track {
  background: transparent; }

*::-webkit-scrollbar-thumb {
  background-color: #8f54a0;
  border-radius: 10px;
  border: 3px solid transparent; }

/*# sourceMappingURL=style.css.map */
