@import url("https://fonts.googleapis.com/css?family=Lato");


* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Canela', sans-serif;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: linear-gradient(35deg, rgb(253, 253, 253), rgb(249, 250, 250));
}

html:before,
body:before {

  bottom: 0;
  content: '';
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
}

header svg {
  cursor: pointer;
  height: 44px;
  width: 44px;
}

header svg path {
  fill: #fff;
}

header ol {
  list-style-type: none;
}

header .menu a[href] {
  color: #000;
  position: relative;
  text-decoration: none;
}

header .menu a[href]:hover:after {
  transform: scaleX(1);
}

header .menu a[href]:after {
  content: '';
  position: absolute;
  top: 100%;
  height: 4px;
  background: #000;
  left: 0;
  right: 0;
  transition: transform 0.15s;
  transform-origin: left;
  transform: scaleX(0);
}




/**************************************** MENU ************************/
.menu {
  position: relative;
  width: 250px;
}

.menu__content {
  color: #000;
  margin: 0;
  padding: 0 0 25px 0;
  position: absolute;
  right: 100%;
  top: 0;
  width: 250px;
  z-index: 2;
}

.menu__toggle-label {
  height: 44px;
  left: 0;
  position: absolute;
  width: 44px;
  filter: invert(1);

}

.menu__toggle-label svg {
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.15s;
  z-index: 2;

}

.dark .menu__toggle-label svg {
  filter: invert(1);
}

.menu__toggle-label svg:nth-of-type(2) {
  left: 250px;
  transform: scale(0);
}

.menu__toggle {
  opacity: 0;
  position: fixed;
}

.menu__toggle:checked~.menu__toggle-label {
  background: rgba(255, 255, 255, 0.65);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: background 0.15s;
  width: 100vw;
  z-index: 2;
  cursor: pointer;
}

.menu__toggle:checked~.menu__toggle-label svg:nth-of-type(1) {
  transform: scale(0);
}

.menu__toggle:checked~.menu__toggle-label svg:nth-of-type(2) {
  left: 250px;
  transform: scale(1);
  transition: transform 0.15s;
  transition-delay: 0.925s;
}

.menu__toggle:checked~.menu__content {
  transform: translate(100%, 0);
  height: 100vh;
}

