/**************** PRIMARY FONT ********************/

@font-face {
  font-family: "Brandon Grotesque medium";
  src: url("../fonts/primary/Brandon_med.otf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Brandon Grotesque bold";
  src: url("../fonts/primary/Brandon_bld.otf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Brandon Grotesque regular";
  src: url("../fonts/primary/Brandon_reg.otf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Brandon Grotesque Black";
  src: url("../fonts/primary/Brandon_blk.otf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Calibri";
  src: url("../fonts/primary/Calibri_reg.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Calibri bold";
  src: url("../fonts/primary/Calibri_bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

/**************** FONT Noto_Sans_SC ********************/

@font-face {
  font-family: "Noto_Sans_SC";
  src: url("../fonts/Noto_Sans_SC/NotoSansSC-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Noto_Sans_SC";
  src: url("../fonts/Noto_Sans_SC/static/NotoSansSC-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Noto_Sans_SC";
  src: url("../fonts/Noto_Sans_SC/static/NotoSansSC-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

/**************** FONT Noto_Nastaliq_Urdu *******************/

@font-face {
  font-family: "Noto_Nastaliq_Urdu";
  src: url("../fonts/Noto_Nastaliq_Urdu/NotoNastaliqUrdu-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Noto_Nastaliq_Urdu";
  src: url("../fonts/Noto_Nastaliq_Urdu/static/NotoNastaliqUrdu-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Noto_Nastaliq_Urdu";
  src: url("../fonts/Noto_Nastaliq_Urdu/static/NotoNastaliqUrdu-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

/**************** FONT Noto_Naskh_Arabic ********************/

@font-face {
  font-family: "Noto_Naskh_Arabic";
  src: url("../fonts/Noto_Naskh_Arabic/NotoNaskhArabic-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Noto_Naskh_Arabic";
  src: url("../fonts/Noto_Naskh_Arabic/static/NotoNaskhArabic-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Noto_Naskh_Arabic";
  src: url("../fonts/Noto_Naskh_Arabic/static/NotoNaskhArabic-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

html,
* {
  font-family: var(--main-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

body {
  margin: 0;
  margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  line-height: 0;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*
hr.super {
  position: absolute;
  top: 22px;
  background: var(--Charcoal, #222731);
  height: 1.5px;
  width: 100%;
  border: none;
}
*/
.btn__abbott {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn__icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;

  /* -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s; */
}

.btn__icn:hover svg path {
  fill: #009cde;
}

.btn__abbott.btn__blue {
  color: #fff;
  background-color: #009cde;
}

.btn__abbott.btn__blue:hover {
  background: var(--Purple-2, #53389e);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn__abbott.btn__white {
  color: #000;
  background-color: #fff;
}

.btn__abbott.btn__white:hover {
  background: var(--Purple-2, #009cde);
  color: #fff;
}

.btn__abbott.btn__black {
  color: #fff;
  background-color: #000;
}

.btn__abbott.btn__black:hover {
  background: var(--Purple-2, #53389e);
}

.btn__abbott.btn__transparent {
  opacity: 0;
  padding: 12px 0 0;
  color: #000;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}

.btn__abbott.btn__transparent:hover {
  color: #009cde;
}

.navbar {
  position: static;
  z-index: 10;
  background: var(--Charcoal, #222731);
  -webkit-box-shadow: 0px 8px 10px 0px rgba(98, 98, 98, 0.1);
  box-shadow: 0px 8px 10px 0px rgba(98, 98, 98, 0.1);
  margin: 0 auto;
  width: 100%;
}

.navbar.empty {
  background-color: #FFF;
}

.navbar.empty .navbar__container {
  padding: 22px 10px;
  max-width: 100%;
}

.navbar.empty .navbar__container.reverse {
  flex-direction: row-reverse;
}

.imagen__rigth {
  display: inline-block;
  overflow: hidden;
  height: 40px;
  max-height: 40px;
  width: 120px;
  max-width: 120px;
}

.imagen__rigth img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.navbar.empty .navbar__container.reverse .menu-container {
  justify-content: flex-start;
}

.navbar .navbar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1600px;
  padding: 22px 40px;
  margin: 0 auto;
}

.navbar .navbar__container .nav.empty {
  top: auto !important;
}

.custom-logo-link img.custom-logo {
  min-width: 120px;
  width: 120px;
}

.footer.sin__menu .footer__container .footer__top {
  padding: 48px 10px 36px;
  max-width: 100%;
}

.navbar .navbar__container .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.navbar .navbar__container .nav .nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.nav__item.mobile {
  display: none;
}

.nav__item a,
.nav__item a:visited {
  color: var(--White, #f5f5f5);
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 140%;
  text-transform: uppercase;
}

.nav__item a:active,
.nav__item a:focus,
.nav__item a:hover {
  color: var(--Primary-blue, #009cde);
}

.navbar.sticky {
  position: fixed;
}

.hamb {
  display: none;
  cursor: pointer;
  float: right;
  padding: 24px 16px;
}

.side-menu {
  display: none;
}

.menu-item-has-children {
  position: relative;
}
body.lightmode .menu__logout,
body.lightmode .sub-menu {
  background-color: #FFF;
}
body.lightmode .menu__logout li a,
body.lightmode.sub-menu li a {
  color: #222731;
}

.sub-menu {
  position: absolute;
  left: 0px;
  top: 100%;
  width: auto;
  z-index: 100;
  display: none;
  padding: 0;
  margin: 0;
  transition: all 500ms ease;
  background-color: #222731;
  list-style: none;
  min-width: 150px;
}

.account__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
}

.icon__display{
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.account__menu {
  position: relative;
  display: inline-block;
}

.menu__logout {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  padding: 0;
  margin: 0;
  transition: all 500ms ease;
  background-color: #222731;
  list-style: none;
  min-width: 150px;
}

.menu__logout li {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

.menu__logout li a {
  display: block;
  padding: 15px 15px 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 300ms ease, color 300ms ease;
  margin-left: 8px !important;
  max-width: 100%;
}

.account__container:hover .menu__logout {
  display: block;
}

body.lightmode .name__item {
  color: #222731;
}

.name__item {
  color: var(--White, #f5f5f5);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.sub-menu .menu-item-has-children>a::after {
  content: '';
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMC4zODI5NiAyMC4wNzYyQzAuMTExNzg4IDE5LjgwNSAwLjExMTc4OCAxOS4zNjU0IDAuMzgyOTYgMTkuMDk0Mkw5LjE5NzU4IDEwLjI3OTZMMC4zODI5NiAxLjQ2NDk3QzAuMTExNzg4IDEuMTkzNzkgMC4xMTE3ODggMC43NTQxMzggMC4zODI5NiAwLjQ4Mjk2NkMwLjY1NDEzMSAwLjIxMTc5NCAxLjA5Mzc5IDAuMjExNzk0IDEuMzY0OTYgMC40ODI5NjZMMTAuNDM0MSA5LjU1MjE0QzEwLjgzNTkgOS45NTM5IDEwLjgzNTkgMTAuNjA1MyAxMC40MzQxIDExLjAwN0wxLjM2NDk2IDIwLjA3NjJDMS4wOTM3OSAyMC4zNDc0IDAuNjU0MTMxIDIwLjM0NzQgMC4zODI5NiAyMC4wNzYyWiIgZmlsbD0iI0ZGRiI+PC9wYXRoPjwvc3ZnPg==);
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  background-size: 10px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.menu-item-has-children>a::after {
  content: '';
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRkZGRiI+PHBhdGggZD0iTTEyIDE3LjQxNCAzLjI5MyA4LjcwN2wxLjQxNC0xLjQxNEwxMiAxNC41ODZsNy4yOTMtNy4yOTMgMS40MTQgMS40MTRMMTIgMTcuNDE0eiIvPjwvc3ZnPg==);
  width: 15px;
  height: 15px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  background-size: 15px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub-menu li {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

.sub-menu li a {
  display: block;
  padding: 15px 15px 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 300ms ease, color 300ms ease;
  margin-left: 0 !important;
  max-width: 100%;

}

.sub-menu .menu-item-has-children>a:hover::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMC4zODI5NiAyMC4wNzYyQzAuMTExNzg4IDE5LjgwNSAwLjExMTc4OCAxOS4zNjU0IDAuMzgyOTYgMTkuMDk0Mkw5LjE5NzU4IDEwLjI3OTZMMC4zODI5NiAxLjQ2NDk3QzAuMTExNzg4IDEuMTkzNzkgMC4xMTE3ODggMC43NTQxMzggMC4zODI5NiAwLjQ4Mjk2NkMwLjY1NDEzMSAwLjIxMTc5NCAxLjA5Mzc5IDAuMjExNzk0IDEuMzY0OTYgMC40ODI5NjZMMTAuNDM0MSA5LjU1MjE0QzEwLjgzNTkgOS45NTM5IDEwLjgzNTkgMTAuNjA1MyAxMC40MzQxIDExLjAwN0wxLjM2NDk2IDIwLjA3NjJDMS4wOTM3OSAyMC4zNDc0IDAuNjU0MTMxIDIwLjM0NzQgMC4zODI5NiAyMC4wNzYyWiIgZmlsbD0iIzAwOWNkZSI+PC9wYXRoPjwvc3ZnPgo=);
}

.menu-item-has-children>a:hover::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iIzAwOUNERSI+PHBhdGggZD0iTTEyIDE3LjQxNCAzLjI5MyA4LjcwN2wxLjQxNC0xLjQxNEwxMiAxNC41ODZsNy4yOTMtNy4yOTMgMS40MTQgMS40MTRMMTIgMTcuNDE0eiIvPjwvc3ZnPg==);
}

.sub-menu li a:hover::after {
  color: #009cde;
}

.menu-item-has-children>.sub-menu {
  display: none;
}

.menu-item-has-children:hover>.sub-menu {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.sub-menu .menu-item-has-children>.sub-menu {
  display: none;
}

.sub-menu .menu-item-has-children:last-child:hover>.sub-menu {
  left: auto;
  right: 100%;
}

.sub-menu .menu-item-has-children:hover>.sub-menu {
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 45vh;
  max-height: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 0 auto;
  background-image: var(--data-bg-desktop);
  width: 100%;
}

.hero .hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 0 180px;
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
}

.hero .hero__container.small {
  padding: 146px 0;
}

.hero .hero__container .hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  width: 60%;
  min-width: 780px;
  padding-top: 24px;
  padding-bottom: 24px;
  max-width: 1140px;
}

.hero .hero__container h1 {
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
}

.hero .hero__container p {
  font-family: "Brandon Grotesque medium", sans-serif;
  width: 85%;
  font-weight: 450;
  font-size: 1.5rem;
  line-height: 140%;
  color: #ffffff;
  margin: 1.5rem 0;
  text-transform: uppercase;
}

.hero .hero__container a {
  width: 280px;
  font-weight: 600;
}

.hero .background__mobile {
  display: none;
}

.label__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.label__container p {
  color: var(--Black-abbott, #000);
  text-align: center;
  font-family: var(--third-font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 140%;
  margin-top: 40px;
  padding: 0 80px;
}

.text__label {
  font-weight: 420;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--Charcoal, #222731);
  padding: 1rem 2.5rem;
  border: 2px solid #000000;
  border-radius: 20px 0px;
  background-color: #ffffff;
  z-index: 2;
}

.abbott__entry-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abbott__entry-content figure {
  padding: 0px 180px !important;
  margin: 0;
  width: 100%;
  max-width: 1600px;
}

.abbott__entry-content iframe {
  padding: 0px 180px;
  max-width: 1600px;
  width: 100%;
  aspect-ratio: 14 / 6 !important;
}

.abbott__entry-content table tbody tr td:first-child {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 2rem;
}

.abbott__entry-content table td strong {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.25rem;
  text-align: right;
}

.abbott__entry-content table td {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.25rem;
  text-align: justify;
  padding: 0 1.5rem;
}

.abbott__entry-content h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
}

.abbott__entry-content p,
a,
span,
button {
  font-family: var(--main-font), "Times New Roman", Times, serif;
  font-size: 20px;
}

ol {
  margin: 0rem !important;
}

ol li a {
  word-break: break-all;
}

.auth__nav-item.abbott__logo a.custom-logo-link img {
  max-width: 120px;
  height: auto;
  max-height: 37px;
}

.trending {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.trending .trending__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 1600px;
  width: 100%;
  padding: 0px 180px 0;
  margin: 0 auto;
}

.splide.trending {
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.splide.trending .splide__track {
  max-width: 100%;
}

.splide__pagination {
  position: static !important;
  padding-top: 32px !important;
}

.splide__pagination__page {
  background: #888b8d !important;
  height: 12px !important;
  width: 12px !important;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
  height: 14px !important;
  width: 14px !important;
  background: #009cde !important;
  z-index: 1;
}

.splide__arrow {
  background: transparent !important;
  border-radius: 0 !important;
  height: 68px !important;
  width: 68px !important;
  opacity: 1 !important;
}

.splide__arrow svg {
  fill: #FFF !important;
  height: 68px !important;
  width: 68px !important;
  stroke: #fff;
  stroke-width: 0px !important;
}

/*.splide__arrow:hover {
  background: #000 !important;
}
.splide__arrow svg:hover path {
  stroke: #fff;
}
.splide__arrow svg:hover rect {
  stroke: transparent;
}
.splide__arrow--next {
  right: 0 !important;
}*/

.splide__arrow--prev {
  left: 0 !important;
}

/*.splide__arrow--prev svg {
  -webkit-transform: scaleX(1) !important;
  -ms-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
}*/
/*.splide__arrow--prev:hover svg path {
  fill: white;
}*/
.abbott__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* min-width: 588px; */
}

.abbott__card>div:first-child {
  position: relative;
  overflow: hidden;
}

.abbott__card>div:first-child img {
  width: 100% !important;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  height: 300px;
  object-fit: cover;
}

.abbott__card:hover>div:first-child img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.abbott__card:hover>div:first-child::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -o-linear-gradient(bottom,
      rgba(0, 76, 151, 0.3) 0%,
      rgba(0, 76, 151, 0.3) 100%);
  background: -webkit-gradient(linear,
      left bottom, left top,
      from(rgba(0, 76, 151, 0.3)),
      to(rgba(0, 76, 151, 0.3)));
  background: linear-gradient(0deg,
      rgba(0, 76, 151, 0.3) 0%,
      rgba(0, 76, 151, 0.3) 100%);
}

.abbott__card:hover .btn__abbott.btn__transparent {
  opacity: 1;
}

.abbott__card .card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 18px 16px;
  gap: 8px;
}

.abbott__card .card__info h3 {
  color: var(--Black-abbott, #000);
  font-size: 20px;
  font-weight: 450;
  line-height: 140%;
  text-transform: uppercase;
  margin: 10px 0;
}

.abbott__card .card__info p {
  color: #000;
  font-family: var(--third-font), "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  max-width: 100%;
  word-wrap: break-word;
}

.abbott__card .card__info .date {
  color: var(--neutral-text-subdued-gray, #616161);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.card__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card__labels span {
  font-size: 14px;
  font-weight: 450;
  line-height: 140%;
  text-transform: uppercase;
  color: #000;
}

.card__labels span.text__gastroenterology {
  color: var(--Green, #00b140);
}

.card__labels span.text__central-nervous-system {
  color: var(--Primary-blue, #009cde);
}

.card__labels span.text__cardiovascular {
  color: var(--Red, #e4002b);
}

.card__labels span.text__respiratory {
  color: #004c97;
}

.card__labels span.text__pain {
  color: var(--Red, #e10098);
}

.card__labels span.text__womens-health {
  color: var(--Red, #d787b5);
}

.trending .btn__all__notes {
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 48px;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 2rem;
  width: 100%;
}

.banner.banner__areas {
  /* background-image: url("../img/img_back_areas.png"); */
}

.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 1600px;
  padding: 130px 180px;
  margin: 0 auto;
}

.banner__container .banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}

.banner__container h2 {
  color: #fff;
  font-family: var(--main-font);
  font-size: 44px;
  font-weight: bold;
  line-height: 120%;
  text-transform: uppercase;
}

.banner__container p {
  color: #fff;
  font-size: 20px;
  font-weight: 450;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Brandon Grotesque bold";
}

.banner__container a {
  margin-top: 1rem;
  width: 282px;
}

.our__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 100px 0;
  width: 100%;
}

.our__products .our__products__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 1600px;
  width: 100%;
  padding: 48px 68px 0;
  margin: 0 auto;
}

.splide.products {
  padding: 0 88px;
}

.splide.products .splide__arrow svg {
  fill: none !important;
}

.splide.products .splide__arrow--prev svg {
  transform: scaleX(1);
}

.product__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

.product__card .card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.product__card .card__info h3 {
  color: var(--Charcoal, #222731);
  font-size: 44px;
  font-weight: 420;
  line-height: 120%;
  text-transform: uppercase;
}

.product__card .card__info p {
  color: var(--Charcoal, #222731);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  font-family: var(--third-font);
  font-size: 1.25rem;
  font-weight: 400;
}

.product__card .card__info p strong,
.product__card .card__info p b {
  font-weight: 700;
}

.our__products .splide__slide {
  -ms-flex-item-align: center;
  align-self: center;
}

.card__label__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.btn__products {
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 56px;
}

.footer {
  width: 100%;
  height: 81px;
  position: absolute;
  left: 0;
}

.footer .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #000;
}

.footer .footer__container .footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1600px;
  width: 100%;
  padding: 48px 40px 60px;
  margin: 0 auto;
}

.footer .footer__container .footer__top .footer__img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 30%;
}

.footer .footer__container .footer__top .footer__img div {
  margin-top: 1rem;
  color: #e9e9e9;
  font-family: var(--main-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 124%;

}

.footer .footer__container .footer__top .footer__options {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 70%;
  /* padding-right: 118px; */
}

.footer .footer__container .footer__top .footer__socials {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer__option__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
}

.footer__opt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 33.33%;
  padding: 0 30px;
}

.footer__opt h4 {
  color: #e9e9e9;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: bold;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer__opt span {
  color: #e9e9e9;
  font-family: var(--main-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 124%;
  text-transform: uppercase;
}

.footer__opt span:hover {
  color: #009cde;
}

.socials__icons svg:hover rect {
  fill: #009cde;
  stroke: transparent;
}

.socials__icons a:nth-of-type(2) svg:hover rect:nth-of-type(2) {
  fill: transparent;
}

.socials__icons a:nth-of-type(4) svg:hover path:nth-of-type(2) {
  fill: #009cde;
}

.footer .footer__container .footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #222731;
}

.footer .footer__container .footer__bottom .footer__bottom__content {
  text-align: center;
  padding: 1rem;
}

.footer .footer__container .footer__bottom span {
  color: #e9e9e9;
  font-family: "Brandon Grotesque regular";
  font-size: 14px;
  line-height: 150%;
}

.footer .footer__container {
  /*  */
}

.socials__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.abbot__error {
  padding: 128px 0 96px;
}

.abbot__error .abbot__error__container {
  max-width: 750px;
  margin: auto;
  padding: 0 2rem;
  text-align: center;
}

.abbot__error .abbot__error__container h1 {
  color: var(--Black-abbott, #000);
  font-family: var(--main-font);
  font-size: 250px;
  font-weight: 420;
  line-height: 1.35em;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.abbot__error .abbot__error__container h2 {
  color: #000;
  font-family: var(--third-font);
  font-size: 100px;
  font-weight: 700;
  line-height: 140%;
}

.abbot__error .abbot__error__container p {
  color: #000;
  text-align: center;
  font-family: var(--main-font);
  font-size: 28px;
  font-weight: 420;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 32px;
}

.abbot__error .abbot__error__container .abbot__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4rem;
  padding: 0;
}

.legals {
  width: 100%;
}

.legals__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0px 180px 0px;
  gap: 64px;
  margin: auto;
  max-width: 1600px;
}

.text__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.text__block p:empty {
  display: none;
}

.text__block a {
  font-size: 1rem;
}

.text__block .title {
  color: #000;
  font-family: var(--main-font);
  font-size: 32px;
  font-weight: 450;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text__block table td {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
}

.legals__container .text__block h1 {
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase !important;
  padding: 0 0 3rem;
  margin: 0;
  font-weight: 450 !important;
  color: #000;
}

.legals__container .text__block h2 {
  font-size: 1.5rem;
  font-family: "Brandon Grotesque medium", sans-serif;
  text-transform: uppercase !important;
  padding: 0 0 3rem;
  font-weight: 450 !important;
  color: #000;
}

.legals__container .text__block h1 strong,
.legals__container .text__block h2 strong {
  font-weight: 450 !important;
}

.text__block .subtitle {
  color: var(--Black-abbott, #000);
  font-family: var(--third-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 8px;
}

.text__block .main__text {
  color: #000;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.text__block .indent__text {
  color: #000;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 140px;
}

.text__block p {
  color: #000;
  font-family: "Georgia", serif;
  font-size: 1.25rem !important;
  line-height: 150%;
  margin: 0;
  margin-bottom: 3rem;
  text-align: justify !important;
}

.text__block p a {
  color: #000 !important;
  font-family: "Georgia", serif;
  font-size: 1.25rem !important;
  line-height: 150%;
  margin: 0;
  text-align: justify !important;
  margin-bottom: 3rem;
}

.text__block p strong {
  font-family: "Georgia", serif;
  font-size: 1.25rem !important;
}

.text__block p sup {
  top: -0.5em;
  font-family: "Georgia", serif;
  font-size: 0.875rem !important;
}

.text__block ul {
  padding: 0 1rem 3rem;
  margin: 0;
}

.text__block ul li {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  color: #000;
  text-align: justify !important;
}

.text__block p iframe {
  width: 800px;
  height: 400px;
}

ul li,
ol li,
ol li a {
  font-family: "Georgia", serif;
  font-size: 1rem;
}

ul li strong {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
}

/* colors text categories */

.text__products-and-innovation {
  color: #5bc2e7;
}

.text__strategy-and-strength {
  color: #00b140;
}

.text__healthy-heart {
  color: #e4002b;
}

.text__diabetes-care {
  color: #eeb33b;
}

.text__pain-and-movement {
  color: #004f71;
}

.text__diagnostics-testing {
  color: #aa0061;
}

.text__nutrition-health-and-wellness {
  color: #64ccc9;
}

.text__sustainability {
  color: #470a68;
}

.button__copylink {
  position: relative;
}

.button__copylink span {
  position: absolute;
  left: -2px;
  width: 32px;
  border-radius: 0.25rem;
  padding: 0.25rem 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5em;
  top: -24px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.button__copylink span.open {
  top: -32px;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.button__copylink span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-top: 5px solid rgba(0, 0, 0, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.button__copylink span svg {
  max-width: 18px;
  max-height: 18px;
}

/* pagination */

.pagination__block {
  width: 100%;
}

.pagination__inner {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}

.pagination__inner .page-numbers {
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #cacaca;
  background: #fff;
  margin: 0.25rem;
  color: #2c3131;
  text-decoration: none;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.pagination__inner .page-numbers.prev,
.pagination__inner .page-numbers.next {
  position: relative;
  overflow: hidden;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  opacity: 0;
}

.pagination__inner .page-numbers.prev {
  background-image: url("../img/icons/icon__left-gray.svg");
}

.pagination__inner .page-numbers.prev:hover {
  background-image: url("../img/icons/icon__left.svg");
}

.pagination__inner .page-numbers.next {
  background-image: url("../img/icons/icon__right-gray.svg");
}

.pagination__inner .page-numbers.next:hover {
  background-image: url("../img/icons/icon__right.svg");
}

.pagination__inner .page-numbers:hover,
.pagination__inner .page-numbers.current {
  border-color: #2c3131;
}

html[dir="rtl"] .nav__logo {
  padding-right: 1rem;
}

html[dir="rtl"] .hero .hero__container .hero__info {
  padding-right: 1rem;
}

/* MODAL */
.overlay {
  display: block !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #2c3131;
  opacity: 0.55;
  -webkit-backdrop-filter: blur(0.063rem);
  backdrop-filter: blur(0.063rem);
  z-index: 999;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  max-height: 660px !important;
  min-height: 660px !important;
  height: 100% !important;
  margin: auto !important;
  gap: 0.4rem;
  width: 34.625rem !important;
  padding: 3.25rem 7.125em !important;
  position: fixed !important;
  z-index: 101 !important;
  top: 5% !important;
  left: 0 !important;
  z-index: 1010 !important;
  right: 0 !important;
  background: #ffffff;
  -webkit-box-shadow: 0px 0.75rem 1rem rgba(7, 14, 30, 0.08);
  box-shadow: 0px 0.75rem 1rem rgba(7, 14, 30, 0.08);
  border-radius: 0.75rem;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.close_m_new {
  position: absolute;
  top: 3.875rem;
  right: 1.875rem;
  cursor: pointer;
}

.login__container,
.restore__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
  align-items: center;
}

.login__container p {
  text-align: center;
}

.login__container h3,
.restore__container h3 {
  font-weight: 420;
  font-size: 1.75rem;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.login__container img.logo__abbott__modal {

  width: 11.25rem;

}

.restore__container img {
  width: 30%;
  -ms-flex-item-align: center;
  align-self: center;
}

.restore__container p {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  text-align: center;
  color: #222731;
}

.login__input,
.restore__input,
.login__restore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.login__input label,
.restore__input label,
.login__restore label {
  font-family: "Calibri";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 160%;
  color: #222731;
}

.login__input input,
.restore__input input,
.login__restore input {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  color: #222731 !important;
  padding: 0.75rem 0.5rem !important;
  width: 19.375rem;
}

.new_account .login__container .modal__btn .login__input .show-password,
.show-new-password,
.show-repeat-password,
.show-reg-pass,
.show-repeat-reg {
  position: absolute;
  cursor: pointer;
  right: 1.5rem;
  top: 50%;
}

.show-password.hide,
.show-new-password.hide,
.show-repeat-password.hide,
.show-reg-pass.hide,
.show-repeat-reg.hide {
  display: none;
}

.pass__forgot,
.create__account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.pass__forgot .forgot,
.create__account .account {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
  color: #222731;
}

.pass__forgot .recovery,
.create__account .account__link {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #004f71;
  cursor: pointer;
}

.modal__restore .modal__btn {
  /*  width: 65%;*/
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 21.25rem;
}

.modal__login .modal__btn {
  width: 25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__btn .btn__geek.btn__blue {
  width: 19.375rem;
  text-transform: uppercase;
  cursor: pointer;
  margin: 1.25rem 0;
}

.modal__btn .btn__geek.btn__blue__light {
  width: 90%;
  margin: 1.25rem 0;
}

.modal__btn .btn__geek.btn__blue__light.btn__back {
  width: 90%;
  margin: 0;
}


.modal__btn span::after {
  content: "-";
  width: 3.125rem;
  border-top: 1p solid #000000;
}

.hr__login {
  width: 100%;
  display: flex;
  align-content: center;
  position: relative;
  margin: 1.25rem 0;

}

.hr__login hr {
  height: 0.063rem;
  background: #000;
  border: none;
  width: 100%;
}

.hr__login span {

  position: absolute;
  width: 1.875rem;
  left: 0;
  right: 0;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  top: -0.438rem;
  font-size: 1.25rem;

}

.close__login {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  cursor: pointer;
}

.close__back {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  cursor: pointer;
}

.modal__btn p {
  font-family: var(--main-font);
  /* font-size: 0.75rem; */
  font-size: 1rem;
  text-align: center;
  font-weight: 100;
  /* text-transform: uppercase; */
}

.modal__btn p strong {

  font-family: var(--main-font);
  font-size: 0.75rem;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.login__error {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 160%;
  color: #e4002b;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(0.125rem);
  -ms-transform: translateY(0.125rem);
  transform: translateY(0.125rem);
}

/* Modal Button */
.btn__geek {
  font-family: var(--main-font);
  font-weight: 450;
  font-size: 0.875rem;
  line-height: 140%;
  padding: 1rem 0;
  border-radius: 0.5rem;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.btn__geek.btn__blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15rem;
  padding: 0.875rem 2.5rem;
  border-radius: 6.25rem;
  color: #ffffff;
  background-color: #009cde;
  text-transform: uppercase;
}

#wpadminbar {
  display: none !important;
}

/* Modal disclaimer */
.modal_disclaimer {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(81 91 116 / 70%);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(173 148 148 / 70%);
  width: 100%;
  max-width: 500px;
  position: relative;
  margin: 1rem;
  min-height: 500px;
}

.modal_disclaimer .close_m_new {
  position: absolute;
  top: 3.875rem;
  right: 1.875rem;
  cursor: pointer;
}

.modal_disclaimer .close_m_new .btn-close {
  font-size: 1.5rem;
  transform: translate(10px, -20px);
  padding: 0;
  background: #0000;
  outline: none;
  border: none;
  cursor: pointer;
}

.container__form {
  margin: 1rem;
  padding: 6rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  gap: 20px;
}

.close {
  cursor: pointer;
  align-self: end;
  font-size: 4.25rem;
}

.container__form img {
  width: 11.25rem;
  max-height: 100px;
}

.show {
  display: flex;
}

.form__register {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form__register h3 {
  font-weight: 420;
  font-size: 1.75rem;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--main-font);
}

.form__register p {
  font-size: 16px;
  text-align: center;
  font-weight: 100;
  font-family: var(--main-font);
}

/*Modal General */
.modal_general {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(81 91 116 / 70%);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.content__modal__general {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.button__deny,
.button__accept {
  padding: 20px 28px;
  -ms-flex-item-align: start;
  align-self: center;
  text-transform: uppercase;
  margin-top: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--main-font);
  font-weight: 450;
  color: #fff !important;
  background-color: #009cde;
  width: 10rem;
  display: flex;
  justify-content: center;
}

.content__buttons__modal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.content__modal__general p {
  font-size: 16px;
  text-align: center;
  font-weight: 100;
  font-family: var(--main-font);
}

.title__modal__general {
  font-weight: 420;
  font-size: 1.75rem;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--main-font);
}

/* Auth */
.auth__nav-item {
  color: var(--White, #f5f5f5);
  font-size: 15px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.auth__nav-item>div>span {
  font-size: 15px !important;
}

.auth__nav-item>div>a>span {
  font-size: 15px !important;
}

/*Dark Mode*/

.ctn__darktoggle {
  position: relative;
  width: 3.5rem;
  height: 1.875rem;
  border-radius: 10em;
  padding: 0 0.275rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: #232730;
  border: 0.063rem solid #fff;
}

.toggle__mode {
  margin-left: 20px;
}

.btn__indicator {
  position: absolute;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-image: url(../img/icons/icon__moon.svg);
  background-repeat: no-repeat;
  background-position: 0.25rem center;
  background-size: 1rem 1rem;
}

.btn__icon-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn__icon {
  color: var(--light-icon-color);
  font-size: 3rem;
}

body.lightmode nav {
  background-color: #fff;
}

body.lightmode .menu-item a {
  color: #222731;
}

body.lightmode .auth__nav-item {
  color: #222731;
}

body.lightmode .btn__indicator {
  -webkit-transform: translateX(1.375rem);
  -ms-transform: translateX(1.375rem);
  transform: translateX(1.375rem);
  background-color: var(--dark-color);
  -webkit-box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.3);
  background-color: #222731;
  background-image: url(../img/icons/icon__sun.svg);
  background-repeat: no-repeat;
  background-position: 0.25rem center;
  background-size: 1rem 1rem;
}

body.lightmode .ctn__darktoggle {
  background-color: #fff;
  border: 0.063rem solid #222731;
}

/*Search */
.auth__nav-item.search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

.auth__nav-item.search svg {
  cursor: pointer;
}

.search__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 0.625rem;
  width: auto;
  position: absolute;
  top: 6.25rem;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  overflow: visible;
  -webkit-transition: opacity 200ms linear, visibility 200ms;
  -o-transition: opacity 200ms linear, visibility 200ms;
  transition: opacity 200ms linear, visibility 200ms;
}

.search__container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0.25rem 0.625rem #626262;
  box-shadow: 0px 0.25rem 0.625rem #626262;
}

.search__container input {
  padding: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222731;
  border: none;
  outline: none;
}

.search__container button {
  background-color: #009cde;
  height: 2.75rem;
  width: 2.75rem;
  border: none;
  cursor: pointer;
}

.section__results {
  padding: 50px 72px;
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.page-title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
  color: #888b8d;
  font-family: "Georgia";
  margin-bottom: 1.5rem;
}

.entry-title a {
  font-family: "Brandon Grotesque medium";
  font-size: 1.375rem;
  color: #000000 !important;
  line-height: 140%;
}

.entry-summary {
  margin: 0;
}

.entry-summary p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  font-family: "Georgia";
  text-align: left;
  padding: 0;
}

.container__results {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 1420px) {
  .splide__arrow {
    height: 48px !important;
    width: 48px !important;
  }

  .splide__arrow svg {
    height: 48px !important;
    width: 48px !important;
  }
}

@media screen and (max-width: 1320px) {
  .hero .hero__container p {
    width: 70%;
  }
}

@media screen and (max-width: 1080px) {
  .navbar .navbar__container {
    padding: 22px 16px;
  }

  .navbar .navbar__container .nav .nav__content {
    gap: 24px;
  }

  .hero .hero__container .hero__info {
    min-width: auto;
  }

  .trending .trending__container {
    /* padding: 48px 16px 0; */
    padding: 48px 0 0 16px;
  }

  .splide.trending {
    padding: 0 64px;
  }

  .banner__container {
    padding: 130px 80px;
  }

  .our__products .our__products__container {
    padding: 48px 16px;
  }

  .splide.products {
    padding: 0 64px;
  }

  .product__card {
    gap: 40px;
  }

  .legals__container {
    padding: 0px 44px;
  }

  .hero .hero__container {
    padding: 0 44px;
  }

  .text__block .indent__text {
    padding-left: 80px;
  }

  /* FOOTER */

  .footer .footer__container .footer__top {
    padding: 48px 80px 36px;
  }

  .socials__icons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__opt:nth-child(3) {
    width: 142px;
  }

  .splide__arrow {
    height: 48px !important;
    width: 48px !important;
  }

  .splide__arrow svg {
    height: 48px !important;
    width: 48px !important;
  }

  .abbott__entry-content iframe {
    padding: 0px 44px;
  }

  .abbott__entry-content figure {
    padding: 0px 44px !important;
  }

  .sub-menu {
    min-width: 120px;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero .hero__container p {
    width: 75%;
  }

  .abbott__entry-content iframe {
    padding: 0px 44px;
  }

  .abbott__entry-content figure {
    padding: 0px 44px !important;
  }

  .sub-menu {
    min-width: 100px;
  }
}


@media screen and (max-width:820px) {
  .splide__arrow {
    top: 98%;
  }

  .hero {
    height: 200px;
    background-position: center;
  }

  .hero .hero__container p {
    font-size: 16px;
    width: 80%;
    margin: 0;
  }

  .hero .hero__container .hero__info {
    gap: 10px;
    height: 100%;
  }

  .account__container {
    padding-right: 25px;
  }
}

@media screen and (max-width: 960px) {
  .btn__abbott {
    font-size: 16px;
  }

  .navbar.empty .navbar__container.reverse .hamb {
    display: none;
  }

  .nav.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .nav.empty .nav__content {
    padding: 22px 0;
    gap: 0 !important;
  }

  .nav.empty .nav__content .nav__item.mobile {
    display: none;
  }

  .navbar .navbar__container {
    padding: 22px 0;
  }

  .imagen__rigth img {
    width: 150px;
  }

  .nav__logo {
    padding-left: 1.15rem;
  }

  .hamb {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hamb-line {
    background: #fff;
    display: block;
    height: 2.5px;
    position: relative;
    border-radius: 2px;
    width: 24px;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }

  .hamb-line::before,
  .hamb-line::after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .hamb-line::before {
    top: 7px;
    width: 14px;
    height: 2.5px;
  }

  body.lightmode .hamb-line {
    background: #222731;
  }

  body.lightmode .hamb-line::before,
  body.lightmode .hamb-line::after {
    background: #222731;
  }

  .hamb-line::after {
    top: -7px;
    height: 2.5px;
    width: 24px;
  }

  .nav {
    background: #222731;
    position: absolute;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start !important;
    -ms-flex-align: self-start !important;
    align-items: self-start !important;
    top: 94px;
    max-height: 0px;
    height: 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    border-radius: 0px 0px 10px 10px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(204, 204, 204, 0.2);
    box-shadow: 0px 4px 4px 0px rgba(204, 204, 204, 0.2);
    -webkit-transition: max-height 0.4s ease-out, height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out, height 0.4s ease-out;
    transition: max-height 0.4s ease-out, height 0.4s ease-out;
  }

  body.lightmode .nav {
    background-color: #FFF;
  }

  .nav .nav__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start !important;
    -ms-flex-align: self-start !important;
    align-items: self-start !important;
    padding: 46px 24px 0;
    width: 100%;
  }

  .nav .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 8px;
  }

  .nav .nav__item a {
    width: 100%;
  }

  .nav__item.mobile {
    display: block;
    margin-top: 90px;
  }

  .nav__item.mobile a {
    width: auto;
  }

  .nav__item.mobile .socials__icons {
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 54px;
    border-top: 1px solid #fff;
  }

  .side-menu:checked~.nav {
    max-height: 1180px;
    z-index: 10;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    height: calc(100vh - 95px);
    -webkit-transition: max-height 0.4s ease-in, height 0.4s ease-in;
    -o-transition: max-height 0.4s ease-in, height 0.4s ease-in;
    transition: max-height 0.4s ease-in, height 0.4s ease-in;
    overflow-y: auto;
  }

  .side-menu:checked~.hamb .hamb-line {
    background: transparent;
  }

  .side-menu:checked~.hamb .hamb-line::before {
    width: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }

  .side-menu:checked~.hamb .hamb-line::after {
    width: 22px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
  }

  .hero .hero__container h1 {
    font-size: 32px;
  }

  .hero .hero__container a {
    width: 100%;
  }

  .label__container p {
    font-size: 18px;
    padding: 0 16px;
    margin-top: 32px;
  }

  .trending {
    padding: 40px 0;
  }

  .splide.trending {
    padding: 0;
  }

  .card__labels span {
    font-size: 14px;
  }

  .abbott__card .card__info h3 {
    font-size: 16px;
  }

  .abbott__card .card__info p {
    font-size: 14px;
  }

  .abbott__card .card__info .date {
    font-size: 12px;
  }

  .banner__container {
    padding: 80px 16px;
  }

  .banner__container h2 {
    font-size: 32px;
  }

  .banner__container p {
    font-size: 18px;
    overflow: hidden;
    word-wrap: break-word;
  }

  .banner__container a {
    width: 100%;
  }

  .our__products {
    padding: 80px 0;
  }

  .product__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .product__card .card__info {
    padding: 8px 16px 24px;
    gap: 10px;
  }

  .splide.products {
    padding: 0;
  }

  .card__labels .card__label__icon span {
    font-size: 14px;
  }

  .product__card .card__info h3 {
    font-size: 20px;
  }

  .product__card .card__info p {
    font-size: 16px;
  }

  .text__block .indent__text {
    padding-left: 60px;
  }

  .abbot__error .abbot__error__container {
    padding: 0 1rem;
  }

  .abbot__error .abbot__error__container h1 {
    font-size: 120px;
    line-height: 120%;
  }

  .abbot__error .abbot__error__container h2 {
    font-size: 60px;
    line-height: 140%;
  }

  .abbot__error .abbot__error__container p {
    font-size: 24px;
  }

  .abbot__error .abbot__error__container .abbot__btn a {
    width: 100%;
  }

  .footer .footer__container .footer__top {
    padding: 32px 36px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .footer__option__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .footer__opt:nth-child(3) {
    width: 100%;
  }

  .socials__icons {
    gap: 24px;
  }

  .splide__arrow {
    height: 48px !important;
    width: 48px !important;
  }

  .splide__arrow svg {
    height: 48px !important;
    width: 48px !important;
  }

  .logout__account {
    display: block !important;
    padding-top: 1rem !important;
  }

  .account__container.active .menu__logout {
    display: block;
  }

  .icon__display {
    width: 15px;
    height: 15px;
  }

  .account__container:hover .menu__logout {
    display: none;
  }

  .menu__logout.active{
    display: block !important;
  }
}

/* MENU */

.nav {
  width: 100%;
}

.nav__content {
  width: 100%;
}

.menu-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.menu {
  list-style: none;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin: 0;
}

.menu-item a,
.menu-item a:visited {
  float: left;
  margin-left: 1.15rem;
  color: var(--White, #f5f5f5);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.menu-item a:active,
.menu-item a:focus,
.menu-item a:hover {
  color: var(--Primary-blue, #009cde);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.menu-container-footer .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.menu-container-footer .menu .menu-item {
  margin-bottom: 16px;
}

.menu-container-footer .menu .menu-item a {
  float: none;
  margin: 0;
  color: #e9e9e9;
  font-family: var(--main-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 124%;
  text-transform: uppercase;
}

.abbott__entry-content p {
  max-width: 100%;
  overflow: hidden;
}

.abbott__entry-content ol {
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}

.abbott__entry-content ol li {
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

@media screen and (max-width: 960px) {

  .menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0px;
    margin-bottom: 24px;
  }

  .menu-container-footer .menu .menu-item {
    margin-bottom: 10px;
  }

  .abbott__entry-content figure {
    padding: 0px 20px !important;
  }

  .legals__container .text__block h1 {
    font-size: 1.5rem;
    line-height: 1.5em;
  }

  .legals__container .text__block h2 {
    font-size: 1.25rem;
  }

  .auth__nav-item.search {
    justify-content: flex-start;
  }

  .search__container {
    top: 29.5rem;
  }

  .imagen__rigth {
    padding-left: 16px;
  }
}


@media screen and (max-width: 812px) and (orientation: landscape) {
  .navbar .navbar__container .nav .nav__content {
    padding-top: 1rem;
    gap: 0;
  }

  .menu .menu-item {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .side-menu~.nav {
    top: 67px;
    border-radius: 0;
  }

  .side-menu:checked~.nav {
    top: 67px;
    height: calc(100vh - 67px);
    border-radius: 0;
  }

  .navbar .navbar__container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav__item.mobile .socials__icons {
    padding-top: 0.75rem;
  }

  .nav__item.mobile {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .modal {
    width: 100%;
  }

  .our__products {
    padding: 20px 0;
  }

  .section__results {
    padding: 50px 16px;
  }

  .auth__nav-item.search {
    justify-content: flex-start;
  }

  .search__container {
    top: 29.5rem;
  }

  .menu-container {
    flex-direction: column;
  }

  .logo__mobile {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .auth__nav-item.abbott__logo {
    display: none;
  }

  .nav .nav__content {
    padding: 46px 0px 0;
  }

  .sub-menu {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
    background-color: #222731;
    list-style: none;
    max-height: 100vh;
    overflow-y: auto;
    margin-left: 1rem;
  }

  .menu-item-has-children {
    flex-direction: column;
  }

  .menu-item-has-children.active>.sub-menu {
    display: block !important;
  }

  .sub-menu .menu-item-has-children>.sub-menu {
    display: none !important;
  }

  .sub-menu .menu-item-has-children.active>.sub-menu {
    display: block !important;
  }

  .menu-item-has-children:hover>.sub-menu {
    display: none;
  }

  .sub-menu .menu-item-has-children:hover>.sub-menu {
    left: 0;
  }

  .sub-menu li a {
    padding: 3px 10px;
  }

  .sub-menu .menu-item {
    margin-bottom: 0px;
  }

  .side-menu:checked~.nav {
    overflow-y: auto;
    max-height: 100vh;
  }

  .navbar.fixed {
    position: fixed !important;
  }

  .imagen__rigth {
    padding-left: 16px;
  }

  .banner {
    margin-top: 0;
  }

  .references__page.references__postGen ol {
    margin: 0 0 1em 0em;
  }

  .legals__container {
    padding: 0px 30px 0px;
  }

  .text__block p a,
  .text__block p {
    font-size: 1rem !important;
  }

  .text__block p strong {
    font-size: 1rem !important;
  }

  .text__block p sup {
    font-size: 1rem !important;
  }

  ul li,
  ol li,
  ol li a {
    font-size: 0.820rem;
  }

  ul li strong {
    font-size: 1rem;
  }

  .hero {
    height: 250px;
  }

  .hero .hero__container p {
    width: 75%;
  }

  .abbott__entry-content figure {
    padding: 0px 30px !important;
  }

  .abbott__entry-content iframe {
    padding: 0px 30px;
  }

  .trending .trending__container {
    padding: 0 30px;
  }

  .splide.trending {
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .text__block table td {
    font-size: 1rem;
  }

}

@media screen and (max-width: 600px) {
  .modal {
    width: 100% !important;
  }

  .splide.products .splide__arrow--prev {
    top: 99%;
    left: 70px !important;
  }

  .splide.products .splide__arrow--next {
    top: 99%;
    right: 70px !important;
  }

  .imagen__rigth {
    padding-left: 20px;
  }

  .footer .footer__container .footer__top .footer__img {
    width: 100%;
  }

  .footer .footer__container .footer__top .footer__options {
    width: 100%;
  }

  .footer__option__list {
    gap: 20px;
  }

  .footer__opt {
    width: 100%;
    padding: 0px;
  }

  .btn__abbott.btn__transparent {
    opacity: 1;
  }

  .hero {
    height: auto;
    background-image: none;
    max-height: none;
    flex-direction: column;
  }

  .hero .background__mobile {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero .hero__container .hero__info {
    gap: 10px;
    padding: 0;
    width: 100%;
    text-align: left !important;
  }

  .hero .hero__container p {
    margin: 0;
    color: #000 !important;
    width: 100%;
  }

  .hero .background__mobile img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero .hero__container {
    padding: 3rem 30px 0px;
  }

  .hero .hero__container h1 {
    font-size: 23px;
    color: #000 !important;
    margin-bottom: 3rem;
  }

  .legals__container .text__block h2 {
    font-size: 1.25rem;
  }

  .abbott__entry-content table tbody tr td:first-child {
    margin: 0rem;
    word-wrap: break-word;
  }
}

.default__icon {
  display: block;
}

.hover__icon {
  display: none;
}

.social__icon__link:hover .default__icon {
  display: none;
}

.social__icon__link:hover .hover__icon {
  display: block;
}

a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}

/*QMS */
.qsm-quiz-container {
  width: 100%;
  max-width: 1600px;
  padding: 0rem 180px;
}

/*
.mlw_qmn_message_before p {
  margin: 0 !important;
  font-family: "Brandon Grotesque bold", sans-serif;
  font-size: 1.5rem;
}
*/
@media only screen and (max-width: 1080px) {
  .qsm-quiz-container {
    padding: 3rem 44px;
  }
}

@media only screen and (max-width: 768px) {
  .qsm-quiz-container {
    padding: 3rem 30px;
  }
}