/* ----- GLOBALS ----- */
:root {
  --blue-color: #081e46;
  --gold-color: #a88b34;
  --background-light-gray: #ebf1f8;
  --text-main-color: #4d4d4d;
  --text-gray-color: #7d7a86;

  --light-blue-color: #5eb3e4;
  --light-blue-hover-color: #3c91c2;
  --darker-gray-section-color: #f4f4f4;
  --gray-section-color: #f7f7f7;
  --blueish-gray-section-color: #f7fbfe;
  --text-dark-gray: #212121;
  --text-light-gray: #595a5c;
  --text-very-light-gray: #f7f7f7;
  --border-gray-light: 1px solid #e1e1e1;
  --slider-button-background: rgba(208, 82, 22, 0.7);
  --brown-color: #a27300;
  --brown-hover-color: #704000;
  --dark-gray-color: #151515;
  --salmon-color: #f58b6e;
}
* {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  font-family: "Lato", sans-serif;
  color: var(--text-main-color);
  background-color: #ebf1f8;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

/* ----- OFFLINE ----- */
.offline-message {
  text-align: center;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(../../images/offline/background.jpg);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.offline-message .offline-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}
.offline-message h1 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}
.offline-message .vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
}

/* ----- CSS LOADER ----- */

.lds-ellipsis {
  position: relative;
  vertical-align: bottom;
  width: 80px;
  height: 35px;
}
.lds-ellipsis div {
  position: absolute;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-blue-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* ----- CSS LOADER ----- */

#global-container {
  order: 0;
  flex: 1 0 auto;
  align-self: auto;
  width: 100%;
}
#content {
  overflow: auto;
}
.wrap {
  min-width: 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
}
.wrap p a {
  color: inherit;
  text-decoration: none;
}
.wrap p a:hover {
  text-decoration: underline;
}

.padded-section {
  padding: 70px 0;
}

.position-relative {
  position: relative;
}

.hidden {
  display: none;
}

.go-to-top {
  position: absolute;
  bottom: 100px;
  right: 100px;
  width: 40px;
  cursor: pointer;
  z-index: 9999;
}

.aditional-header-spacer {
  height: 128px;
  width: 100%;
}

.clear {
  clear: both;
  width: 0;
  height: 0;
}

.col1_2 {
  width: 50%;
}
.col1_2,
.col1_3,
.col2_3 {
  float: left;
}
.col2_3 {
  width: 66.6%;
}
.col1_3 {
  width: 33.3%;
}
.col1_2:nth-of-type(1) .padder {
  margin-right: 20px;
}
.col1_2:nth-of-type(2) .padder {
  margin-left: 20px;
}
.no-border {
  border: 0 !important;
}
.orange {
  color: var(--brown-color);
}
.green {
  color: #1dbc60;
}
.gold {
  color: var(--gold-color);
}
.link {
  cursor: pointer;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-50 {
  margin-top: 50px;
}
.margin-top-100 {
  margin-top: 100px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
video {
  width: 100% !important;
  height: auto !important;
}

label {
  display: block;
  margin: 20px 0 5px;
}
label:nth-of-type(1) {
  margin-top: 0;
}

input,
textarea,
select {
  font-size: 14px;
  padding: 8px;
  color: var(--text-light-gray);
  font-family: "Lato", sans-serif;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
  border: 1px solid #e0e0e0;
}
select {
  padding: 7px 25px 7px 7px;
  background-color: #fff;
  height: 37px;
  appearance: none;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='%23444' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

h1 {
  margin: 50px 0 30px;
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  text-align: left;
  color: var(--blue-color);
}
h2,
div#home-content-container h1 {
  margin-top: 50px;
  margin-bottom: 20px;
  line-height: 40px;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--gold-color);
}
h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  color: var(--blue-color);
}
p {
  line-height: 28px;
  margin: 10px 0;
}

.astitle {
  font-size: 30px;
  font-weight: 600;
  color: var(--blue-color);
  line-height: 35px;
}

.title-description {
  font-weight: 300;
  font-size: 26px;
  line-height: 30px;
  color: var(--text-light-gray);
}

.page-title {
  margin: 0 30px;
}

.page-title .wrap {
  background-color: var(--blue-color);
  border-radius: 100px;
  transform: translateY(-50%);
}

.page-title .wrap h1 {
  font-family: "Trajan";
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px 50px;
  margin: 0;
}

.shadowed-image {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#page-privacy-policy h1 {
  line-height: 34px;
  font-size: 30px;
  font-weight: 400;
}

#page-privacy-policy h2 {
  text-align: left;
  line-height: 28px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

#page-privacy-policy ul {
  padding-left: 30px;
}
#page-privacy-policy ul li {
  line-height: 28px;
}
#page-terms-of-service p {
  text-align: justify;
}
.page-header-image img {
  width: 100%;
  display: block;
}
.button-container {
  margin: 20px 0;
}
.button,
.linkbutton,
.linedbutton {
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  white-space: nowrap;
}
.button {
  background-color: var(--brown-color);
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
}
.button:hover,
.linedbutton:hover {
  -webkit-box-shadow: 0px 0px 20px 2px rgba(222, 222, 222, 1);
  -moz-box-shadow: 0px 0px 20px 2px rgba(222, 222, 222, 1);
  box-shadow: 0px 0px 10px 2px rgba(158, 158, 158, 0.75);
}
.link-button {
  background-color: transparent;
  color: #000;
}
.linkbutton:hover {
  color: var(--brown-color);
}

.linedbutton {
  border: 2px solid var(--gold-color);
  color: var(--gold-color);
  border-radius: 10px;
  font-size: 20px;
  text-transform: uppercase;
  display: inline-block;
}

.linedbutton.white {
  border: 2px solid #fff;
  color: #fff;
}

.button-loader {
  height: 29px;
  vertical-align: middle;
  position: relative;
  display: none;
}

.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.bottom-spacer {
  height: 50px;
}

.gray-section {
  background-color: var(--gray-section-color);
  box-shadow: 10px 40px 50px #f7f7f7;
}
.margin-50-vertical {
  margin: 50px 0;
}
.margin-100-vertical {
  margin: 100px 0;
}
.padding-50-vertical {
  padding: 50px 0;
}
.padding-80-vertical {
  padding: 80px 0;
}
.padding-100-vertical {
  padding: 100px 0;
}
.padding-200-vertical {
  padding: 200px 0;
}
.orange-section {
  background-color: #fcb728;
  color: #555;
}
.in-page-title h1 {
  text-align: left;
  color: var(--gold-color);
  text-transform: uppercase;
  z-index: 8;
  position: relative;
}
.page-content {
  margin-top: 50px;
}
.section {
  color: #666;
  padding: 50px 30px;
}
.section ul li {
  margin: 10px 0;
}
.section-splitter {
  position: relative;
}
.section.with-image .wrap {
  display: table;
}
.section-splitter-top {
  margin-top: 50px;
}
.section-splitter-top .section-splitter-inner1 {
  background-color: #d9ffa9;
  width: 100%;
  height: 30px;
  z-index: -1;
  -webkit-clip-path: polygon(0% 100%, 30% 0%, 100% 100%);
  -moz-clip-path: polygon(0% 100%, 30% 0%, 100% 100%);
  -ms-clip-path: polygon(0% 100%, 30% 0%, 100% 100%);
  clip-path: polygon(0% 100%, 30% 0%, 100% 100%);
}
.section-splitter-bottom {
  margin-bottom: 50px;
}
.section-splitter-bottom .section-splitter-inner1 {
  background-color: #d9ffa9;
  width: 100%;
  height: 30px;
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 0% 60%, 15% 0%, 65% 100%, 95% 60%, 100% 0);
  -moz-clip-path: polygon(0% 0%, 0% 60%, 15% 0%, 65% 100%, 95% 60%, 100% 0);
  -ms-clip-path: polygon(0% 0%, 0% 60%, 15% 0%, 65% 100%, 95% 60%, 100% 0);
  clip-path: polygon(0% 0%, 70% 100%, 100% 0%);
}
.section .col1,
.section .col2 {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.image-container {
  text-align: center;
}
.section .image-container img {
  max-height: 200px;
}
.form-container label {
  display: block;
  margin: 10px 0;
}
.form-container input,
.form-container textarea {
  width: 100%;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}
.form-container textarea {
  height: 179px;
}
.form-container .col1_2:nth-of-type(1) .padder {
  margin-right: 20px;
}
.form-container .col1_2:nth-of-type(2) .padder {
  margin-left: 20px;
}
.consent {
  font-size: 12px;
}
#consent-popup {
  max-width: 600px;
}
#consent-popup .consent-bar {
  width: 100%;
  background-color: #66a622;
  height: 30px;
}
#consent-popup .consent {
  margin: 40px;
  font-size: 14px;
}
.consent input {
  width: auto;
}
#consent-popup .button-container {
  margin-bottom: 20px;
}
#consent-popup .button {
  margin: 0 5px;
}

