/* box-sizing */
.fr-window,
.fr-window [class^="fr-"],
.fr-overlay,
.fr-overlay [class^="fr-"],
.fr-spinner,
.fr-spinner [class^="fr-"] {
  box-sizing: border-box;
}

.fr-window {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana,
  Arial, sans-serif;
  /* Chrome hack, this fixes a visual glitch when quickly toggling a video */
  transform: translateZ(0px);
}

/* z-index */
.fr-overlay {
  z-index: 99998;
}
.fr-window {
  z-index: 99999;
}
.fr-spinner {
  z-index: 100000;
}

/* overlay */
.fr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fr-overlay-background {
  float: left;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.fr-overlay-ui-fullclick .fr-overlay-background {
  background: #292929;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* mobile touch has position:absolute to allow zooming */
.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
  position: absolute;
  overflow: visible;
}

/* some properties on the window are used to toggle things
 * like margin and the fullclick mode,
 * we reset those properties after measuring them
 */
.fr-measured {
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.fr-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-page {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fr-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fr-hovering-clickable .fr-container {
  cursor: pointer;
}

/*
   padding:
   youtube & vimeo always have buttons on the outside
   side button = 72 = 54 + (2 * 9 margin)
   close button = 48
*/
/* padding ui:inside */
.fr-ui-inside .fr-container {
  padding: 20px 20px;
}
.fr-ui-inside.fr-no-sides .fr-container {
  padding: 20px;
}

/* padding ui:outside */
.fr-ui-outside .fr-container {
  padding: 20px 82px;
}
.fr-ui-outside.fr-no-sides .fr-container {
  padding: 20px 48px;
}

/* reduce padding on smaller screens */
@media all and (max-width: 700px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 700px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 12px 12px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 12px;
  }

  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 12px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 12px 48px;
  }
}

@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 500px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 0px 0px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 0px;
  }

  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 0px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 0px 48px;
  }
}

/* padding ui:fullclick */
.fr-ui-fullclick .fr-container {
  padding: 0;
}
.fr-ui-fullclick.fr-no-sides .fr-container {
  padding: 0;
}

/* video fullclick */
.fr-ui-fullclick.fr-type-video .fr-container {
  padding: 0px 62px;
}
.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
  padding: 48px 0px;
}

/* overflow-y should always have 0 padding top and bottom */
.fr-overflow-y .fr-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fr-content,
.fr-content-background {
  position: absolute;
  top: 50%;
  left: 50%;
  /* IE11 has a 1px blur bug on the edges of the caption (ui:inside)
     during animation with overflow:hidden */
  overflow: visible;
}

/* img/iframe/error */
.fr-content-element {
  float: left;
  width: 100%;
  height: 100%;
}

.fr-content-background {
  background: #101010;
}

.fr-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #efefef;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.fr-info-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.fr-ui-inside .fr-info-background {
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1;
}
/* ui:outside has a slightly lighter info background to break up from black page backgrounds */
.fr-ui-outside .fr-info-background {
  background: #0d0d0d;
}

/* info at the bottom for ui:inside */
.fr-content .fr-info {
  top: auto;
  bottom: 0;
}

.fr-info-padder {
  display: block;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: auto;
}
.fr-caption {
  width: auto;
  display: inline;
}

.fr-position {
  color: #b3b3b3;
  float: right;
  line-height: 21px;
  opacity: 0.99;
  position: relative;
  text-align: right;
  margin-left: 15px;
  white-space: nowrap;
}

/* positions not within the info bar
   for ui:outside/inside */
.fr-position-outside,
.fr-position-inside {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 12px;
  width: auto;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 20px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  display: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.fr-position-inside {
  border: 0;
}

.fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1; /* oldIE */
}
.fr-position-text {
  color: #b3b3b3;
}
.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
  float: left;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* display it for the outside ui, hide the caption inside */
.fr-ui-outside .fr-position-outside {
  display: block;
}
.fr-ui-outside .fr-info .fr-position {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
  display: block;
}

/* links */
.fr-info a,
.fr-info a:hover {
  color: #ccc;
  border: 0;
  background: none;
  text-decoration: underline;
}
.fr-info a:hover {
  color: #eee;
}

/* no-caption */
.fr-ui-outside.fr-no-caption .fr-info {
  display: none;
}
.fr-ui-inside.fr-no-caption .fr-caption {
  display: none;
}

/* --- stroke */
.fr-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.fr-stroke-vertical {
  width: 1px;
  height: 100%;
}
.fr-stroke-horizontal {
  padding: 0 1px;
}

.fr-stroke-right {
  left: auto;
  right: 0;
}
.fr-stroke-bottom {
  top: auto;
  bottom: 0;
}

.fr-stroke-color {
  float: left;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

/* the stroke is brighter inside the info box */
.fr-info .fr-stroke-color {
  background: rgba(80, 80, 80, 0.3);
}

/* remove the stroke when outside ui has a caption */
.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
  display: none;
}

/* remove stroke and shadow when ui:fullclick */
.fr-ui-fullclick .fr-stroke {
  display: none;
}
.fr-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* the info box never bas a top stroke */
.fr-info .fr-stroke-top {
  display: none;
}

/* < > */
.fr-side {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  margin: 0 9px;
  margin-top: -36px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  zoom: 1;
}
.fr-side-previous {
  left: 0;
}
.fr-side-next {
  right: 0;
  left: auto;
}

.fr-side-disabled {
  cursor: default;
}
.fr-side-hidden {
  display: none !important;
}

.fr-side-button {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.fr-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
}
.fr-side-button-icon {
  float: left;
  position: relative;
  height: 100%;
  width: 100%;
  zoom: 1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
/* smaller side buttons */
@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 414px) {
  .fr-side {
    width: 54px;
    height: 60px;
    margin: 0;
    margin-top: -30px;
  }
  .fr-side-button {
    width: 48px;
    height: 60px;
    margin: 0 3px;
  }
}

/* X */
.fr-close {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-close-background,
.fr-close-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 26px;
  width: 26px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.fr-close-background {
  background-color: #000;
}

/* Thumbnails */
.fr-thumbnails {
  position: absolute;
  overflow: hidden;
}
.fr-thumbnails-disabled .fr-thumbnails {
  display: none !important;
}
.fr-thumbnails-horizontal .fr-thumbnails {
  width: 100%;
  height: 12%;
  min-height: 74px;
  max-height: 160px;
  bottom: 0;
}

.fr-thumbnails-vertical .fr-thumbnails {
  height: 100%;
  width: 10%;
  min-width: 74px;
  max-width: 160px;
  left: 0;
}

.fr-thumbnails,
.fr-thumbnails * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-thumbnails-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}
.fr-thumbnails-vertical .fr-thumbnails-wrapper {
  top: 50%;
  left: 0;
}

.fr-thumbnails-slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  zoom: 1;
}

.fr-thumbnails-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fr-thumbnails-thumbs {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

.fr-thumbnails-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.fr-thumbnail-frame {
  position: absolute;
  zoom: 1;
  overflow: hidden;
}

.fr-thumbnail {
  position: absolute;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  zoom: 1;
  cursor: pointer;
  margin: 0 10px;
}
.fr-ltIE9 .fr-thumbnail * {
  overflow: hidden; /* IE6(7) */
  z-index: 1;
  zoom: 1;
}

.fr-thumbnail-wrapper {
  position: relative;
  background: #161616;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  display: inline; /* IE6(7) */
  z-index: 0; /* IE8 */
}

.fr-thumbnail-overlay {
  cursor: pointer;
}
.fr-thumbnail-active .fr-thumbnail-overlay {
  cursor: default;
}
.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  overflow: hidden;
  border-style: solid;
  border-color: transparent;
}
.fr-ltIE9 .fr-thumbnail-overlay-border {
  border-width: 0 !important;
}
.fr-thumbnail .fr-thumbnail-image {
  position: absolute;
  filter: alpha(opacity=85);
  opacity: 0.85;
  max-width: none;
}
.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=99);
  opacity: 0.99;
}
.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=35);
  opacity: 0.35;
}
.fr-thumbnail-active {
  cursor: default;
}

/* Thumbnails loading */
.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-thumbnail-loading-background {
  background-color: #161616;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0.8;
  position: relative;
  float: left;
}
/* this element is there as an alternative to putting the loading image on the background */
.fr-thumbnail-loading-icon {
  display: none;
}

/* error on thumbnail */
.fr-thumbnail-error .fr-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
}

/* Thumbnail < > */
.fr-thumbnails-side {
  float: left;
  height: 100%;
  width: 28px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}
.fr-thumbnails-side-previous {
  margin-left: 12px;
}
.fr-thumbnails-side-next {
  margin-right: 12px;
}

.fr-thumbnails-vertical .fr-thumbnails-side {
  height: 28px;
  width: 100%;
  margin: 10px 0;
}
.fr-thumbnails-vertical .fr-thumbnails-side-previous {
  margin-top: 20px;
}
.fr-thumbnails-vertical .fr-thumbnails-side-next {
  margin-bottom: 20px;
}

.fr-thumbnails-side-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.fr-thumbnails-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: alpha(opacity=80);
  opacity: 0.8;
  transition: background-color 0.2s ease-in;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
}
.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background {
  background-color: #3b3b3b;
}

.fr-thumbnails-side-button-disabled * {
  cursor: default;
}
.fr-thumbnails-side-button-disabled:hover
.fr-thumbnails-side-button-background {
  background-color: #333;
}

.fr-thumbnails-side-button-icon {
  position: absolute;
  /*top: -7px;
  left: -7px;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* vertical thumbnails */
.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
  clear: both;
}

/* ui:fullclick has a dark thumbnail background */
.fr-window-ui-fullclick .fr-thumbnails {
  background: #090909;
}

/* put a stroke on the connecting caption*/
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal
.fr-info
.fr-stroke-bottom {
  display: block !important;
} /*({ box-shadow: inset 0 -1px 0 rgba(255,255,255,.1); } */
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical
.fr-info
.fr-stroke-left {
  display: block !important;
}

/* thumbnail spacing  */
.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
  padding: 12px 5px;
}
.fr-thumbnails-vertical .fr-thumbnails-thumbs {
  padding: 5px 12px;
}
.fr-thumbnails-measured .fr-thumbnails-thumbs {
  padding: 0 !important;
}
/* horizontal */
@media all and (min-height: 700px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 16px 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 16px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 16px;
  }
}
@media all and (min-height: 980px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 20px 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 20px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 20px;
  }
}

/* vertical */
@media all and (min-width: 1200px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 8px 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 16px;
  }
}
@media all and (min-width: 1800px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 10px 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 10px 0;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px;
  }
}

/* hide thumbnails on smaller screens
   the js always hides them on touch based devices
*/
@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 500px) {
  .fr-thumbnails-horizontal .fr-thumbnails {
    display: none !important;
  }
}
@media all and (max-width: 700px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 414px) {
  .fr-thumbnails-vertical .fr-thumbnails {
    display: none !important;
  }
}

