@charset "UTF-8";
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Light.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 300;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Regular.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 400;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Medium.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 500;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-SemiBold.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 600;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Bold.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 700;
}
@font-face {
  font-family: "Bebas Kai";
  src: url("/assets/fonts/BebasKai.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 400;
}
body {
  font-size: 14px;
  font-family: Assistant, sans-serif;
  padding: 50px 0 0;
  margin: 0;
  color: #000;
  font-weight: 300;
  background-color: transparent;
  overflow-x: hidden;
}
body a {
  color: inherit;
}

* {
  font-size: inherit;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: inherit;
  line-height: 1.4em;
  text-decoration: none;
}

input,
textarea {
  font-family: Assistant, sans-serif;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-family: Assistant, sans-serif;
}

li {
  display: inline-block;
}

img {
  height: auto;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
}

figure {
  max-width: 100%;
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body > .modal-overlay {
  z-index: 5;
}

.modal {
  display: table;
  position: static;
  border-radius: 10px;
  background-color: #fff;
  margin: auto;
  max-width: 500px;
  width: 100%;
  padding: 15px 15px 17px;
  z-index: 11;
}

.modal-container {
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 11;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  padding: 15px;
  display: flex;
}
.modal-container.active {
  display: flex;
}
.modal-container > * {
  pointer-events: auto;
}

.modal__close {
  width: 50px;
  height: 50px;
  position: relative;
  opacity: 0.7;
  transition: 0.2s;
  cursor: pointer;
  transform: scale(0.9);
}
.modal__close:after, .modal__close:before {
  content: "";
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: #000;
}
.modal__close:before {
  width: 50%;
  height: 1px;
}
.modal__close:after {
  width: 1px;
  height: 50%;
}
.modal__close:hover {
  transform: scale(1);
  opacity: 1;
}

html[dir=ltr] .modal__heading {
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-size: 18px;
}
html[dir=ltr] .modal__close {
  margin: -15px -15px 0 auto;
}

html[dir=rtl] .modal__heading {
  font-size: 16px;
}
html[dir=rtl] .modal__close {
  margin: -15px auto 0 -15px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 4;
  font-family: Assistant, Sans-serif;
}
.header * {
  font-family: inherit;
}

.header__top {
  background-color: #fff;
}

.header__container {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.header__account {
  cursor: pointer;
  margin: 0 7px;
}
.header__account:hover .header__account-dropdown {
  pointer-events: auto;
  opacity: 1;
}

.header__account-text {
  display: none;
  position: relative;
  z-index: 1;
}

.header__account-dropdown {
  position: absolute;
  top: 0;
  padding-top: 50px;
  pointer-events: none;
  transition: 0.4s;
  opacity: 0;
}

.header__account-menu {
  background-color: #fff;
  box-shadow: 6px 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 200px;
  padding: 12px 0;
  cursor: auto;
}

.header__account-username {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px 17px;
}

.header__account-form {
  padding: 10px 19px 0;
  display: block;
}
.header__account-form.first {
  border-top: 1px solid #f4f4f4;
}

.header__account-btn {
  height: 38px;
  line-height: 38px;
  padding: 0 19px;
  border-radius: 5px;
  display: block;
  width: 100%;
  transition: 0.2s;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.header__account-btn:hover {
  background-color: #f9f9f9;
  color: #00427c;
}

.header__logo-link {
  display: block;
  position: absolute;
  max-width: 68px;
  top: 0;
  border-radius: 50%;
  border: 3px solid #fff;
}

.header__logo-image {
  width: 100%;
  display: block;
}

.header__menu-btn {
  width: 16px;
  height: 14px;
  border-top: 2px solid #aeaeae;
  border-bottom: 2px solid #aeaeae;
  position: relative;
  transition: 0.1s;
  cursor: pointer;
  order: 6;
}
.header__menu-btn:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #aeaeae;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s;
}
.header__menu-btn:hover {
  border-top: 2px solid #00427C;
  border-bottom: 2px solid #00427C;
}
.header__menu-btn:hover:before {
  background-color: #00427C;
}

.header__wishlist,
.header__message,
.header__search-btn,
.search-form__btn,
.header__account-icon,
.header__icon-facebook {
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 7px;
  transition: 0.1s;
}

.header__wishlist {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='none' stroke='%232b2b2b' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}
.header__wishlist:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='%23CB1F2F' stroke='%23CB1F2F' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
}

.header__message {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='29.571' height='23'%3e%3cg fill='%23424242' data-name='Group 171'%3e%3cpath d='M26.833 0h-24.1A2.741 2.741 0 0 0 0 2.738v17.524A2.741 2.741 0 0 0 2.738 23h24.1a2.741 2.741 0 0 0 2.738-2.738V2.738A2.741 2.741 0 0 0 26.833 0Zm1.643 20.262a1.645 1.645 0 0 1-1.643 1.643h-24.1a1.645 1.645 0 0 1-1.643-1.643V2.738a1.645 1.645 0 0 1 1.643-1.643h24.1a1.645 1.645 0 0 1 1.643 1.643Z' data-name='Path 70'/%3e%3cpath d='m26.475 2.323-10.39 8.973a2.081 2.081 0 0 1-2.6 0L3.095 2.323a.547.547 0 1 0-.715.829l10.389 8.973a3.183 3.183 0 0 0 4.032 0L27.19 3.152a.547.547 0 1 0-.715-.829Z' data-name='Path 71'/%3e%3c/g%3e%3c/svg%3e");
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
}
.header__message:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='29.571' height='23'%3e%3cg fill='%2300427C' data-name='Group 171'%3e%3cpath d='M26.833 0h-24.1A2.741 2.741 0 0 0 0 2.738v17.524A2.741 2.741 0 0 0 2.738 23h24.1a2.741 2.741 0 0 0 2.738-2.738V2.738A2.741 2.741 0 0 0 26.833 0Zm1.643 20.262a1.645 1.645 0 0 1-1.643 1.643h-24.1a1.645 1.645 0 0 1-1.643-1.643V2.738a1.645 1.645 0 0 1 1.643-1.643h24.1a1.645 1.645 0 0 1 1.643 1.643Z' data-name='Path 70'/%3e%3cpath d='m26.475 2.323-10.39 8.973a2.081 2.081 0 0 1-2.6 0L3.095 2.323a.547.547 0 1 0-.715.829l10.389 8.973a3.183 3.183 0 0 0 4.032 0L27.19 3.152a.547.547 0 1 0-.715-.829Z' data-name='Path 71'/%3e%3c/g%3e%3c/svg%3e");
}

.header__icon-facebook {
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23acacac' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}

.header__search-btn {
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%23424242' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
  cursor: pointer;
  order: 4;
}
.header__search-btn:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%2300427C' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
}

.language-switcher__text {
  display: none;
}

.language-switcher__flag {
  width: 26px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #efefef;
}

.header__language-switcher {
  display: block;
  order: 5;
  position: relative;
  cursor: pointer;
}
.header__language-switcher:hover .languages-list {
  pointer-events: auto;
  opacity: 1;
}

.languages-list {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  min-width: 30px;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  padding: 30px 0 0;
  border: 1px solid #efefef;
}

.languages-list__inner-wrapper {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}

.languages-list__item {
  padding: 4px;
  background-color: #fff;
  width: 100%;
  display: flex;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0;
  border: 1px solid #efefef;
}
.languages-list__item:hover {
  background-color: #f9f9f9;
}

.languages-list__item-image {
  min-width: 26px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #efefef;
}

.header__account-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.343' height='24.754'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='%232b2b2b' d='M0 0h25.343v24.754H0z' data-name='Rectangle 9'/%3e%3c/clipPath%3e%3c/defs%3e%3cg data-name='Group 10'%3e%3cg fill='%232b2b2b' clip-path='url(%23a)' data-name='Group 9'%3e%3cpath d='M25.343 24.753H23.87a11.2 11.2 0 1 0-22.4 0H0a12.672 12.672 0 0 1 25.343 0' data-name='Path 5'/%3e%3cpath d='M12.669 13.408a6.7 6.7 0 1 1 6.7-6.7 6.712 6.712 0 0 1-6.7 6.7m0-11.934A5.23 5.23 0 1 0 17.902 6.7a5.237 5.237 0 0 0-5.233-5.226' data-name='Path 6'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.header__account-icon:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.343' height='24.754'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='%2300427C' d='M0 0h25.343v24.754H0z' data-name='Rectangle 9'/%3e%3c/clipPath%3e%3c/defs%3e%3cg data-name='Group 10'%3e%3cg fill='%2300427C' clip-path='url(%23a)' data-name='Group 9'%3e%3cpath d='M25.343 24.753H23.87a11.2 11.2 0 1 0-22.4 0H0a12.672 12.672 0 0 1 25.343 0' data-name='Path 5'/%3e%3cpath d='M12.669 13.408a6.7 6.7 0 1 1 6.7-6.7 6.712 6.712 0 0 1-6.7 6.7m0-11.934A5.23 5.23 0 1 0 17.902 6.7a5.237 5.237 0 0 0-5.233-5.226' data-name='Path 6'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.header__nav {
  position: fixed;
  width: 230px;
  top: 0;
  height: 100%;
  background-color: #00427C;
  color: #fff;
  z-index: 10;
}
.header__nav:not(.mobile-menu) {
  display: none;
}

.header__menu {
  display: block;
  margin: 0;
  padding: 0;
}

header-menu.header__menu .header__submenu {
  display: none;
}

.header__menu-item {
  display: block;
  border-bottom: 1px solid #00427c;
  position: relative;
}
.header__menu-item.has-children {
  position: relative;
}
.header__menu-item.has-children::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  right: 3px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(135deg);
  top: 16px;
  pointer-events: none;
}