#page-banner img,
.image-container img {
  width: 100%;
  display: block;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  padding: 115px 0 0 100px;
}
.section-title img {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
}
.section-title h1,
.section-title h2 {
  text-transform: uppercase;
  color: var(--blue-color);
  font-weight: 400;
  margin: 0;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.5px;
  position: relative;
}

.lined-title {
  position: relative;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 600px;
  border-top: 1px solid var(--salmon-color);
  border-bottom: 1px solid var(--salmon-color);
  color: var(--salmon-color);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  padding: 20px 0;
  text-transform: uppercase;
}
.lined-title.gray {
  background-color: var(--gray-section-color);
}
.lined-title h1,
.lined-title h2,
.lined-title h3,
.lined-title h4 {
  margin: 0;
  color: var(--salmon-color);
}
/* ----- HEADER ----- */
#header {
  position: relative;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
}
#header-container {
  display: flex;
}
#logo {
  order: 0;
  flex: 0 0 auto;
  align-self: center;
}
#logo img {
  width: 100%;
  max-width: 140px;
  display: block;
  -webkit-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
}
#header #menu-container {
  order: 1;
  flex: 1 0 auto;
  align-self: center;
  text-align: right;
}

#header #menu-container ul#menu {
  margin: 0 auto;
  -webkit-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
}
ul.basket-link {
  margin: 20px 0 0;
}
#header #menu-container ul#menu li a,
ul.basket-link li a {
  font-size: 17px;
  letter-spacing: 0.5px;
  padding: 20px 50px 20px 0;
  display: block;
  text-transform: uppercase;
}

#header ul.nav {
  list-style: none;
  padding: 0;
  font-size: 0;
}
#header ul.nav li {
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
#header #top-menu ul.nav li {
  display: block;
  font-size: 15px;
  padding: 0;
}
#header ul#menu.nav li {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
#header ul.nav li:nth-last-of-type(1) {
  padding-right: 0;
}
#header ul.nav li a {
  text-decoration: none;
  color: var(--blue-color);
  transition: all 0.3s ease;
}
#header ul#menu.nav li:hover,
#header ul#menu.nav li.selected {
  border-bottom: 3px solid var(--gold-color);
}
#header #menu-container ul.nav li {
  border-left: 0;
  vertical-align: middle;
}

ul#menu li ul {
  list-style: none;
  zoom: 1;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 3px;
  background-color: transparent;
}

#header ul#menu.nav li ul li {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1px;
}

#header #menu-container ul#menu.nav li ul li a {
  padding: 20px;
}

#header ul#menu.nav li ul li:hover {
  border: 0;
}
#header ul#menu.nav li ul li:hover a {
  color: var(--gold-color);
}
ul#menu li ul li:nth-of-type(1) {
  padding-top: 20px;
}
ul#menu li ul li:last-of-type {
  padding-bottom: 20px;
}

.nav > li:hover ul {
  display: block;
}

.nav li ul {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  min-width: 160px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 0;
  z-index: 9999;
  text-align: left;
}

#header nav {
  display: inline-block;
  vertical-align: middle;
}
#language-container {
  display: inline-block;
  vertical-align: middle;
  color: #414042;
  margin-left: 40px;
}
#language-container .selected {
  font-weight: 600;
}
#header-social-container {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
}

#header-social-container img {
  height: 24px;
  margin-left: 10px;
}

/* ----- HOME ----- */
div#home-header {
  position: relative;
}

img#home-header-logo {
  position: absolute;
  width: auto;
  height: 55%;
  left: 0;
  right: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(15%);
}

div#home-pictos {
  margin: 50px auto;
  max-width: 1000px;
}

div#home-pictos .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
}

div#home-pictos .wrap div {
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  transition: transform 0.2s;
}

div#home-pictos .wrap div:hover {
  transform: scale(1.1);
  box-shadow:
    rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

div#home-pictos .wrap div a {
  width: 100%;
  height: 100%;
  display: block;
}

div#home-pictos img {
  width: auto;
  height: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
}
div#home-pictos .wrap div:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

div#home-slider {
  width: 100%;
  position: relative;
}

#home-slider .slideshow-overlay-contents {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
  z-index: 990;
}
#home-slider .overlay-data-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}
#home-slider .overlay-data-container > div {
  width: 600px;
}
#home-slider .slider-area {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 50px;
  display: flex;
  column-gap: 20px;
  align-items: center;
}
#home-slider .slider-area .bar {
  width: 100px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
}
#home-slider .slider-caption {
  text-transform: uppercase;
  font-size: 50px;
  line-height: 64px;
  letter-spacing: 1px;
}
#home-slider .slider-caption strong {
  font-weight: 800;
}
#home-slider .slider-subcaption {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
}
#home-slider .button-container {
  margin-top: 50px;
}
#home-slider .button-container .button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
#home-slider .slideshow-overlay-contents img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
}
#home-slider .slideshow-overlay-contents > div {
  align-self: center;
}
#home-slider .caption-white {
  color: #fff;
}
#home-slider .button-blue {
  background-color: var(--blue-color);
  color: #fff;
}
#home-slider .button-white {
  background-color: #fff;
  color: var(--blue-color);
}

div#home-slider img.cycle-slide {
  display: block;
  width: 100%;
}
#slideshow-paginator {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 999;
}
.cycle-prev,
.cycle-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  -webkit-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition: all 300ms cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -moz-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  -o-transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9);
  transition-timing-function: cubic-bezier(0.26, 0.98, 0.605, 0.9); /* custom */
}
.cycle-prev {
  left: 0;
  background-image: url(../../images/slide_left.png);
}
.cycle-next {
  right: 0;
  background-image: url(../../images/slide_right.png);
}
.cycle-prev:hover,
.cycle-next:hover {
  background-color: rgba(255, 255, 255, 0) !important;
}

.cycle-pager {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 999;
}

.cycle-pager span {
  font-size: 30px;
  color: #fff;
  margin: 0 2px;
  cursor: pointer;
}

.cycle-pager span.cycle-pager-active {
  color: var(--blue-color);
}

.shadow {
  position: absolute;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  bottom: 0px;
  left: 30%;
  right: 30%;
  width: 40%;
  height: 50%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

#home-section-2 {
  background-color: var(--background-light-gray);
  font-size: 20px;
  line-height: 25px;
  position: relative;
  text-align: center;
  padding: 0 0 50px;
}

#home-section-2 h2,
#top-10-reasons h2,
#reviews h2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 30px;
  margin-top: 0;
}

#home-section-2 .button-container {
  margin: 40px auto 0;
  display: inline-flex;
}

#home-section-2 .button {
  text-transform: uppercase;
}

#home-section-3 {
  color: var(--blue-color);
  font-size: 20px;
  line-height: 25px;
  background-color: #fff;
}

#home-section-3 h2 {
  margin-top: 0;
}

#home-section-3 p {
  max-width: 800px;
  margin: 10px auto;
}

#home-section-3 .image-container {
  margin: 40px auto 20px;
}

#home-section-3 img {
  max-width: 700px;
  margin: 0 auto;
}

#top-10-reasons {
  background-image: url("../../images/top_10_reasons_bg.png");
  background-size: cover;
  background-position: right center;
}