/* force fullClick: true
   and force overflow: false */
@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 414px) {
  .fr-page {
    min-width: 100%;
  } /* fullclick */
  .fr-page {
    min-height: 100%;
  } /* overflow: false */
}

/* switch between ui modes
   we force everything not in the current UI mode to hide
*/
.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page > .fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
  display: none !important;
}

/* some ui elements can be toggled on mousemove.
   filter:alpha(opacity) is bugged so we use display in oldIE
*/
.fr-toggle-ui {
  opacity: 0;
  transition: opacity 0.3s;
}
.fr-visible-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
  opacity: 1;
}

.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  transition: opacity 0.3s;
}
.fr-ltIE9.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  display: none;
}

/* Spinner */
.fr-spinner {
  position: fixed;
  width: 52px;
  height: 52px;
  background: #101010;
  background: rgba(16, 16, 16, 0.85);
  border-radius: 5px;
}
.fr-spinner div {
  position: absolute;
  top: 0;
  left: 0;
  height: 64%;
  width: 64%;
  margin-left: 18%;
  margin-top: 18%;
  opacity: 1;
  -webkit-animation: fresco-12 1.2s infinite ease-in-out;
  animation: fresco-12 1.2s infinite ease-in-out;
}

.fr-spinner div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); /* fixes rendering in Firefox */
}