.header__submenu {
  position: absolute;
  top: 100%;
  background: #fff;
  color: #00427c;
}
.header__submenu.is-child .header__submenu {
  top: 0;
  right: 100%;
}
.header__submenu .header__menu-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.header__submenu .header__menu-item.has-children::after {
  width: 6px;
  height: 6px;
  right: unset;
  left: 8px;
  top: 18px;
  transform: rotate(225deg);
  border-color: #00427c;
}

.header__menu-link {
  display: block;
  padding: 10px 15px;
  font-family: Assistant, Sans-Serif;
  text-transform: uppercase;
  transition: 0.2s;
  font-weight: 600;
  font-size: 15px;
}
.header__menu-link:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 5;
}

.header__search-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 9;
  padding: 5px;
  transition: 0.3s;
  display: none;
}
.header__search-form.init {
  display: flex;
}
.header__search-form .modal__close {
  transform: none;
  background-color: #333;
  min-width: 50px;
  min-height: 50px;
  margin: 0 !important;
  top: -5px;
}
.header__search-form .modal__close:before, .header__search-form .modal__close:after {
  background-color: #fff;
}

.search-form__input {
  height: 100%;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 50px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 14px;
}

.search-form__btn {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 9px;
  border-radius: 50%;
  background-color: #00427C;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%23ffffff' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
  background-size: 55%;
  cursor: pointer;
  transition: 0.2s;
}
.search-form__btn:hover {
  opacity: 0.7;
}

