@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-brand: #254c5b;
  --light: #fff;
  --dark: #000;
  --gray: #848484;
  --font-main: "Montserrat", sans-serif;
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  font: 600 0.875rem/1.29 var(--font-main);
  color: var(--color-brand);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575px) {
  body {
    font-size: 0.75rem;
  }
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  box-sizing: border-box;
  outline: none;
  font-size: 0.75rem;
  font-weight: inherit;
}
@media (max-width: 767px) {
  input, textarea {
    font-size: 1rem;
  }
}

textarea {
  display: block;
  resize: vertical;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: #b2b2b2;
}

::-moz-placeholder {
  color: #b2b2b2;
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.175;
}

h1, h2, .heading {
  font-size: 2.375rem;
}
@media (max-width: 1320px) {
  h1, h2, .heading {
    font-size: calc(26px + 12 * (100vw - 320px) / 1000);
  }
}

/* COMMON */
.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
}

.container, .container-lg {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container, .container-lg {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.container {
  max-width: 1320px;
}
.container-lg {
  max-width: 1430px;
}

.caption {
  margin-bottom: 0.857em;
}
@media (max-width: 575px) {
  .caption {
    font-size: 10px;
  }
}

.title {
  font-size: 1.625rem;
  line-height: 1.08;
  margin-bottom: 30px;
}
@media (max-width: 1320px) {
  .title {
    font-size: calc(14px + 12 * (100vw - 320px) / 1000);
  }
}
@media (max-width: 767px) {
  .title {
    line-height: 1.29;
    margin-bottom: 20px;
  }
}

.img-fluid {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 55px 0 70px;
}
.section-lg {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 25px 0 50px;
  }
  .section-lg {
    padding: 50px 0;
  }
}

.section-bg {
  color: var(--light);
  background-color: var(--color-brand);
}

.sprite {
  display: none;
}

/* BOX-OVERLAY */
.box-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .menu-show {
    overflow: hidden;
  }
  .menu-show .header-panel {
    transform: translateX(0);
  }
  .menu-show .box-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}
/* BUTTON */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  background-color: var(--color-brand);
  color: var(--light);
  font-size: 0.75rem;
  min-height: 3.75em;
  padding: 7px 30px;
  transform: perspective(1px) translateZ(0);
  position: relative;
  text-decoration: none;
  border: none;
}
.button:hover:before {
  transform: scaleY(1);
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a81a3;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media (min-width: 501px) {
  .button {
    min-width: 16.25rem;
  }
  .button_lg {
    min-width: 19.9375rem;
  }
}
@media (max-width: 500px) {
  .button {
    width: 100%;
    font-size: 0.625rem;
  }
}
.button_fluid {
  width: 100%;
  min-width: 0;
}

/* TOP-LINE */
.top-line {
  --duration: 10s;
  background-color: var(--color-brand);
  color: var(--light);
  text-align: center;
  padding: 10px 0;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .top-line__item:not(:first-child) {
    display: none;
  }
}
@media (max-width: 767px) {
  .top-line {
    font-size: 0.625rem;
  }
}
@media (max-width: 575px) {
  .top-line {
    overflow: hidden;
  }
  .top-line__inner {
    display: flex;
  }
  .top-line__item {
    min-width: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    will-change: transform;
    animation: marquee 15s linear infinite;
    padding: 0 2.5em;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* HEADER */
.header {
  padding: 15px 0;
  color: var(--dark);
}
@media (max-width: 575px) {
  .header {
    padding: 5px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
}
.header__col {
  flex: 1;
}
.header__logo {
  flex-shrink: 0;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .header__logo .logo {
    max-width: 105px;
  }
}

.nav {
  width: fit-content;
}
.nav_end {
  margin-left: auto;
}
.nav__list {
  list-style: none;
  padding: 0;
  margin: 0 -17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.75rem;
}
.nav__list li {
  padding: 0 17px;
}
.nav__list a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  position: relative;
}
.nav__list a:hover:before {
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.nav__list a:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scale3d(0, 1, 1);
  transition: transform 0.1s;
}

.logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 142px;
}

@media (min-width: 992px) {
  .header-panel__top {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 18.125rem;
    height: 100svh;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s;
    transform: translateX(-150%);
  }
  .header-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px 6px 0;
    background-color: var(--light);
  }
  .header-panel__logo {
    max-width: 105px;
  }
  .header-panel__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    color: var(--color-brand);
    border: none;
    background-color: transparent;
    padding: 0;
  }
  .header-panel__body {
    padding: 35px 10px;
    flex-grow: 1;
    min-height: 1px;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
  }
  .header-panel .nav__list {
    display: block;
  }
  .header-panel .nav__list a {
    padding: 9px 0;
  }
  .header-panel .nav__list a:before {
    display: none;
  }
}