#top-10-reasons h2 {
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

#top-10-reasons .reasons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#top-10-reasons .reasons div {
  text-align: center;
}

#reviews {
  background-color: rgb(10 19 77 / 8%);
}

#reviews h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#reviews .subtitle {
  color: var(--blue-color);
  text-align: center;
  font-size: 22px;
  max-width: 680px;
  margin: 0 auto;
}

#reviews .wrap {
  position: relative;
}

#reviews .quotes1,
#reviews .quotes2 {
  position: absolute;
  width: 80px;
}
#reviews .quotes1 img,
#reviews .quotes2 img {
  width: 100%;
}

#reviews .quotes1 {
  top: 0;
  left: 0;
}
#reviews .quotes2 {
  bottom: 0;
  right: 0;
}

#reviews .reviews-content {
  margin: 0 80px;
}

#reviews ul {
  padding: 0;
  margin-top: 20px;
  list-style: none;
}

#reviews .person-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin: 50px auto;
  background-size: cover;
  background-position: center;
  background-color: #71c6ab;
}

#reviews .sentence {
  text-align: center;
}

#reviews .name {
  font-weight: 600;
  text-align: center;
}

#reviews .owl-theme .owl-dots .owl-dot.active span,
#reviews .owl-theme .owl-dots .owl-dot:hover span,
#reviews .owl-theme .owl-dots .owl-dot.active span,
#reviews .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--blue-color);
}

#reviews .owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
}

#home-technology-banner {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-column-gap: 30px;
  justify-items: stretch;
  align-items: center;
  margin-top: 100px;
}
#home-technology-banner img {
  width: 100%;
}

#home-technology-banner div:nth-of-type(2) p {
  max-width: 500px;
}

/* ----- ABOUT ----- */
#about-page {
  position: relative;
}

#about-page #about-us-section-1 {
  margin: 0 0 50px;
}

#about-page #about-us-section-1 .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  align-items: center;
}

#about-page #about-us-section-1 h2,
#chairman-message-page #chairman-message h2 {
  margin-top: 0;
  text-align: left;
}

#chairman-message-page #chairman-message h2 {
  margin-bottom: 30px;
}

#chairman-message p {
  margin: 20px 0;
}

#about-page #about-us-section-1 img {
  max-width: 300px;
  max-height: 600px;
  display: block;
  margin: 0 auto;
}

#about-page #about-us-section-1 p,
#about-us-section-3 p {
  margin: 30px 0 0;
}

#about-page #about-us-section-2 .wrap {
  display: grid;
  grid-template-columns: minmax(auto, 40%) minmax(auto, 60%);
  grid-column-gap: 30px;
  align-items: center;
  color: var(--blue-color);
}

#about-us-section-3 .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 100px;
  align-items: center;
  color: var(--blue-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

#about-page #about-us-section-1 strong,
#about-page #about-us-section-2 strong,
#about-us-section-3 .title strong,
#chairman-message-page #chairman-message strong {
  font-size: 28px;
  line-height: 32px;
  color: var(--blue-color);
}

#about-page #about-us-section-2 p {
  margin: 20px 0;
}

#about-us-section-3 {
  background-color: #fff;
}

#about-us-section-3 .presentation-language-selection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  margin-top: 30px;
  color: var(--gold-color);
}

#about-us-section-3 .presentation-language-selection .flag-columns {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  column-gap: 10px;
}

#about-us-section-3
  .presentation-language-selection
  .flag-columns
  div:nth-of-type(1) {
  text-align: right;
}

#about-us-section-3
  .presentation-language-selection
  .flag-columns
  div:nth-of-type(2),
#about-us-section-3
  .presentation-language-selection
  .flag-columns
  div:nth-of-type(3) {
  text-align: left;
}

#about-us-section-3 .presentation-language-selection img {
  height: 24px;
  vertical-align: text-bottom;
}

#about-us-section-3 input[type="text"] {
  width: 100%;
  margin: 5px 0;
  border: 1px solid var(--gold-color);
  padding: 15px;
  border-radius: 8px;
}

#about-us-section-3 .consent p {
  margin-top: 0;
  text-align: left;
}

#chairman-message-page #chairman-message {
  margin: 0 0 50px;
  background-image: url("../../images/chairman_message_bg.png");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

#chairman-message-page h2 {
  text-align: left;
}

#executive-board-page .person .wrap {
  display: grid;
  padding-top: 50px;
  padding-bottom: 50px;
  column-gap: 100px;
  align-items: center;
}
#executive-board-page .person.photo-left .wrap {
  grid-template-columns: minmax(auto, 35%) minmax(auto, 65%);
}
#executive-board-page .person.photo-right .wrap {
  grid-template-columns: minmax(auto, 65%) minmax(auto, 35%);
}
#executive-board-page .person.photo-right {
  background-color: #fff;
}
#executive-board-page .person.photo-left,
#executive-board-page .person.photo-right {
  background-size: auto 90%;
  background-repeat: no-repeat;
}
#executive-board-page .person.photo-left {
  background-image: url("../../images/team_left_bg.png");
  background-position: left center;
}
#executive-board-page .person.photo-right {
  background-image: url("../../images/team_right_bg.png");
  background-position: right center;
}

#executive-board-page .person img {
  width: 100%;
}

#executive-board-page .person.photo-right .description,
#executive-board-page .person.photo-left .photo {
  order: 1;
}

#executive-board-page .person.photo-right .photo,
#executive-board-page .person.photo-left .description {
  order: 2;
}

#executive-board-page h2 {
  text-align: left;
  margin: 0;
}
#executive-board-page .position {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-color);
}
#executive-board-page .resume {
  margin-top: 30px;
}
#executive-board-page .resume ul {
  padding-left: 22px;
}
#executive-board-page .resume ul li {
  padding-left: 10px;
}

/* ----- COMPANIES ----- */

#idealmed-ghs-page .row1 {
  background-image: url("../../images/idealmed_ghs_row1_bg.png");
}

#innov-cell-page .row1 {
  background-image: url("../../images/innov_cell_row1_bg.png");
}

#globalmed-page .row1 {
  background-image: url("../../images/globalmed_row1_bg.png");
}

#globalcare-page .row1 {
  background-image: url("../../images/globalcare_row1_bg.png");
}

#innov-cell-page .row4 {
  background-color: #e0e7ef;
}

#idealmed-ghs-page .row1,
#innov-cell-page .row1,
#globalmed-page .row1,
#globalcare-page .row1 {
  background-position: left center;
  background-size: auto 80%;
  background-repeat: no-repeat;
}

#idealmed-ghs-page .row1 .wrap,
#innov-cell-page .row1 .wrap,
#globalmed-page .row1 .wrap,
#globalcare-page .row1 .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  align-items: center;
}

#idealmed-ghs-page .row1 p,
#globalmed-page .row1 p,
#globalcare-page .row1 p,
#innov-cell-page .row1 p {
  margin: 20px 0;
}
#idealmed-ghs-page .row1 p:last-of-type {
  margin-bottom: 0;
}

#idealmed-ghs-page .row1 .image-container img,
#innov-cell-page .row1 .image-container img,
#globalmed-page .row1 .image-container img,
#globalcare-page .row1 .image-container img {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

#idealmed-ghs-page .row1 h2,
#innov-cell-page .row1 h2,
#idealmed-ghs-page .row5 h2,
#globalmed-page .row1 h2,
#globalcare-page .row1 h2,
#idealmed-ghs-page .row6 h2 {
  text-align: left;
  margin-top: 0;
  display: inline-block;
}
#idealmed-ghs-page h2,
#innov-cell-page h2,
#globalmed-page h2,
#globalcare-page h2 {
  margin-top: 0;
}
#idealmed-ghs-page .row2 h2,
#idealmed-ghs-page .row4 h2,
#globalmed-page .row2 h2,
#innov-cell-page .row3 h2,
#innov-cell-page .row4 h2 {
  margin-bottom: 50px;
}

#idealmed-ghs-page .row1 p strong,
#innov-cell-page .row1 p strong,
#globalmed-page .row1 p strong,
#globalcare-page .row1 p strong {
  color: var(--blue-color);
}