.popup-message {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  background-color: #005CAC;
  color: #fff;
  font-size: 16px;
  padding: 5px 20px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 8;
  min-height: 50px;
}
.popup-message.error {
  background-color: #CB1F2F;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

html[dir=rtl] .header__logo-link {
  right: 5px;
}
html[dir=rtl] .header__container {
  padding: 15px 75px 15px 10px;
}
html[dir=rtl] .header__language-switcher {
  margin: 0 auto 0 15px;
}
html[dir=rtl] .header__search-btn {
  margin: 0 auto 0 15px;
}
html[dir=rtl] .header__search-btn ~ .header__language-switcher {
  margin: 0 0 0 15px;
}
html[dir=rtl] .header__nav {
  right: 0;
}
html[dir=rtl] .search-form__btn {
  left: 2px;
}
html[dir=rtl] .header__account-dropdown {
  transform: translateY(-10%) translateX(50%);
}
html[dir=rtl] .header__account:hover .header__account-dropdown {
  transform: translateY(0) translateX(50%);
}
html[dir=rtl] .header__account-btn {
  text-align: right;
}
html[dir=rtl] .header__search-form .modal__close {
  right: -5px;
}

html[dir=ltr] .header__logo-link {
  left: 5px;
}
html[dir=ltr] .header__submenu.is-child .header__submenu {
  left: 100%;
  right: unset;
}
html[dir=ltr] .header__submenu .header__menu-item.has-children::after {
  right: 8px;
  top: 18px;
  left: unset;
  transform: rotate(45deg);
}
html[dir=ltr] .header__container {
  padding: 15px 10px 15px 75px;
}
html[dir=ltr] .header__language-switcher {
  margin: 0 15px 0 auto;
}
html[dir=ltr] .header__search-btn {
  margin: 0 15px 0 auto;
}
html[dir=ltr] .header__search-btn ~ .header__language-switcher {
  margin: 0 15px 0 0;
}
html[dir=ltr] .header__nav {
  left: 0;
}
html[dir=ltr] .search-form__btn {
  right: 2px;
}
html[dir=ltr] .header__account-dropdown {
  transform: translateY(-10%) translateX(-50%);
}
html[dir=ltr] .header__account:hover .header__account-dropdown {
  transform: translateY(0) translateX(-50%);
}
html[dir=ltr] .header__account-btn {
  text-align: left;
}
html[dir=ltr] .header__search-form .modal__close {
  left: -5px;
}

@media (min-width: 581px) {
  .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-100%);
  }
  .header__account-dropdown {
    transform: translateX(-100%);
  }
  .header__search-btn {
    display: none;
  }
  .header__search-form {
    position: relative;
    display: block;
    padding: 0 15px;
    height: 40px;
    width: auto;
    flex: 1;
    z-index: 0;
    max-width: 610px;
    margin: 0 auto;
  }
  .search-form__btn {
    top: 4px;
  }
  html[dir=ltr] .header__container {
    padding: 5px 10px 5px 75px;
  }
  html[dir=ltr] .search-form__btn {
    right: 12px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 7px;
  }
  html[dir=ltr] .header__account-dropdown {
    transform: translateY(-10%) translateX(-90%);
  }
  html[dir=ltr] .header__account {
    margin: 0 15px 0 auto;
  }
  html[dir=ltr] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-90%);
  }
  html[dir=rtl] .header__container {
    padding: 5px 75px 5px 10px;
  }
  html[dir=rtl] .search-form__btn {
    left: 12px;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 15px;
  }
  html[dir=rtl] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(90%);
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 7px 0 auto;
  }
  html[dir=rtl] .header__account-dropdown {
    transform: translateY(-10%) translateX(90%);
  }
}
@media (min-width: 767px) {
  .header__logo-link {
    max-width: 80px;
  }
  body {
    padding-top: 60px;
  }
  .popup-message {
    height: 60px;
  }
  html[dir=ltr] .header__container {
    padding: 10px 15px 10px 100px;
  }
  html[dir=ltr] .header__logo-link {
    left: 10px;
  }
  html[dir=rtl] .header__container {
    padding: 10px 100px 10px 15px;
  }
  html[dir=rtl] .header__logo-link {
    right: 10px;
  }
}
@media (min-width: 1201px) {
  body {
    padding-top: 103px;
  }
  .header__nav {
    position: static;
    transform: none !important;
    width: 100%;
  }
  .header__nav:not(.mobile-menu) {
    display: block;
  }
  .header__menu {
    display: flex;
    justify-content: center;
  }
  .header__menu-link {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 16px;
  }
  .header__menu-btn {
    display: none;
  }
  .header__wishlist {
    width: 20px;
    height: 20px;
    margin: 0 10px;
  }
  .header__message {
    width: 23px;
    height: 23px;
  }
  .header__icon-facebook {
    width: 23px;
    height: 23px;
  }
  .header__logo-link {
    max-width: 130px;
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    top: 0;
  }
  .header__logo-link:before {
    content: "";
    top: 53px;
    width: 208px;
    height: 24px;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .language-switcher__text {
    display: block;
    font-weight: 600;
    font-size: 14px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .header__language-switcher {
    margin: 0 !important;
    display: flex;
    position: relative;
  }
  .header__language-switcher:before {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #DDDDDD;
    height: 100%;
  }
  .languages-list {
    bottom: 29px;
    padding: 33px 0 0;
    min-width: 70px;
  }
  .languages-list__item {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 7px;
    font-weight: 600;
  }
  .languages-list__item-image {
    min-width: 26px;
  }
  .language-switcher__flag {
    width: 26px;
    align-self: center;
  }
  .header__account-icon {
    width: 20px;
    height: 20px;
  }
  .header__logo-image {
    position: relative;
    z-index: 1;
  }
  .header__account-text {
    display: block;
    color: #707070;
    font-weight: 500;
    font-size: 14px;
  }
  .header__account {
    display: flex;
    align-items: center;
  }
  .header__account .header__account-text a:hover {
    color: #00427C;
  }
  .header__account-menu {
    width: 250px;
  }
  .popup-message {
    top: 60px;
    height: 43px;
    max-height: 43px;
    min-height: 43px;
    padding: 5px 15px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 10px;
  }
  html[dir=ltr] .header__logo-link {
    left: 29px;
  }
  html[dir=ltr] .header__logo-link:before {
    left: 111px;
    background-image: url("/assets/images/logo-wave.png");
  }
  html[dir=ltr] .header__container {
    padding: 10px 50px 10px 186px;
  }
  html[dir=ltr] .language-switcher__text {
    margin: 0 0 0 8px;
  }
  html[dir=ltr] .header__account {
    margin: 0 29px 0 auto;
  }
  html[dir=ltr] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-50%);
  }
  html[dir=ltr] .header__language-switcher:before {
    left: -15px;
  }
  html[dir=ltr] .languages-list__item-image {
    margin: 0 8px 0 0;
  }
  html[dir=ltr] .header__account-text {
    margin: 0 9px 0 0;
  }
  html[dir=ltr] .header__account-dropdown {
    transform: translateY(-10%) translateX(-50%);
  }
  html[dir=rtl] .header__logo-link {
    right: 29px;
  }
  html[dir=rtl] .header__logo-link:before {
    right: 111px;
    transform: revert;
    background-image: url("/assets/images/logo-wave-rtl.png");
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 10px 0 auto;
  }
  html[dir=rtl] .header__container {
    padding: 10px 186px 10px 50px;
  }
  html[dir=rtl] .language-switcher__text {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 29px;
  }
  html[dir=rtl] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(50%);
  }
  html[dir=rtl] .header__language-switcher:before {
    right: -15px;
  }
  html[dir=rtl] .languages-list__item-image {
    margin: 0 0 0 8px;
  }
  html[dir=rtl] .header__account-text {
    margin: 0 0 0 9px;
  }
  html[dir=rtl] .header__account-dropdown {
    transform: translateY(-10%) translateX(50%);
  }
}
@media (min-width: 1600px) {
  body {
    padding-top: 138px;
  }
  .header__account-dropdown {
    padding-top: 75px;
  }
  .header__account-username {
    font-size: 16px;
  }
  .header__account-link {
    font-size: 14px;
  }
  .header__account-btn {
    font-size: 15px;
  }
  .header__account-text {
    font-size: 18px;
  }
  .header__wishlist {
    width: 27px;
    height: 27px;
    margin: 0 20px;
  }
  .header__message {
    width: 31px;
    height: 31px;
  }
  .header__icon-facebook {
    width: 31px;
    height: 31px;
  }
  .header__logo-link {
    max-width: 156px;
    width: 150px;
    height: 150px;
    border: 10px solid #fff;
  }
  .header__logo-link:before {
    content: "";
    top: 72px;
  }
  .header__menu-item.has-children::after {
    right: 10px;
    top: 23px;
  }
  .header__submenu .header__menu-item.has-children::after {
    left: 13px;
    top: 25px;
  }
  .languages-list {
    bottom: 38px;
    padding: 44px 0 0;
    min-width: 80px;
  }
  .languages-list__item {
    padding: 8px;
    font-size: 16px;
  }
  .languages-list__item-image {
    min-width: 30px;
  }
  .language-switcher__flag {
    width: 30px;
  }
  .header__account-icon {
    width: 26px;
    height: 26px;
  }
  .header__search-form {
    height: 52px;
    max-width: 640px;
  }
  .search-form__input {
    font-size: 18px;
    padding: 0 20px;
  }
  .search-form__btn {
    width: 43px;
    height: 43px;
  }
  .header__menu-link {
    font-size: 20px;
    padding: 14px 27px;
  }
  .language-switcher__text {
    font-size: 17px;
  }
  .popup-message {
    top: 82px;
    height: 57px;
    max-height: 57px;
    min-height: 57px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 20px;
  }
  html[dir=ltr] .header__submenu.is-child .header__submenu {
    left: 100%;
  }
  html[dir=ltr] .header__submenu .header__menu-item.has-children::after {
    right: 10px;
    top: 23px;
  }
  html[dir=ltr] .header__container {
    padding: 15px 50px 15px 220px;
  }
  html[dir=ltr] .language-switcher__text {
    margin: 0 0 0 8px;
  }
  html[dir=ltr] .header__account {
    margin: 0 79px 0 auto;
  }
  html[dir=ltr] .header__language-switcher:before {
    left: -40px;
  }
  html[dir=ltr] .header__logo-link:before {
    left: 130px;
  }
  html[dir=ltr] .languages-list__item-image {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__logo-link:before {
    right: 130px;
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 20px 0 auto;
  }
  html[dir=rtl] .header__container {
    padding: 15px 220px 15px 50px;
  }
  html[dir=rtl] .language-switcher__text {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 79px;
  }
  html[dir=rtl] .header__language-switcher:before {
    right: -40px;
  }
  html[dir=rtl] .languages-list__item-image {
    margin: 0 0 0 8px;
  }
}
.p-tooltip .p-tooltip-text {
  font-size: 16px;
  color: #ffffff;
  padding: 5px;
}

@media (max-width: 1200px) {
  .header__submenu {
    position: static;
    background: transparent;
    color: #fff;
  }
  .header__submenu .header__menu-item.has-children::after {
    transform: rotate(135deg);
    border-color: #ffffff;
    right: unset;
    left: 20px;
    top: 15px;
  }
  .header__menu-item.has-children .header__menu-link {
    width: -moz-fit-content;
    width: fit-content;
  }
  .header__menu-item.has-children::after {
    right: unset;
    left: 20px;
    top: 15px;
  }
  .header__menu-item.has-children.active::after {
    transform: rotate(315deg);
    top: 17px;
  }
}
.footer {
  background-color: #00427C;
  margin: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0;
  min-width: 100%;
  justify-content: center;
}

.footer__menu-col {
  padding: 15px 30px;
  color: #fff;
  flex: 1;
  min-width: 210px;
}
.footer__menu-col.active .footer-menu__heading:before {
  transform: rotate(225deg);
  margin: 4px 0 0;
}
.footer__menu-col.active > ul {
  height: 100%;
}
.footer__menu-col > p {
  display: block;
}
.footer__menu-col ul {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: 0.2s;
}
.footer__menu-col ul > li {
  display: block;
}
.footer__menu-col ul > li > a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  padding: 2px 0;
}
.footer__menu-col ul > li > a:hover {
  text-decoration: underline !important;
}