.burger {
  background-color: transparent;
  width: 49px;
  height: 40px;
  display: grid;
  place-content: center;
  color: var(--color-brand);
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}

/* INTRO */
.intro {
  position: relative;
  background: linear-gradient(180deg, #bbdcf9 0%, #e6e5f0 100%);
}
.intro__body {
  padding-top: 1.3125rem;
  padding-bottom: 333px;
}
.intro__content {
  width: 100%;
  max-width: 45%;
  margin-left: auto;
  padding-right: 8px;
}
.intro__title {
  margin-bottom: 17px;
}
.intro__txt {
  font-size: 0.75rem;
  max-width: 24.375rem;
  margin-bottom: 18px;
}
@media (min-width: 651px) {
  .intro__body {
    background: url("../img/intro-bg.webp") no-repeat 50% 100%;
  }
}
@media (max-width: 991px) {
  .intro__content {
    max-width: 58%;
    padding-right: 0;
  }
}
@media (max-width: 650px) {
  .intro__body {
    padding-bottom: 89vw;
    background: url("../img/intro-bg-sm.webp") no-repeat 50% 100%/100% auto;
  }
  .intro__content {
    margin-left: 0;
    max-width: 455px;
  }
}
@media (max-width: 575px) {
  .intro__body {
    padding-top: 1.125rem;
  }
  .intro__title {
    margin-bottom: 12px;
  }
}

/* BREADCRUMS */
.breadcrumbs {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.75rem;
  color: var(--dark);
}
.breadcrumbs li {
  display: inline;
  vertical-align: baseline;
}
.breadcrumbs li:after {
  content: "/";
  color: var(--gray);
  margin-left: 2px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs a {
  padding: 5px 0;
  color: var(--gray);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}

/* HERO */
.hero {
  min-height: 411px;
  padding: 34px 0;
  color: var(--light);
  background: var(--gray) url(../img/hero-bg.webp) no-repeat 50% 50%/cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.hero__title:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hero {
    min-height: 300px;
  }
}

/* ABOUT-SECTION */
.about-section {
  padding-top: 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .about-section {
    padding-top: 50px;
  }
}
.about-section__block {
  margin-bottom: 60px;
}
.about-section__block:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .about-section__block {
    margin-bottom: 53px;
  }
}
.about-section__header {
  max-width: 51.75rem;
  margin-bottom: 51px;
}
@media (max-width: 767px) {
  .about-section__header {
    margin-bottom: 25px;
  }
}
.about-section__img {
  max-width: 537px;
  margin-left: -39px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .about-section__img {
    display: none;
  }
}
@media (max-width: 575px) {
  .about-section__img {
    max-width: 360px;
  }
}
.about-section__info {
  max-width: 29.6875rem;
}
.about-section__desc {
  margin-bottom: 48px;
}
.about-section__desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .about-section__desc {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .about-section__grid {
    display: flex;
  }
  .about-section__grid-col {
    flex-grow: 1;
    min-width: 1px;
    max-width: 100%;
    padding-right: 20px;
  }
  .about-section__grid-main {
    width: 45.23%;
    flex-shrink: 0;
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .about-section__grid-col {
    margin-bottom: 40px;
  }
}

.media-grid__max {
  max-width: 200px;
}
@media (min-width: 501px) {
  .media-grid {
    display: flex;
    align-items: end;
    margin-left: -7px;
    margin-right: -7px;
  }
  .media-grid__item {
    padding: 0 7px;
  }
}
@media (max-width: 500px) {
  .media-grid__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .media-grid_hidden {
    display: none;
  }
}

.media-1 {
  aspect-ratio: 525/489;
  width: 100%;
  max-width: 525px;
}

.media-2 {
  aspect-ratio: 308/312;
  width: 100%;
  max-width: 308px;
}

/* MISSION-SECTION */
.mission-section {
  padding: 50px 0 70px;
}
.mission-grid {
  margin-bottom: 50px;
}
.mission-grid:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .mission-grid {
    display: flex;
    align-items: center;
  }
  .mission-grid__main {
    flex-grow: 1;
    min-width: 1px;
    max-width: 100%;
  }
  .mission-grid__col {
    padding-left: 20px;
    flex-shrink: 0;
    width: 42.35%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mission-grid__col {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .mission-grid__main {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .mission-grid {
    margin-bottom: 33px;
  }
}
.mission-info_max {
  max-width: 460px;
}
.mission-info__title {
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .mission-info__title {
    margin-bottom: 11px;
  }
}

/* DIGITS */
.digit-grid {
  max-width: 43.75rem;
}
.digit-grid_max {
  max-width: 48.9375rem;
}
@media (min-width: 768px) {
  .digit-grid {
    display: flex;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
  }
  .digit-grid__item {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .digit-grid__item:not(:last-child) {
    margin-bottom: 27px;
  }
}

.digit__header {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 19px;
}
.digit__val {
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 1;
}
.digit__txt.max-w {
  max-width: 14.375rem;
}
@media (max-width: 1320px) {
  .digit__val {
    font-size: calc(50px + 20 * (100vw - 320px) / 1000);
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .digit {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .digit__header {
    margin-bottom: 6px;
  }
  .digit__txt.max-w {
    max-width: 15.625rem;
  }
}

/* FEATURE-SECTION */
.feature-section {
  padding: 50px 0 70px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .feature-section {
    min-height: 25rem;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .feature-section {
    background: url("../img/feature-bg.webp") no-repeat 50% 50%/cover;
  }
}
@media (max-width: 767px) {
  .feature-section {
    background: url("../img/feature-bg-sm.webp") no-repeat 50% 100%/cover;
    padding: 40px 0 50px;
  }
}

@media (min-width: 768px) {
  .feature-grid {
    display: flex;
    justify-content: space-between;
  }
  .feature-grid_max {
    width: 100%;
    max-width: 67.8125rem;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-grid__item {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .feature-grid__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.feature {
  width: 100%;
  max-width: 16.875rem;
}
.feature_lg {
  max-width: 20rem;
}
.feature.text-center .feature__icon {
  justify-content: center;
}
.feature__icon {
  width: 85px;
  height: 85px;
  display: inline-flex;
  align-items: center;
}
.feature__icon img {
  max-height: 100%;
}
.feature__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .feature {
    font-size: 0.75rem;
  }
  .feature__title {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .feature {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 500px) {
  .feature-mob-left {
    margin-left: 0;
    margin-right: 0;
  }
}

/* SCIENCE-SECTION */
.science-section {
  background-color: #f6f6f6;
}
.science-section__main {
  padding: 55px 20px;
}
@media (min-width: 601px) {
  .science-section {
    display: flex;
    flex-direction: row-reverse;
    padding-left: calc((100% - 1300px) / 2);
  }
  .science-section__main {
    width: 42%;
    flex-shrink: 0;
  }
  .science-section__col {
    flex-grow: 1;
    min-width: 1px;
    max-width: 100%;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  .science-section__main {
    width: 55%;
  }
}
@media (max-width: 600px) {
  .science-section__main {
    padding: 45px 10px;
  }
}

.science-info {
  width: 100%;
  max-width: 27.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.science-info__end {
  margin-top: auto;
}

/* NUMBERS-SECTION */
.numbers-section {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
}
.numbers-section:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 792px;
  height: 324px;
  pointer-events: none;
  background: url("../img/world.svg") no-repeat 0 0/contain;
}
.numbers-section__item {
  width: fit-content;
  margin-left: auto;
}
@media (min-width: 992px) {
  .numbers-section {
    min-height: 20.25rem;
  }
  .numbers-section:before {
    right: 50%;
    margin-right: 167px;
  }
}
@media (max-width: 991px) {
  .numbers-section {
    padding: 50px 0;
  }
  .numbers-section:before {
    opacity: 0.4;
    margin-right: 0;
    left: 0;
  }
  .numbers-section__item {
    margin-right: auto;
  }
}

/* ELEM-SECTION */
@media (min-width: 601px) {
  .elem-section__row {
    display: flex;
  }
  .elem-section__row:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .elem-section__row:nth-child(odd) .elem-main {
    padding-left: 20px;
  }
}
@media (min-width: 1301px) {
  .elem-section__row {
    padding-right: calc((100% - 1300px) / 2);
  }
  .elem-section__row .elem-main {
    padding-left: 50px;
  }
  .elem-section__row:nth-child(odd) {
    padding-right: 0;
    padding-left: calc((100% - 1300px) / 2);
  }
}

.elem-picture {
  flex-grow: 1;
  min-width: 1px;
  max-width: 100%;
}

.elem-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 20px;
  flex-shrink: 0;
}
.elem-main__inner {
  max-width: 490px;
}
.elem-main__title {
  margin-bottom: 0.789em;
}
.elem-main__content {
  max-width: 27.5rem;
}
@media (min-width: 1301px) {
  .elem-main {
    width: 650px;
  }
}
@media (max-width: 1300px) {
  .elem-main {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .elem-main {
    width: 100%;
    padding: 45px 10px;
  }
}

/* CONTACTS */
.contact-grid__item {
  padding-right: 59px;
}
.contact-grid__item:last-child {
  padding-left: 59px;
  padding-right: 0;
  border-right: none;
}
@media (min-width: 701px) {
  .contact-grid {
    display: flex;
  }
  .contact-grid__item {
    width: 50%;
    border-right: 1px solid #d6d6d6;
  }
}
@media (min-width: 1201px) {
  .contact-grid__item {
    padding-top: 44px;
  }
}
@media (max-width: 1200px) {
  .contact-grid__item {
    padding-right: 30px;
  }
  .contact-grid__item:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 700px) {
  .contact-grid__item, .contact-grid__item:last-child {
    padding: 0;
  }
  .contact-grid__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.contact-block:not(:last-child) {
  margin-bottom: 29px;
}
.contact-title {
  margin-bottom: 28px;
}
.contact-info__caption {
  color: var(--gray);
  margin-bottom: 12px;
}
.contact-max {
  max-width: 27.25rem;
}
@media (max-width: 575px) {
  .contact-title {
    margin-bottom: 15px;
  }
}

/* FORM */
.form-control {
  width: 100%;
  border: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-brand);
}
.form__footer {
  padding-top: 30px;
}

/* PRODUCT-INTRO */
.product-intro {
  padding: 68px 0 60px;
}
.product-intro__grid {
  display: flex;
  flex-wrap: wrap;
}
.product-intro__col {
  width: 46.485%;
}
.product-intro__body {
  margin-left: auto;
  width: 43.204%;
}
@media (max-width: 1024px) {
  .product-intro__col, .product-intro__body {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .product-intro {
    padding-top: 20px;
  }
  .product-intro__col, .product-intro__body {
    width: 100%;
  }
  .product-intro__body {
    margin: 30px 0 0;
  }
}

.product-media {
  max-width: 585px;
  aspect-ratio: 1/1;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.product-media__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s;
}
.product-media__item.is-active {
  opacity: 1;
  z-index: 5;
}
.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 17px -3px -3px;
}
.product-gallery__item {
  padding: 3px;
}
.product-gallery__item:only-child {
  display: none;
}

.product-preview {
  max-width: 80px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--color-brand);
  cursor: pointer;
  transition: all 0.3s;
}
.product-preview:hover {
  opacity: 0.7;
}
.product-preview img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 575px) {
  .product-preview {
    max-width: 65px;
  }
}

.product-desc {
  font-size: 0.75rem;
}
.product-desc:not(:last-child) {
  margin-bottom: 17px;
}
.product-desc__header {
  margin-bottom: 15px;
}
.product-desc__title {
  margin-bottom: 10px;
}
.product-desc__row {
  margin-bottom: 10px;
}
.product-desc__subtitle {
  color: #9d9d9d;
}
@media (min-width: 576px) {
  .product-desc__content {
    max-width: 25.75rem;
  }
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}
.product-rating__media {
  max-width: 86px;
}

.product-block:not(:last-child) {
  margin-bottom: 37px;
}

.product-action:not(:last-child) {
  margin-bottom: 30px;
}
.product-action__row {
  display: flex;
  align-items: center;
}
.product-action__row:not(:last-child) {
  margin-bottom: 13px;
}
@media (max-width: 500px) {
  .product-action__row {
    justify-content: space-between;
  }
}
.product-action__item {
  padding-right: 28px;
}
.product-action__item:last-child {
  padding-right: 0;
}
.product-action__group:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 501px) {
  .product-action__group {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  .product-action__inner:not(:last-child) {
    margin-bottom: 10px;
  }
}

.product-benefit {
  display: flex;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.product-benefit:not(:last-child) {
  margin-bottom: 39px;
}
.product-benefit__item {
  padding: 0 10px;
}

.pr-price {
  font-size: 1.625rem;
}
@media (max-width: 575px) {
  .pr-price {
    font-size: 1.375rem;
  }
}

.pr-check {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-brand);
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 0.75rem;
  position: relative;
  transition: all 0.3s;
}
.pr-check_styled {
  border-color: transparent;
  background: linear-gradient(30deg, #aa9240 0%, #ffeeac 52.4%, #b6963f 100%);
}
.pr-check input {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}
.pr-check input:checked + .pr-check__symbol:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pr-check__symbol {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-brand);
  border: 1px solid currentColor;
  margin-right: 10px;
  position: relative;
}
.pr-check__symbol:before {
  content: "";
  inset: 2px;
  position: absolute;
  border-radius: inherit;
  background-color: currentColor;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.pr-check__end {
  margin-left: auto;
  padding-left: 10px;
}
@media (min-width: 501px) {
  .pr-check_max {
    width: 100%;
    max-width: 16.5625rem;
  }
}
@media (min-width: 991px) {
  .pr-check:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

.pr-benefit {
  text-align: center;
}
.pr-benefit__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pr-benefit__icon img, .pr-benefit__icon svg {
  max-height: 100%;
}
.pr-benefit__title {
  max-width: 8.57em;
}
@media (max-width: 575px) {
  .pr-benefit {
    font-size: 0.625rem;
  }
  .pr-benefit__icon {
    margin-bottom: 10px;
  }
}

.calc {
  display: flex;
  font-size: 1.625rem;
  text-align: center;
}
.calc__val {
  min-width: 40px;
  padding: 0 5px;
}
.calc__item {
  width: 30px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s;
}
.calc__item:hover {
  border-color: var(--color-brand);
}
@media (max-width: 575px) {
  .calc {
    font-size: 1.375rem;
  }
}

.tooltip {
  font-size: 0.75rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tooltip:hover .tooltip__content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tooltip__header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.tooltip__icon {
  width: 1.583em;
  height: 1.583em;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-brand);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}
.tooltip__content {
  border-radius: 5px;
  background-color: #f3f3f3;
  padding: 13px 10px 11px;
  position: absolute;
  bottom: 100%;
  margin-bottom: 7px;
  width: 159px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s;
}
.tooltip__title {
  margin-bottom: 4px;
}
.tooltip__txt {
  font-size: 0.666em;
  line-height: 1;
}

/* ACCORDION */
.accordion {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  margin-top: -1px;
}
.accordion.is-open .accordion__header:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.accordion.is-open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion.is-open .accordion__content {
  padding: 3px 0 20px;
}
.accordion__header {
  padding: 13px 0;
  position: relative;
  cursor: pointer;
}
.accordion__header:before, .accordion__header:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  margin-top: -1px;
  right: 0;
  background-color: currentColor;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion__header:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.accordion__header:after {
  width: 19px;
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.accordion__content {
  font-size: 0.75rem;
  min-height: 0;
  transition: 0.3s ease-in-out;
}

/* PRODUCT-DATA */
.product-data {
  padding: 64px 0 21px;
  color: var(--light);
}
.product-data__body {
  width: calc(50% - 130px);
}
.product-data__content {
  width: 100%;
  max-width: 16.4375rem;
}
.product-data__row {
  margin-bottom: 43px;
}
.product-data__footer {
  margin-top: 75px;
}
@media (min-width: 576px) {
  .product-data {
    background: var(--color-brand) url("../img/product-bg.webp") no-repeat 50% 50%/cover;
  }
  .product-data__grid {
    display: grid;
    grid-template-areas: "item";
    grid-template-columns: 1fr;
  }
  .product-data__item {
    grid-area: item;
    grid-column: 1;
  }
  .product-data__item:first-child {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 991px) {
  .product-data__body {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .product-data {
    background: var(--color-brand) url("../img/product-bg-sm.webp") no-repeat 50% 50%/cover;
    padding: 40px 0;
  }
  .product-data__item:not(:last-child) {
    margin-bottom: 24px;
  }
  .product-data__body {
    width: 100%;
  }
  .product-data__row {
    margin-bottom: 35px;
  }
  .product-data__footer {
    margin-top: 40px;
  }
}

.decor-wrap {
  width: 210px;
  margin: 0 auto;
}
@media (min-width: 576px) and (max-width: 991px) {
  .decor-wrap {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .decor-wrap {
    width: 150px;
  }
}
.decor {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BENEFITS-SECTION */
.benefits-section {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .benefits-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: 150px;
    width: 810px;
    height: 560px;
    background: url("../img/world-2.svg") no-repeat 0 0/contain;
  }
  .benefits-section__grid {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
  }
  .benefits-section__aside {
    width: 42.806%;
    padding-right: 20px;
    flex-shrink: 0;
  }
  .benefits-section__main {
    flex-grow: 1;
    min-width: 1px;
    max-width: 100%;
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .benefits-section__main {
    padding-top: 50px;
  }
}

.benefit-media__txt {
  font-size: 0.625rem;
}
@media (min-width: 992px) {
  .benefit-media {
    padding-bottom: 20px;
  }
  .benefit-media__img {
    width: 100%;
    max-width: 358px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .benefit-media {
    display: flex;
    align-items: end;
    justify-content: end;
  }
  .benefit-media__img {
    max-width: 282px;
    pointer-events: none;
    margin-top: -330px;
    margin-right: -100px;
  }
  .benefit-media__img img {
    max-width: none;
  }
  .benefit-media__txt {
    order: -1;
    padding: 20px 10px 20px 0;
  }
}
.benefit-header {
  margin-bottom: 35px;
}
.benefit-header__title {
  margin-bottom: 10px;
}
.benefit-header__txt {
  max-width: 27.1875rem;
  font-size: 0.75rem;
}
.benefit-column {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -45px;
}
.benefit-column__item {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .benefit-column {
    max-width: 760px;
  }
}
@media (max-width: 991px) {
  .benefit-column {
    padding-right: 140px;
  }
}
@media (max-width: 767px) {
  .benefit-column__item {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .benefit-column {
    margin: 0;
  }
  .benefit-column__item {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
}
.benefit__icon {
  width: 44px;
  height: 46px;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.benefit__icon img, .benefit__icon svg {
  display: block;
  max-height: 100%;
}
.benefit__title {
  margin-bottom: 10px;
}
.benefit__txt {
  font-size: 0.857em;
}
@media (min-width: 576px) {
  .benefit {
    max-width: 14.0625rem;
  }
}
@media (max-width: 575px) {
  .benefit__icon {
    margin-bottom: 9px;
  }
}

/* PLAN */
@media (min-width: 768px) {
  .plan {
    display: table;
    width: 100%;
  }
  .plan-wrap {
    overflow: hidden;
    overflow-x: auto;
  }
  .plan__row {
    display: table-row;
  }
  .plan__row:first-child .plan__cell {
    vertical-align: middle;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .plan__cell {
    display: table-cell;
    padding: 35px 20px;
    border-bottom: 1px solid #dbdbdb;
    min-width: 170px;
  }
  .plan__cell:first-child {
    vertical-align: middle;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .plan__cell {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .plan-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
  .plan__row {
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid var(--color-brand);
    border-bottom: 1px solid var(--color-brand);
    background-color: var(--light);
    margin-top: -1px;
  }
  .plan__row.is-active .plan__header:after {
    transform: rotate(180deg);
  }
  .plan__collapse {
    padding-top: 18px;
    border-top-color: transparent;
    overflow: hidden;
    display: none;
  }
  .plan__collapse.is-active {
    display: block;
  }
  .plan__cell {
    padding-bottom: 25px;
    max-width: 80%;
  }
}
.plan__caption {
  font-size: 1.125rem;
}
@media (min-width: 1201px) {
  .plan__caption {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .plan__caption {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.plan__header {
  padding: 15px 20px 15px 23px;
  font-size: 0.875rem;
  background: url("../img/icons/circle.svg") no-repeat 0 50%;
  position: relative;
  cursor: pointer;
}
.plan__header:before, .plan__header:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}
.plan__header:after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.plan__bg {
  background-color: #eaeff1;
}
.plan-note {
  margin-top: 18px;
  color: var(--gray);
  max-width: 28.25rem;
  font-size: 0.625rem;
}
.plan-note__title {
  font-size: 0.75rem;
  margin-bottom: 10px;
}

/* INGREDIENT */
.ingredient-grid {
  background: linear-gradient(180deg, rgba(255, 237, 171, 0.2) 0%, rgba(255, 233, 168, 0.67) 58.65%, #c9a952 100%);
}
@media (min-width: 1201px) {
  .ingredient-grid {
    display: flex;
  }
  .ingredient-grid__item {
    width: 50%;
  }
}
.ingredient-block {
  padding: 60px 20px;
}
@media (max-width: 600px) {
  .ingredient-block {
    padding: 50px 10px;
  }
}
.ingredient-header {
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .ingredient-header {
    text-align: left;
  }
  .ingredient-header__title {
    font-size: 18px;
  }
}
.ingredient-content {
  position: relative;
}
.ingredient-content:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #CEB05D, #fff);
}
@media (min-width: 601px) {
  .ingredient-content {
    width: 540px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .ingredient-content:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .ingredient-content__item {
    width: 50%;
    padding-left: 55px;
    position: relative;
  }
  .ingredient-content__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 50px;
    height: 5px;
    background: linear-gradient(to right, #CEB05D, #fff);
  }
  .ingredient-content__item:nth-child(even) {
    padding-right: 10px;
  }
  .ingredient-content__item:nth-child(even):before {
    left: auto;
    right: 0;
    background: linear-gradient(to left, #CEB05D, #fff);
  }
  .ingredient-content__item:nth-child(1) {
    margin-top: 14px;
  }
  .ingredient-content__item:nth-child(2) {
    margin-top: 52px;
    padding-left: 87px;
  }
  .ingredient-content__item:nth-child(2):before {
    top: 25px;
    width: 135px;
  }
  .ingredient-content__item:nth-child(3) {
    margin-top: 39px;
    padding-left: 90px;
  }
  .ingredient-content__item:nth-child(3):before {
    top: 23px;
    width: 90px;
  }
  .ingredient-content__item:nth-child(4) {
    margin-top: 86px;
    padding-left: 43px;
  }
  .ingredient-content__item:nth-child(4):before {
    top: 18px;
    width: 185px;
  }
  .ingredient-content__item:nth-child(5) {
    margin-top: 19px;
  }
  .ingredient-content__item:nth-child(5):before {
    top: 23px;
    background: linear-gradient(to left, #CEB05D, #fff);
  }
  .ingredient-content__item:nth-child(6) {
    margin-top: 95px;
    padding-left: 88px;
  }
  .ingredient-content__item:nth-child(6):before {
    width: 128px;
    background: linear-gradient(to right, #CEB05D, #fff);
  }
}
@media (max-width: 600px) {
  .ingredient-content:before {
    left: 0;
  }
  .ingredient-content__item {
    padding-left: 44px;
    position: relative;
  }
  .ingredient-content__item:not(:last-child) {
    margin-bottom: 25px;
  }
  .ingredient-content__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 44px;
    height: 5px;
    background: linear-gradient(to right, #CEB05D, #fff);
  }
}
.ingredient__icon {
  max-width: 46px;
  margin-bottom: 6px;
}
.ingredient__title {
  margin-bottom: 6px;
}
.ingredient__txt {
  font-size: 0.75rem;
}
@media (max-width: 600px) {
  .ingredient {
    padding-left: 8px;
    max-width: 13.75rem;
  }
}

@media (min-width: 651px) and (max-width: 1200px) {
  .ingredient-visible {
    display: none;
  }
}
/* REVIEWS */
.review-row {
  border-bottom: 1px solid #d1d3d4;
}
.review-row-header {
  padding-bottom: 14px;
}
.review-row-header .review-grid {
  display: flex;
  align-items: center;
}
.review-row-header .review-grid__col, .review-row-header .review-grid__body {
  padding-top: 5px;
}
.review-row-header .review-grid__col {
  border-right: none;
}
@media (max-width: 767px) {
  .review-row-header {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .review-row-header .review-grid {
    padding-top: 0;
  }
  .review-row-header .review-grid__col {
    padding-right: 10px;
    min-width: 125px;
    display: block;
  }
  .review-row-header .review-grid__body {
    padding-top: 0;
  }
}
@media (min-width: 576px) {
  .review-grid {
    display: flex;
  }
  .review-grid__col {
    padding: 20px 10px 20px 0;
    width: 122px;
    flex-shrink: 0;
    border-right: 1px solid #d1d3d4;
  }
  .review-grid__body {
    flex-grow: 1;
    max-width: 100%;
    min-width: 1px;
    padding: 20px 0 20px 35px;
  }
  .review-grid__inner {
    display: flex;
  }
}
@media (max-width: 575px) {
  .review-grid {
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .review-grid__col {
    display: flex;
    flex-wrap: wrap;
  }
  .review-grid__body {
    padding-top: 20px;
  }
}
.review-caption {
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
}
.review-txt {
  font-size: 0.75rem;
  display: flex;
  gap: 8px;
}
.review-txt:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .review-txt {
    justify-content: space-between;
    width: 100%;
  }
  .review-caption {
    order: -1;
    width: 75%;
  }
  .review-date {
    width: 25%;
    order: -1;
    justify-content: end;
  }
}
.review-start {
  flex-grow: 1;
  min-width: 1px;
  max-width: 100%;
}
.review-end {
  flex-shrink: 0;
  padding-left: 20px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .review-end {
    padding-left: 0;
    width: fit-content;
    margin-left: auto;
    margin-top: 5px;
  }
}

.review {
  font-size: 0.75rem;
}
.review__top {
  margin-bottom: 12px;
}
.review__title {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.review__content {
  max-width: 655px;
}
.review__group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-left: -3px;
  margin-right: -3px;
}
.review__group-item {
  padding: 3px;
}
.review__media {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
.review__media:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .review__media {
    width: 80px;
    height: 80px;
  }
}

.review-button {
  width: fit-content;
  text-align: center;
}

.review-like {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid var(--color-brand);
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
}
.review-like input {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.review-like input:checked + .review-like__icon {
  background-image: url("../img/icons/heart-fill.svg");
}
.review-like input:hover + .review-like__icon {
  animation: pulse 1s infinite;
}
.review-like__icon {
  width: 19px;
  height: 17px;
  background: url("../img/icons/heart.svg") no-repeat 0 0;
}
.review-like-counter {
  margin-top: 2px;
  font-size: 0.625rem;
}

@keyframes pulse {
  10% {
    transform: scale(1.15);
  }
}
.review-more {
  margin-top: 25px;
  text-align: center;
}
.review-more__btn {
  display: inline-flex;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  font-weight: inherit;
  color: inherit;
  transition: all 0.3s;
}
.review-more__btn:hover {
  color: var(--light);
  background-color: var(--color-brand);
  text-decoration: none;
}

.rating-main {
  display: flex;
  align-items: center;
}
.rating-main__val {
  font-size: 1.625rem;
  line-height: 1.08;
  margin-right: 8px;
}

.rating {
  display: inline-flex;
  margin: 0 -2px;
}
.rating__item {
  color: #d1d3d4;
  padding: 0 2px;
}
.rating__item.is-active {
  color: var(--dark);
}
.rating svg, .rating img {
  display: block;
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
  background-color: var(--color-brand);
  color: var(--light);
  padding: 30px 0;
  font-size: 0.75rem;
}
.footer__top {
  text-align: center;
  margin-bottom: 54px;
}
.footer__top:last-child {
  margin-bottom: 0;
}
.footer__main {
  margin-bottom: 87px;
}
.footer__main:last-child {
  margin-bottom: 0;
}
.footer__nav {
  font-size: 1.16667em;
}
.footer__block {
  margin-bottom: 20px;
}
.footer__block:last-child {
  margin-bottom: 0;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.footer__links li {
  margin: 0 10px;
}
.footer__links a {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  color: inherit;
  text-decoration: none;
}
.footer__links a:hover {
  opacity: 0.8;
}
@media (min-width: 576px) {
  .footer {
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
  }
  .footer__links {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer {
    font-size: 10px;
  }
  .footer__top {
    margin-bottom: 25px;
  }
  .footer__nav li {
    width: 50%;
    margin-bottom: 5px;
  }
  .footer__main {
    margin-bottom: 50px;
  }
  .footer__block {
    margin-bottom: 10px;
  }
}

/* HELPERS */
.text-up {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.color-txt {
  color: #8b8b8b;
}

.color-secondary {
  color: var(--dark);
}

.color-brand {
  color: var(--color-brand);
}

.font-xs {
  font-size: 0.625rem;
}

.font-sm {
  font-size: 0.75rem;
}

.font-default {
  font-size: inherit;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-15 {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .md-hidden {
    display: none;
  }
}
@media (min-width: 768px) {
  .sm-visible {
    display: none;
  }
}
@media (max-width: 991px) {
  .md-visible {
    display: none;
  }
}
@media (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
}