#globalcare-page .row2 .image-container {
  margin-bottom: 50px;
}

#idealmed-ghs-page .row2 .projects,
#globalcare-page .row2 .plans {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
}
#globalmed-page .row2 .hospitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

#idealmed-ghs-page .row2 .project,
#globalmed-page .row2 .hospital,
#globalcare-page .row2 .plan {
  background-color: var(--blue-color);
}

#globalcare-page .row2 .plan {
  border-radius: 10px;
  text-align: center;
  padding: 50px 30px;
}
#globalcare-page .row2 .plan h3 {
  color: #fff;
}

#globalcare-page .row2 .plan .stars img {
  max-width: 18%;
}

#idealmed-ghs-page .row2 .project a {
  text-decoration: none;
  color: inherit;
}

#idealmed-ghs-page .row2 .project h3,
#globalmed-page .row2 .hospital h3 {
  color: #fff;
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
  padding: 0 10px;
}

#idealmed-ghs-page .row2 .project img,
#globalmed-page .row2 .hospital img {
  width: 100%;
  display: block;
}

#idealmed-ghs-page .row3,
#innov-cell-page .row2,
#globalmed-page .row3 {
  background-position: center;
  background-size: cover;
  color: #fff;
}
#globalmed-page .row4,
#globalcare-page .row3,
#globalcare-page .row4 {
  background-position: center;
  background-size: cover;
  color: var(--blue-color);
}

#idealmed-ghs-page .row3 {
  background-image: url("../../images/idealmed_ghs_row3_bg.jpg");
  background-position-x: 60%;
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#innov-cell-page .row2 {
  background-image: url("../../images/innov_cell_row2_bg.jpg");
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#globalmed-page .row3 {
  background-image: url("../../images/globalmed_row3_bg.jpg");
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#globalmed-page .row4 {
  background-image: url("../../images/globalmed_row4_bg.jpg");
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#globalcare-page .row3 {
  background-image: url("../../images/globalcare_row3_bg.jpg");
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#globalcare-page .row4 {
  background-image: url("../../images/globalcare_row4_bg.jpg");
  text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
}

#idealmed-ghs-page .row3 .wrap,
#innov-cell-page .row2 .wrap,
#globalmed-page .row3 .wrap,
#globalmed-page .row4 .wrap,
#globalcare-page .row3 .wrap,
#globalcare-page .row4 .wrap {
  display: flex;
}
#idealmed-ghs-page .row3 .wrap div,
#innov-cell-page .row2 .wrap div,
#globalmed-page .row3 .wrap div,
#globalmed-page .row4 .wrap div,
#globalcare-page .row4 .wrap div {
  max-width: 450px;
  font-weight: 600;
  font-size: 22px;
}

#globalcare-page .row3 .wrap div {
  max-width: 600px;
}

#globalmed-page .row4 .wrap,
#globalcare-page .row4 .wrap {
  flex-direction: row-reverse;
  text-align: right;
}

#idealmed-ghs-page .row3 p,
#innov-cell-page .row2 p {
  font-weight: 600;
}

#innov-cell-page .row3,
#globalmed-page .row2,
#globalcare-page .row2 {
  background-color: #fff;
}

#innov-cell-page .row3 .columns {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  column-gap: 50px;
  justify-content: center;
}

#innov-cell-page .row3 .product-column .product-image img {
  width: 100%;
  max-width: 200px;
}

#innov-cell-page .row3 .product-column {
  align-self: start;
}

#innov-cell-page .row3 .product-column h2 {
  color: var(--blue-color);
  text-transform: none;
  margin-top: 20px;
  font-size: 24px;
  line-height: 28px;
}

#innov-cell-page .row3 .product-column p {
  max-width: 250px;
  margin: 10px auto 30px;
}

#innov-cell-page .row3 .product-column .seller-logo {
  margin: 10px 0;
}

#innov-cell-page .row3 .product-column .seller-logo img {
  max-width: 150px;
}

#innov-cell-page .row3 .product-column .linedbutton {
  text-transform: none;
}

#innov-cell-page .row4 .logos {
  text-align: center;
}

#innov-cell-page .row4 .logos img {
  height: 75px;
  margin: 0 10px;
}

#idealmed-ghs-page .row2,
#idealmed-ghs-page .row4 {
  background-color: #fff;
}

#globalcare-page .row3 h2 {
  color: var(--blue-color);
  font-size: 24px;
  line-height: 30px;
  text-align: left;
  font-weight: 600;
}

#globalcare-page .row3 ul li {
  font-size: 20px;
  line-height: 24px;
}

#idealmed-ghs-page .row4 .columns {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 220px) 1fr;
  column-gap: 20px;
  margin-bottom: 10px;
}

#idealmed-ghs-page .row4 .columns > div {
  align-self: center;
}

#idealmed-ghs-page .row4 .columns div:nth-of-type(1) {
  text-align: right;
}

#idealmed-ghs-page .row4 .columns img {
  max-width: 196px;
  margin: 0 auto;
  border: 2px solid var(--gold-color);
  border-radius: 50%;
  padding: 10px;
}

#idealmed-ghs-page .row4 .columns div .item {
  text-align: center;
}

#idealmed-ghs-page .row4 .item {
  padding: 30px;
  font-weight: 400;
  border: 2px solid var(--gold-color);
  color: var(--gold-color);
  border-radius: 20px;
  font-size: 20px;
  text-transform: uppercase;
  display: inline-block;
  max-width: 350px;
  text-align: center;
  margin: 0 auto;
}

#globalcare-page .row4 .button-container {
  margin-top: 50px;
  margin-bottom: 0;
}

#idealmed-ghs-page .row5 .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

#idealmed-ghs-page .row5 .wrap strong {
  color: var(--blue-color);
}

#idealmed-ghs-page .row5 li {
  list-style: none;
}

#idealmed-ghs-page .row5 li:before {
  content: "·";
  font-size: 20px;
  margin-right: 10px;
}

#idealmed-ghs-page .row6 .partnerships-trigger-container {
  background-image: url("../../images/NovaImagemDivPartners.png");
  background-position: center;
  background-size: cover;
}

#idealmed-ghs-page .row6 .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

#idealmed-ghs-page .row6 h2 {
  margin-bottom: 0;
}

#idealmed-ghs-page .row6 .subtitle {
  line-height: 34px;
  font-size: 30px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  max-width: 270px;
}

#idealmed-ghs-page .row6 p {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
  margin-bottom: 100px;
}

#idealmed-ghs-page .row6 .partnerships {
  display: none;
}

#idealmed-ghs-page .row6 .partnerships .unpair {
  background-color: #fff;
}

#idealmed-ghs-page .row6 .partnerships .pair {
  background-color: #e7e7e8;
}

#idealmed-ghs-page .partnerships img {
  max-height: 60px;
  margin: 10px;
  vertical-align: middle;
}

#idealmed-ghs-page .partnerships .icons {
  text-align: center;
}

/* ----- */

.product-buttons {
  display: grid;
  grid-auto-rows: 1fr;
  margin-top: 20px;
}
.product-buttons .button-container {
  margin: 5px 0;
}
.product-button {
  position: relative;
  color: var(--blue-color);
  font-size: 22px;
  font-weight: 400;
  border-radius: 10px;
  text-align: left;
  border: 2px solid transparent;
  background-color: #fff;
  padding: 5px 35px 5px 10px;
  width: 100%;
  background-image: url("../../images/about_our_products_button_arrow.png");
  background-size: auto 60%;
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.product-button-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -2px;
  background: linear-gradient(264.9deg, #5eb3e4 -8.78%, #69ddcc 110.88%);
  border-radius: 11px;
}

#about-page .our-products-separator {
  text-align: center;
}

#about-page .our-products-separator img {
  max-width: 150px;
  transform: translateY(47%);
  margin-top: -150px;
}