.footer-menu__heading {
  font-family: Bebas Kai, Regular, Sans-serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 15px;
  line-height: 1em;
  position: relative;
  cursor: pointer;
}
.footer-menu__heading:before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 9px;
  transform: rotate(45deg);
  transition: 0.2s;
}

.footer__brand-col {
  order: 5;
  min-width: 100%;
  margin: 15px 0 0;
  flex: 1;
  padding: 30px;
  background-color: #013A6D;
}

.footer__brand-image {
  display: block;
  max-width: 245px;
  margin: 0 auto;
  width: 100%;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 17px 0 0;
}

.footer-social {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s;
  margin: 0 12px;
}

.footer-social__twitter {
  width: 18px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16.416' height='13.333'%3e%3cpath fill='%23acacac' d='M14.729 3.318c.01.146.01.292.01.437a9.507 9.507 0 0 1-9.573 9.573A9.508 9.508 0 0 1 0 11.818a6.961 6.961 0 0 0 .812.042 6.738 6.738 0 0 0 4.177-1.437A3.37 3.37 0 0 1 1.843 8.09a4.242 4.242 0 0 0 .635.052 3.558 3.558 0 0 0 .885-.115 3.365 3.365 0 0 1-2.7-3.3v-.042a3.388 3.388 0 0 0 1.521.427 3.369 3.369 0 0 1-1.042-4.5 9.563 9.563 0 0 0 6.937 3.521A3.8 3.8 0 0 1 8 3.364a3.368 3.368 0 0 1 5.823-2.3 6.624 6.624 0 0 0 2.135-.812 3.355 3.355 0 0 1-1.479 1.854 6.745 6.745 0 0 0 1.937-.521 7.232 7.232 0 0 1-1.687 1.733Z'/%3e%3c/svg%3e");
}
.footer-social__twitter:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16.416' height='13.333'%3e%3cpath fill='%23fff' d='M14.729 3.318c.01.146.01.292.01.437a9.507 9.507 0 0 1-9.573 9.573A9.508 9.508 0 0 1 0 11.818a6.961 6.961 0 0 0 .812.042 6.738 6.738 0 0 0 4.177-1.437A3.37 3.37 0 0 1 1.843 8.09a4.242 4.242 0 0 0 .635.052 3.558 3.558 0 0 0 .885-.115 3.365 3.365 0 0 1-2.7-3.3v-.042a3.388 3.388 0 0 0 1.521.427 3.369 3.369 0 0 1-1.042-4.5 9.563 9.563 0 0 0 6.937 3.521A3.8 3.8 0 0 1 8 3.364a3.368 3.368 0 0 1 5.823-2.3 6.624 6.624 0 0 0 2.135-.812 3.355 3.355 0 0 1-1.479 1.854 6.745 6.745 0 0 0 1.937-.521 7.232 7.232 0 0 1-1.687 1.733Z'/%3e%3c/svg%3e");
}

