.section {
  font-size: 16px;
}

.section img {
  max-width: 100%;
}

.section h2 {
  color: #009D95;
  font-size: 1.7em;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 992px) {
  .section h2 {
    font-size: 2em;
  }
}

.section .highlight-text {
  color: #00ADEF;
  font-style: italic;
}

.section .eol {
  border: solid 1px #CF5B52;
  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;
  padding: 0.1em 0.5em;
  width: 120px;
  border-radius: 3px;
}

.section .eol__text {
  color: #CF5B52;
  margin: 0;
  padding-left: 0.5em;
  display: inline-block;
}

.section .eol__icon {
  width: 15px;
}

.section .pagination__link {
  color: #009D95;
}

.section .pagination__link-container {
  padding: 0.2em 0.8em;
  display: inline-block;
  border: 1px solid #009D95;
}

.section .page-item.custom-disabled .page-link:hover {
  cursor: context-menu;
}

.section .page-item.custom-disabled .page-link span {
  color: #d2d2d2;
  cursor: context-menu;
}

.section .custom-active .page-link {
  background-color: #009D95;
  color: white;
}

.section .page-link {
  border: solid 1px #009D95;
  color: #009D95;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.section .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.section .page-link span {
  cursor: pointer;
  color: #009D95;
}

.section .page-firstArrow {
  border-radius: 30px 0 0 30px !important;
}

.section .page-lastArrow {
  border-radius: 0px 30px 30px 0px !important;
}

.section .page-item:hover .page-link {
  background-color: #00d0c5;
  color: white;
  cursor: pointer;
}

.section .page-item.custom-disabled:hover .page-link {
  background-color: white;
  color: #d2d2d2;
}

.section .searching__input {
  width: 100%;
  border-radius: 30px;
  outline: none;
  padding: 0.2em 1em;
  border: 1px solid grey;
}

@media screen and (min-width: 768px) {
  .section .searching__input {
    padding: 0.5em 1.2em;
  }
}

.section .searching__input-container {
  width: 100%;
  margin-right: 0.5em;
  position: relative;
}

.section .searching__btn {
  display: inline-block;
  background-color: #009D95;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  padding: 0.3em 1em;
}

@media screen and (min-width: 768px) {
  .section .searching__btn {
    padding: 0.6em 1em;
  }
}

.section .searching__btn:hover {
  background-color: #00b7ad;
}

.section .clear-icon {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 6px;
  width: 20px;
}

@media screen and (min-width: 768px) {
  .section .clear-icon {
    right: 15px;
    top: 10px;
  }
}

.section .description {
  margin: 0;
}

.section .custom-card {
  padding: 1em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: solid 1px #DCDDDD;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  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;
  min-height: 380px;
}

@media screen and (min-width: 768px) {
  .section .custom-card {
    min-height: 460px;
  }
}

@media screen and (min-width: 992px) {
  .section .custom-card {
    min-height: 265px;
  }
}

.section .custom-card:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.section .custom-card__content {
  width: 100%;
}

.section .custom-card__container {
  text-decoration: none;
}

.section .custom-card__title {
  font-weight: 700;
  color: black;
  margin-bottom: 1em;
  font-size: 18px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .section .custom-card__title {
    text-align: left;
    margin-bottom: 0.5em;
  }
}

.section .custom-card__title-container {
  min-height: 50px;
}

@media screen and (min-width: 992px) {
  .section .custom-card__title-container {
    min-height: 60px;
  }
}

.section .custom-card__subtitle {
  font-size: 14px;
  color: #595757;
}

.section .custom-card__image {
  margin: 0;
  text-align: center;
  width: 100%;
  padding-top: 1em;
}

.section .custom-card__image-prod {
  max-height: 237px;
}

@media screen and (min-width: 768px) {
  .section .custom-card__image-prod {
    max-height: 200px;
  }
}

@media screen and (min-width: 992px) {
  .section .custom-card__image-prod {
    max-height: 156px;
  }
}

.section .custom-card .description {
  color: #595757;
  font-size: 14px;
}

.section .more {
  text-align: right;
  color: #009D95;
  cursor: pointer;
  display: none;
}

@media screen and (min-width: 992px) {
  .section .more {
    display: block;
  }
}

.section .mobile-more {
  color: #009D95;
  cursor: pointer;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .section .mobile-more {
    display: none;
  }
}

.section .loadmore {
  border-radius: 30px;
  padding: 0.2em 3em;
  background-color: #fff;
  border: solid 2px #009D95;
  color: #009D95;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  outline: none;
}

.section .loadmore:hover {
  background-color: #009D95;
  color: white;
}

.newsroom .custom-card img, .marketing .custom-card img {
  max-height: 188px;
}

@media screen and (min-width: 768px) {
  .newsroom .custom-card img, .marketing .custom-card img {
    max-height: 154px;
  }
}

@media screen and (min-width: 992px) {
  .newsroom .custom-card img, .marketing .custom-card img {
    max-height: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .newsroom .custom-card img, .marketing .custom-card img {
    max-height: 124px;
  }
}

.text-card {
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .text-card {
    min-height: 152px;
  }
}

.text-card__short {
  min-height: 30px;
}

@media screen and (min-width: 768px) {
  .text-card__short {
    min-height: 60px;
  }
}

.text-card__title {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .text-card__title {
    font-size: 18px;
  }
}

.text-card__desc {
  font-size: 14px;
  color: #595757;
}

.text-card__container {
  text-decoration: none;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.text-card__container:hover {
  text-decoration: none;
  color: #009D95;
}

.text-card__container:hover .text-card__desc {
  color: #009D95;
}

.text-card__container:hover .text-card {
  border-bottom: 1px solid #009D95;
}
/*# sourceMappingURL=search-page.css.map */