#about-page #why-kelocell-container {
  background-color: rgba(94, 179, 228, 0.1);
  padding: 50px 0;
  background-image: url("../../images/about_why_kelo_cell_bg_2.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

#about-page #why-kelocell-topics li {
  list-style-image: url("../../images/about_why_kelo_cell_topic.png");
  line-height: 30px;
  font-size: 20px;
  margin: 5px 0;
}

#about-page #who-uses-it {
  margin-top: 50px;
  margin-bottom: 50px;
}

#how-it-works {
  padding-top: 50px;
}

#how-it-works .lined-title {
  margin-bottom: 50px;
}

#how-it-works .subtitle,
#how-it-works .subtitle-smaller {
  text-align: center;
  margin: 0 auto 30px;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  max-width: 600px;
}
#how-it-works .subtitle-smaller {
  font-size: 20px;
  text-align: left;
}

#how-it-works .subtitle.left {
  text-align: left;
}

#how-it-works .description {
  text-align: center;
  color: var(--text-main-color);
  margin: 0 auto 30px;
  max-width: 600px;
}

#how-it-works .arrowed-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  margin: 50px auto;
  max-width: 800px;
}

#how-it-works .arrowed-sections div div:nth-of-type(1) {
  color: var(--light-blue-color);
  font-size: 26px;
  font-weight: 600;
}
#how-it-works .arrowed-sections img {
  height: 47px;
  margin-top: 5px;
}
#how-it-works .arrowed-sections div div:nth-of-type(3) {
  color: var(--blue-color);
  font-weight: 600;
}

#how-it-works .image-container img {
  max-width: 600px;
  margin: 0 auto;
}

#about-page #how-it-works {
  color: var(--blue-color);
}

/* ----- NEWS ----- */
#news-page ul#news-lister,
#home-news-container ul#news-lister {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 60px 60px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#home-news-container h2 {
  margin: 0 0 50px;
}

#news-lister li {
  background-color: #fff;
  position: relative;
  font-size: 16px;
  padding-bottom: 50px;
  transition: transform 0.3s;
}
#news-lister li:hover {
  transform: scale(1.05);
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#news-lister h2 {
  margin: 0 0 10px;
  color: var(--blue-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
  line-height: 22px;
  text-align: left;
}

#news-lister li p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-gray-color);
}

#news-lister .padder {
  margin: 20px 20px 0;
  display: inline-block;
}

#news-lister .read-more,
#news-lister .entry-date {
  position: absolute;
  bottom: 20px;
}

#news-lister .read-more {
  color: var(--gold-color);
  font-weight: 600;
  left: 20px;
}
#news-lister .entry-date {
  right: 20px;
  font-size: 13px;
  color: var(--text-gray-color);
  font-weight: 600;
}

#news-page a,
#home-news-container a,
#news-lister a {
  color: inherit;
  text-decoration: none;
}
.newsresume-entry {
  position: relative;
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
}
.newsresume-img {
  background-color: #fff;
  position: relative;
}
.newsresume-img .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
}
.newsresume-img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.newsresume-entry h2 {
  margin: 0;
}

.newsresume-entry .entry-date,
.news-entry .entry-date {
  font-size: 14px;
  font-weight: 300;
}

.news-entry p {
  text-align: justify;
  margin: 20px 0;
}

.newsresume-entry p {
  font-size: 14px;
  margin-top: 10px;
  text-align: justify;
}

#news-detail-image-container {
  text-align: center;
  margin: 30px 0;
}

.newsresume-entry .read-more {
  font-size: 14px;
  text-align: left;
  color: var(--brown-color);
}

#news-detail-image-container img {
  max-width: 500px;
  max-height: 400px;
  width: 100%;
}
a.news_pagger {
  font-size: 12px;
  font-weight: bold;
}
a.news_pagger:hover {
  color: #6e2763;
}
#news-paging {
  text-align: right;
  margin-top: 20px;
  padding: 5px 10px;
  font-size: 17px;
}
#news-paging a {
  color: #7e7e7e;
  margin: 0 2px;
  font-weight: 400;
}
#news-paging a:hover,
#news-paging a.selected-page {
  color: var(--light-blue-color);
}

.news-entry .section-title {
  margin-bottom: 0;
}

.news-entry img {
  margin-bottom: 50px;
  max-height: 600px;
  max-width: 100%;
}
.news-entry .entry-date {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}
.news-entry h2 {
  border-bottom: 1px solid var(--brown-color);
  padding-bottom: 10px;
}
.news-entry h2 a {
  color: var(--gold-color);
  text-decoration: none;
}
.news-entry h2 a:hover {
  text-decoration: underline;
}
.news-entry .button {
  text-decoration: none;
}

.news-entry ul#news-lister {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-entry ul#news-lister li {
  margin: 20px 0;
}

.news-entry ul#news-lister h2 {
  border: 0;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 18px;
}

.news-entry ul#news-lister .entry-date {
  font-size: 12px;
  color: var(--text-main-color);
  margin: 0;
}

#newsletters-banner {
  background-color: #66b4ca;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

#newsletters-banner .wrap {
  display: flex;
  align-items: center;
}

#newsletters-banner .wrap div:nth-of-type(1) {
  flex: 1 0 auto;
  font-weight: 600;
}

#newsletters-banner .wrap div:nth-of-type(2) {
  flex: 0 1 auto;
}

#images-slider-container {
  margin-top: 50px;
}

.news-content-container {
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: stretch;
}

.news-content-container h1 {
  color: var(--gold-color);
  font-size: 30px;
  line-height: 36px;
  margin: 0;
}

.news-content-container .astitle {
  font-weight: 400;
}

.empty-list {
  text-align: center;
  font-size: 24px;
  padding: 60px 0;
}
.empty-list img {
  display: inline-block;
  max-width: 150px;
  width: 90%;
}

/* ----- DIGITAL MARKETING ----- */
ul#dm-pictos {
  list-style: none;
  font-size: 0;
  margin: 60px auto;
}
ul#dm-pictos li {
  display: inline-block;
  width: 20%;
  text-align: center;
}
ul#dm-pictos li img {
  width: 90%;
  max-width: 128px;
}
ul#dm-pictos h3 {
  font-size: 22px;
  margin: 20px 0 0;
}
ul#dm-pictos p {
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
}
#dm-form {
  padding: 30px 0;
  display: none;
}
#dm-form-container h3 {
  margin-top: 40px;
  line-height: 34px;
  font-size: 26px;
}
/* ----- TECHNICAL AREA ----- */
#page-technical-area.wrap p a {
  color: inherit;
  text-transform: uppercase;
  font-weight: 600;
}
/* ----- CONTACTS ----- */
#page-contacts {
  background-color: var(--gray-section-color);
}
#page-contacts .intro {
  margin: 0 0 50px;
}

#page-contacts .wrap .padding-50-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#contact-contacts h2 {
  margin-top: 0;
  text-align: left;
}

#contact-form {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
#contact-form .form-line {
  margin-bottom: 20px;
}
#contact-form label {
  font-weight: 300;
  margin-bottom: 5px;
  color: var(--gold-color);
}
#contact-form .input-container {
  overflow: hidden;
}
#contact-form input,
#contact-form textarea,
#contact-form select {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid var(--gold-color);
}
#contact-form textarea {
  height: 130px;
}
#contact-form input[type="checkbox"] {
  vertical-align: middle;
  width: auto;
}
#page-contacts .map-intro {
  margin: 30px 0 20px;
}
.embed-map-container {
  position: relative;
  padding-bottom: 400px;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.embed-map-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----- FOOTER ----- */
#footer {
  width: 100%;
  background-color: var(--blue-color);
  color: #fff;
  padding: 30px 0 10px;
  order: 1;
  flex: 0 0 auto;
  align-self: auto;
}
#footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: stretch;
  font-weight: 300;
}
#footer-columns p {
  font-size: 16px;
  line-height: 18px;
}

#footer h2 {
  font-size: 20px;
  color: var(--text-very-light-gray);
  text-transform: capitalize;
  font-weight: 300;
  margin: 0 0 10px;
}

#footer-contacts p {
  margin: 5px 0;
}

#footer-address {
  display: flex;
}

#footer-address p,
#footer-privacy-policy p {
  margin: 0 0 5px;
}