.footer-social__youtube {
  width: 20px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='17.51' height='12.312'%3e%3cpath fill='%23acacac' d='M17.145 1.926A2.2 2.2 0 0 0 15.597.368 52 52 0 0 0 8.755 0a52 52 0 0 0-6.841.368A2.2 2.2 0 0 0 .367 1.926a24.773 24.773 0 0 0 0 8.484 2.167 2.167 0 0 0 1.548 1.533 52 52 0 0 0 6.841.368 52 52 0 0 0 6.841-.368 2.167 2.167 0 0 0 1.548-1.533 24.773 24.773 0 0 0 0-8.484ZM6.967 8.772V3.565l4.577 2.6-4.577 2.6Z'/%3e%3c/svg%3e");
}
.footer-social__youtube:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='17.51' height='12.312'%3e%3cpath fill='%23fff' d='M17.145 1.926A2.2 2.2 0 0 0 15.597.368 52 52 0 0 0 8.755 0a52 52 0 0 0-6.841.368A2.2 2.2 0 0 0 .367 1.926a24.773 24.773 0 0 0 0 8.484 2.167 2.167 0 0 0 1.548 1.533 52 52 0 0 0 6.841.368 52 52 0 0 0 6.841-.368 2.167 2.167 0 0 0 1.548-1.533 24.773 24.773 0 0 0 0-8.484ZM6.967 8.772V3.565l4.577 2.6-4.577 2.6Z'/%3e%3c/svg%3e");
}