.fr-spinner div.fr-spin-1 {
  transform: rotate(30deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.fr-spinner div.fr-spin-2 {
  transform: rotate(60deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.fr-spinner div.fr-spin-3 {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.fr-spinner div.fr-spin-4 {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.fr-spinner div.fr-spin-5 {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.fr-spinner div.fr-spin-6 {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.fr-spinner div.fr-spin-6 {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.fr-spinner div.fr-spin-7 {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.fr-spinner div.fr-spin-8 {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.fr-spinner div.fr-spin-9 {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.fr-spinner div.fr-spin-10 {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.fr-spinner div.fr-spin-11 {
  transform: rotate(330deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.fr-spinner div.fr-spin-12 {
  transform: rotate(360deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Thumbnail spinner */
.fr-thumbnail-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
}
.fr-thumbnail-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 8px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  -webkit-animation: fr-thumbnail-spin 1.1s infinite linear;
  animation: fr-thumbnail-spin 1.1s infinite linear;
}
.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
@-webkit-keyframes fr-thumbnail-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fr-thumbnail-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Error */
.fr-error {
  float: left;
  position: relative;
  background-color: #ca3434;
  width: 160px;
  height: 160px;
}

.fr-error-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
}

/* skin: 'fresco' */

/* Sprite */
.fr-window-skin-fresco .fr-side-button-icon,
.fr-window-skin-fresco .fr-close-icon,
.fr-window-skin-fresco .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("fresco/skins/fresco/sprite.svg");
}
/* fallback png sprite */
.fr-window-skin-fresco.fr-no-svg .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-close-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("fresco/skins/fresco/sprite.png");
}

.fr-window-skin-fresco .fr-error-icon {
  background-position: -160px -126px;
}

.fr-window-skin-fresco .fr-content-background {
  background: #101010;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* thumbnail shadow */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* < > */
.fr-window-skin-fresco .fr-side-button-background {
  background-color: transparent;
}
.fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
  background-position: -13px -14px;
}
.fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
  background-position: -93px -14px;
}

.fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
  background-position: -93px -114px;
}

/* transition (png) */
.fr-window-skin-fresco.fr-no-svg
.fr-hovering-previous
.fr-side-previous
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
.fr-side-previous
.fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco.fr-no-svg
.fr-hovering-next
.fr-side-next
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
.fr-side-next
.fr-side-button-icon {
  background-position: -93px -114px;
}

/* disabled state (png) */
.fr-window-skin-fresco.fr-no-svg
.fr-side-previous.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-hovering-previous
.fr-side-previous.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-side-previous.fr-side-disabled:hover
.fr-side-button-icon {
  background-position: -13px -214px;
}
.fr-window-skin-fresco.fr-no-svg
.fr-side-next.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-hovering-next
.fr-side-next.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-side-next.fr-side-disabled:hover
.fr-side-button-icon {
  background-position: -93px -214px;
}

/* transition (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
  background-position: -93px -114px;
}
.fr-window-skin-fresco.fr-svg .fr-side-button-icon {
  opacity: 0.5;
}

.fr-window-skin-fresco.fr-svg .fr-side:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-hovering-previous
.fr-side-previous
.fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-hovering-next
.fr-side-next
.fr-side-button-icon {
  opacity: 1;
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side .fr-side-button-icon {
  opacity: 0.8;
} /* touch always active but at lower opacity */

/* disabled (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-hovering-previous
.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-hovering-next
.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-disabled:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-mobile-touch
.fr-side-disabled
.fr-side-button-icon {
  opacity: 0.2;
}

/* hide for ui:inside/fullclick, only for the image type */
.fr-window-skin-fresco.fr-window-ui-inside
.fr-type-image
.fr-side-disabled
.fr-side-button-icon,
.fr-window-skin-fresco.fr-window-ui-fullclick.fr-showing-type-image
.fr-side-disabled
.fr-side-button-icon {
  background-image: none;
}

/* < > responsive */
@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 414px) {
  .fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
    background-position: 0px -300px;
  }
  .fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
    background-position: -48px -300px;
  }

  .fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* transition (png) */
  .fr-window-skin-fresco.fr-no-svg
  .fr-hovering-previous
  .fr-side-previous
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
  .fr-side-previous
  .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-no-svg
  .fr-hovering-next
  .fr-side-next
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
  .fr-side-next
  .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* transition (svg) */
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* disabled state (png) */
  .fr-window-skin-fresco.fr-no-svg
  .fr-side-previous.fr-side-disabled
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
  .fr-hovering-previous
  .fr-side-previous.fr-side-disabled
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
  .fr-side-previous.fr-side-disabled:hover
  .fr-side-button-icon {
    background-position: 0px -420px;
  }

  .fr-window-skin-fresco.fr-no-svg
  .fr-side-next.fr-side-disabled
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
  .fr-hovering-next
  .fr-side-next.fr-side-disabled
  .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
  .fr-side-next.fr-side-disabled:hover
  .fr-side-button-icon {
    background-position: -48px -420px;
  }
}

/* X */
/* colors */
.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
  background-color: #363636;
}
.fr-window-skin-fresco.fr-window-ui-outside
.fr-close:hover
.fr-close-background {
  background-color: #434343;
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
  background-color: #131313;
  filter: alpha(opacity=80);
  opacity: 0.8;
}
.fr-window-skin-fresco.fr-window-ui-inside .fr-close:hover .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick
.fr-close:hover
.fr-close-background {
  background-color: #191919;
}

/* - image */
.fr-window-skin-fresco .fr-close .fr-close-icon {
  background-position: -168px -8px;
}
.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  background-position: -210px -8px;
}

/* - transition */
.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
  background-position: -210px -8px;
  opacity: 0.8;
}
.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  opacity: 1;
}
/* iOS 8.4.1 bug: when opacity changes it'll require 2 taps
   force a single opacity to fix this
*/
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-close .fr-close-icon,
.fr-window-skin-fresco.fr-mobile-touch .fr-close:hover .fr-close-icon {
  opacity: 1;
}

/* Thumbnails */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-overlay-border {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.08); /* should remain rgba */
}
/* no inner border on active thumbnail */
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-window-skin-fresco .fr-thumbnail-active:hover .fr-thumbnail-overlay-border {
  border: 0;
}

/* Thumbnails < > */
.fr-window-skin-fresco
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-icon {
  background-position: -167px -49px;
}
.fr-window-skin-fresco
.fr-thumbnails-side-previous:hover
.fr-thumbnails-side-button-icon {
  background-position: -209px -49px;
}
.fr-window-skin-fresco
.fr-thumbnails-side-next
.fr-thumbnails-side-button-icon {
  background-position: -167px -91px;
}
.fr-window-skin-fresco
.fr-thumbnails-side-next:hover
.fr-thumbnails-side-button-icon {
  background-position: -209px -91px;
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-thumbnails-vertical
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-icon {
  background-position: -293px -49px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
.fr-thumbnails-side-previous:hover
.fr-thumbnails-side-button-icon {
  background-position: -335px -49px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
.fr-thumbnails-side-next
.fr-thumbnails-side-button-icon {
  background-position: -293px -91px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
.fr-thumbnails-side-next:hover
.fr-thumbnails-side-button-icon {
  background-position: -335px -91px;
}

/* Thumbnails < > transition */
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side
.fr-thumbnails-side-button-icon {
  transition: opacity 0.2s ease-in;
  opacity: 0.8;
}
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-disabled {
  background-position: -167px -49px;
}
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side-next
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side-next
.fr-thumbnails-side-button-disabled {
  background-position: -209px -91px;
}
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side:hover
.fr-thumbnails-side-button-icon {
  opacity: 1;
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-disabled {
  background-position: -293px -49px;
}
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
.fr-thumbnails-side-next
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
.fr-thumbnails-side-next
.fr-thumbnails-side-button-disabled {
  background-position: -335px -91px;
}

/* lower opacity on disabled states */
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side
.fr-thumbnails-side-button-disabled,
.fr-window-skin-fresco.fr-svg
.fr-thumbnails-side:hover
.fr-thumbnails-side-button-disabled {
  opacity: 0.5;
}

/* lower opacity IE < 9 using images */
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side-previous:hover
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon {
  background-position: -251px -49px;
}
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side-next
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side-next:hover
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon {
  background-position: -251px -91px;
}
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-background,
.fr-window-skin-fresco.fr-no-svg
.fr-thumbnails-side:hover
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-background {
  filter: alpha(opacity=50);
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
.fr-thumbnails-side-previous
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
.fr-thumbnails-side-previous:hover
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon {
  background-position: -377px -49px;
}
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
.fr-thumbnails-side-next
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
.fr-thumbnails-side-next:hover
.fr-thumbnails-side-button-disabled
.fr-thumbnails-side-button-icon {
  background-position: -377px -91px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

:root {
  --gap: 40px;
  --container-width: 1280px;
  --color-text: #171A1E;
  --color-main: #4D1C46;
  --color-text-alt: #FFF4EE;
  --color-theme: #E00B50;
  --color-light: #FFFAF7;
  --color-arrow: #E02020;
  --color-link-alt: #FFE7FC;
  --color-btn: #E5E5E5;
  --color-text-invert: #FABA92;
  --color-white: #fff;
  --color-gray: #F4F4F4;
  --color-light-alt: #FFF4EF;
}

.grid, .grid-zero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.grid {
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid {
    grid-gap: var(--gap) 0;
  }
}
.grid-zero {
  grid-gap: var(--gap) 0;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-1 {
    grid-gap: var(--gap) 0;
  }
}
.grid-1-zero {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-2 {
    grid-gap: var(--gap) 0;
  }
}
.grid-2-zero {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-3 {
    grid-gap: var(--gap) 0;
  }
}
.grid-3-zero {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-4 {
    grid-gap: var(--gap) 0;
  }
}
.grid-4-zero {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-5 {
    grid-gap: var(--gap) 0;
  }
}
.grid-5-zero {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-6 {
    grid-gap: var(--gap) 0;
  }
}
.grid-6-zero {
  grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-7 {
    grid-gap: var(--gap) 0;
  }
}
.grid-7-zero {
  grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-8 {
    grid-gap: var(--gap) 0;
  }
}
.grid-8-zero {
  grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-9 {
    grid-gap: var(--gap) 0;
  }
}
.grid-9-zero {
  grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-10 {
    grid-gap: var(--gap) 0;
  }
}
.grid-10-zero {
  grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-11 {
    grid-gap: var(--gap) 0;
  }
}
.grid-11-zero {
  grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 599px) {
  .grid-12 {
    grid-gap: var(--gap) 0;
  }
}
.grid-12-zero {
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 1199px) {
  .grid-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-1 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-1-zero {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-2 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-2-zero {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-3 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-3-zero {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-4 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-4-zero {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-5 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-5-zero {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-6 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-6-zero {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-7 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-7-zero {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-8 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-8-zero {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-9 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-9-zero {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-10 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-10-zero {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-11 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-11-zero {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 1199px) and (max-width: 599px) {
  .grid-lg-12 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-12-zero {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-1 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-1-zero {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-2 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-2-zero {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-3 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-3-zero {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-4 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-4-zero {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-5 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-5-zero {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-6 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-6-zero {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-7 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-7-zero {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-8 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-8-zero {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-9 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-9-zero {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-10 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-10-zero {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-11 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-11-zero {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 899px) {
  .grid-md-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 599px) {
  .grid-md-12 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-12-zero {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-1 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-1-zero {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-2 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-2-zero {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-3 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-3-zero {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-4 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-4-zero {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-5 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-5-zero {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-6 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-6-zero {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-7 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-7-zero {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-8 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-8-zero {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-9 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-9-zero {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-10 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-10-zero {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-11 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-11-zero {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 599px) {
  .grid-sm-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .grid-sm-12 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-12-zero {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-1 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-1-zero {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-2 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-2-zero {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-3 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-3-zero {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-4 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-4-zero {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-5 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-5-zero {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-6 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-6-zero {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-7 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-7-zero {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-8 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-8-zero {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-9 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-9-zero {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-10 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-10-zero {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-11 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-11-zero {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 449px) {
  .grid-xs-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 449px) and (max-width: 599px) {
  .grid-xs-12 {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-12-zero {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-lg {
    grid-gap: var(--gap);
  }
  .grid-lg-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md {
    grid-gap: var(--gap);
  }
  .grid-md-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm {
    grid-gap: var(--gap);
  }
  .grid-sm-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs {
    grid-gap: var(--gap);
  }
  .grid-xs-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-1 {
    grid-gap: var(--gap);
  }
  .grid-lg-1-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-2 {
    grid-gap: var(--gap);
  }
  .grid-lg-2-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-3 {
    grid-gap: var(--gap);
  }
  .grid-lg-3-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-4 {
    grid-gap: var(--gap);
  }
  .grid-lg-4-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-5 {
    grid-gap: var(--gap);
  }
  .grid-lg-5-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-6 {
    grid-gap: var(--gap);
  }
  .grid-lg-6-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-7 {
    grid-gap: var(--gap);
  }
  .grid-lg-7-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-8 {
    grid-gap: var(--gap);
  }
  .grid-lg-8-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-9 {
    grid-gap: var(--gap);
  }
  .grid-lg-9-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-10 {
    grid-gap: var(--gap);
  }
  .grid-lg-10-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-11 {
    grid-gap: var(--gap);
  }
  .grid-lg-11-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 1199px) {
  .grid-lg-12 {
    grid-gap: var(--gap);
  }
  .grid-lg-12-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-1 {
    grid-gap: var(--gap);
  }
  .grid-md-1-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-2 {
    grid-gap: var(--gap);
  }
  .grid-md-2-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-3 {
    grid-gap: var(--gap);
  }
  .grid-md-3-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-4 {
    grid-gap: var(--gap);
  }
  .grid-md-4-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-5 {
    grid-gap: var(--gap);
  }
  .grid-md-5-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-6 {
    grid-gap: var(--gap);
  }
  .grid-md-6-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-7 {
    grid-gap: var(--gap);
  }
  .grid-md-7-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-8 {
    grid-gap: var(--gap);
  }
  .grid-md-8-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-9 {
    grid-gap: var(--gap);
  }
  .grid-md-9-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-10 {
    grid-gap: var(--gap);
  }
  .grid-md-10-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-11 {
    grid-gap: var(--gap);
  }
  .grid-md-11-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 899px) {
  .grid-md-12 {
    grid-gap: var(--gap);
  }
  .grid-md-12-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-1 {
    grid-gap: var(--gap);
  }
  .grid-sm-1-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-2 {
    grid-gap: var(--gap);
  }
  .grid-sm-2-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-3 {
    grid-gap: var(--gap);
  }
  .grid-sm-3-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-4 {
    grid-gap: var(--gap);
  }
  .grid-sm-4-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-5 {
    grid-gap: var(--gap);
  }
  .grid-sm-5-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-6 {
    grid-gap: var(--gap);
  }
  .grid-sm-6-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-7 {
    grid-gap: var(--gap);
  }
  .grid-sm-7-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-8 {
    grid-gap: var(--gap);
  }
  .grid-sm-8-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-9 {
    grid-gap: var(--gap);
  }
  .grid-sm-9-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-10 {
    grid-gap: var(--gap);
  }
  .grid-sm-10-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-11 {
    grid-gap: var(--gap);
  }
  .grid-sm-11-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 599px) {
  .grid-sm-12 {
    grid-gap: var(--gap);
  }
  .grid-sm-12-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-1 {
    grid-gap: var(--gap);
  }
  .grid-xs-1-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-2 {
    grid-gap: var(--gap);
  }
  .grid-xs-2-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-3 {
    grid-gap: var(--gap);
  }
  .grid-xs-3-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-4 {
    grid-gap: var(--gap);
  }
  .grid-xs-4-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-5 {
    grid-gap: var(--gap);
  }
  .grid-xs-5-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-6 {
    grid-gap: var(--gap);
  }
  .grid-xs-6-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-7 {
    grid-gap: var(--gap);
  }
  .grid-xs-7-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-8 {
    grid-gap: var(--gap);
  }
  .grid-xs-8-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-9 {
    grid-gap: var(--gap);
  }
  .grid-xs-9-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-10 {
    grid-gap: var(--gap);
  }
  .grid-xs-10-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-11 {
    grid-gap: var(--gap);
  }
  .grid-xs-11-zero {
    grid-gap: var(--gap) 0;
  }
}
@media (max-width: 449px) {
  .grid-xs-12 {
    grid-gap: var(--gap);
  }
  .grid-xs-12-zero {
    grid-gap: var(--gap) 0;
  }
}
.col-1 {
  grid-column: auto/span 1;
  min-width: 0;
}

.col-2 {
  grid-column: auto/span 2;
  min-width: 0;
}

.col-3 {
  grid-column: auto/span 3;
  min-width: 0;
}

.col-4 {
  grid-column: auto/span 4;
  min-width: 0;
}

.col-5 {
  grid-column: auto/span 5;
  min-width: 0;
}

.col-6 {
  grid-column: auto/span 6;
  min-width: 0;
}

.col-7 {
  grid-column: auto/span 7;
  min-width: 0;
}

.col-8 {
  grid-column: auto/span 8;
  min-width: 0;
}

.col-9 {
  grid-column: auto/span 9;
  min-width: 0;
}

.col-10 {
  grid-column: auto/span 10;
  min-width: 0;
}

.col-11 {
  grid-column: auto/span 11;
  min-width: 0;
}

.col-12 {
  grid-column: auto/span 12;
  min-width: 0;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

@media (max-width: 1199px) {
  .col-lg-1 {
    grid-column: auto/span 1;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-2 {
    grid-column: auto/span 2;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-3 {
    grid-column: auto/span 3;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-4 {
    grid-column: auto/span 4;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-5 {
    grid-column: auto/span 5;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-6 {
    grid-column: auto/span 6;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-7 {
    grid-column: auto/span 7;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-8 {
    grid-column: auto/span 8;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-9 {
    grid-column: auto/span 9;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-10 {
    grid-column: auto/span 10;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-11 {
    grid-column: auto/span 11;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-lg-12 {
    grid-column: auto/span 12;
    min-width: 0;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-2 {
    grid-column-start: 2;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-3 {
    grid-column-start: 3;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-4 {
    grid-column-start: 4;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-5 {
    grid-column-start: 5;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-6 {
    grid-column-start: 6;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-7 {
    grid-column-start: 7;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-8 {
    grid-column-start: 8;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-9 {
    grid-column-start: 9;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-10 {
    grid-column-start: 10;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-11 {
    grid-column-start: 11;
  }
}
@media (max-width: 1199px) {
  .col-start-lg-12 {
    grid-column-start: 12;
  }
}
@media (max-width: 899px) {
  .col-md-1 {
    grid-column: auto/span 1;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-2 {
    grid-column: auto/span 2;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-3 {
    grid-column: auto/span 3;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-4 {
    grid-column: auto/span 4;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-5 {
    grid-column: auto/span 5;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-6 {
    grid-column: auto/span 6;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-7 {
    grid-column: auto/span 7;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-8 {
    grid-column: auto/span 8;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-9 {
    grid-column: auto/span 9;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-10 {
    grid-column: auto/span 10;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-11 {
    grid-column: auto/span 11;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-md-12 {
    grid-column: auto/span 12;
    min-width: 0;
  }
}
@media (max-width: 899px) {
  .col-start-md-1 {
    grid-column-start: 1;
  }
}
@media (max-width: 899px) {
  .col-start-md-2 {
    grid-column-start: 2;
  }
}
@media (max-width: 899px) {
  .col-start-md-3 {
    grid-column-start: 3;
  }
}
@media (max-width: 899px) {
  .col-start-md-4 {
    grid-column-start: 4;
  }
}
@media (max-width: 899px) {
  .col-start-md-5 {
    grid-column-start: 5;
  }
}
@media (max-width: 899px) {
  .col-start-md-6 {
    grid-column-start: 6;
  }
}
@media (max-width: 899px) {
  .col-start-md-7 {
    grid-column-start: 7;
  }
}
@media (max-width: 899px) {
  .col-start-md-8 {
    grid-column-start: 8;
  }
}
@media (max-width: 899px) {
  .col-start-md-9 {
    grid-column-start: 9;
  }
}
@media (max-width: 899px) {
  .col-start-md-10 {
    grid-column-start: 10;
  }
}
@media (max-width: 899px) {
  .col-start-md-11 {
    grid-column-start: 11;
  }
}
@media (max-width: 899px) {
  .col-start-md-12 {
    grid-column-start: 12;
  }
}
@media (max-width: 599px) {
  .col-sm-1 {
    grid-column: auto/span 1;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-2 {
    grid-column: auto/span 2;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-3 {
    grid-column: auto/span 3;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-4 {
    grid-column: auto/span 4;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-5 {
    grid-column: auto/span 5;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-6 {
    grid-column: auto/span 6;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-7 {
    grid-column: auto/span 7;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-8 {
    grid-column: auto/span 8;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-9 {
    grid-column: auto/span 9;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-10 {
    grid-column: auto/span 10;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-11 {
    grid-column: auto/span 11;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-sm-12 {
    grid-column: auto/span 12;
    min-width: 0;
  }
}
@media (max-width: 599px) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }
}
@media (max-width: 599px) {
  .col-start-sm-2 {
    grid-column-start: 2;
  }
}
@media (max-width: 599px) {
  .col-start-sm-3 {
    grid-column-start: 3;
  }
}
@media (max-width: 599px) {
  .col-start-sm-4 {
    grid-column-start: 4;
  }
}
@media (max-width: 599px) {
  .col-start-sm-5 {
    grid-column-start: 5;
  }
}
@media (max-width: 599px) {
  .col-start-sm-6 {
    grid-column-start: 6;
  }
}
@media (max-width: 599px) {
  .col-start-sm-7 {
    grid-column-start: 7;
  }
}
@media (max-width: 599px) {
  .col-start-sm-8 {
    grid-column-start: 8;
  }
}
@media (max-width: 599px) {
  .col-start-sm-9 {
    grid-column-start: 9;
  }
}
@media (max-width: 599px) {
  .col-start-sm-10 {
    grid-column-start: 10;
  }
}
@media (max-width: 599px) {
  .col-start-sm-11 {
    grid-column-start: 11;
  }
}
@media (max-width: 599px) {
  .col-start-sm-12 {
    grid-column-start: 12;
  }
}
@media (max-width: 449px) {
  .col-xs-1 {
    grid-column: auto/span 1;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-2 {
    grid-column: auto/span 2;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-3 {
    grid-column: auto/span 3;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-4 {
    grid-column: auto/span 4;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-5 {
    grid-column: auto/span 5;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-6 {
    grid-column: auto/span 6;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-7 {
    grid-column: auto/span 7;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-8 {
    grid-column: auto/span 8;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-9 {
    grid-column: auto/span 9;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-10 {
    grid-column: auto/span 10;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-11 {
    grid-column: auto/span 11;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-xs-12 {
    grid-column: auto/span 12;
    min-width: 0;
  }
}
@media (max-width: 449px) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }
}
@media (max-width: 449px) {
  .col-start-xs-2 {
    grid-column-start: 2;
  }
}
@media (max-width: 449px) {
  .col-start-xs-3 {
    grid-column-start: 3;
  }
}
@media (max-width: 449px) {
  .col-start-xs-4 {
    grid-column-start: 4;
  }
}
@media (max-width: 449px) {
  .col-start-xs-5 {
    grid-column-start: 5;
  }
}
@media (max-width: 449px) {
  .col-start-xs-6 {
    grid-column-start: 6;
  }
}
@media (max-width: 449px) {
  .col-start-xs-7 {
    grid-column-start: 7;
  }
}
@media (max-width: 449px) {
  .col-start-xs-8 {
    grid-column-start: 8;
  }
}
@media (max-width: 449px) {
  .col-start-xs-9 {
    grid-column-start: 9;
  }
}
@media (max-width: 449px) {
  .col-start-xs-10 {
    grid-column-start: 10;
  }
}
@media (max-width: 449px) {
  .col-start-xs-11 {
    grid-column-start: 11;
  }
}
@media (max-width: 449px) {
  .col-start-xs-12 {
    grid-column-start: 12;
  }
}
.justify-content-stretch {
  justify-content: stretch;
}

.align-items-stretch {
  align-items: stretch;
}

.justify-self-stretch {
  justify-self: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.justify-content-flex-start {
  justify-content: flex-start;
}

.align-items-flex-start {
  align-items: flex-start;
}

.justify-self-flex-start {
  justify-self: flex-start;
}

.align-self-flex-start {
  align-self: flex-start;
}

.justify-content-flex-end {
  justify-content: flex-end;
}

.align-items-flex-end {
  align-items: flex-end;
}

.justify-self-flex-end {
  justify-self: flex-end;
}

.align-self-flex-end {
  align-self: flex-end;
}

.justify-content-center {
  justify-content: center;
}

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

.justify-self-center {
  justify-self: center;
}

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

.justify-content-space-between {
  justify-content: space-between;
}

.align-items-space-between {
  align-items: space-between;
}

.justify-self-space-between {
  justify-self: space-between;
}

.align-self-space-between {
  align-self: space-between;
}

.justify-content-space-around {
  justify-content: space-around;
}

.align-items-space-around {
  align-items: space-around;
}

.justify-self-space-around {
  justify-self: space-around;
}

.align-self-space-around {
  align-self: space-around;
}

@media (max-width: 1199px) {
  .justify-content-lg-stretch {
    justify-content: stretch;
  }

  .align-items-lg-stretch {
    align-items: stretch;
  }

  .justify-self-lg-stretch {
    justify-self: stretch;
  }

  .align-self-lg-stretch {
    align-self: stretch;
  }
}
@media (max-width: 1199px) {
  .justify-content-lg-flex-start {
    justify-content: flex-start;
  }

  .align-items-lg-flex-start {
    align-items: flex-start;
  }

  .justify-self-lg-flex-start {
    justify-self: flex-start;
  }

  .align-self-lg-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 1199px) {
  .justify-content-lg-flex-end {
    justify-content: flex-end;
  }

  .align-items-lg-flex-end {
    align-items: flex-end;
  }

  .justify-self-lg-flex-end {
    justify-self: flex-end;
  }

  .align-self-lg-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 1199px) {
  .justify-content-lg-center {
    justify-content: center;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .justify-self-lg-center {
    justify-self: center;
  }

  .align-self-lg-center {
    align-self: center;
  }
}
@media (max-width: 1199px) {
  .justify-content-lg-space-between {
    justify-content: space-between;
  }

  .align-items-lg-space-between {
    align-items: space-between;
  }

  .justify-self-lg-space-between {
    justify-self: space-between;
  }

  .align-self-lg-space-between {
    align-self: space-between;
  }
}
@media (max-width: 1199px) {
  .justify-content-lg-space-around {
    justify-content: space-around;
  }

  .align-items-lg-space-around {
    align-items: space-around;
  }

  .justify-self-lg-space-around {
    justify-self: space-around;
  }

  .align-self-lg-space-around {
    align-self: space-around;
  }
}
@media (max-width: 899px) {
  .justify-content-md-stretch {
    justify-content: stretch;
  }

  .align-items-md-stretch {
    align-items: stretch;
  }

  .justify-self-md-stretch {
    justify-self: stretch;
  }

  .align-self-md-stretch {
    align-self: stretch;
  }
}
@media (max-width: 899px) {
  .justify-content-md-flex-start {
    justify-content: flex-start;
  }

  .align-items-md-flex-start {
    align-items: flex-start;
  }

  .justify-self-md-flex-start {
    justify-self: flex-start;
  }

  .align-self-md-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 899px) {
  .justify-content-md-flex-end {
    justify-content: flex-end;
  }

  .align-items-md-flex-end {
    align-items: flex-end;
  }

  .justify-self-md-flex-end {
    justify-self: flex-end;
  }

  .align-self-md-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 899px) {
  .justify-content-md-center {
    justify-content: center;
  }

  .align-items-md-center {
    align-items: center;
  }

  .justify-self-md-center {
    justify-self: center;
  }

  .align-self-md-center {
    align-self: center;
  }
}
@media (max-width: 899px) {
  .justify-content-md-space-between {
    justify-content: space-between;
  }

  .align-items-md-space-between {
    align-items: space-between;
  }

  .justify-self-md-space-between {
    justify-self: space-between;
  }

  .align-self-md-space-between {
    align-self: space-between;
  }
}
@media (max-width: 899px) {
  .justify-content-md-space-around {
    justify-content: space-around;
  }

  .align-items-md-space-around {
    align-items: space-around;
  }

  .justify-self-md-space-around {
    justify-self: space-around;
  }

  .align-self-md-space-around {
    align-self: space-around;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-stretch {
    justify-content: stretch;
  }

  .align-items-sm-stretch {
    align-items: stretch;
  }

  .justify-self-sm-stretch {
    justify-self: stretch;
  }

  .align-self-sm-stretch {
    align-self: stretch;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-flex-start {
    justify-content: flex-start;
  }

  .align-items-sm-flex-start {
    align-items: flex-start;
  }

  .justify-self-sm-flex-start {
    justify-self: flex-start;
  }

  .align-self-sm-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-flex-end {
    justify-content: flex-end;
  }

  .align-items-sm-flex-end {
    align-items: flex-end;
  }

  .justify-self-sm-flex-end {
    justify-self: flex-end;
  }

  .align-self-sm-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-center {
    justify-content: center;
  }

  .align-items-sm-center {
    align-items: center;
  }

  .justify-self-sm-center {
    justify-self: center;
  }

  .align-self-sm-center {
    align-self: center;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-space-between {
    justify-content: space-between;
  }

  .align-items-sm-space-between {
    align-items: space-between;
  }

  .justify-self-sm-space-between {
    justify-self: space-between;
  }

  .align-self-sm-space-between {
    align-self: space-between;
  }
}
@media (max-width: 599px) {
  .justify-content-sm-space-around {
    justify-content: space-around;
  }

  .align-items-sm-space-around {
    align-items: space-around;
  }

  .justify-self-sm-space-around {
    justify-self: space-around;
  }

  .align-self-sm-space-around {
    align-self: space-around;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-stretch {
    justify-content: stretch;
  }

  .align-items-xs-stretch {
    align-items: stretch;
  }

  .justify-self-xs-stretch {
    justify-self: stretch;
  }

  .align-self-xs-stretch {
    align-self: stretch;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-flex-start {
    justify-content: flex-start;
  }

  .align-items-xs-flex-start {
    align-items: flex-start;
  }

  .justify-self-xs-flex-start {
    justify-self: flex-start;
  }

  .align-self-xs-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-flex-end {
    justify-content: flex-end;
  }

  .align-items-xs-flex-end {
    align-items: flex-end;
  }

  .justify-self-xs-flex-end {
    justify-self: flex-end;
  }

  .align-self-xs-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-center {
    justify-content: center;
  }

  .align-items-xs-center {
    align-items: center;
  }

  .justify-self-xs-center {
    justify-self: center;
  }

  .align-self-xs-center {
    align-self: center;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-space-between {
    justify-content: space-between;
  }

  .align-items-xs-space-between {
    align-items: space-between;
  }

  .justify-self-xs-space-between {
    justify-self: space-between;
  }

  .align-self-xs-space-between {
    align-self: space-between;
  }
}
@media (max-width: 449px) {
  .justify-content-xs-space-around {
    justify-content: space-around;
  }

  .align-items-xs-space-around {
    align-items: space-around;
  }

  .justify-self-xs-space-around {
    justify-self: space-around;
  }

  .align-self-xs-space-around {
    align-self: space-around;
  }
}
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media (max-width: 1199px) {
  .order-lg-1 {
    order: 1;
  }
}
@media (max-width: 1199px) {
  .order-lg-2 {
    order: 2;
  }
}
@media (max-width: 1199px) {
  .order-lg-3 {
    order: 3;
  }
}
@media (max-width: 1199px) {
  .order-lg-4 {
    order: 4;
  }
}
@media (max-width: 1199px) {
  .order-lg-5 {
    order: 5;
  }
}
@media (max-width: 1199px) {
  .order-lg-6 {
    order: 6;
  }
}
@media (max-width: 1199px) {
  .order-lg-7 {
    order: 7;
  }
}
@media (max-width: 1199px) {
  .order-lg-8 {
    order: 8;
  }
}
@media (max-width: 1199px) {
  .order-lg-9 {
    order: 9;
  }
}
@media (max-width: 1199px) {
  .order-lg-10 {
    order: 10;
  }
}
@media (max-width: 1199px) {
  .order-lg-11 {
    order: 11;
  }
}
@media (max-width: 1199px) {
  .order-lg-12 {
    order: 12;
  }
}
@media (max-width: 899px) {
  .order-md-1 {
    order: 1;
  }
}
@media (max-width: 899px) {
  .order-md-2 {
    order: 2;
  }
}
@media (max-width: 899px) {
  .order-md-3 {
    order: 3;
  }
}
@media (max-width: 899px) {
  .order-md-4 {
    order: 4;
  }
}
@media (max-width: 899px) {
  .order-md-5 {
    order: 5;
  }
}
@media (max-width: 899px) {
  .order-md-6 {
    order: 6;
  }
}
@media (max-width: 899px) {
  .order-md-7 {
    order: 7;
  }
}
@media (max-width: 899px) {
  .order-md-8 {
    order: 8;
  }
}
@media (max-width: 899px) {
  .order-md-9 {
    order: 9;
  }
}
@media (max-width: 899px) {
  .order-md-10 {
    order: 10;
  }
}
@media (max-width: 899px) {
  .order-md-11 {
    order: 11;
  }
}
@media (max-width: 899px) {
  .order-md-12 {
    order: 12;
  }
}
@media (max-width: 599px) {
  .order-sm-1 {
    order: 1;
  }
}
@media (max-width: 599px) {
  .order-sm-2 {
    order: 2;
  }
}
@media (max-width: 599px) {
  .order-sm-3 {
    order: 3;
  }
}
@media (max-width: 599px) {
  .order-sm-4 {
    order: 4;
  }
}
@media (max-width: 599px) {
  .order-sm-5 {
    order: 5;
  }
}
@media (max-width: 599px) {
  .order-sm-6 {
    order: 6;
  }
}
@media (max-width: 599px) {
  .order-sm-7 {
    order: 7;
  }
}
@media (max-width: 599px) {
  .order-sm-8 {
    order: 8;
  }
}
@media (max-width: 599px) {
  .order-sm-9 {
    order: 9;
  }
}
@media (max-width: 599px) {
  .order-sm-10 {
    order: 10;
  }
}
@media (max-width: 599px) {
  .order-sm-11 {
    order: 11;
  }
}
@media (max-width: 599px) {
  .order-sm-12 {
    order: 12;
  }
}
@media (max-width: 449px) {
  .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 449px) {
  .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 449px) {
  .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 449px) {
  .order-xs-4 {
    order: 4;
  }
}
@media (max-width: 449px) {
  .order-xs-5 {
    order: 5;
  }
}
@media (max-width: 449px) {
  .order-xs-6 {
    order: 6;
  }
}
@media (max-width: 449px) {
  .order-xs-7 {
    order: 7;
  }
}
@media (max-width: 449px) {
  .order-xs-8 {
    order: 8;
  }
}
@media (max-width: 449px) {
  .order-xs-9 {
    order: 9;
  }
}
@media (max-width: 449px) {
  .order-xs-10 {
    order: 10;
  }
}
@media (max-width: 449px) {
  .order-xs-11 {
    order: 11;
  }
}
@media (max-width: 449px) {
  .order-xs-12 {
    order: 12;
  }
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  border: 3px solid var(--color-main);
  font-size: 18px;
  line-height: 22px;
  padding: 12px 30px;
  background: transparent;
  display: block;
  width: 100%;
}
.form-control:focus {
  outline: none;
}

html {
  font-family: "Montserrat", sans-serif;
  font-display: swap;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-size: 22px;
  line-height: 27px;
  font-weight: 300;
  color: var(--color-text);
  background-color: #fff;
  -webkit-locale: auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--color-arrow);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus {
  outline: none;
}

b, strong {
  font-weight: 700;
}

select {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.svg-list {
  display: none;
}

.wrapper {
  flex: 1;
}

.main {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 35px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.container, .container_full, .container_left, .container_right {
  padding: 0 calc(var(--gap)/2);
}
.container_left, .container_right {
  max-width: calc(var(--container-width)/2);
}
@media (max-width: 899px) {
  .container_left, .container_right {
    max-width: var(--container-width);
    margin: 0 auto;
  }
}
.container_left {
  margin-left: auto;
}
.container_right {
  margin-right: auto;
}

.dual {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.dual-item {
  width: 50%;
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .dual-item {
    width: 100%;
  }
}
.dual-s {
  align-items: stretch;
}

.block {
  padding: 75px 0;
}

.title {
  font-size: 60px;
  line-height: 70px;
  font-weight: normal;
  color: var(--color-main);
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .title {
    font-size: 40px;
    line-height: 47px;
  }
}
@media (max-width: 599px) {
  .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.title span {
  color: var(--color-theme);
}
.title b {
  font-weight: 500;
}

.subtitle {
  font-size: 30px;
  line-height: 48px;
  font-weight: normal;
  color: var(--color-main);
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .subtitle {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 599px) {
  .subtitle {
    font-size: 15px;
    line-height: 24px;
  }
}

.heading {
  font-size: 20px;
  line-height: 24px;
  color: var(--color-main);
  font-weight: 500;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}
.heading svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.border {
  border: 4px solid var(--color-main);
  padding: 40px 30px;
  font-size: 18px;
  line-height: 22px;
}
.border p {
  margin: 0 0 22px;
}

.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  background-color: var(--color-theme);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  border-radius: 8px;
  vertical-align: top;
  padding: 20px 40px;
  outline: none;
}
.btn:hover {
  -webkit-filter: contrast(90%) brightness(90%);
  filter: contrast(90%) brightness(90%);
  text-decoration: none;
}
.btn svg {
  flex-shrink: 0;
}
.btn span ~ svg {
  margin-left: 30px;
}
.btn svg ~ span {
  margin-left: 30px;
}
.btn .icon {
  width: 20px;
  height: 20px;
}
.btn-dark {
  background-color: var(--color-main);
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
}

.link {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  text-decoration: none;
  color: var(--color-theme);
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}
.link:hover {
  text-decoration: underline;
}
.link svg {
  flex-shrink: 0;
}
.link span ~ svg {
  margin-left: 15px;
}
.link svg ~ span {
  margin-left: 15px;
}
.link b {
  font-weight: 500;
}
.link .icon {
  width: 22px;
  height: 22px;
}
.link .icon.icon-arrow {
  fill: var(--color-arrow);
}
.link .icon.icon-arrow--incline {
  transform: rotate(45deg);
}
.link .icon-tooth {
  width: 28px;
  height: 28px;
}
.link .icon-calendar {
  width: 26px;
  height: 24px;
}
.link .icon-bite {
  width: 45px;
  height: 26px;
}
.link-alt {
  color: var(--color-link-alt);
}
.link-alt .icon {
  fill: var(--color-link-alt);
}
.link-dark {
  color: var(--color-main);
}
.link-dark .icon {
  fill: var(--color-main);
}
.link-border {
  color: var(--color-main);
  padding: 12px 0;
  border-style: solid;
  border-width: 3px 0;
  border-color: transparent transparent var(--color-main) transparent;
  line-height: 24px;
}
.link-border:hover {
  text-decoration: none;
}
.link-border b {
  font-weight: 700;
}
.link-border .icon {
  fill: var(--color-main);
}

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

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

.gallery {
  display: none;
}

.bg-theme {
  background-color: var(--color-theme);
}

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

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

.bg-main {
  background-color: var(--color-main);
}

.bg-gray {
  background-color: var(--color-gray);
}

.bg-white {
  background-color: var(--color-white);
}

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

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

.color-text-alt {
  color: var(--color-text-alt);
}

.color-text-invert {
  color: var(--color-text-invert);
}

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

/* Modules */
.header {
  font-size: 16px;
  line-height: 1;
}
.header-body {
  display: flex;
  align-items: center;
}
.header-logo {
  display: flex;
  align-items: center;
  font-size: 35px;
  line-height: 43px;
  text-decoration: none;
  color: inherit;
  padding: 30px 0;
  margin-right: auto;
  font-size: 35px;
  line-height: 43px;
}
@media (max-width: 1199px) {
  .header-logo {
    font-size: 23px;
    line-height: 29px;
  }
}
@media (max-width: 599px) {
  .header-logo {
    font-size: 17px;
    line-height: 22px;
  }
}
.header-logo:hover {
  text-decoration: none;
}
.header-logo img {
  flex-shrink: 0;
  width: 43px;
}
.header-logo-body {
  position: relative;
  margin-left: 13px;
}
@media (max-width: 449px) {
  .header-logo-body {
    display: none;
  }
}
.header-logo-title {
  text-transform: uppercase;
  color: var(--color-main);
  letter-spacing: 0.1667em;
}
.header-logo-time {
  position: absolute;
  transform: translate(-50%, 100%);
  bottom: 0;
  left: 50%;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .header-logo-time {
    font-size: 8px;
    line-height: 10px;
  }
}
@media (max-width: 599px) {
  .header-logo-time {
    font-size: 6px;
    line-height: 8px;
  }
}
.header-nav {
  font-weight: 300;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .header-nav {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    overflow: auto;
    z-index: 1;
    background-color: rgba(253, 235, 231, 0.95);
    font-size: 30px;
    display: none;
    justify-content: center;
  }
  .header-nav.active {
    display: flex;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .header-nav ul {
    display: block;
    margin: auto 0;
  }
}
.header-nav li {
  padding: 15px;
}
.header-nav a {
  color: var(--color-main);
  text-decoration: none;
}
.header-nav a:hover {
  text-decoration: underline;
}
.header-nav .active {
  font-weight: 500;
}
.header .btn {
  padding: 13px 25px;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .header .btn {
    padding: 10px;
  }
}
.header .btn svg ~ span {
  margin-left: 10px;
}
@media (max-width: 899px) {
  .header .btn span {
    display: none;
  }
}
.header .btn-cancel {
  font-size: 13px;
}
.header-phone {
  color: var(--color-main);
  text-decoration: none;
  margin: 0 10px;
  display: block;
  white-space: nowrap;
}
@media (max-width: 899px) {
  .header-phone {
    padding: 3px;
  }
}
.header-phone:hover {
  text-decoration: underline;
}
.header-phone svg {
  display: none;
  width: 20px;
  height: 20px;
  fill: var(--color-theme);
}
@media (max-width: 899px) {
  .header-phone svg {
    display: block;
  }
}
@media (max-width: 899px) {
  .header-phone span {
    display: none;
  }
}
.header-menu, .header-menu-close {
  display: none;
  padding: 3px;
  font-size: 0;
  line-height: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 24px;
}
@media (max-width: 1199px) {
  .header-menu, .header-menu-close {
    display: block;
  }
}
.header-menu svg, .header-menu-close svg {
  fill: var(--color-main);
  width: 18px;
  height: 18px;
}
.header-menu-close {
  position: absolute;
  right: 20px;
  top: 40px;
}
.header-lang {
  margin: 0 10px;
  text-transform: uppercase;
}
.header-lang .wpml-ls-legacy-dropdown {
  width: auto;
}
.header-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  left: auto;
}
.header-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: var(--color-main);
  pointer-events: none;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.header-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a.wpml-ls-item-toggle:after, .header-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:focus > a.wpml-ls-item-toggle:after {
  transform: rotate(-135deg);
}
.header-lang .wpml-ls-legacy-dropdown a, .header-lang .wpml-ls-legacy-dropdown a:hover, .header-lang .wpml-ls-legacy-dropdown a:focus {
  border: none;
  background-color: transparent;
  outline: none;
}
.header-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover a, .header-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:focus a {
  background: none;
  outline: none;
}
.header-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border: 1px solid var(--color-main);
  background-color: #fffaf7;
  border-radius: 4px;
  padding: 10px 0;
}

.footer {
  padding: 80px 0 50px;
  font-size: 16px;
  line-height: 30px;
  color: var(--color-main);
  background-color: var(--color-light);
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 50px;
  font-size: 10px;
  line-height: 12px;
}
.footer-soc {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 45px);
  grid-gap: 8px;
}
.footer-soc svg {
  width: 45px;
  height: 45px;
}

.organize_visit .title {
  font-size: 40px;
  line-height: 60px;
  margin: 0 0 22px;
}
@media (max-width: 1199px) {
  .organize_visit .title {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (max-width: 599px) {
  .organize_visit .title {
    font-size: 20px;
    line-height: 30px;
  }
}
.organize_visit .heading {
  margin-bottom: 36px;
}
.organize_visit-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 40px;
}
.organize_visit-choice {
  display: flex;
  flex-wrap: wrap;
}
.organize_visit-choice-item {
  margin-bottom: 30px;
}
.organize_visit-choice-item:not(:last-of-type) {
  margin-right: 60px;
}
.organize_visit-help {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-main);
}
.organize_visit-info {
  margin-top: 60px;
  margin-bottom: -15px;
}
.organize_visit-info-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 29px 0;
  color: var(--color-main);
}
.organize_visit-info-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 50px;
}
.organize_visit-form {
  margin-bottom: 60px;
}

.step {
  margin-bottom: 40px;
}
.step-1-text {
  font-size: 24px;
  line-height: 34px;
  min-height: 72px;
  margin: 0 0 10px;
}
.step-1-title {
  color: var(--color-main);
  font-size: 45px;
  line-height: 55px;
  margin: 0 0 25px;
}
@media (max-width: 1199px) {
  .step-1-title {
    font-size: 30px;
    line-height: 37px;
  }
}
@media (max-width: 599px) {
  .step-1-title {
    font-size: 22px;
    line-height: 28px;
  }
}
.step-2-text {
  font-size: 20px;
  line-height: 34px;
  min-height: 72px;
  margin: 0 0 10px;
}
.step-2-title {
  color: var(--color-main);
  font-size: 35px;
  line-height: 43px;
  margin: 0 0 25px;
}
@media (max-width: 1199px) {
  .step-2-title {
    font-size: 23px;
    line-height: 29px;
  }
}
@media (max-width: 599px) {
  .step-2-title {
    font-size: 17px;
    line-height: 22px;
  }
}

.breadcrumbs {
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 30px;
  z-index: 1;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: " - ";
  display: inline;
  white-space: pre;
}
.breadcrumbs a {
  color: var(--color-main);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 80px 0 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-main);
}
.tags li {
  padding: 0 25px 0 0;
}
.tags a {
  color: inherit;
  text-decoration: none;
}
.tags a:hover {
  text-decoration: underline;
}

.info {
  text-align: center;
  padding: 115px 0 80px;
}
.info-title {
  color: var(--color-main);
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .info-title {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 599px) {
  .info-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.info-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}
.info-text b {
  font-weight: 500;
}
.info-text a {
  font-weight: 500;
  color: var(--color-main);
}
.info-text span {
  color: var(--color-theme);
}
.info-sub {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: var(--color-main);
  margin-top: 44px;
}
.info .link {
  margin-top: 10px;
}

.nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-size: inherit;
  line-height: inherit;
  color: var(--color-main);
  height: 40px;
  outline: none;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: var(--color-main);
  display: block;
  pointer-events: none;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translate(-50%, 0);
}
.nice-select.disabled {
  opacity: 0.8;
  pointer-events: none;
}
.nice-select .list {
  background-color: #fffaf7;
  border-radius: 4px;
  margin-top: 5px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform-origin: 50% 0;
  transform: scale(0.75) translate(-50%, -20px);
  z-index: 10;
  border: 1px solid var(--color-main);
  text-align: left;
  padding: 10px 0;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  padding: 5px 15px;
}
.nice-select .option.selected {
  font-weight: 500;
}
.nice-select .option.disabled {
  opacity: 0.8;
  background-color: transparent;
  cursor: default;
}

.statistic {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 87px 0 45px;
  text-align: center;
}
.statistic-left {
  margin-left: -60px;
}
@media (max-width: 899px) {
  .statistic-left {
    margin-left: 0;
  }
}
.statistic-right {
  margin-right: -60px;
}
@media (max-width: 899px) {
  .statistic-right {
    margin-right: 0;
  }
}
.statistic-item {
  display: flex;
  flex-direction: column;
}
.statistic-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 51px;
  color: #E5A789;
  margin: 0 0 17px;
}
.statistic-info {
  font-size: 15px;
  line-height: 18px;
  margin: 0 0 28px;
  font-weight: 700;
}
.statistic-sub {
  margin-top: auto;
  font-size: 8px;
  line-height: 9px;
}

.calendar-custom .hp-calendar-wrapper {
  background: #fff;
  padding: 0 20px 20px;
}
.calendar-custom .hp-calendar {
  border: 0;
  width: 100%;
  max-width: 400px;
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 60px 0 0;
}
.calendar-custom .hp-lists {
  margin: 0;
}
.calendar-custom .hp-loc-list, .calendar-custom .hp-clinic-list, .calendar-custom .hp-profile-list, .calendar-custom .hp-doctor-list {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-main);
  padding: 12px 25px 12px 0;
  border-style: solid;
  border-width: 3px 0;
  border-color: transparent transparent var(--color-main) transparent;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  color: var(--color-main);
  font-size: 18px;
  line-height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19px' height='22px' viewBox='0 0 19 22'%3E%3Cpath fill='%23E02020' d='M10.4,21.7l8.2-8c0.3-0.2,0.4-0.5,0.4-0.8c0-0.3-0.1-0.6-0.4-0.8l-0.7-0.7C17.7,11.1,17.4,11,17,11 c-0.3,0-0.7,0.1-0.9,0.3L11.2,16V1.2C11.3,0.5,10.7,0,10.1,0h-1C8.4,0,7.8,0.5,7.8,1.2v14.8l-4.9-4.7C2.7,11.1,2.4,11,2,11 c-0.3,0-0.6,0.1-0.9,0.3L0.4,12C0.2,12.2,0,12.5,0,12.8s0.1,0.6,0.4,0.8l8.2,8c0.2,0.2,0.5,0.4,0.9,0.3 C9.8,22.1,10.2,21.9,10.4,21.7z'/%3E%3C/svg%3E") center right no-repeat transparent;
  width: 100% !important;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;
  margin: 0 0 31px;
  font-weight: bold;
  text-transform: uppercase;
}
.calendar-custom .hp-loc-list, .calendar-custom .hp-clinic-list {
  display: none !important;
}
.calendar-custom .hp-month-header {
  height: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  margin: 0;
}
.calendar-custom .hp-month-title {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  order: 1;
}
.calendar-custom .hp-month-prev {
  float: none;
}
.calendar-custom .hp-month-next {
  float: none;
  order: 2;
}
.calendar-custom .hp-week-header {
  border: none;
}
.calendar-custom .hp-day-box, .calendar-custom .hp-day-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
.calendar-custom .hp-day-box {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100%/7);
}
.calendar-custom .hp-day-box .hp-day-label {
  height: unset;
  padding: unset;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
}
.calendar-custom .hp-day-box.hp-today {
  background: transparent;
}
.calendar-custom .hp-day-box.hp-today .hp-day-label {
  box-shadow: inset 0 0 0 1px var(--color-main);
  color: var(--color-main);
}
.calendar-custom .hp-day-box.hp-active .hp-day-label {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 700;
}
.calendar-custom .hp-day-box.hp-available {
  color: var(--color-main);
}
.calendar-custom .hp-day-box:not(.hp-available) {
  pointer-events: none;
  cursor: default;
}
.calendar-custom .hp-calendar-container {
  display: flex;
  align-items: flex-start;
}
.calendar-custom .hp-calendar-info {
  flex-grow: 1;
  margin-top: 170px;
  border: 3px solid var(--color-main);
  padding: 30px;
  width: auto;
  color: var(--color-main);
  float: none;
}
.calendar-custom .hp-calendar-info p {
  margin: 0;
}
.calendar-custom .hp-tooltip-header {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 35px;
}
.calendar-custom .hp-tooltip {
  width: auto;
}
.calendar-custom .hp-tooltip-container {
  max-height: unset;
}
.calendar-custom .hp-tooltip strong {
  font-weight: 400;
  font-size: 18px;
  line-height: 41px;
}
.calendar-custom .hp-calendar-info .hp-tooltip-slot {
  margin: 0 0 10px !important;
  display: flex;
  align-items: center;
  color: var(--color-main);
  border: none;
  flex-wrap: wrap;
}
.calendar-custom .hp-calendar-info .hp-tooltip-doctor {
  margin-bottom: 15px;
}
.calendar-custom .hp-calendar-info .hp-tooltip-slot .hp-clear {
  display: none;
}
.calendar-custom .hp-tooltip-slot button {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-main);
  padding: 12px 37px 12px 0;
  border-style: solid;
  border-width: 3px 0;
  border-color: transparent transparent var(--color-main) transparent;
  outline: none;
  margin-left: auto;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.9' height='18.8'%3E%3Cpath fill='%23E02020' d='M21.5 8.5L13.6.4c-.2-.3-.5-.4-.8-.4-.3 0-.6.1-.8.4l-.7.7c-.3.2-.4.5-.4.9 0 .3.1.7.3.9l4.6 4.8H1.2C.5 7.6 0 8.2 0 8.8v1c0 .7.5 1.3 1.2 1.3h14.7l-4.7 4.8c-.2.2-.3.5-.3.9 0 .3.1.6.3.9l.7.7c.2.2.5.4.8.4.3 0 .6-.1.8-.4l7.9-8.1c.2-.2.4-.5.3-.9.2-.3 0-.7-.2-.9z'/%3E%3C/svg%3E") center right no-repeat transparent;
  font-weight: 700;
}
.calendar-custom .hp-tooltip-slot button:hover {
  text-decoration: none;
}
.calendar-custom .hp-calendar-info .hp-tooltip-slot > span {
  display: inline-flex;
  align-items: center;
}
.calendar-custom .hp-calendar-info .hp-tooltip-slot .hp-tooltip-slot-doctor {
  font-size: 18px;
  font-style: normal;
  padding-left: 10px;
}

@media (max-width: 1199px) {
  .calendar-custom .hp-calendar {
    margin: 0 0 60px 0;
  }

  .calendar-custom .hp-calendar-container {
    display: block;
  }

  .calendar-custom .hp-calendar-info {
    margin-top: 0;
  }
}
/* Pages */
.home .organize_visit .heading {
  margin-bottom: 70px;
}
.home .organize_visit .title {
  font-size: 50px;
  line-height: 60px;
}
@media (max-width: 1199px) {
  .home .organize_visit .title {
    font-size: 33px;
    line-height: 40px;
  }
}
@media (max-width: 599px) {
  .home .organize_visit .title {
    font-size: 25px;
    line-height: 30px;
  }
}
.home-s1 {
  padding-bottom: 40px;
}
.home-s2-top .title {
  font-size: 35px;
  line-height: 40px;
  margin: 0 0 80px;
  color: inherit;
}
.home-s3 {
  padding: 63px 0 124px;
}
.home-s3-heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-main);
  margin: 0 0 60px;
}
.home-s3 .title {
  margin: 0 0 50px;
}
.home-s3-text {
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 80px 0;
}
.home-s4 {
  margin-bottom: 200px;
  overflow: hidden;
}
.home-s4-grid > [class*=col-] {
  grid-row: 1;
}
@media (max-width: 899px) {
  .home-s4-grid > [class*=col-] {
    grid-row: auto;
  }
}
.home-s4-body {
  text-align: right;
  padding: 100px 0 75px;
  position: relative;
}
.home-s4-body::before {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  right: -40px;
  height: 100%;
  width: 50vw;
  background-color: var(--color-light);
}
@media (max-width: 899px) {
  .home-s4-body::before {
    left: calc(var(--gap) / (-2));
    right: calc(var(--gap) / (-2));
    width: auto;
  }
}
.home-s4-body > [class*=col-] {
  position: relative;
}
.home-s4 .title {
  font-size: 50px;
  line-height: 56px;
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .home-s4 .title {
    font-size: 33px;
    line-height: 38px;
  }
}
@media (max-width: 599px) {
  .home-s4 .title {
    font-size: 25px;
    line-height: 28px;
  }
}
.home-s4-text {
  margin: 0 0 30px;
}
.home-s4 .link {
  font-size: 16px;
  line-height: 24px;
}
.home-s5 {
  margin-bottom: 140px;
}
.home-s5 .title {
  margin: 0 0 30px 0;
}
.home-s5-text {
  margin: 0 0 24px 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
}
.home-s5--2 {
  margin-bottom: 220px;
}
.home-s6 {
  background-color: var(--color-light);
  padding: 60px 0 250px;
}
.home-s6-head {
  margin-bottom: 65px;
}
.home-s6-head .title {
  margin: 0;
}
.home-s6-head .link {
  font-size: 22px;
  line-height: 36px;
}
.home-s6-subtitle {
  font-size: 20px;
  line-height: 24px;
  color: var(--color-main);
}
.home-s6-item-date {
  font-size: 10px;
  line-height: 36px;
}
.home-s6-item-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: normal;
  color: var(--color-main);
  margin: 0 0 36px 0;
}
.home-s6-item .link {
  font-size: 18px;
  line-height: 36px;
}
.home-s7 {
  margin: -170px 0 110px;
}
.home-s7 .grid-zero {
  grid-gap: 0;
}
.home-s7-right {
  padding: 70px 0;
  background-color: var(--color-theme);
  color: var(--color-light);
}
.home-s7 .title {
  margin: 0 0 25px;
  font-weight: 300;
  color: inherit;
}
.home-s7-text {
  margin: 0 0 28px;
}
.home-s7 .link {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-light);
}
.home-s7 .link .icon.icon-arrow {
  fill: var(--color-light);
}
.home-s7-video {
  background-color: #000;
  position: relative;
}
.home-s7-video video {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.home-s7-video-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.home-s7-video-btn.fade img {
  display: none;
}
.home-s7-video-btn.play {
  opacity: 0;
}
.home-s7-video-btn svg {
  position: absolute;
  width: 76px;
  height: 76px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-s7-video-btn img {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-s8-item {
  padding: 20px 0;
}
.home-s8-item-body {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}
.home-s8-item-body .title {
  font-weight: 300;
}
.home-s8-item-body .icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  margin-right: 40px;
  align-self: flex-start;
}
.home-s8-item .link {
  margin-left: 108px;
}
.home-app {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.home-app a {
  margin-right: 30px;
  margin-bottom: 30px;
}
.home-s9 .title {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .home-s9 .title {
    font-size: 33px;
    line-height: 40px;
  }
}
@media (max-width: 599px) {
  .home-s9 .title {
    font-size: 25px;
    line-height: 30px;
  }
}
.home-s9 .text {
  margin-bottom: 90px;
}
.home-s9-awards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 125px);
  grid-gap: 80px 45px;
  margin: 0 0 70px;
}

.book .organize_visit .title {
  font-size: 40px;
  line-height: 60px;
  margin: 0 0 40px;
}
@media (max-width: 1199px) {
  .book .organize_visit .title {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (max-width: 599px) {
  .book .organize_visit .title {
    font-size: 20px;
    line-height: 30px;
  }
}
.book .organize_visit .heading {
  margin-bottom: 40px;
}
.book-info {
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 90px;
}
.book-info p {
  margin: 29px 0;
}
.book-descr {
  font-size: 18px;
  line-height: 30px;
}
.book-descr p {
  margin: 30px 0;
}
.book-descr b {
  font-weight: 500;
  color: var(--color-main);
}
.book-descr a {
  color: var(--color-theme);
  font-weight: 500;
  text-decoration: none;
}
.book-descr a:hover {
  text-decoration: underline;
}
.book-descr + .book-descr {
  margin-top: 80px;
}

.pricelist-subtitle {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin: 0 0 90px;
}
.pricelist-subtitle p {
  margin: 22px 0;
}
.pricelist-info {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
}
.pricelist-info p {
  margin: 29px 0;
}
.pricelist-info b,
.pricelist-info a {
  font-weight: 500;
}
.pricelist-table {
  overflow-x: auto;
}
.pricelist-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricelist-table th,
.pricelist-table td {
  padding: 5px 25px;
}
@media (max-width: 899px) {
  .pricelist-table th,
  .pricelist-table td {
    padding: 5px 15px;
  }
}
.pricelist-table-head th,
.pricelist-table-head td, .pricelist-table-foot th,
.pricelist-table-foot td {
  padding: 15px 25px;
  /* font-size: 30px;
  line-height: 37px; */
  font-size: 30px;
  line-height: 37px;
  font-weight: normal;
  color: var(--color-main);
}
@media (max-width: 1199px) {
  .pricelist-table-head th,
  .pricelist-table-head td, .pricelist-table-foot th,
  .pricelist-table-foot td {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 599px) {
  .pricelist-table-head th,
  .pricelist-table-head td, .pricelist-table-foot th,
  .pricelist-table-foot td {
    font-size: 15px;
    line-height: 19px;
  }
}
@media (max-width: 899px) {
  .pricelist-table-head th,
  .pricelist-table-head td, .pricelist-table-foot th,
  .pricelist-table-foot td {
    padding: 15px 15px;
  }
}
.pricelist-table-body th,
.pricelist-table-body td {
  font-size: 22px;
  line-height: 38px;
}
@media (max-width: 1199px) {
  .pricelist-table-body th,
  .pricelist-table-body td {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (max-width: 599px) {
  .pricelist-table-body th,
  .pricelist-table-body td {
    font-size: 11px;
    line-height: 19px;
  }
}
.pricelist-table-body tr:nth-of-type(odd) th,
.pricelist-table-body tr:nth-of-type(odd) td {
  background-color: #FFF4EF;
}
.pricelist-table-body + .pricelist-table-head th,
.pricelist-table-body + .pricelist-table-head td {
  padding-top: 50px;
}
.pricelist-table [data-align=left] {
  text-align: left;
}
.pricelist-table [data-align=right] {
  text-align: right;
}
.pricelist-table [data-align=center] {
  text-align: center;
}
.pricelist-table-checkbox input {
  display: none;
}
.pricelist-table-checkbox input:checked ~ label svg {
  opacity: 1;
}
.pricelist-table-checkbox label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  border: 2px solid var(--color-main);
  cursor: pointer;
}
.pricelist-table-checkbox svg {
  width: 15px;
  height: 10px;
  opacity: 0;
  pointer-events: none;
}
.pricelist-table-separator {
  padding: 15px 0 0;
  border-bottom: 2px solid var(--color-main);
}

.blog {
  padding-bottom: 55px;
}
.blog-title {
  margin: 0;
}
.blog-info {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 60px;
}
.blog-info p {
  margin-top: 0;
}
.blog-filter {
  color: var(--color-main);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 22px;
  line-height: 1;
  border-bottom: 2px solid #2A2A2A;
  padding: 20px 0;
  margin-bottom: 40px;
}
.blog-filter-item {
  margin: 0 50px 0 0;
  padding: 6px 0;
}
.blog-filter-item:last-of-type {
  margin: 0 0 0 auto;
}
.blog-filter-item a {
  color: inherit;
  text-decoration: none;
}
.blog-filter-item a:hover {
  text-decoration: underline;
}
.blog-filter-item a.active {
  font-weight: 500;
}
.blog-search {
  display: flex;
  align-items: center;
  padding: 0 40px;
  background-color: #EFEBEB;
  max-width: 730px;
  border-radius: 82px;
  margin-bottom: 77px;
}
.blog-search-field {
  height: 82px;
  line-height: 82px;
  font-size: 20px;
  flex-grow: 1;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
}
.blog-search-btn {
  flex-shrink: 0;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}
.blog-search-btn svg {
  width: 33px;
  height: 33px;
}
.blog-card {
  color: var(--color-main);
}
.blog-card-img {
  padding-bottom: 67%;
  position: relative;
  margin-bottom: 30px;
}
.blog-card-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-card-img-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.blog-card-head {
  display: flex;
  align-items: flex-start;
}
.blog-card-cat {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}
.blog-card-date {
  font-weight: 300;
  font-size: 10px;
  line-height: 36px;
}
.blog-card--alt .blog-card-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 7px;
}
.blog-card-time {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  margin-left: auto;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.blog-card-time svg {
  width: 15px;
  height: 15px;
  margin-right: 9px;
}
.blog-card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  min-height: 60px;
  margin: 0 0 20px;
}
.blog-card--alt .blog-card-title {
  margin: 0 0 10px;
  min-height: unset;
}
.blog-card-text {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 26px;
}
.blog-card-link {
  font-size: 18px;
  line-height: 36px;
  color: #E93606;
  text-decoration: none;
}
.blog-card-link:hover {
  text-decoration: underline;
}
.blog-mainlist {
  margin-bottom: 80px;
}
.blog-sublist {
  margin-bottom: 130px;
}
.blog-recommend {
  background-color: #FFF4EF;
  padding: 106px 0 88px;
  margin-bottom: 87px;
}
.blog-recommend .link {
  color: var(--color-main);
  font-size: 24px;
  line-height: 29px;
}
.blog-recommend .link svg {
  fill: var(--color-main);
  width: 30px;
  height: 30px;
}

.post {
  padding: 65px 0 50px;
}
.post-info {
  display: flex;
  align-items: center;
  color: var(--color-main);
  margin: 0 0 20px;
}
.breadcrumbs + .post-info {
  margin-top: -30px;
}
.post-date {
  font-weight: 300;
  font-size: 10px;
  line-height: 36px;
  margin-right: 14px;
}
.post-time {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  display: inline-flex;
  align-items: center;
}
.post-time svg {
  width: 15px;
  height: 15px;
  margin-right: 15px;
}
.post .title {
  font-size: 50px;
  margin-bottom: 110px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .post .title {
    font-size: 33px;
  }
}
@media (max-width: 599px) {
  .post .title {
    font-size: 25px;
  }
}
.post-slide {
  text-align: center;
  margin-bottom: 80px;
  height: 570px;
  max-height: 100vh;
}
.post-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.post-body {
  margin: 0 0 100px;
}
.post-body h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 29px;
}
.post-body h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  margin: 0 0 27px;
}
.post-body p,
.post-body ul,
.post-body ol {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 22px;
}
.post-body img {
  margin: 85px 0;
}
.post-also-bottom {
  width: 100%;
  height: 50px;
  fill: var(--color-light);
}
.post-also-body {
  padding: 90px 0 150px;
  background-color: var(--color-light);
}
.post-also-head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: var(--gap);
  align-items: center;
  margin: 0 0 62px;
}
.post-also-head .link {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  color: var(--color-main);
}
.post-also-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 46px;
  font-size: 35px;
  line-height: 46px;
  color: var(--color-main);
}
@media (max-width: 1199px) {
  .post-also-title {
    font-size: 23px;
    line-height: 31px;
  }
}
@media (max-width: 599px) {
  .post-also-title {
    font-size: 17px;
    line-height: 23px;
  }
}

.about {
  padding-bottom: 80px;
}
.about-top {
  margin-bottom: 50px;
}
.about-top p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin: 22px 0;
}
.about-list {
  font-size: 24px;
  line-height: 35px;
  color: #FFF4EF;
  display: block;
  padding: 0;
  margin: 0 0 50px;
}
.about-list li {
  display: block;
}
.about-list a {
  color: inherit;
  text-decoration: none;
}
.about-list a:hover {
  color: #FABA92;
  text-decoration: underline;
}
.about-list a.active {
  color: #FABA92;
  font-weight: 500;
}
.about-list-title {
  font-size: 35px;
  line-height: 40px;
  color: #FFF4EF;
  margin: 0;
  font-weight: 500;
}
.about-s1, .about-s2 {
  margin: 0 0 130px;
}
.about-s1 figure, .about-s2 figure {
  margin: 0 0 65px;
}
.about-s1 figcaption, .about-s2 figcaption {
  margin-top: 20px;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-main);
}
.about-s1 .link, .about-s2 .link {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-text);
}
.about-s1 p {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 24px;
}
.about-s2 p {
  font-weight: 400;
  font-size: 21px;
  line-height: 29px;
  margin: 0 0 29px;
}
.about-s2 p span {
  color: var(--color-theme);
  font-size: 24px;
  line-height: 29px;
}
.about-person-img {
  margin-bottom: 14px;
}
.about-person-title {
  font-weight: normal;
  font-size: 50px;
  line-height: 70px;
  margin: 0 0 6px;
  color: var(--color-main);
}
@media (max-width: 1199px) {
  .about-person-title {
    font-size: 33px;
    line-height: 47px;
  }
}
@media (max-width: 599px) {
  .about-person-title {
    font-size: 25px;
    line-height: 35px;
  }
}
.about-person-position {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-main);
  margin: 0 0 48px;
}
.about-person-info {
  font-size: 18px;
  line-height: 30px;
}
.about-person-info p {
  margin: 0 0 30px;
}

.services {
  padding-bottom: 80px;
}
.services-top {
  margin-bottom: 80px;
}
.services-top p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin: 22px 0;
}
.services-top .link {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}
.services-list {
  font-size: 24px;
  line-height: 35px;
  color: #FFF4EF;
  display: block;
  padding: 0;
  margin: 0 0 60px;
}
.services-list--tab {
  padding-left: 55px;
}
.services-list li {
  display: block;
}
.services-list a {
  color: inherit;
  text-decoration: none;
}
.services-list a:hover {
  color: #FABA92;
  text-decoration: underline;
}
.services-list a.active {
  color: #FABA92;
  font-weight: 500;
}
.services-list-title {
  font-size: 35px;
  line-height: 40px;
  color: #FFF4EF;
  margin: 0;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.services-list-title-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
  align-self: flex-start;
}
.services-list-title + .services-list-title {
  margin-top: 60px;
}
.services-list-title a {
  color: inherit;
  text-decoration: none;
}
.services-list-title a:hover {
  color: #FABA92;
  text-decoration: underline;
}
.services-list-title a.active {
  color: #FABA92;
  font-weight: 500;
}
.services-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  text-align: justify;
}
.services-text-heading {
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  margin: 0 0 29px;
}
.services-text p {
  margin: 0 0 29px;
}
.services-text b {
  font-weight: 500;
}
.services-text figure {
  margin: 30px 0;
}
.services-text figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-main);
}
.services-title {
  color: var(--color-main);
  font-size: 50px;
  line-height: 60px;
  font-weight: normal;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .services-title {
    font-size: 33px;
    line-height: 40px;
  }
}
@media (max-width: 599px) {
  .services-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.services-forms-list {
  font-size: 24px;
  line-height: 35px;
  color: #FFF4EF;
  display: block;
  padding: 0;
  margin: 0;
}
.services-forms-list li {
  display: block;
}
.services-forms-list li > ul {
  font-size: 20px;
  line-height: 30px;
  padding-left: 15px;
}
.services-forms-list a {
  color: inherit;
  text-decoration: none;
}
.services-forms-list a:hover {
  color: #FABA92;
}
.services-forms-list a.active {
  color: #FABA92;
  font-weight: 500;
}
.services-file {
  margin: 40px 0;
  border: 2px solid var(--color-main);
  padding: 35px 60px;
}
.services-file-name {
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  color: var(--color-main);
  margin: 0;
}
.services-file-descr {
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 36px;
}
.services-file-dl {
  display: flex;
  align-items: center;
}
.services-file-dl .btn {
  flex-shrink: 0;
  margin-right: 43px;
}
.services-file-size {
  font-size: 14px;
  line-height: 17px;
}


.primary-menu-container{
  /*background: red;*/
}

.primary-menu-container ul li{
  position: relative;
}

.primary-menu-container ul li > a{
  color: var(--color-main);
  font-weight: 500;
}

.primary-menu-container ul li.menu-item-has-children > a{
  padding-right: 10px;
}

.primary-menu-container ul li.menu-item-has-children > a:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: 0.35em solid transparent;
  border-top: 0.5em solid;
  position: absolute;
  right: 10px;
  top: calc(50% - 0.175em);

  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: var(--color-main);
  pointer-events: none;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}


.primary-menu-container ul li .sub-menu{
  display: none;

  flex-direction: column;
  min-width: 175px;
  top: 40px;
  left: 0;
  text-align: left;
  background: red;
  border: 1px solid var(--color-main);
  background-color: #fffaf7;
  border-radius: 4px;
  padding: 10px 0;
  align-content: flex-start;
  align-items: flex-start;

  width: max-content;
  max-width: 255px;
}

.primary-menu-container ul li:hover .sub-menu{
  display: flex;
  position: absolute;
}

.primary-menu-container ul li.menu-item-has-children:hover > a:after {
  transform: rotate(225deg);
  top: calc(50% - 0em);
}

.primary-menu-container ul li:hover .sub-menu li{
  padding: 10px 15px;
}

.primary-menu-container ul li:hover .sub-menu li a{
  font-weight: 300!important;
}

.primary-menu-container ul li.current-menu-item a{
  text-decoration: underline;
}

@media (max-width: 1199px){
  .header-nav.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .primary-menu-container ul li:hover .sub-menu {
    display: flex;
    position: relative;
    top: 10px;
  }

  .primary-menu-container ul li:hover .sub-menu li a {
    font-weight: 300!important;
    font-size: 20px;
  }

  .primary-menu-container ul li:hover .sub-menu li {
    padding: 4px 15px;
  }

  .primary-menu-container ul li.menu-item-has-children:hover > a:after {
    top: 25px;
  }
}