#footer-address img {
  height: 26px;
  margin-right: 10px;
}

#footer-contacts a {
  text-decoration: none;
  color: inherit;
}
#footer-contacts a:hover {
  text-decoration: underline;
}
#footer-contacts img {
  margin-right: 10px;
  vertical-align: middle;
  height: 26px;
}

#footer-contacts p:nth-of-type(1) {
  margin-top: 0;
}

#footer-privacy-social-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#footer-privacy-policy {
  text-align: right;
}

#footer-social-container {
  display: flex;
  align-items: flex-start;
  justify-content: right;
}

#footer-social-container p {
  margin-top: 0;
}
#footer-social-container img {
  height: 30px;
  margin-right: 15px;
}

#footer #footer-line {
  margin-top: 50px;
  border-top: 2px solid #fff;
  margin: 20px 50px;
}

#privacy-policy-link-container {
  margin-top: 15px;
}
#privacy-policy-link-container a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
#eb-credits {
  text-align: right;
  padding-top: 10px;
}
#footer #eb-credits.wrap {
  max-width: 1200px;
}
#footer #eb-credits .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 14px;
}
#centro2020 img {
  width: 100%;
  max-width: 400px;
}

#cookies-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 300px;
  padding: 20px;
  background-color: #888;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
#cookies-message a {
  margin: 0 10px;
  cursor: pointer;
  text-decoration: none;
}

#age-message {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
#age-message .wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#age-message .title {
  font-size: 24px;
  text-transform: uppercase;
}
#age-message .description {
  font-size: 18px;
  margin: 10px 0 30px;
}
#age-message a {
  margin: 0 10px;
}
#age-message .no-access-message {
  display: none;
  margin-top: 10px;
}

#error_404 .wrap {
  background-image: url(../../images/404.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  min-height: 300px;
}
#error_404 img {
  width: 80%;
  max-width: 200px;
}
#error_404 p.error_code {
  font-size: 50px;
  margin: 50px 0;
}
#error_404 p {
  color: #fff;
  text-shadow: 0px 0px 4px rgba(150, 150, 150, 1);
  font-size: 20px;
}
#error_404 .button {
  text-decoration: none;
}

.centered-form {
  min-width: 100px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.centered-form input[type="text"],
.centered-form input[type="password"],
.centered-form textarea,
.centered-form select {
  width: 100%;
}

#personal-area-dashboard {
  text-align: center;
}
#personal-area-dashboard h1 {
  margin-bottom: 0;
}
#personal-area-dashboard .button-container {
  float: right;
}
#personal-area-dashboard a {
  text-align: center;
  display: inline-block;
  width: 149px;
  vertical-align: top;
  margin: 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
#personal-area-dashboard a.icon {
  text-align: center;
  display: inline-block;
  width: 120px;
  vertical-align: top;
  margin: 9px;
  padding: 9px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
#personal-area-dashboard a.icon:hover {
  background-color: #ddd;
}
#personal-area-dashboard .button-container a {
  margin: 0;
  color: #fff;
}
#personal-area-dashboard a img {
  border: 0;
  margin-bottom: 10px;
  height: 100px;
}

table#edit-order-products-list tr td {
  width: 160px;
}

#edit-client-form input,
#edit-client-form textarea,
#edit-client-form select,
.edit-order-form input[type="text"],
.edit-order-form textarea,
.edit-order-form select {
  width: 90%;
}

div#results {
  margin-top: 20px;
}
div.no-results {
  text-align: center;
  margin-top: 50px;
  font-size: 20px;
}
div.no-results .lnr {
  font-size: 150px;
}
#no-results {
  text-align: center;
}
#no-results img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
table.rounded-corner-gray {
  width: 100%;
}
table.rounded-corner-gray th {
  background-color: var(--brown-color);
  color: #fff;
  font-weight: 600;
  padding: 5px;
}
table.rounded-corner-gray tr {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}
table.rounded-corner-gray tr.even {
  background-color: #dedede;
}
table.rounded-corner-gray tr.odd {
  background-color: #bcbcbc;
}
table.rounded-corner-gray tr:hover {
  background-color: #999;
  color: #fff;
}
table.rounded-corner-gray a.cell-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
table.rounded-corner-gray tr td input,
table.rounded-corner-gray tr th input {
  background-color: #fff;
}
table.rounded-corner-gray th .button {
  background-color: #dedede;
  color: #333;
  font-weight: 600;
  padding: 5px 20px;
  vertical-align: inherit;
}
table.rounded-corner-gray th .button:hover {
  background-color: #bcbcbc;
}
#edit-order .mb-box {
  background-color: #fff;
  width: 200px;
  margin: 0 auto;
  padding: 20px;
  font-weight: bold;
  color: #808080;
  font-size: 14px;
}
#edit-order .mb-box img {
  margin-bottom: 20px;
}
#order-step-3 h3 {
  margin-top: 50px;
}
#edit-order .col1_2 label {
  color: #999;
  font-weight: 600;
  margin: 10px 0 0;
}

.owl-stage {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: box;
}

/* ----- RWD ----- */
@media only screen and (max-width: 339px) {
  .button {
    font-size: 13px;
  }
  div#home-banner div#home-banner-title {
    margin-top: 180px;
  }
}
@media only screen and (max-width: 355px) {
  #prefooter .sponsor img {
    width: 70%;
    height: auto;
  }
  #prefooter .sponsor:nth-of-type(1) img {
    width: 100%;
  }
}
@media only screen and (max-width: 399px) {
  #contact-form label {
    float: none;
    margin-right: 0;
  }
  #contact-form .input-container {
    margin-top: 10px;
  }
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  #footer-menu-container .col1_2 {
    float: none;
    width: 100%;
    text-align: center;
  }
  #footer-menu-container .col1_2 .padder {
    margin: 0;
  }

  .nav-icon {
    margin: 0 auto 20px;
  }

  #header #logo {
    align-self: flex-start;
  }

  #scars-page .results .tabs .titles {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 449px) {
  #about-page #why-kelocell-container {
    background-size: cover;
  }

  #reviews .quotes1,
  #reviews .quotes2 {
    display: none;
  }
  #reviews .reviews-content {
    margin: 0;
  }

  #about-us-section-3 .presentation-language-selection {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

@media only screen and (max-width: 499px) {
  #slider-caption .text,
  #slider-caption .button-container {
    display: none;
  }

  #error_404 .wrap .col1_2 {
    display: block;
    width: 100%;
  }

  div#home-pictos {
    padding-bottom: 0;
  }

  div#home-pictos .wrap {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    padding: 0 50px;
  }

  div#home-pictos .wrap div {
    margin-bottom: 0;
  }

  #home-form-container .col1_2 {
    float: none;
    width: 100%;
  }
  #home-form-container .col1_2:nth-of-type(1) .padder {
    margin-right: 0;
  }
  #home-form-container .col1_2:nth-of-type(2) .padder {
    margin-left: 0;
  }
  #home-form-container .col1_2:nth-of-type(2) label:nth-of-type(1) {
    margin-top: 20px;
  }

  #top-menu .col1_3 {
    width: 100%;
    float: none;
    text-align: center;
  }
  .home-brands ul li,
	#catalog ul.products-lister li,
	#page-dealers .products-lister li,
	#my-wishlist ul.products-lister li
	/* MAYBE REMOVE .home-products-list .products-lister li */ {
    width: 100%;
  }

  #how-it-works .arrowed-sections {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #scars-page .results .tabs .tab-content.active {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .linedbutton,
  .button {
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 8px;
  }
}