.footer-social__facebook {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23acacac' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}
.footer-social__facebook:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23fff' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}

.footer__bottom {
  color: #fff;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  background-color: #002E57;
  min-width: 100%;
  text-align: center;
}

html[dir=ltr] .footer-menu__heading:before {
  right: 5px;
}

html[dir=rtl] .footer-menu__heading:before {
  left: 5px;
}

@media (min-width: 640px) {
  .footer-menu__heading:before {
    content: none;
  }
  .footer__menu-col {
    pointer-events: none;
  }
  .footer__menu-col ul {
    height: auto;
  }
  .footer__menu-col ul a {
    pointer-events: auto;
  }
}
@media (min-width: 1201px) {
  .footer__brand-col {
    order: 0;
    min-width: auto;
    margin: -30px 0 0;
    padding: 30px 80px 22px;
    max-width: 540px;
  }
  .footer__menu-col {
    flex: none;
  }
}
@media (min-width: 1600px) {
  .footer__brand-col {
    margin: -30px 50px 0;
  }
  .footer {
    margin: 60px 0 0;
  }
  .footer-menu__heading {
    font-size: 26px;
  }
  .footer__menu-col {
    padding: 15px 50px;
  }
  .footer__menu-col ul > li > a {
    font-size: 18px;
  }
}
.page-heading {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  flex: 1;
  color: rgb(24, 28, 50);
  min-width: 100%;
  line-height: 1em;
}

.page-date {
  margin: 5px 0 0;
  color: #a1a5b7;
  font-weight: 600;
}

.breadcrumbs {
  width: 100%;
  text-align: center;
  min-width: 100%;
  flex: 1;
  margin: 7px 0 0;
}
.breadcrumbs li {
  color: rgb(161, 165, 183);
  font-weight: 500;
}
.breadcrumbs li a:hover {
  color: #00427C;
  text-decoration: underline;
}

.container {
  margin: 20px auto 0;
  padding: 0 15px;
  max-width: 1807px;
  display: flex;
  flex-wrap: wrap;
}

.content-box {
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.1);
  border: 1px solid #f4f4f4;
  border-radius: 7px;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  min-width: 100%;
  overflow: hidden;
  justify-content: center;
}

