@charset "UTF-8";
* {
  box-sizing: border-box; }

html, body {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
  height: 100%; }
  html.no-scroll, body.no-scroll {
    overflow-y: hidden; }

.inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto; }

.block-title {
  font-size: 40px;
  color: #1E1C1B;
  font-weight: 700; }

#button {
  display: inline-block;
  background-color: #ccc;
  opacity: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 60px;
  transition: .3s;
  z-index: 1000; }
  #button.show {
    opacity: 40%; }
  #button:after {
    content: '';
    background-image: url(../icon/arrow.svg);
    background-size: cover;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 49%;
    top: 48%;
    transform: translate(-50%, -50%) rotate(270deg); }

#button:hover {
  cursor: pointer;
  background-color: #ccc;
  transition: .5s;
  opacity: 1; }

#button:active {
  background-color: #555; }

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%; }

.header {
  min-height: 135px; }
  .header__top {
    background: #F4F5F5; }
    .header__top .inner {
      display: flex;
      justify-content: space-between;
      padding: 16px 0; }
  .header__logo-block {
    display: flex;
    gap: 48px; }
  .header__slogan {
    margin-top: 5px;
    max-width: 311px;
    font-size: 12px;
    font-weight: 400;
    color: #6C6B69; }
  .header__main .inner {
    display: flex;
    justify-content: space-between;
    padding: 15px 0; }
  .header__main-sticky {
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    border-bottom: 1px solid #CECECE; }
  .header__menu {
    display: flex;
    justify-content: space-between;
    gap: 48px; }
  .header .shop-btn {
    text-decoration: none;
    color: #E9336D;
    font-weight: 500;
    position: relative; }
    .header .shop-btn:before {
      content: '';
      background-image: url("../icon/shop-icon.svg");
      background-size: contain;
      background-repeat: no-repeat;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 2px;
      left: -30px; }

.contacts__item-value {
  font-size: 20px;
  font-weight: 600;
  color: #1E1C1B;
  text-decoration: none; }
.contacts__item-descr {
  font-size: 12px;
  font-weight: 400;
  color: #6C6B69; }

.menu-item {
  text-decoration: none;
  color: #1E1C1B;
  font-weight: 500; }

.main-block {
  height: 580px;
  background-image: url("../img/main-block-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%; }
  .main-block .inner {
    position: relative; }
  .main-block__info {
    padding-top: 116px;
    max-width: 412px; }
    .main-block__info img {
      width: 100%; }
  .main-block__logo {
    margin-bottom: 35px; }
  .main-block__list {
    user-select: none;
    list-style: none;
    padding-left: 15px; }
  .main-block__list li {
    position: relative;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8; }
   .main-block__list a{
    color: inherit;
    text-decoration: none;
        border-bottom: 1px dotted;
    }
  .main-block__list li::before {
    content: "•";
    color: #E9336D;
    position: absolute;
    left: -20px;
    top: 0;
    transform: translateY(-35%);
    font-size: 42px; }
  .main-block__img {
    position: absolute;
    top: 25px;
    right: 50px;
    width: 531px; }
    .main-block__img img {
      width: 100%; }

.products {
  padding-top: 64px;
  margin-top: -40px;
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px; }
  .products__sliderwrap {
    position: relative; }
  .products__slider {
    margin-top: 100px; }
  .products__pagination {
    margin-top: 85px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center; }
    .products__pagination .swiper-pagination-bullet {
      width: 32px;
      height: 3px;
      border-radius: 2px;
      transition: .3s all; }
    .products__pagination .swiper-pagination-bullet-active {
      width: 48px;
      background: #E9336D; }
  .products__next, .products__prev {
    background-color: #F4F5F5;
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 39%;
    cursor: pointer;
    z-index: 2; }
    .products__next:after, .products__prev:after {
      content: '';
      background: url("../icon/arrow.svg");
      width: 24px;
      height: 24px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
    .products__next:hover, .products__prev:hover {
      border: 1px solid #E9336D; }
  .products__next {
    right: -95px;
    transform: translateY(-100%); }
  .products__prev {
    left: -95px;
    transform: translateY(-100%) rotate(180deg); }

.product {
  padding: 0 64px;
  display: flex;
  gap: 64px; }
  .product__img img {
    width: 392px; }
  .product__title {
    font-size: 24px;
    font-weight: 700; }
  .product__info {
    margin-bottom: 35px; }
  .product__info ul {
    list-style: none;
    padding-left: 10px; }
  .product__info li {
    position: relative;
    margin-bottom: 12px; }
  .product__info li::before {
    content: "•";
    color: #E9336D;
    position: absolute;
    left: -20px;
    top: 3px;
    transform: translateY(-40%);
    font-size: 42px; }
  .product__info * {
    font-size: 16px;
    font-weight: 400; }
  .product__link {
    margin-top: 24px;
    background: #E9336D;
    padding: 18px 32px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500; }
    .product__link:hover {
      background: #d21752; }

.certificates {
  padding-top: 64px;
  background: #F4F5F5; }
  .certificates__sliderwrap {
    position: relative; }
  .certificates__pagination {
    margin-top: 100px;
    margin-bottom: 64px;
    display: flex;
    justify-content: center; }
    .certificates__pagination .swiper-pagination-bullet {
      width: 32px;
      height: 3px;
      border-radius: 2px;
      transition: .3s all; }
    .certificates__pagination .swiper-pagination-bullet-active {
      width: 48px;
      background: #E9336D; }
  .certificates__next, .certificates__prev {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    cursor: pointer;
    z-index: 2; }
    .certificates__next:after, .certificates__prev:after {
      content: '';
      background: url("../icon/arrow.svg");
      width: 24px;
      height: 24px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
    .certificates__next:hover, .certificates__prev:hover {
      border: 1px solid #E9336D; }
  .certificates__next {
    right: -70px;
    transform: translateY(-100%); }
  .certificates__prev {
    left: -70px;
    transform: translateY(-100%) rotate(180deg); }

.certificate__img {
  max-width: 282px; }

.clients {
  padding-top: 64px;
  margin-bottom: 64px; }
  .clients__list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px; }
  .clients__item {
    flex-basis: calc(25% - 18px);
    background: #F4F5F5;
    padding: 0 30px;
    border-radius: 16px; }
    .clients__item img {
      width: 100%;
      mix-blend-mode: multiply; }

.applications {
  margin-bottom: 64px; }
  .applications__block-title {
    margin-bottom: 40px; }
  .applications__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; }
  .applications__item {
    flex-basis: calc(33.333% - 24px);
    border-radius: 16px; }
    .applications__item img {
      max-height: 220px;
      max-width: 100%;
      width: 380px; }

.map {
  margin-bottom: 64px; }
  .map__block-title {
    margin-bottom: 10px; }
  .map__img {
    margin-top: 40px; }
    .map__img img {
      width: 100%; }

.order {
  z-index: 1;
  position: relative;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding-bottom: 110px;
  background: #fff; }
  .order .inner {
    padding: 20px 40px 40px 40px;
    background: #F4F5F5;
    border-radius: 24px; }
  .order__form-wrapper {
    display: flex;
    justify-content: space-between; }
  .order__img {
    width: 548px;
    margin-top: 20px; }
    .order__img img {
      width: 100%; }
  .order__form {
    width: 550px; }
  .order__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px; }
  .order__description {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px; }
  .order input[type="text"], .order input[type="tel"], .order input[type="email"] {
    padding: 16px;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #C6CCD0;
    color: #6C6B69;
    font-size: 16px; }
    .order input[type="text"]:focus, .order input[type="tel"]:focus, .order input[type="email"]:focus {
      outline: none; }
  .order .form-row--checkbox {
    display: flex; }
  .order input[type="checkbox"] {
    height: 20px;
    width: 20px;
    accent-color: #E9336D;
    margin-right: 15px; }
  .order label {
    line-height: 24px;
    font-size: 14px; }
    .order label a {
      color: #E9336D; }
  .order button {
    margin-top: 35px;
    background: #E9336D;
    padding: 18px 32px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    border: none;
    cursor: pointer; }
    .order button:hover {
      background: #d21752; }

.footer {
  background: #F4F5F5;
  padding-top: 80px;
  margin-top: auto;
  position: relative;
  top: -24px; }
  .footer .inner {
    width: 100%; }
  .footer__row {
    display: flex;
    justify-content: space-between; }
  .footer__logo-block {
    display: flex; }
  .footer .footer__menu {
    display: flex;
    gap: 64px;
    margin-top: 40px;
    margin-bottom: 40px; }
    .footer .footer__menu .menu__item {
      font-size: 16px;
      font-weight: 500; }
  .footer hr {
    border-top: 1px solid #C6CCD0; }
  .footer__address {
    color: #6C6B69;
    margin-top: 8px;
    margin-left: 48px;
    display: block; }
  .footer__bottom {
    padding: 16px 0 0px 0;
    position: relative; }
    .footer__bottom:before {
      position: absolute;
      content: '';
      width: 100%;
      height: 24px;
      top: 100%;
      background: #F4F5F5;
      left: 0; }
    .footer__bottom .inner {
      display: flex;
      justify-content: space-between; }
      .footer__bottom .inner .copyright, .footer__bottom .inner .footer__policy {
        color: #6C6B69;
        font-size: 12px;
        font-weight: 400;
        text-decoration: none; }

@media (max-width: 1280px) {
  .inner {
    width: 95%;
    max-width: 768px;
    margin: 0 auto; }

  .block-title {
    font-size: 30px; }

  .header__logo-block {
    display: flex;
    gap: 40px; }
    .header__logo-block .logo img {
      width: 150px; }
  .header__slogan {
    margin-top: 5px;
    font-size: 12px; }
  .header .contacts__item-value {
    font-size: 16px; }
  .header .contacts__item-descr {
    font-size: 12px; }
  .header__menu {
    display: flex;
    justify-content: space-between;
    gap: 20px; }
    .header__menu .menu-item {
      font-size: 14px; }
  .header .shop-btn:before {
    width: 18px;
    height: 18px;
    left: -20px; }

  .main-block {
    height: 520px; }
    .main-block__info {
      padding-top: 86px; }
    .main-block__logo {
      width: 280px;
      margin-bottom: 30px; }
    .main-block__list li {
      font-size: 16px; }
    .main-block__img {
      width: 400px;
      right: 0; }

  .products__slider {
    margin-top: 50px; }
  .products__pagination {
    margin-top: 50px;
    margin-bottom: 44px; }

  .product {
    display: flex;
    gap: 64px; }
    .product__img {
      margin-top: 50px; }
      .product__img img {
        width: 252px; }
    .product__title {
      font-size: 18px;
      font-weight: 700; }
    .product__info * {
      font-size: 13px;
      font-weight: 400; }
    .product__link {
      padding: 15px 25px;
      font-size: 14px; }
    .product__info li::before {
      top: 1px; }

  .certificates {
    padding-top: 44px; }

  .certificate__img {
    max-width: 222px; }

  .clients {
    margin-bottom: 44px; }
    .clients__list {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px; }
    .clients__item {
      flex-basis: calc(33% - 11px); }

  .applications {
    margin-bottom: 44px; }
    .applications__list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; }
    .applications__item {
      flex-basis: calc(50% - 15px); }

  .map {
    margin-bottom: 44px; }
    .map__img {
      margin-top: 40px; }

  .order {
    margin-bottom: 44px; }
    .order .inner {
      padding: 30px; }
    .order__img {
      width: 400px; }
    .order__title {
      font-size: 30px; }
    .order__description {
      font-size: 14px;
      margin-bottom: 25px; }
    .order input[type="text"], .order input[type="tel"], .order input[type="email"] {
      padding: 12px;
      font-size: 12px; }
    .order input[type="checkbox"] {
      height: 20px;
      width: 20px;
      margin-right: 10px; }
    .order label {
      line-height: 24px;
      font-size: 12px; }
      .order label a {
        color: #E9336D; }
    .order button {
      padding: 14px 25px;
      font-size: 14px; }

  .footer {
    padding-top: 32px; }
    .footer .footer__menu {
      display: flex; }
      .footer .footer__menu .menu__item {
        font-size: 12px;
        font-weight: 500; }
    .footer hr {
      border-top: 1px solid #C6CCD0; }
    .footer__address {
      font-size: 14px; }
    .footer__bottom .inner {
      padding: 20px 0; }
      .footer__bottom .inner .copyright, .footer__bottom .inner .footer__policy {
        font-size: 12px; } }
@media (max-width: 800px) {
  #button {
    right: 25px; }

  .hamburger-menu {
    display: block !important; }

  .menu__btn {
    display: block !important; }

  .inner {
    width: 95%;
    max-width: 480px;
    margin: 0 auto; }

  .block-title {
    font-size: 25px; }

  .header__main {
    display: none; }
  .header__top .inner {
    flex-direction: column;
    gap: 20px; }
  .header__logo-block {
    width: 100%;
    justify-content: space-between;
    display: flex;
    gap: 40px; }
    .header__logo-block .logo img {
      width: 150px; }
  .header__slogan {
    margin-top: 5px;
    font-size: 12px; }
  .header .contacts__item-value {
    font-size: 16px; }
  .header .contacts__item-descr {
    font-size: 12px; }
  .header__main .inner {
    flex-direction: column;
    gap: 20px; }
  .header__menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px; }
    .header__menu .menu-item {
      font-size: 16px; }
  .header .shop-btn {
    margin-left: 25px; }
    .header .shop-btn:before {
      left: -25px; }

  .main-block {
    height: 470px; }
    .main-block__info {
      padding-top: 56px; }
    .main-block__logo {
      width: 220px;
      margin-bottom: 60px; }
    .main-block__list li {
      font-size: 14px; }
    .main-block__img {
      width: 330px;
      right: 0;
      top: 120px; }

  .products {
    padding-top: 30px; }
    .products__item {
      flex-direction: column; }
    .products__slider {
      margin-top: 0; }
    .products__pagination {
      margin-top: 50px;
      margin-bottom: 44px; }

  .product {
    padding: 0 20px;
    display: flex;
    gap: 64px; }
    .product__img {
      margin-top: 50px;
      width: 100%; }
      .product__img img {
        display: block;
        width: 252px;
        margin: 0 auto; }
    .product__title {
      font-size: 18px;
      font-weight: 700; }
    .product__info * {
      font-size: 13px;
      font-weight: 400; }
    .product__link {
      padding: 15px 25px;
      font-size: 14px;
      margin: 0 auto; }

  .certificates {
    padding-top: 44px; }
    .certificates__pagination {
      margin-top: 50px;
      margin-bottom: 40px; }

  .certificate__img {
    max-width: 222px;
    display: block;
    margin: 0 auto; }

  .clients {
    margin-bottom: 44px; }
    .clients__list {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px; }
    .clients__item {
      flex-basis: calc(50% - 5px);
      padding: 0; }
      .clients__item img {
        width: 100%; }

  .applications {
    margin-bottom: 44px; }
    .applications__list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; }
    .applications__item {
      flex-basis: calc(50% - 15px); }
      .applications__item img {
        max-height: 130px; }

  .map {
    margin-bottom: 44px; }
    .map__description {
      font-size: 14px; }
    .map__img {
      margin-top: 40px; }

  .order {
    margin-bottom: 44px; }
    .order .inner {
      padding: 30px; }
    .order__img {
      width: 400px; }
    .order__form {
      width: auto; }
      .order__form-wrapper {
        flex-direction: column; }
    .order__title {
      font-size: 30px; }
    .order__description {
      font-size: 14px;
      margin-bottom: 25px; }
    .order input[type="text"], .order input[type="tel"], .order input[type="email"] {
      padding: 12px;
      font-size: 12px; }
    .order input[type="checkbox"] {
      height: 20px;
      width: 20px;
      margin-right: 10px; }
    .order label {
      line-height: 24px;
      font-size: 12px; }
      .order label a {
        color: #E9336D; }
    .order button {
      padding: 14px 25px;
      font-size: 14px; }

  .footer {
    padding-top: 32px; }
    .footer .footer__row {
      flex-direction: column;
      gap: 50px; }
    .footer__logo-block {
      flex-direction: column;
      gap: 5px; }
    .footer .footer__menu {
      flex-wrap: wrap;
      gap: 15px; }
      .footer .footer__menu .menu__item {
        flex-basis: calc(50% - 15px);
        font-size: 12px;
        font-weight: 500;
        padding-left: 0; }
    .footer__address {
      font-size: 13px;
      margin-left: 0; }
    .footer__bottom .inner {
      flex-direction: column; } }
@media (max-width: 550px) {
  .inner {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 10px; }

  .block-title {
    font-size: 25px; }

  .header__top {
    padding-bottom: 20px; }
    .header__top .inner {
      flex-direction: column;
      gap: 20px;
      padding: 0 20px; }
  .header__logo {
    width: auto; }
  .header__logo-block {
    width: 60%;
    justify-content: space-between;
    display: flex;
    gap: 17px;
    flex-direction: column; }
    .header__logo-block .logo img {
      width: 120px;
      margin-top: 22px;
      margin-left: 10px; }
  .header__slogan {
    margin-top: 0;
    font-size: 11px; }
  .header__contacts {
    position: absolute;
    right: 36px;
    width: 35%;
    top: 75px; }
  .header .contacts__item-value {
    text-align: right;
    font-size: 15px;
    display: block; }
  .header .contacts__item-descr {
    font-size: 11px;
    text-align: right; }
  .header__main .inner {
    flex-direction: column;
    gap: 20px;
    padding: 0; }
  .header__menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px; }
    .header__menu .menu-item {
      font-size: 14px; }
  .header .shop-btn {
    margin-left: 25px;
    font-size: 14px; }
    .header .shop-btn:before {
      left: -25px; }

  .main-block {
    height: 600px; }
    .main-block__info {
      padding-top: 36px; }
    .main-block__logo {
      width: 200px;
      margin-bottom: 20px;
      margin-left: 35px; }
    .main-block__list li {
      font-size: 14px;
      margin-left: 45px; }
    .main-block__img {
      width: 100%;
      max-width: 330px;
      right: 0;
      left: 0;
      top: 250px;
      margin: 0 auto; }

  .products__item {
    flex-direction: column; }
  .products__slider {
    margin-top: 0; }
  .products__pagination {
    margin-top: 50px;
    margin-bottom: 44px; }
  .products__next, .products__prev {
    display: none; }

  .product {
    display: flex;
    gap: 64px; }
    .product__img {
      margin-top: 50px;
      width: 100%; }
      .product__img img {
        display: block;
        width: 252px;
        margin: 0 auto; }
    .product__title {
      font-size: 18px;
      font-weight: 700; }
    .product__info * {
      font-size: 13px;
      font-weight: 400; }
    .product__link {
      padding: 15px 25px;
      font-size: 14px;
      margin: 0 auto; }

  .certificates {
    padding-top: 44px; }
    .certificates__pagination {
      margin-top: 50px;
      margin-bottom: 40px; }
    .certificates__next, .certificates__prev {
      display: none; }

  .certificate__img {
    max-width: 95%; }

  .clients {
    margin-bottom: 44px; }
    .clients__list {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px; }
    .clients__item {
      flex-basis: calc(50% - 10px); }

  .applications {
    margin-bottom: 44px; }
    .applications__list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; }
    .applications__item {
      flex-basis: 100%; }
      .applications__item img {
        max-height: fit-content;
        width: 100%; }

  .map {
    margin-bottom: 44px; }
    .map__description {
      font-size: 14px; }
    .map__img {
      margin-top: 40px; }

  .order {
    margin-bottom: 44px; }
    .order .inner {
      padding: 30px; }
    .order__img {
      width: 300px;
      margin: 0 auto; }
    .order__form-wrapper {
      flex-direction: column; }
    .order__title {
      font-size: 30px; }
    .order__description {
      font-size: 14px;
      margin-bottom: 25px; }
    .order input[type="text"], .order input[type="tel"], .order input[type="email"] {
      padding: 12px;
      font-size: 12px; }
    .order input[type="checkbox"] {
      height: 20px;
      width: 20px;
      margin-right: 10px; }
    .order label {
      line-height: 24px;
      font-size: 12px; }
      .order label a {
        color: #E9336D; }
    .order button {
      padding: 14px 25px;
      font-size: 14px; }

  .footer {
    padding-top: 32px; }
    .footer__logo img {
      width: 120px;
      margin-top: 15px; }
    .footer .footer__row {
      flex-direction: column;
      gap: 30px; }
    .footer .footer__menu {
      gap: 15px; }
      .footer .footer__menu .menu__item {
        font-size: 12px;
        font-weight: 500; }
    .footer__address {
      font-size: 13px;
      margin-left: 0; }
    .footer__bottom .inner .copyright, .footer__bottom .inner .footer__policy {
      font-size: 10px; } }
@media (max-width: 678px) {
  .products__next, .products__prev {
    display: none; }

  .certificates__next, .certificates__prev {
    display: none; } }
#menu__toggle {
  position: absolute;
  opacity: 0; }

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg); }

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg); }

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg); }

#menu__toggle:checked ~ .menu__box {
  left: 0 !important; }

.menu__btn {
  display: none;
  position: absolute;
  top: 36px;
  right: 36px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 3; }

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s; }

.menu__btn > span::before {
  content: '';
  top: -8px; }

.menu__btn > span::after {
  content: '';
  top: 8px; }

.menu__box {
  z-index: 2;
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: .25s; }

.burgermenu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s; }

.burgermenu__item:hover {
  background-color: #CFD8DC; }

.hamburger-menu {
  display: none; }

.hamburger-menu .shop-btn {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
  padding: 12px 24px;
  margin: 0; }
  .hamburger-menu .shop-btn:before {
    display: none; }

/*# sourceMappingURL=style.css.map */