.menu__toggle:checked~.menu__content .menu-item {
  transform: translateX(0);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.15s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(1) {
  border-color: #9b59b6;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(1) a[href]:after {
  background: #9b59b6;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(2) {
  border-color: #86e2d5;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(2) a[href]:after {
  background: #86e2d5;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) {
  border-color: #f5ab35;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) a[href]:after {
  background: #f5ab35;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) {
  border-color: #1e8bc3;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) a[href]:after {
  background: #1e8bc3;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(5) {
  border-color: #e26a6a;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(5) a[href]:after {
  background: #e26a6a;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(1) {
  transition-delay: 0.225s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(2) {
  transition-delay: 0.275s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) {
  transition-delay: 0.325s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(1) {
  transition-delay: 0.375s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(2) {
  transition-delay: 0.425s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(3) .menu-item:nth-of-type(3) {
  transition-delay: 0.475s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) {
  transition-delay: 0.525s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(1) {
  transition-delay: 0.575s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(2) {
  transition-delay: 0.625s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(4) .menu-item:nth-of-type(3) {
  transition-delay: 0.675s, 0.875s;
}

.menu__toggle:checked~.menu__content .menu-item:nth-of-type(5) {
  transition-delay: 0.725s, 0.875s;
}

.menu__content {
  background-color: #fff;
}

.menu__content>.menu-item {
  border-left: 8px solid transparent;
}

.menu__content>.menu-item>a {
  line-height: 44px;
  min-width: 60px;
}

.sub-menu {
  padding: 0 0 0 44px;
}

.menu-item {
  line-height: 44px;
  min-height: 44px;
  padding: 0 12px;
  transform: translateX(-100%);
}

.menu-item .menu-item {
  transform: translateX(-150%);
}

.center {
  margin-top: 55px;
  color: #fff;
}

.menu {
  display: none;
}

.menu-pc {
  display: flex;
  padding: 15px 10px;
}

.menu-pc img {
  width: 75px;
  height: 35px;
}

.navbar-brand img {
  height: auto;
  width: 100px;
  display: block;

  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  color: #212121 !important;
  font-weight: 500;
  transition: all 200ms linear;
}



.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
  font-size: 18px;
}

.menu .nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #8167a9;
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

#switch {
  width: 60px;
  height: 8px;
  border: 2px solid #8167a9;
  border-radius: 27px;
  background: #000;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: translate(0);
  transition: all 300ms linear;
  transition-delay: 1900ms;
}

#switch {
  opacity: 1;
  transform: translateY(40px);
  transition-delay: 1900ms;
}

#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}

.switched {
  border-color: #000 !important;
  background: #8167a9 !important;
}

.switched #circle {
  left: 43px;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: #fff;
}

body.dark {
  color: #fff;
  background: #1f2029;
}

body.dark .navbar-brand img {
  filter: brightness(100%);
}

body.dark h1 {
  color: #fff;
}

body.dark h1 span {
  transition-delay: 0ms !important;
}

body.dark p {
  color: #fff;
  transition-delay: 0ms !important;
}

body.dark .bg-light {
  background-color: #14151a !important;
}

body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

body.dark .nav-link {
  color: #fff !important;
}

body.dark .nav-item.active .nav-link {
  color: #999 !important;
}

body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
  color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
  background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.in-pc {
  display: block;
}

.in-movil {
  display: none;
}

@media only screen and (max-width: 850px) {
  .in-movil {
    display: block;
  }

  .in-pc {
    display: none;
  }

  .menu {
    display: block;
  }

  .menu-pc {
    display: none;
  }

  .page {
    padding-top: 75px !important;
  }
}

/**************************************** END MENU ************************/




/********************************** CARD RECOMENDED *******************************/
.dress-card-img-top {
  width: 100%;
  border-radius: 7px 7px 0 0;
}

.dress-card-body {
  padding: 1rem;
  background: #fff;
  border-radius: 0 0 7px 7px;
}

.dress-card-title {
  line-height: 0.5rem;
  font-size: 24px;
  font-weight: 800;
  color: #000 !important;
  letter-spacing: 1.5px;
}

.dress-card-crossed {
  text-decoration: line-through;
}

.dress-card-price {
  font-size: 1rem;
  font-weight: bold;
}

.dress-card-off {
  color: #E06C9F;
}

.dress-card-para {
  margin-bottom: 0.2rem;
  font-size: 1.0rem;
  margin-bottom: 0rem;
  color: #000 !important;
}

.dress-card {
  border-radius: 14px;
  min-width: 250px;

}

.col-md-3c {
  width: 25%;
  min-width: 250px;
  margin: 5px;
}

.dress-card-heart {
  font-size: 1em;
  color: #DB2763;

  position: absolute;


}

.dress-card-head {
  justify-content: end;
  align-items: end;
  display: flex;
}

.surprise-bubble {
  position: absolute;
  margin-bottom: 15px;
  margin-right: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  -webkit-transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.surprise-bubble a {
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-family: Canela;
  text-decoration: none;
  position: absolute;
  top: 9px;
  left: 20px;
  opacity: 0;
  -webkit-transition-delay: 2s;
  /* Safari */
  transition-delay: 2s;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.surprise-bubble:hover {
  border-radius: 999rem;
  padding: 1rem;
  width: 70px;
  height: 30px;
  background: #DB2763;
  color: white;
  -webkit-transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.surprise-bubble:hover a {
  opacity: 1;
  -webkit-transition-delay: 2s;
  /* Safari */
  transition-delay: 2s;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.card-button {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  padding: 9px;

  display: flex;

}

.card-button-1 {
  justify-content: end;
}

.card-button-2 {
  justify-content: start;
}

.card-button a {
  text-decoration: none;
  width: 50px;
  display: flex;
}


.card-button-inner {
  width: 100%;
  padding: 10px;
  border-radius: 3px;

}

.bag-button {
  background: #E06C9F;
  color: white;
}

.bag-button :hover {
  background: #e299b9;
}

.wish-button {
  border: 1px solid #E06C9F;
  color: #E06C9F;
}

@media only screen and (max-width: 850px) {
  .dress-buttons {
    display: flex;
  }

  .dress-buttons .col-md-6 {
    width: 50% !important;
  }
}

/****************** END RECOMENDADOS ********************/

/******************* Categorias ************************/
.center2 {
  display: flex;

  align-items: center;
  justify-content: center;
}

.article-card {
  width: 100%;
  height: 620px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  font-family: Canela, Helvetica, sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 300ms;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card .content {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  padding: 30px 20px 20px 20px;
  height: auto;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 1));
}

.article-card .date,
.article-card .title {
  margin: 0;
}

.article-card .date {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.article-card .title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.categories .center2 {
  margin-top: 25px;
}

/*************** END CATEGORIES *******************/

.newsletter section {
  padding: 60px 0;
  min-height: 100vh;
}

.newsletter a,
.newsletter a:hover,
.newsletter a:focus,
.newsletter a:active {
  text-decoration: none;
  outline: none;
}

.newsletter a,
.newsletter a:active,
.newsletter a:focus {
  color: #6f6f6f;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

.newsletter ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsletter img {
  max-width: 100%;
  height: auto;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  background-image: -webkit-linear-gradient(-30deg, #520b72 0%, #e123f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.newsletter {
  padding: 16% 0 5%;
  background: url(https://i.ibb.co/JRrHmhv/shanghai.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.newsletter:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(-30deg, #e123f3 0%, #42095d 100%);
  opacity: .8;
  z-index: -1;
}

.newsletter .section-title {
  margin-bottom: 59px;
}

.newsletter .section-title h2 {
  background-image: -webkit-linear-gradient(-30deg, #ffffff 0%, #ffffff 100%);
}

.newsletter .section-title p {
  color: #fff;
}

.newsletter .newsletter-form {
  background: -webkit-linear-gradient(-30deg, #91039f 0%, #42095d 100%);
  position: relative;
  height: 60px;
  z-index: 2;
}

.newsletter .newsletter-form:after {
  position: absolute;
  content: '';
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  background: -webkit-linear-gradient(-30deg, #42095d 0%, #91039f 100%);
  z-index: -1;
}

.newsletter .newsletter-form input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 30px;
  background: #530a40;
  color: #fff;
  padding-right: 200px;
}

.newsletter .newsletter-form input::-webkit-input-placeholder {
  color: #fff;
  opacity: .6;
}

.newsletter .newsletter-form input:-ms-input-placeholder {
  color: #fff;
  opacity: .6;
}

.newsletter .newsletter-form input::-ms-input-placeholder {
  color: #fff;
  opacity: .6;
}

.newsletter .newsletter-form input::placeholder {
  color: #fff;
  opacity: .6;
}

.newsletter .newsletter-form button {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  width: 170px;
  background: -webkit-linear-gradient(-30deg, #91039f 0%, #42095d 100%);
  outline: none;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.newsletter .newsletter-form button:hover {
  background: -webkit-linear-gradient(-30deg, #42095d 0%, #91039f 100%);
}

.newsletter {
  margin-top: 0px;
}

@media only screen and (max-width: 850px) {
  .newsletter {
    min-height: auto;
  }
}

/************************************* BODY *************************************/
.page {
  padding: 75px 25px 0px 25px;
}

.flex-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

header,
nav {
  z-index: 3;
}




/*************** SPINNER ***************/
.loader {
  background: linear-gradient(90deg,
      #6f22ff,
      #00aaff,
      #2cc92c,
      #00aaff,
      #6f22ff);
  background-size: 600% 600%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: neonRotate 10s linear infinite;
  position: relative;
}

.circleMiddle {
  background-color: rgb(255, 255, 255);
  background: url(/assets/logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 10000;
}

.worm {
  position: absolute;
  width: 20px;
  height: 105px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 5px;
  animation: rotateWorm 4s linear infinite;
  z-index: 80;
}

@keyframes neonRotate {

  0%,
  100% {
    background-position: 0% 0%;
  }

  25%,
  75% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 0% 100%;
  }
}

@keyframes rotateWorm {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.container-load {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.7);
}

.img-banner {
  height: 80vh
}

.p-25 {
  padding: 0 45px;
}

.badge- {
  border: 1px solid #656565;
  font-weight: 100;
  cursor: pointer;
}

.count {
  width: 120px;
  border: 1px solid #c9c6c6;
}

.count * {
  background-color: #fff;
  border: none;
}

* {
  font-family: Canela;
  letter-spacing: 0.5px;
}

.btn-custom {
  background-color: #eb4a90;
  color: #fff;
  margin-left: 5px;
  width: 175px;
  min-width: 175px;
}

.btn-custom:hover {
  background-color: #eb4a90;
  color: #fff;
}

.info-article {}

.breadcrumb {
  background: transparent;
  font-size: 10px;
  margin: 0;
  padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '›';
}

.fade-in {
  animation: fadeInEffect 0.5s ease-in-out forwards;
}

.fade-out {
  animation: fadeOutEffect 0.5s ease-in-out forwards;
}

@keyframes fadeInEffect {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutEffect {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
}

@media only screen and (max-width: 850px) {
  .add-cart {
    display: flex;
    justify-content: center;
  }

  .info-article {
    padding: 30px;
  }

  .p-25 {
    padding: 0 10px;
  }

  .img-banner {
    height: 40vh;
  }

  .footer__col-title {
    font-size: 16px;
  }

  .footer__nav-link {
    font-size: 12px;
  }
}


#filters-movil {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100vh;
  z-index: 40;
  background-color: #fff;
  padding: 0 10px;
  padding-top: 50px;

}

.col-sm-10c {
  width: 80%;
  padding: 0px 10px;
}

.col-sm-2c {
  width: 20%;
  padding: 0px 10px;
}

#close_filter {
  cursor: pointer;
}

.text-category {
  font-size: 46px;
}

.bubbles {
  position: absolute;
  margin-top: 5px;
  z-index: 2;
  margin-left: 5px;
  flex-direction: column;
  display: flex;
  gap: 5px;
}

.badge-discount {
  background-color: #e56060;
  color: #fff;
}

.bg-section {
  background-color: #f4f1ea;
  padding: 25px 75px;
  margin-top: 20px;
}

.card-concept {
  width: 210px;
}

.card-concept i {
  font-size: 60px;
}

.card-concept span,
.card-concept h4 {
  color: #157578;
}

.gap-10 h3 {
  text-align: center;
  font-weight: bold;
  font-size: 38px;
  color: #000 !important;
}

.gap-10 {
  gap: 10px;
  justify-content: center;
}

.card-concept h4 {
  font-size: 20px;
  text-align: center;
}

.card-concept p {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #000 !important;
}

@font-face {
  font-family: Canela;
  src: url("/assets/canela/canela_light.otf") format("opentype");
}

section h2 {
  font-size: 3.2rem;
  font-weight: bold;
}

header {
  background: #03d5d7;
}

header .menu-pc * {
  color: #fff !important;
}

.menu-pc .nav-item:hover .nav-link {
  color: #fff !important;
  border-bottom: 1px solid #00aaff;
}

.nav-item.active .nav-link {
  color: #fff !important;
  border-bottom: 1px solid #00aaff;
}

.menu .logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 120px;
}

.menu {
  width: 100%;
  height: 90px;
}

.menu__toggle-label svg {
  filter: invert(1);
}

/*
--yellow=ffd339;
--sky_blue=6bfaf6
--red=ee2641
*/

.container-banner {
  display: flex;
  justify-content: center;
  align-items: end;
}

.container-banner h2 {
  font-size: 32px;
  color: #fff !important;
  margin: 0;
}

.container-banner p {

  font-size: 20px;
  color: #fff !important;
}

.container-banner .subcontainer {
  margin-bottom: 170px;
  text-align: center;
}

.container-banner .container-img {
  width: 100%;
}

.container-img img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.container-img2 img {
  height: 85vh;
  width: 100%;

}

.container-img2 {
  width: 100%;
}

.container-banner .container-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.container-circles {
  width: 600px;

  height: 350px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 25px;
}

.container-circle-start {
  display: flex;
  justify-content: flex-start;
}

.container-circle-end {
  display: flex;
  justify-content: flex-end;
}

.circle {


  width: 150px;
  height: 150px;
  border: 2px solid #03d5d7;
  background-color: #03d5d7;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: color 0.3s ease;

}

.circle::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6bfaf6;
  z-index: 0;
  transition: top 0.3s ease;
}

.circle:hover::before {
  top: 0;
}

.circle span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.circle:hover span {
  color: white;
}

.section-circles {
  background: #03d5d7;
  padding-top: 15px;
  padding-bottom: 65px
}

.sections {
  background: #03d5d7;
  padding-top: 15px;
}

.sections h3 {
  color: #fff;
}

.section-circles h3 {
  color: #fff;
}

.section-circles p {
  color: #fff;
  padding: 0 25px;
}

.surf {
  position: absolute;
  bottom: 0;
  margin-left: -57px;
  margin-bottom: -45px;
  width: 75px;
  transition: all 0.3s ease;
}

.surf:hover,
.crab:hover {
  transform: scale(1.1);
}

.crab {
  position: absolute;
  bottom: 0;
  /* right: 0; */
  margin-left: 531px;
  margin-bottom: -18px;
  width: 75px;
  transition: all 0.3s ease;
}


figure.card-section {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
}

figure.card-section *,
figure.card-section *:before,
figure.card-section *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

figure.card-section img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.9;
  filter: alpha(opacity=35);
  -webkit-opacity: 0.35;
  opacity: 0.35
}

figure.card-section .title {
  position: absolute;
  top: 58%;
  top: 150px;
  left: 25px;
  padding: 5px 10px 10px;
  margin-right: 10px;
}

figure.card-section .title:before,
figure.card-section .title:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

figure.card-section .title:before {
  top: 0;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

figure.card-section .title:after {
  bottom: 0;
  right: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

figure.card-section .title div:before,
figure.card-section .title div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

figure.card-section .title div:before {
  top: 10px;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

figure.card-section .title div:after {
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

figure.card-section h2,
figure.card-section h4 {
  margin: 0;
  text-transform: uppercase;
}

figure.card-section h2 {
  font-weight: 400;
  font-size: 18px;
}

figure.card-section h4 {
  display: block;
  font-weight: 700;
  background-color: #ffffff;
  padding: 5px 10px;
  color: #000000;
  font-size: 13px;
}

figure.card-section figcaption {
  position: absolute;
  bottom: 42%;
  left: 25px;
  text-align: left;
  opacity: 0;
  padding: 5px 60px 5px 10px;
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 1.5px;
}

figure.card-section figcaption p {
  margin: 0;
}

figure.card-section a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

figure.card-section:hover img,
figure.card-section.hover img {
  zoom: 1;
  filter: alpha(opacity=35);
  -webkit-opacity: 0.35;
  opacity: 0.35;
}

figure.card-section:hover .title:before,
figure.card-section.hover .title:before,
figure.card-section:hover .title:after,
figure.card-section.hover .title:after,
figure.card-section:hover .title div:before,
figure.card-section.hover .title div:before,
figure.card-section:hover .title div:after,
figure.card-section.hover .title div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

figure.card-section:hover .title:before,
figure.card-section.hover .title:before,
figure.card-section:hover .title:after,
figure.card-section.hover .title:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

figure.card-section:hover figcaption,
figure.card-section.hover figcaption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}



section.contact-area {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

.contact-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-area {
  border-bottom: 1px solid #1e8bc3;
}

.contact-content p {
  font-size: 15px;
  margin: 30px 0 60px;
  position: relative;
}

.contact-content p::after {
  background: #353C46;
  bottom: -30px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 80%;
}

.contact-content h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-content span {
  color: #353c47;
  margin: 0 10px;
}

.contact-social {
  margin-top: 30px;
}

.contact-social>ul {
  display: inline-flex;
}

.contact-social ul li a {
  border: 1px solid #8b9199;
  color: #8b9199;
  display: inline-block;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  transition: all 0.4s ease 0s;
  width: 40px;
}

.contact-social ul li a:hover {
  border: 1px solid #FAB702;
  color: #FAB702;
}

.contact-content img {
  max-width: 210px;
}

.contact-area,
footer {
  background: #0a787a;
  color: #fff;
}

.transition {
  height: 100px;
  background: linear-gradient(#03d5d7, #0a787a);
}

footer p {
  padding: 40px 0;
  text-align: center;
}

footer img {
  width: 44px;
}

body {
  height: 0;
}

.ptext {
  padding: 0 25px 0 45px;
}

.pMovil {
  padding-left: 25px;
}

.d-pc {
  display: block;
}

.d-movil {
  display: none;
}

.video {
  width: 250px;
  cursor: pointer;
  position: relative;
  height: 250px !important;
}

.video video {
  width: 100%;
  display: block;
  height: 250px !important;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.pvideos {
  padding-left: 25px;
  padding-right: 25px;
}

@media only screen and (max-width: 850px) {
  .d-pc {
    display: none;
  }

  .d-movil {
    display: block;
  }

  .flex-container {
    padding-top: 0 !important;
  }

  .swiper,
  .swiper-slide {
    height: 45vh !important;
  }

  .swiper img {
    height: 45vh !important;
  }

  .container-banner h2 {
    font-size: 25px;
  }

  .container-banner .subcontainer {
    margin-bottom: 70px;
  }

  .container-circles {
    width: 270px;
  }

  .circle {
    width: 70px;
    height: 70px;
    font-size: 10px;
    margin-top: 10px;

  }

  .crab {
    margin-left: 210px;
  }
}

@media (min-width: 860px) and (max-width: 1368px) and (min-height:1100px) {

  .swiper,
  .swiper-slide {
    height: 45vh !important;
  }

  .swiper img {
    height: 45vh !important;
  }
}