.article-image--box,
.page-image--box {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 1;
  min-width: 100%;
}

.article-image,
.page-image {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.article-image--box {
  border-radius: 7px;
  padding: 25% 0;
  margin: 0 0 13px;
}

.page-image--box {
  border-radius: 7px 7px 0 0;
  padding: 20% 0;
  margin: -15px -15px 0;
}

.page-aside {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  flex: 1;
  min-width: 100%;
  max-width: 100%;
}

.page-aside__title {
  font-size: 18px;
  padding: 0 15px;
  min-width: 100%;
  flex: 1;
  font-weight: 600;
}

.social-share-image {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  margin: 5px 7px 30px;
  transition: 0.2s;
}
.social-share-image.facebook {
  width: 28px;
  height: 28px;
}
.social-share-image:hover {
  transform: scale(1.05);
}

@media (min-width: 420px) {
  .container {
    padding: 0 30px;
    margin: 30px auto 0;
  }
  .content-box {
    padding: 15px;
    margin: 20px 0 0;
  }
  .page-heading {
    font-size: 24px;
  }
  .page-image--box {
    margin: -30px -30px 0;
  }
  .article-image--box {
    margin: 0 0 20px;
  }
  .social-share-image {
    margin: 10px 7px 20px;
  }
}
@media (min-width: 640px) {
  .page-heading {
    font-size: 28px;
    min-width: auto;
    order: -2;
  }
  .breadcrumbs {
    min-width: auto;
    flex: none;
    align-self: center;
    font-size: 15px;
    order: -1;
  }
  .page-date {
    min-width: 100%;
  }
  .page-aside__title {
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .page-heading {
    font-size: 26px;
  }
  .content-box {
    padding: 20px 30px;
    margin: 35px 0 0;
  }
  .container {
    padding: 0 70px;
    margin: 30px auto 0;
  }
  .page-image--box {
    margin: -45px -53px 0;
  }
  .page-aside {
    max-width: 35%;
    min-width: 35%;
    align-self: flex-start;
    padding: 20px 10px;
    order: -1;
  }
  .page-aside__title {
    margin: 0 0 5px;
  }
  .social-share-image {
    margin: 10px 7px 30px;
  }
}
@media (min-width: 1240px) {
  .content-box {
    padding: 20px 45px;
  }
  .page-image--box {
    margin: -45px -70px 0;
    padding: 15% 0;
  }
}
@media (min-width: 1600px) {
  .container {
    margin: 40px auto 0;
  }
  .page-heading {
    font-size: 30px;
  }
  .breadcrumbs {
    font-size: 18px;
  }
  .page-date {
    font-size: 16px;
  }
  .content-box {
    margin: 45px 0 0;
  }
  .page-aside {
    min-width: 30%;
    max-width: 30%;
  }
  .page-aside__title {
    font-size: 23px;
  }
  .page-image--box {
    margin: -50px -85px 0;
  }
}
.page-content {
  padding: 15px;
  font-weight: 400;
  color: #000000;
  min-width: 100%;
  max-width: 100%;
}
[lang=he] .page-content {
  font-size: 16px;
}
.page-content p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.7em;
}
.page-content p:first-child {
  margin-top: 0;
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content h1 {
  font-size: 26px;
}
.page-content h2 {
  font-size: 23px;
}
.page-content h3 {
  font-size: 20px;
}
.page-content h4 {
  font-size: 18px;
}
.page-content h5 {
  font-size: 16px;
}
.page-content h6 {
  font-size: 15px;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-weight: 600;
  color: #181c32;
  margin: 25px 0 10px;
  line-height: 1.05em;
}
.page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content h4:first-child, .page-content h5:first-child, .page-content h6:first-child {
  margin-top: 0;
}
.page-content h4, .page-content h5, .page-content h6 {
  margin: 25px 0 10px;
}
.page-content a {
  text-decoration: underline;
  color: #00427c;
}
.page-content ol, .page-content ul {
  -webkit-margin-start: 1.5em;
          margin-inline-start: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.page-content ol li, .page-content ul li {
  margin-bottom: 0.5em;
}
.page-content ol li::marker, .page-content ul li::marker {
  font-weight: 700;
  font-size: 1.1em;
}

@media (min-width: 640px) {
  .page-content p {
    font-size: 15px;
  }
  .page-content h1 {
    font-size: 28px;
  }
  .page-content h2 {
    font-size: 25px;
  }
  .page-content h3 {
    font-size: 23px;
  }
  .page-content h4 {
    font-size: 20px;
  }
  .page-content h5 {
    font-size: 18px;
  }
  .page-content h6 {
    font-size: 16px;
  }
}
@media (min-width: 1100px) {
  .page-content {
    padding: 25px 23px;
    min-width: 65%;
    max-width: 65%;
  }
  .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    margin: 35px 0 10px;
  }
  .page-content h1 {
    font-size: 28px;
  }
  .page-content h2 {
    font-size: 25px;
  }
  .page-content h3 {
    font-size: 23px;
  }
  .page-content h4 {
    font-size: 21px;
  }
  .page-content h5 {
    font-size: 19px;
  }
  .page-content h6 {
    font-size: 17px;
  }
}
@media (min-width: 1460px) {
  .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    margin: 45px 0 15px;
  }
  .page-content p {
    font-size: 16px;
  }
  .page-content h1 {
    font-size: 32px;
  }
  .page-content h2 {
    font-size: 29px;
  }
  .page-content h3 {
    font-size: 27px;
  }
  .page-content h4 {
    font-size: 25px;
  }
  .page-content h5 {
    font-size: 23px;
  }
  .page-content h6 {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .page-content {
    min-width: 70%;
    max-width: 70%;
    padding: 30px 40px;
  }
  .page-aside {
    padding: 30px 27px;
  }
}
.page-content {
  min-width: 100%;
  max-width: 100%;
}
.page-content li {
  display: list-item;
}