@media only screen and (max-width: 599px) {
  h2,
  div#home-content-container h1,
  .section-title h1,
  .section-title h2 {
    font-size: 22px;
    line-height: 26px;
  }

  #about-page #about-us-section-1 strong,
  #about-page #about-us-section-2 strong,
  #about-us-section-3 .title strong,
  #chairman-message-page #chairman-message strong {
    font-size: 22px;
    line-height: 28px;
  }

  .page-title .wrap h1 {
    font-size: 22px;
    line-height: 26px;
  }

  html,
  body,
  #home-section-2,
  #home-section-3 {
    font-size: 16px;
  }

  p {
    line-height: 20px;
  }

  .wrap {
    padding: 0 16px;
  }

  #globalcare-page .row3 {
    background-image: url("../../images/globalcare_row_3_mobile.jpg");
  }
  #globalcare-page .row3 .wrap,
  #globalcare-page .row4 .wrap,
  #globalmed-page .row3 .wrap,
  #globalmed-page .row4 .wrap,
  #innov-cell-page .row2 .wrap {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 13px 10px;
    backdrop-filter: blur(15px);
    margin: 0 16px;
  }
  #innov-cell-page .row2 {
    background-image: url("../../images/innov_cell_row2_bg_mobile.png");
    text-shadow: 1px 1px 4px rgb(150 150 150 / 60%);
    text-shadow: 1px 1px 4px rgb(0 0 0 / 60%);
  }

  .news-entry p {
    font-size: 16px;
    line-height: 27px;
    margin: 30px 0;
  }
}

@media only screen and (min-width: 500px) and (max-width: 699px) {
  #slider-caption .text {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 649px) {
  #header #menu-container {
    overflow: auto;
    text-align: center;
    margin: 0;
    width: 100%;
  }

  #news-page ul#news-lister,
  #home-news-container ul#news-lister {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #news-lister li {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }

  #footer-columns {
    grid-template-columns: 100%;
  }
  #footer-social-container img {
    margin: 0 10px;
  }
}

@media only screen and (min-width: 650px) {
  #mobile-menu-trigger-container {
    display: none;
  }
}

@media only screen and (max-width: 699px) {
  .page-title {
    margin: 0;
  }

  .page-title .wrap {
    border-radius: 0;
    transform: none;
  }

  #about-page #about-us-section-1,
  #chairman-message-page #chairman-message {
    margin-top: 50px;
  }

  #idealmed-ghs-page .row1 .wrap,
  #innov-cell-page .row1 .wrap,
  #globalmed-page .row1 .wrap,
  #globalcare-page .row1 .wrap,
  #about-page #about-us-section-1 .wrap {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #innov-cell-page .row3 .columns {
    grid-template-columns: 1fr;
    row-gap: 100px;
  }

  #idealmed-ghs-page .row4 .columns {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    row-gap: 15px;
  }

  #idealmed-ghs-page .row4 .columns img {
    display: none;
  }

  #idealmed-ghs-page .row4 .columns div,
  #idealmed-ghs-page .row4 .columns div:nth-of-type(1) {
    text-align: center;
  }

  #globalmed-page .row2 .hospitals {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #idealmed-ghs-page .row4 .item {
    width: 100%;
    box-sizing: border-box;
  }

  #idealmed-ghs-page .row6 .wrap {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #idealmed-ghs-page .row6 p {
    margin-bottom: 50px;
  }

  #idealmed-ghs-page .row6 .button-container {
    text-align: right;
  }

  /* */

  .home-products {
    grid-template-columns: 100%;
  }
  .home-products .image-container img {
    max-width: 200px;
    margin: 50px auto 0;
  }

  .home-products #slider-caption,
  .home-products .button-container {
    text-align: center;
  }

  #home-section-3 .wrap {
    grid-template-columns: 100%;
    max-width: 500px;
  }

  #home-section-4 .wrap {
    grid-template-columns: 100%;
  }

  #home-section-4-text-container {
    order: 1;
  }

  #home-section-4 .image-container img {
    max-width: 300px;
    margin: 0 auto;
  }

  #home-section-4-text-container .right {
    text-align: center;
  }

  .home-section-4-button {
    margin-top: 0;
  }

  #about-page #kelocell3 {
    background-image: url("../../images/about_kelo_cell_3.png");
    background-position: center;
    background-size: cover;
  }

  #about-page #kelocell3 img {
    display: none;
  }

  #about-page #kelocell3 .text {
    position: relative;
    top: 0;
    padding: 200px 0;
  }

  #about-page #how-to-apply-columns {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  #scars-page .types-of-scars .tabs .titles {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }

  #scars-page .types-of-scars .tabs .tab-content {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  #scars-page .types-of-scars .tabs .tab-content .image-container {
    text-align: center;
  }

  #scars-page .types-of-scars .tabs .tab-content img {
    max-width: 400px;
    margin: 0 auto;
  }

  .newsresume-entry {
    width: 100%;
  }

  #top-10-reasons .reasons {
    grid-template-columns: 1fr 1fr;
  }

  #anti-inflammatory-row1 .wrap .padding-100-vertical {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 700px) {
  #search-container select {
    width: 100px;
  }

  #search-container input {
    width: 200px;
  }

  #product-details .title-mobile {
    display: none;
  }

  .product-details-properties h1 {
    display: block;
  }

  #product-details-tabs-container .tab-selectors-dropdown {
    display: none;
  }

  #orders-list .show-mobile,
  #my-discounts .show-mobile,
  #edit-order .show-mobile {
    display: none;
  }
}

@media only screen and (max-width: 749px) {
  #about-page #kelocell2 {
    grid-template-columns: 100%;
  }
  #about-page #kelocell2 img {
    max-width: 400px;
    margin: 0 auto 30px;
  }

  #stem-cells-container .topics > ul {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  #page-contacts .wrap .padding-50-vertical {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  #contact-contacts,
  #contact-contacts h2 {
    text-align: center;
  }
}

@media only screen and (max-width: 799px) {
  #anti-inflammatory .wrap .padding-200-vertical {
    grid-template-columns: 1fr;
  }

  #scars-page .results .bullets-square {
    display: none;
  }
  #footer .wrap {
    text-align: center;
  }
  #footer-columns {
    display: inline-block;
    text-align: left;
  }
  #footer-privacy-policy {
    margin-top: 30px;
  }
  #footer-privacy-policy,
  #footer-social-container {
    text-align: left;
    justify-content: left;
    padding-left: 37px;
  }

  #footer #eb-credits .columns {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 20px;
  }
  #footer #eb-credits .columns .left {
    text-align: center;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 799px) {
  #scars-page .results .tabs .titles {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 650px) and (max-width: 799px) {
  #top-menu .col1_3 {
    width: 50%;
  }
  #top-menu .col1_3.center {
    text-align: left;
  }
}

@media only screen and (min-width: 400px) and (max-width: 849px) {
  #footer-menu-container .col1_2.center {
    text-align: left;
  }
}

@media only screen and (max-width: 849px) {
  #about-page #kelocell-container {
    background-size: 100%;
  }

  #about-page #kelocell {
    grid-template-columns: 100%;
    row-gap: 50px;
  }

  #about-page #kelocell img {
    max-width: 400px;
    margin: 0 auto;
  }

  #about-us-section-3 .columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #about-us-section-3 .columns .mobile-left {
    text-align: left;
  }

  #about-us-section-3 .image-container {
    text-align: center;
  }

  #about-us-section-3 .image-container img {
    max-width: 300px;
    width: 60%;
    display: inline-block;
  }

  #idealmed-ghs-page .row2 .projects,
  #globalcare-page .row2 .plans {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #idealmed-ghs-page .row2 .project,
  #globalmed-page .row2 .hospital,
  #globalcare-page .row2 .plan {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 850px) and (max-width: 1099px) {
  .footer-col2 .col2_3 .col1_2 {
    float: none;
    width: 100%;
  }

  .col1_2:nth-of-type(2) .padder,
  #footer-menu-container ul.footer-menu,
  .col1_2:nth-of-type(1) .padder {
    margin: 0;
  }
  #footer-menu-container ul.footer-menu {
    width: 150px;
    text-align: center;
  }
}

