.all_unset {
  all: unset;
}

.background-image-defaults {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .background-image-defaults {
    background-position: right;
  }
}

.horizontal-single-line-before::before {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-single-line.svg");
}
.horizontal-single-line-after::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-single-line.svg");
}
.horizontal-double-line-before::before {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line.svg");
}
.horizontal-double-line-after::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line.svg");
}
.horizontal-double-line-after-blue::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  height: 10px;
  background-size: 100% 10px;
  background-image: url("../../icons/horizontal-double-line-blue.svg");
}
.horizontal-double-line-before-blue::before {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line-blue.svg");
}
.horizontal-double-line-after-green::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line-green.svg");
}
.horizontal-double-line-before-green::before {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line-green.svg");
}
.horizontal-double-line-after-white::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line-white.svg");
}
.horizontal-double-line-before-white::before {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../icons/horizontal-double-line-white.svg");
}
.horizontal-double-line-after-25::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 25%;
  margin: 0 auto;
  height: 10px;
  background-size: 100% 10px;
  background-image: url("../../icons/horizontal-double-line.svg");
}
.horizontal-double-line-after-25-blue::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 25%;
  margin: 0 auto;
  height: 10px;
  background-size: 100% 10px;
  background-image: url("../../icons/horizontal-double-line-blue.svg");
}

.vertical-single-line-before {
  position: relative;
}
.vertical-single-line-before::before {
  width: 10px;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  background-image: url(../../icons/vertical-single-line.svg);
  left: -20px;
}
.vertical-single-line-after {
  position: relative;
}
.vertical-single-line-after::after {
  width: 10px;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  background-image: url(../../icons/vertical-single-line.svg);
  right: -20px;
}

.border-top-secondary {
  border-top: 1px solid #00AFB3;
}

.border-bottom-secondary {
  border-bottom: 1px solid #00AFB3;
}

.white-space-unset {
  white-space: unset;
}

.white-space-normal {
  white-space: normal;
}

.vh-90 {
  height: 90vh;
}

.backdrop-brightness-30 {
  backdrop-filter: brightness(0.3);
}

@media only screen and (max-width: 767.98px) {
  .wsp-nowrap {
    white-space: nowrap;
  }
}
.wsp-all-nowrap {
  white-space: nowrap;
}

.background-text-primary-des {
  background-color: #00403F;
}

.border_before {
  position: relative;
}
.border_before:before {
  height: 1px;
  background-color: #003F3F;
  width: 15%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.border_after {
  position: relative;
}
.border_after:after {
  height: 1px;
  background-color: #003F3F;
  width: 15%;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.corner_border_top_left {
  position: relative;
}
.corner_border_top_left:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 5vw;
  height: 5vw;
  border-top: 1px solid #21211F;
  border-left: 1px solid #21211F;
}
@media (min-width: 768px) {
  .corner_border_top_left:before {
    width: 2vw;
    height: 2vw;
  }
}

.corner_border_bottom_right {
  position: relative;
}
.corner_border_bottom_right:after {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5vw;
  height: 5vw;
  border-bottom: 1px solid #21211F;
  border-right: 1px solid #21211F;
}
@media (min-width: 768px) {
  .corner_border_bottom_right:after {
    width: 2vw;
    height: 2vw;
  }
}

.left_border {
  position: relative;
}
.left_border:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #21211F;
}

.right_dot {
  position: relative;
}
@media (max-width: 992px) {
  .right_dot:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(100%, -50%);
    width: 5px;
    height: 5px;
    background-color: #515151;
    border-radius: 100%;
  }
}
@media (min-width: 992px) {
  .right_dot:not(.right_dot:last-child):after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(250%, -50%);
    width: 5px;
    height: 5px;
    background-color: #515151;
    border-radius: 100%;
  }
}

.flex_1 {
  flex: 1;
}

.overlay-black {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

.transition_500 {
  transition: all 0.5s ease;
}

.border-right {
  border-right: 2px solid #E5E8EA;
}

body > header:has([data-click-state="1"]),
header > nav:has([data-attribute=submenu-mobile][data-click-state="1"]),
header > nav:has(.dropdown-menu.show) {
  background: #FFFFFF;
}

.box-shadow-menu {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
}

.background-glass {
  background-color: rgb(255, 255, 255);
}

.custom-display {
  display: none;
}

@media (min-width: 992px) {
  .font-bold-hover:hover small {
    font-weight: 700;
  }
  .background-glass {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(35px);
  }
  .custom-display {
    display: block;
  }
  .w_fit_content {
    width: fit-content;
  }
}
.list-style-disc {
  list-style-type: disc;
}
.list-style-disc::marker {
  color: #003F3F;
}

.background-ig-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3019607843) 47%, rgba(0, 0, 0, 0.8509803922) 100%) 0% 0% no-repeat padding-box;
}

.border-ig-card {
  border: 0.5px solid #D4D9DD;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fa-brands-igbio {
  font-size: 22px;
}

.min-w-100px {
  min-width: 100px;
}

.w-12px {
  width: 12px;
}

.w-412px {
  width: 412px;
}

.w-95 {
  width: 95%;
}

.h-10px {
  height: 10px;
}

@media (max-width: 768px) {
  .mh-75px {
    max-height: 75px;
  }
  .hero-overlay {
    left: 0;
  }
}
.share-footer {
  height: 22px;
  width: auto;
}

.border-radius-16 {
  border-radius: 16px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-25 {
  border-radius: 25px;
}

.border-radius-30 {
  border-radius: 30px;
}

.border-top-right-radius-20 {
  border-top-right-radius: 20px;
}

.border-top-left-radius-20 {
  border-top-left-radius: 20px;
}

.border-top-right-radius-30 {
  border-top-right-radius: 30px;
}

.border-top-left-radius-30 {
  border-top-left-radius: 30px;
}

.border-bottom-right-radius-30 {
  border-bottom-right-radius: 30px;
}

.border-bottom-left-radius-30 {
  border-bottom-left-radius: 30px;
}

.border-radius-top-left-0 {
  border-top-left-radius: 0;
}

.border-radius-top-right-0 {
  border-top-right-radius: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.mw-40 {
  max-width: 40px;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.instagram-container, .facebook-container, .share-container {
  width: 2rem;
  cursor: pointer;
}
.instagram-container a, .facebook-container a, .share-container a {
  display: inline !important;
}

.instagram-container:hover .bg, .facebook-container:hover .bg, .share-container:hover .bg {
  fill: #FFEAB6;
}

a[href^="http://www.facebook.com/sharer.php"],
amp-social-share,
.social-sharing {
  display: inline-block !important;
}

.bottom-footer {
  transition: all 0.3s;
}
.bottom-footer:hover {
  font-weight: 700;
}
.bottom-footer:hover a {
  color: #003F3F;
}

#kit-4-semanas::before {
  content: "";
  display: block;
  height: 150px;
  margin-top: -150px;
  visibility: hidden;
}

.image-col {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 sup {
  top: 0em;
  font-size: 0.45em;
  line-height: 0;
  margin-left: 0em;
}

h1.display-title sup {
  top: -1em;
}

.horizontal-double-line-after-25-blue h1 sup {
  top: -1em;
}

@media (max-width: 768px) {
  h2 sup {
    top: -1em;
    font-size: 0.45em;
  }
}