@media only screen and (max-width: 939px) {
  #news-page ul#news-lister,
  #home-news-container ul#news-lister {
    grid-template-columns: 1fr;
  }

  .news-entry ul#news-lister {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 60px 60px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
  }

  .news-entry ul#news-lister h2 {
    margin: 0 0 10px;
    color: var(--text-main-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    line-height: 22px;
  }

  .news-entry ul#news-lister .read-more {
    font-size: 16px;
  }

  .news-entry ul#news-lister .entry-date {
    font-size: 13px;
  }

  #about-page #our-products {
    grid-template-columns: 100%;
  }

  #about-page #our-products .image-container {
    text-align: center;
  }

  #about-page #our-products .image-container img {
    margin: 70px auto 0;
  }

  #how-it-works-details .wrap,
  #how-it-works-details-2 .wrap {
    grid-template-columns: 100%;
    row-gap: 50px;
  }

  #how-it-works-details .image-container,
  #how-it-works-details-2 .image-container {
    text-align: center;
  }

  #how-it-works-details .image-container img,
  #how-it-works-details-2 .image-container img {
    max-width: 400px;
    margin: 0 auto;
  }

  #scars-page .scars-row-3 {
    background-size: 70%;
    background-position: right top;
  }

  #scars-page .scars-row-3 .padding-100-vertical {
    grid-template-columns: 1fr;
  }

  .scars-row-3 .text {
    order: 1;
  }

  .scars-row-3 .image-container {
    order: 0;
    margin-bottom: 30px;
  }

  .scars-row-3 .image-container img,
  #stem-cells-innovation .wrap img {
    max-width: 400px;
    margin: 0 auto;
  }

  #scars-page .scars-row-3 img {
    position: relative;
  }

  .news-content-container {
    grid-template-columns: 1fr;
    display: block;
  }

  .news-content-container .astitle {
    margin-top: 50px;
  }

  .news-entry ul#news-lister li {
    margin: 0 auto;
  }

  #stem-cells-innovation .wrap,
  #stem-cells-row1 .wrap,
  #anti-inflammatory .wrap .padding-80-vertical {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 940px) {
  .news-resume {
    display: none;
  }
}
@media only screen and (min-width: 650px) and (max-width: 939px) {
  .newsresume-img {
    width: 250px;
    float: left;
    margin-right: 20px;
  }

  #news-lister .padder {
    overflow: hidden;
    display: block;
  }

  #news-lister li {
    padding-bottom: 0;
    padding-right: 20px;
  }

  #news-lister .read-more,
  #news-lister .entry-date {
    position: relative;
    left: 0;
  }
  #news-lister .read-more {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 899px) {
  #home-slider .slideshow-overlay-contents {
    right: 0;
  }
  #home-slider .overlay-data-container > div {
    max-width: 1200px;
    padding: 0 30px;
    width: 100%;
  }
  #home-slider .slider-area {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  #home-slider .slider-area .bar {
    width: 50px;
  }
  #home-slider .slider-caption {
    font-size: 30px;
    line-height: 36px;
  }
  #home-slider .slider-subcaption {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
  }

  #home-about-and-news .col1_2 {
    width: 100%;
    float: none;
  }
  #home-about-and-news .col1_2:nth-of-type(2) .padder {
    margin: 0;
  }
  #home-news {
    margin: 100px 0;
  }
  #products-filter-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
    padding: 20px;
    border-bottom: var(--border-gray-light);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(170, 170, 170, 1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(170, 170, 170, 1);
    box-shadow: 0px 0px 20px 0px rgba(170, 170, 170, 1);
  }
  #product-details .product-details-image {
    width: 100%;
  }

  #product-details .title-mobile {
    display: block;
  }

  .product-details-properties h1 {
    display: none;
  }

  #product-details .col1_2 {
    width: 100%;
    float: none;
  }

  #stem-cells-page #kelocell-biogel {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  #executive-board-page .person.photo-left .wrap,
  #executive-board-page .person.photo-right .wrap {
    grid-template-columns: 1fr;
  }

  #executive-board-page .person.photo-left .photo,
  #executive-board-page .person.photo-right .photo {
    order: 1;
    text-align: center;
  }
  #executive-board-page .photo {
    margin-bottom: 30px;
  }
  #executive-board-page .person.photo-left .description,
  #executive-board-page .person.photo-right .description {
    order: 2;
  }
  #executive-board-page .person img {
    max-width: 300px;
    margin: 0 auto;
  }
  #executive-board-page .person h2,
  #executive-board-page .position {
    text-align: center;
  }
}

@media only screen and (max-width: 979px) {
  #footer-privacy-social-container {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

@media only screen and (max-width: 1099px) {
  #header {
    background-color: #fff;
    position: relative;
  }

  #mobile-menu-trigger-container {
    display: inline-block;
    margin: 24px 0;
    position: absolute;
    top: 0;
    right: 30px;
  }

  #header-container {
    flex-direction: column;
  }

  #header #menu-container {
    width: 100%;
    text-align: center;
  }

  #header nav {
    margin: 0 auto;
    display: block;
  }

  #header #menu-container #mobile-collapsible-menu {
    display: none;
    margin: 0;
  }

  #header #menu-container ul#menu li {
    display: block;
    margin: 20px 0;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid transparent;
  }

  #header #menu-container ul#menu li a {
    padding: 0;
    text-align: left;
  }

  #header ul.nav li a:hover,
  #header ul.nav li a.selected,
  #header ul#menu.nav li:hover,
  #header ul#menu.nav li.selected {
    background-color: #fff;
  }

  #language-container {
    position: absolute;
    left: 0;
    top: 27px;
    margin-left: 30px;
  }

  #logo {
    margin: 20px 0;
  }

  .aditional-header-spacer {
    display: none;
  }

  #header-social-container {
    display: block;
    margin: 20px 0;
    text-align: center;
  }

  #anti-inflammatory-row1 div.columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #header #menu-container ul#menu li {
    margin: 10px 0;
  }

  ul#menu li ul {
    box-shadow: none;
    padding: 0;
    display: block;
    position: relative;
  }

  #header #menu-container ul#menu.nav li ul li a {
    padding: 0;
    border-bottom: 1px solid #bdbdbd;
    font-weight: 400;
    font-size: 16px;
  }
  #header #menu-container ul#menu.nav li a.lined {
    border-bottom: 1px solid #bdbdbd;
    position: relative;
  }
  #header #menu-container ul#menu.nav li ul li a:after,
  #header #menu-container ul#menu.nav li a.lined:after {
    content: ">";
    font-size: 14px;
    margin-right: 0px;
    vertical-align: top;
    position: absolute;
    right: 0;
    font-weight: 600;
  }

  #about-page #about-us-section-2 .wrap {
    grid-template-columns: 1fr;
  }

  #about-page #about-us-section-2 .wrap img {
    max-width: 600px;
    margin: 50px auto 0;
  }

  #idealmed-ghs-page .row5 .wrap {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}

@media only screen and (min-width: 500px) and (max-width: 699px) {
  .home-brands ul li,
	#catalog ul.products-lister li,
	#page-dealers .products-lister li,
	#my-wishlist ul.products-lister li
	/* MAYBE REMOVE .home-products-list .products-lister li */ {
    width: 50%;
  }
}
@media only screen and (min-width: 500px) and (max-width: 899px) {
  div#home-content-container h1 {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 700px) and (max-width: 899px) {
  .home-brands ul li,
	#catalog ul.products-lister li,
	#page-dealers .products-lister li,
	#my-wishlist ul.products-lister li
	/* MAYBE REMOVE .home-products-list .products-lister li */ {
    width: 33.33%;
  }
}
@media only screen and (min-width: 700px) and (max-width: 1099px) {
  #slider-caption .text {
    font-size: 35px;
    line-height: 55px;
  }

  .newsresume-entry {
    width: 50%;
  }

  #top-10-reasons .reasons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.fancybox-outer,
.fancybox-inner,
.fancybox-opened .fancybox-skin {
  border-radius: 10px !important;
}

.nav-icon {
  width: 40px;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: var(--gold-color);
  border-radius: 3px;
  content: "";
  display: block;
  height: 5px;
  margin: 7px 0;
  transition: all 0.2s ease-in-out;
}
.nav-icon.open:before {
  transform: translateY(12px) rotate(135deg);
}

.nav-icon.open:after {
  transform: translateY(-12px) rotate(-135deg);
}

.nav-icon.open div {
  transform: scale(0);
}
