/**
 * Styles
 *
 * @author Lex Lexter <hi@leximo.cz>
 * @version 1.0.0
 * @website https://leximo.cz/
 */

@font-face {
  font-family: 'Clear Sans Fallback';
  size-adjust: 100%;
  src: local('Arial');
}

/*
  Variable
  ***
*/

:root {
  --transition-speed: 0ms;
}

/*
  Hover devices
  ---
*/

@media (hover: hover) {
  :root {
    --transition-speed: 150ms;
  }
}

/*
  Bodies
  ***
*/

html, body {
  background-color: #fff;
}
body {
  font: 300 18px 'Clear Sans', 'Clear Sans Fallback', Arial, Helvetica, sans-serif;
  letter-spacing: -0.025em;
  color: #72676F;
}

/*
  Links
  ***
*/

a {
  text-decoration-thickness: 1px;
  color: #C800A1;
}
a:active {
  text-decoration-thickness: 1px;
  color: #000;
}

/*
  Forms
  ***
*/

input, textarea, select, button {
  font: 200 17px 'Clear Sans', 'Clear Sans Fallback', Helvetica, Arial, sans-serif;
}

/*
  icon
  ***
*/

.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: center center no-repeat;
  font-size: 0;
  fill: #2F3031;
}

/*
  - area
  ---
*/

.icon--area {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/*
  SVG
  ---
*/

.icon svg {
  fill: #2F3031;
}

/*
  - area
  ...
*/

.icon--area svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
  subtitle
  ***
*/

.subtitle {
  margin: 0;
  transform: rotate(0.03deg);
  text-transform: uppercase;
  font-weight: 700;
  color: #C800A1;
}

/*
  - color
  ---
*/

.subtitle--color-white {
  color: #fff;
}

/*
  glink
  ***
*/

.glink {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

/* hover */

.glink:hover {
  color: #C800A1;
}

/*
  Adjust icon
  ---
*/

.glink .icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  fill: #C800A1;
}

/*
  button
  ***
*/

.button {
  display: inline-block;
  margin: 16px 8px 32px 0;
  padding: 14px 25px 16px 25px;
  background-color: #fff;
  border: 1px solid #F0EEF0;
  border-radius: 8px;
  outline: none;
  line-height: 1 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #C800A1;
  transition: background-color var(--transition-speed) linear, box-shadow var(--transition-speed) linear;
}

/* active */

.button:active {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  color: #C800A1;
}

/*
  icon
  ---
*/

.button__icon {
  margin-left: 10px;
  fill: #C800A1;
}
.button__icon:first-child {
  margin: 0 10px 0 0;
}

/*
  - color
  ---
*/

.button--color-primary {
  background-color: #C800A1;
  border-color: #C800A1;
  color: #fff;
}
.button--color-primary .button__icon {
  fill: #fff;
}

/* active */

.button--color-primary:active {
  background-color: #dd16b5;
  border-color: #dd16b5;
  color: #fff;
}

/*
  link
  ---
*/

.link {
  position: relative;
  display: block;
  padding: 13px 53px 13px 17px;
  background-color: #fff;
  border: 1px solid #F6F5F6;
  border-radius: 8px;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  color: #72676F;
  transition: background-color var(--transition-speed) linear;
}

/* - active */

.link.--active, 
.link:active {
  background-color: #F6F5F6;
  color: #72676F;
}

/*
  Adjust icon
  ---
*/

.link .icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  fill: #C800A1;
}

/*
  title
  ...
*/

.link__title {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #231F20;
}

/*
  -- list
  ---
*/

.link---list {
  display: block;
}

/*
  Adjust link
  ---
*/

.link---list .link + .link {
  margin-top: 6px;
}

/*
  rating
  ***
*/

.rating {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: -8px;
}

/*
  SPAN
  ---
*/

.rating span {
  width: 160px;
  height: 24px;
  display: block;
  background: url('../img/rating.svg') no-repeat;
  font-size: 0;
}

/*
  flash
  ***
*/

.flash {
  position: relative;
  overflow: hidden;
  padding: 14px 162px 16px 68px;
  background-color: rgba(180, 0, 144, 0.5);
  border-radius: 8px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
}

/*
  icon
  ---
*/

.flash__icon {
  position: absolute;
  left: 24px;
  top: 16px;
  fill: #fff;
}

/*
  link
  ---
*/

.flash__link {
  box-sizing: border-box;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px 24px 0 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

/* active */

.flash__link:active {
  color: #fff;
}

/*
  Adjust icon
  ---
*/

.flash__link .icon {
  top: -1px;
  margin-left: 8px;
  fill: #fff;
}

/*
  slick-arrow
  ***
*/

.slick-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  background-color: transparent;
  border: 1px solid #5A3754;
  border-radius: 50%;
  font-size: 0;
  transition: background-color var(--transition-speed) linear, border-color var(--transition-speed) linear;
}

/* hover */

.slick-arrow:hover {
  background-color: #B40091;
  border-color: #B40091 !important;
}

/*
  Icon
  ---
*/

.slick-arrow:before, 
.slick-arrow:after {
  content: '';
  width: 8px;
  height: 1px;
  background-color: #5A3754;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -4px;
  transition: background-color var(--transition-speed) linear;
}

/* hover */

.slick-arrow:active:before, 
.slick-arrow:active:after {
  background-color: #fff;
}

/*
  - prev
  ---
*/

.slick-arrow.slick-prev:before, 
.slick-arrow.slick-prev:after {
  transform-origin: left center;
}
.slick-arrow.slick-prev:before {
  transform: rotate(-40deg);
}
.slick-arrow.slick-prev:after {
  transform: rotate(40deg);
}

/*
  - next
  ---
*/

.slick-arrow.slick-next:before, 
.slick-arrow.slick-next:after {
  transform-origin: right center;
}
.slick-arrow.slick-next:before {
  transform: rotate(40deg);
}
.slick-arrow.slick-next:after {
  transform: rotate(-40deg);
}


/*
  slick-dots
  ***
*/

.slick-dots {
  margin: 16px 0 0 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  line-height: 1;
  white-space: nowrap;
}
.slick-dots li button {
  width: 8px;
  height: 8px;
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 0;
}

/*
  Dot
  ---
*/

.slick-dots li button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  border-radius: 50%;
  transition: 150ms ease-in-out;
}


/* - active */

.slick-dots li.slick-active button:after {
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  background-color: #C800A1;
}

/*
  drop
  ***
*/

.drop {
  position: absolute;
}
.drop__inset {
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(35, 31, 18, 0.12);
  border-radius: 8px;
  text-align: left;
}

/*
  - pos
  ---
*/

.drop--pos-lb {
  left: 0;
  top: 100%;
  padding-top: 8px;
}
.drop--pos-rb {
  right: 0;
  top: 100%;
  padding-top: 8px;
}
.drop--pos-cb {
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 8px;
}

/*
  -- holder
  ---
*/

.drop---holder {
  position: relative;
  z-index: 10;
}

/*
  Adjust drop
  ...
*/

.drop---holder .drop {
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-speed) linear;
}

/* active */

.drop---holder:active .drop, 
.drop---holder:hover .drop {
  pointer-events: all;
  opacity: 1;
}

/*
  list-numerize
  ***
*/

.list-numerize {
  margin: 24px 0;
  list-style: none;
  counter-reset: numerize;
}

/*
  ITEM
  ---
*/

.list-numerize > li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 50px;
  counter-increment: numerize;
}

/*
  Gaps
  ...
*/

.list-numerize > li:last-child {
  padding-left: 50px;
}

/*
  STRONG
  ...
*/

.list-numerize > li > strong.--f {
  display: inline-block;
  transform: rotate(0.03deg);
  font-weight: 700;
  font-size: 20px;
  color: #353535;
}

/*
  number
  ...
*/

.list-numerize li:before {
  content: '0' counter(numerize);
  width: 42px;
  position: absolute;
  left: 0;
  top: -4px;
  transform: rotate(0.03deg);
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #353535;
}

/*
  list-logos
  ***
*/

.list-logos {
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0 25px 16px 0;
  text-align: center;
  white-space: nowrap;
  font-size: 0;
}

/*
  - excp
  ---
*/

.list-logos--excp-01 {
  margin: 64px 64px -40px 64px;
}

/*
  item
  ---
*/

.list-logos__item {
  max-width: 130px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter var(--transition-speed) linear, opacity var(--transition-speed) linear;
}

/* active */

a.list-logos__item:active {
  filter: grayscale(0);
  opacity: 1;
}

/*
  nav-tabs
  ***
*/

.nav-tabs {
  display: table;
  border-spacing: 4px 0;
  padding: 4px 0;
  background-color: #fff;
  border: 1px solid #e9e5e9;
  border-radius: 4px;
}

/*
  LINK
  ---
*/

.nav-tabs a {
  display: table-cell;
  vertical-align: middle;
  padding: 12px 28px 13px 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #72676F;
  transition: border-color var(--transition-speed) linear, color var(--transition-speed) linear;
}

/* hover */

.nav-tabs a:hover {
  color: #C800A1;
}

/* - active */

.nav-tabs a.--active {
  border-color: #C800A1;
  color: #C800A1;
}
/*
  nav-pagination
  ***
*/

.nav-pagination {
  text-align: center;
  font-size: 0;
}

/*
  Adjust icon
  ---
*/

.nav-pagination .icon {
  margin: 0 12px;
  border: 1px solid #e2e2e2;
  transition: background-color var(--transition-speed) linear, border-color var(--transition-speed) linear;
}

/* active */

.nav-pagination .icon:active {
  background-color: #C800A1;
  border-color: #C800A1;
  color: #fff;
}

/*
  SVG
  ...
*/

.nav-pagination .icon svg {
  fill: #C800A1;
  transition: fill var(--transition-speed) linear;
}

/* active */

.nav-pagination .icon:active svg {
  fill: #fff;
}

/*
  link
  ---
*/

.nav-pagination__link {
  display: inline-block;
  margin: 0 2px;
  padding: 10px 10px 12px 10px;
  vertical-align: middle;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #231F20;
  transition: background-color var(--transition-speed) linear, border-color var(--transition-speed) linear, color var(--transition-speed) linear;
}

/* active */

.nav-pagination__link.--active, 
.nav-pagination__link:active {
  background-color: #C800A1;
  border-color: #C800A1;
  color: #fff;
}

/*
  quote
  ***
*/

.quote {
  margin: 16px 0;
  padding: 32px 42px;
  background-color: #F6F5F6;
  border-radius: 24px;
}

/*
  PARAGRAPH
  ---
*/

.quote p {
  transform: rotate(0.3deg);
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
}

/*
  Quotes
  ...
*/

.quote p:before, 
.quote p:after {
  transform: rotate(0.3deg);
  font-weight: 500;
  color: #000;
}
.quote p:before {
  content: '„';
  margin-right: -3px;
}
.quote p:after {
  content: '“';
  margin-left: -3px;
}

/*
  QUOTE
  ---
*/

.quote q {
  quotes: none;
  transform: rotate(0.3deg);
  display: block;
  margin-top: 12px;
  line-height: 1.6;
  font-size: 15px;
}
.quote q:before {
  content: '|||';
  position: relative;
  top: 0px;
  margin-right: 2px;
}

/*
  Adjust titles
  ---
*/

.section__inset h1:first-child, .section__inset .--like-h1:first-child, 
.section__inset h2:first-child, .section__inset .--like-h2:first-child,
.section__inset h3:first-child, .section__inset .--like-h3:first-child, 
.section__inset h4:first-child, .section__inset .--like-h4:first-child, 
.section__inset h5:first-child, .section__inset .--like-h5:first-child, 
.section__inset h6:first-child, .section__inset .--like-h6:first-child {
  margin-top: 0;
}

/*
  head
  ***
*/

.head {
  position: relative;
}

/*
  - excp
  ---
*/

.head--excp-01 {
  padding-bottom: 13%;
}


/*
  - color
  ---
*/

.head--color-white {
  color: #fff;
}

/*
  Adjust button
  ---
*/

.head .button {
  margin: 24px 0 0 0;
}

/*
  Adjust nav-tabs
  ---
*/

.head .nav-tabs {
  display: inline-block;
  margin: 16px 0 0 0;
}

/*
  Adjust title
  ---
*/

.head__title {
  margin: 0;
}

/*
  - color
  ---
*/

.head--color-white .head__title {
  color: inherit;
}

/*
  Adjust excerpt
  ---
*/

.head__excerpt {
  margin: 24px 0 0 0;
}

/*
  list
  ***
*/

.list {
  position: relative;
}
.list__inset {
  margin: 0 -12px -24px -12px;
  font-size: 0;
}

/*
  - gaps
  ---
*/

.list--gaps-none .list__inset {
  margin: 0;
}

/*
  Adjust nav-pagination
  ---
*/

.list .nav-pagination {
  margin-top: 32px;
}

/*
  item
  ---
*/

.list__item {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 24px;
}
.list__item__inset {
  margin: 0 12px;
}

/*
  - gaps
  ---
*/

.list--gaps-none .list__item {
  margin: 0;
}
.list--gaps-none .list__item__inset {
  margin: 0;
}

/*
  head
  ---
*/

.list__head {
  margin-bottom: 42px;
}

/*
  carousel
  ***
*/

.carousel {
  position: relative;
}

/*
  - excp
  ---
*/

.section-info + .carousel {
  margin-top: 84px;
}

/*
  Adjust slick
  ---
*/

.carousel  .slick-slide {
  margin: 0 12px;
}
.carousel  .slick-list {
  margin: 0 -12px;
}

/*
  Adjus slick-arrow
  ---
*/

.carousel--arrows-01 .slick-arrow {
  position: absolute;
  top: -80px;
}
.carousel--arrows-01 .slick-arrow.slick-prev {
  right: 56px;
}
.carousel--arrows-01 .slick-arrow.slick-next {
  right: 0;
}
.carousel--arrows-02 .slick-arrow {
  position: absolute;
  bottom: 0;
}
.carousel--arrows-02 .slick-arrow.slick-prev {
  left: -418px;
}
.carousel--arrows-02 .slick-arrow.slick-next {
  left: -362px;
}

/*
  slides
  ---
*/

.carousel__slides {
  position: relative;
}

/*
  head
  ---
*/

.carousel__head {
  margin-bottom: 42px;
}

/*
  detail-post
  ***
*/

.detail-post {
  max-width: 1080px;
  margin: 0 auto;
  padding: 260px 42px 120px 42px;
}

/*
  head
  ---
*/

.detail-post__head {
  display: block;
}

/*
  date
  ---
*/

.detail-post__date {
  display: block;
  margin-bottom: 12px;
}

/*
  title
  ---
*/

.detail-post__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.detail-post__excerpt {
  margin: 16px 0 0 0;
  font-size: 20px;
}

/*
  image
  ---
*/

.detail-post__image {
  margin: 64px 0;
}

/*
  : Empty
  ...
*/

.detail-post__image:empty {
  height: 1px;
  background-color: #F6F5F6;
}

/*
  IMG
  ...
*/

.detail-post__image img {
  display: block;
  border-radius: 42px;
}

/*
  content
  ---
*/

.detail-post__content {
  max-width: 840px;
  margin: 0 auto;
}

/*
  Adjust item-split
  ...
*/

.detail-post__content .item-split {
  margin: 64px 0;
}
.detail-post__content .item-split +  .item-split {
  margin-top: -16px;
}

/*
  box
  ***
*/

.box {
  box-sizing: border-box;
  margin: 42px 0;
  border-radius: 42px;
}

/*
  - ctr
  ---
*/

.box--ctr .box__inset {
  max-width: 840px;
  margin: 0 auto;
}

/*
  - pull
  ---
*/

@media only screen and (min-width: 1151px) {

  .box--pull-small {
    margin-left: -120px;
    margin-right: -120px;
  }

}

.box--pull-large {
  margin-left: -240px;
  margin-right: -240px;
}

/*
  - mar
  ---
*/

.box--mar-small {
  margin-top: 60px;
  margin-bottom: 60px;
}
.box--mar-large {
  margin-top: 120px;
  margin-bottom: 120px;
}

/*
  - pad
  ---
*/

.box--pad-small {
  padding: 40px;
}
.box--pad-large {
  padding: 80px;
}

/*
  - bcg
  ---
*/

.box--bcg {
  background-color: #F6F5F6;
}

/*
  - shd
  ---
*/

.box--shd {
  box-shadow: 42px 42px 84px #F6F5F6;
}

/*
  - brd
  ---
*/

.box--brd {
  border: 15px solid #F6F5F6;
}

/*
  - bcg
  ...
*/

.box--brd.box--bcg {
  border-color: #fff;
}


/*
  site-wrap
  ***
*/

.site-wrap {
  min-width: 400px;
  max-width: 2400px;
  overflow: hidden;
}

/*
  site-head
  ***
*/

.site-head {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 0 42px;
}
.site-head__inset {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid #F6F5F6;
  text-align: center;
}

/*
  - light
  ---
*/

.site-head--light .site-head__inset {
  border-bottom-color: rgba(255, 255, 2555, 0.25);
}

/*
  - layout
  ...
*/

.--layout-home .site-head--light .site-head__inset {
  border-bottom-color: transparent;
}


/*
  Adjust burger
  ---
*/

.site-head .burger {
  z-index: 10;
  float: right;
  display: none;
  margin: 24px 0 0 18px;
}

/*
  Adjust button
  ---
*/

.site-head .button {
  z-index: 10;
  float: right;
  margin: 22px 0 0 0;
}

/*
  logo
  ---
*/

.site-head__logo {
  position: relative;
  z-index: 10;
  float: left;
}

/*
  nav
  ---
*/

.site-head__nav {
  display: block;
}

/*
  list
  ...
*/

.site-head__nav__list {
  margin: 0;
  list-style: none;
  font-size: 0;
}
.site-head__nav__list > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  line-height: 1;
}
.site-head__nav__list > li > a {
  transform: rotate(0.03deg);
  display: block;
  padding: 37px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  color: #231F20;
  transition: color var(--transition-speed) linear;
}

/* hover */

.site-head__nav__list > li:active > a {
  color: #C800A1 !important;
}

/* - active */

.site-head__nav__list > li.--active > a {
  color: #C800A1 !important;
}

/*
  - light
  ---
*/

.site-head--light .site-head__nav__list > li > a {
  color: #fff;
}

/*
  call
  ***
*/

.call {
  transform: rotate(0.03deg);
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: #231F20;
}

/*
  - exp
  ---
*/

.call--excp-01 {
  padding-bottom: 56px;
}

/*
  Adjust icon
  ---
*/

.call .icon {
  display: block;
  margin: 0 auto 12px auto;
  fill: #C800A1;
}

/*
  item-fake
  ***
*/

.item-fake__inset {
  text-align: center;
  font-size: 16px;
}

/*
  item-split
  ***
*/

.item-split__inset {
  position: relative;
  padding: 32px 0;
  font-size: 17px;
}

/*
  Adjust subtitle
  ---
*/

.item-split .subtitle {
  font-size: 15px;
}

/*
  image
  ---
*/

.item-split__image {
  position: absolute;
  left: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  background: #72676F center center no-repeat;
  background-size: cover;
  border-radius: 24px;
}

/*
  - align
  ...
*/

@media only screen and (min-width: 1051px) {

  .item-split--align-right .item-split__image {
    left: 0;
    right: 50%;
  }

}

/*
  content
  ---
*/

.item-split__content {
  box-sizing: border-box;
  width: 50%;
  position: relative;
  float: left;
  padding-right: 112px;
}

/*
  - align
  ...
*/

@media only screen and (min-width: 1051px) {

  .item-split--align-right .item-split__content {
    float: right;
    padding: 0 0 0 112px;;
  }

}

/*
  title
  ---
*/

.item-split__title {
  margin: 0;
}

/*
  format
  ---
*/

.item-split__format {
  margin: 16px 0 -16px 0;
}

/*
  section-info
  ***
*/

.section-info {
  position: relative;
}

/*
  - excp
  ---
*/

.section-info--excp-01 {
  margin-top: 102px;
}
.section-info--excp-01 + .section-info--excp-01 {
  margin-top: 74px;
}

/*
  head
  ---
*/

.section-info__head {
  width: 300px;
  float: left;
}

/*
  - size
  ...
*/

@media only screen and (min-width: 1351px) {

  .section-info--size-large .section-info__head {
    width: 420px;
  }

}

/*
  content
  ---
*/

.section-info__content {
  margin-left: 434px;
}

/*
  - size
  ...
*/

@media only screen and (min-width: 1351px) {

  .section-info--size-large .section-info__content {
    margin-left: 524px;
  }

}

/*
  table-prices
  ***
*/

.table-prices.table {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

/*
  Adjust button
  ---
*/

.table-prices---button.button {
  margin: 24px 0 0 0;
}

/*
  table
  ---
*/

.table-prices__table {
  border-collapse: separate;
  border-spacing: 0 4px;
  font-size: 15px;
}

/*
  CELLS
  ...
*/

.table-prices__table th, 
.table-prices__table td {
  background-color: #fff;
  border: none;
}
.table-prices__table th {
  border-radius: 8px 0 0 8px;
  font-weight: 400;
}
.table-prices__table td {
  border-radius: 0 8px 8px 0;
  text-align: right;
  font-weight: 700;
  color: #C800A1;
}

/*
  gallery
  ***
*/

.gallery {
  margin: 16px -8px 0 -8px;
  font-size: 0;
}

/*
  item
  ---
*/

.gallery-item {
  width: 25%;
  display: inline-block;
  margin-bottom: 16px;
}

/*
  LINK, IMG
  ...
*/

.gallery-item a, 
.gallery-item a img {
  display: block;
}
.gallery-item a {
  overflow: hidden;
  margin: 0 8px;
  border-radius: 8px;
}
.gallery-item a img {
  width: 100%;
  transition: transform 150ms ease-in-out;
}

/* active */

.gallery-item a:active img {
  transform: scale(1.1);
}

/*
  accordion
  ***
*/

.accordion {
  position: relative;
  margin: 16px 0 16px 0;
  background-color: #fcfbfc;
  border: 1px solid #F0EEF0;
  border-radius: 24px;
  transition: 150ms linear;
}

/* - active */

.accordion.--active {
  background-color: #fff;
}

/*
  + same
  ---
*/

.accordion + .accordion {
  margin-top: -6px;
}

/*
  title
  ---
*/

.accordion__title {
  transform: rotate(0.03deg);
  position: relative;
  overflow: hidden;
  padding: 18px 64px 18px 26px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #231F20;
  cursor: pointer;
  transition: color var(--transition-speed) linear;
}

/* - active */

.accordion.--active .accordion__title {
  color: #C800A1;
}

/*
  Icon
  ...
*/

.accordion__title:before, 
.accordion__title:after {
  content: '';
  width: 14px;
  height: 2px;
  position: absolute;
  right: 26px;
  top: 50%;
  margin-top: -2px;
  transform-origin: center center;
  background-color: #2A2A2C;
  border-radius: 10px;
} 
.accordion__title:after {
  transform: rotate(90deg);
  transition: 150ms linear;
}

/* - active */

.accordion.--active .accordion__title:after {
  opacity: 0;
}

/*
  content
  ---
*/

.accordion__content {
  overflow: hidden;
  padding: 0 84px 16px 26px;
}

/*
  item-box
  ***
*/

.item-box__inset {
  padding: 32px 34px;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(93, 84, 91, 0.12);
  border-radius: 24px;
  font-size: 16px;
}

/*
  Adjust icon
  ---
*/

.item-box .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background-color: #F3EBF1;
  border-radius: 8px;
}

/*
  title
  ---
*/

.item-box__title {
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis
}

/*
  excerpt
  ---
*/

.item-box__excerpt {
  margin: 12px 0 0 0;

}

/*
  item-gen
  ***
*/

.item-gen__inset {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #72676F;
}

/* active */

a.item-gen__inset:active {
  color: #72676F;
}

/*
  Adjust icon
  ---
*/

.item-gen .icon {
  position: absolute;
  right: 32px;
  top: 32px;
  background-color: #C800A1;
}

/*
  SVG
  ...
*/

.item-gen .icon svg {
  fill: #fff;
}

/*
  Adjust rating
  ---
*/

.item-gen .rating {
  margin: 12px 0 10px 0;
}

/*
  image
  ---
*/

.item-gen__image, 
.item-gen__image img {
  display: block;
  border-radius: 24px 24px 0 0;
}
.item-gen__image img {
  width: 100%;
}

/*
  content
  ---
*/

.item-gen__content {
  position: relative;
  padding: 32px 38px;
  background-color: #fff;
  border: 1px solid #F6F5F6;
  border-top: none;
  border-radius: 24px;
}

/*
  + Image
  ---
*/

.item-gen__image + .item-gen__content {
  border-radius: 0 0 24px 24px;
}

/*
  letter
  ---
*/

.item-gen__letter {
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  display: block;
  margin: 0 auto 16px auto;
  padding-top: 12px;
  background-color: #f0d8eb;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
  font-weight: 400;
  font-size: 20px;
  color: #4d4749;
}

/*
  more
  ---
*/

.item-gen__more {
  transform: rotate(0.03deg);
  display: block;
  margin-top: 12px;
  text-decoration: underline;
  font-weight: 700;
  font-size: 15px;
  color: #C800A1;
}

/*
  date
  ---
*/

.item-gen__date {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  color: #90848D;
}

/*
  title
  ---
*/

.item-gen__title {
  overflow: hidden;
  display: -webkit-box;
  margin: 0;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* active */

a.item-gen__inset:active .item-gen__title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: #C800A1;
}

/*
  excerpt
  ---
*/

.item-gen__excerpt {
  overflow: hidden;
  display: -webkit-box;
  margin: 12px 0 0 0;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*
  item-office
  ***
*/

.item-office__inset {
  position: relative;
  padding: 32px 42px;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(93, 84, 91, 0.12);
  border: 1px solid #F6F5F6;
  border-radius: 24px;
  font-size: 16px;
}

/*
  Adjust button
  ---
*/

.item-office .button {
  position: absolute;
  right: 42px;
  top: 27px;
  margin: 0;
}

/*
  title
  ---
*/

.item-office__title {
  float: left;
  margin: 0 0 0 -2px;
}

/*
  LINK
  ...
*/

@media only screen and (min-width: 601px) {

  .item-office__title a {
    text-decoration: none;
    color: #231F20 !important;
  }

}

/*
  name
  ---
*/

.item-office__name {
  margin: 0;
  font-weight: 700;
}

/*
  address
  ---
*/

.item-office__address {
  margin: 8px 0 0 0;
}

/*
  Adjust glink
  ...
*/

.item-office__address .glink {
  float: right;
  margin: 0 2px 0 0;
}

/*
  data
  ---
*/

.item-office__data {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 8px 0 0 0;
  list-style: none;
}
.item-office__data > li {
  margin: 0;
}
.item-office__data > li > b {
  font-weight: 400;
  color: #5A3754;
}

/*
  contacts
  ---
*/

.item-office__contacts {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid #F6F5F6;
}

/*
  - simple
  ...
*/

.item-office--simple .item-office__contacts {
  padding-top: 0;
  border-top: none;
}

/*
  Adjust icon
  ...
*/

.item-office__contacts .icon {
  margin-right: 6px;
  fill: #C800A1;
}

/*
  - email
*/

.item-office__contacts .icon--email {
  top: -1px;
}

/*
  LINK
  ...
*/

.item-office__contacts a {
  transform: rotate(0.03deg);
  text-decoration: none;
  font-weight: 700;
  color: #231F20 !important;
}

/* hover */

.item-office__contacts a:active {
  color: #C800A1 !important;
}

/*
  site-promo
  ***
*/

.site-promo {
  position: relative;
  padding: 0 42px;
  background: #2B0023 center center no-repeat;
  background-size: cover;
  color: #fff;
}
.site-promo__inset {
  max-width: 1280px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 300px 0 165px 0;
}

/*
  Vignette
  ---
*/

.site-promo:before, 
.site-promo:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.site-promo:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.site-promo:after {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

/*
  - flash
  ---
*/

.site-promo--flash .site-promo__inset {
  padding-top: 290px;
}

/*
  - layout
  ...
*/

.--layout-home .site-promo {
  background-position: center top;
}
.--layout-home .site-promo__inset {
  padding-top: 430px;
  padding-bottom: 140px;
}

/*
  - pull
  ---
*/

.site-promo--pull .site-promo__inset {
  padding-bottom: 190px;
}

/*
  Adjust button
  ---
*/

.site-promo .button {
  margin: 32px 18px 0 0;
}
.site-promo .button--color-white {
  border-color: transparent;
}

/*
  Adjust flash
  ---
*/

.site-promo .flash {
  position: absolute;
  left: 0;
  right: 0;
  top: 141px;
  border-radius: 0 0 8px 8px;
}

/*
  title
  ---
*/

.site-promo__title {
  margin: 0;
  color: inherit;
}

/*
  excerpt
  ---
*/

.site-promo__excerpt {
  margin: 12px 0 0 4px;
  font-size: 20px;
}

/*
  Adjust glink
  ...
*/

.site-promo__excerpt .glink {
  margin: 4px 0 0 16px;
}

/*
  scroller
  ---
*/

.site-promo__scroller {
  position: absolute;
  right: 84px;
  bottom: 64px;
  z-index: 2;
}

/*
  site-section
  ***
*/

.site-section {
  padding: 0 42px;
  background: center center no-repeat;
  background-size: cover;
}
.site-section__inset {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
}

/*
  - size
  ---
*/

.site-section__inset--size-small {
  max-width: 960px;
}

/*
  - color
  ---
*/

.site-section--color-gray {
  background-color: #F6F5F6;
}
.site-section--color-purple {
  background-color: #B40091;
}

/*
  Adjust slick-arrow
  ...
*/

.site-section--color-purple .slick-arrow {
  border-color: #fff;
}
.site-section--color-purple .slick-arrow:before, 
.site-section--color-purple .slick-arrow:after {
  background-color: #fff;
}

/*
  - push
  ---
*/

.site-section--push {
  margin-top: -88px;
}
.site-section--push .site-section__inset {
  padding-top: 0;
}

/*
  - excp
  ---
*/

.site-section__inset--excp-01 {
  padding-bottom: 190px;
}

@media only screen and (min-width: 1601px) {

  /*
    col
    ---
  */

  .site-section__col {
    width: 45%;
    width: calc(50% - 24px);
  }

  /*
    - align
    ...
  */

  .site-section__col--align-left {
    float: left;
  }
  .site-section__col--align-right {
    float: right;
  }

}

/*
  - excp
  ...
*/

.site-section__col--excp-01 {
  margin-top: 74px;
}

/*
  button
  ---
*/

.site-section__button.button {
  display: table;
  margin: 42px auto 0 auto;
}

/*
  pull
  ---
*/

@media only screen and (min-width: 1601px) {

  .site-section__pull {
    margin-left: -120px;
    margin-right: -120px;
  }

}

/*
  push
  ---
*/

.site-section__push {
  max-width: 940px;
  margin: 0 auto;
}

/*
  head
  ---
*/

.site-section__head {
  display: block;
}

/*
  - align
  ...
*/

.site-section__head--align-left {
  width: 320px;
  float: left;
}

/*
  content
  ---
*/

.site-section__content {
  display: block;
  margin-top: 42px;
}

/*
  + head
  ...
*/

.site-section__head--align-left + .site-section__content {
  margin-left: 420px;
  margin-top: 0;
}

/*
  site-offices
  ***
*/

.site-offices {
  position: relative;
  padding: 0 42px;
  border-top: 1px solid #F0EEF0;
}

/*
  Adjust list
  ---
*/

.site-offices .list {
  max-width: 1280px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-top: 120px;
}

/*
  map
  ---
*/

.site-offices__map {
  height: 680px;
  margin: -68px -42px 0 -42px;
  background: #F0EEF0 center center no-repeat;
  background-size: cover;
}

/*
  site-message
  ***
*/

.site-message  {
  padding: 240px 24px 120px 24px;
  text-align: center;
  font-size: 20px;
}

/*
  Adjust button
  ---
*/

.site-message .button {
  margin: 34px 12px 0 12px;
}

/*
  title
  ---
*/

.site-message__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.site-message__excerpt {
  margin: 24px 0 0 0;
}

/*
  site-foot
  ***
*/

.site-foot {
  padding: 0 42px;
  background-color: #3F0032;
  color: #C3B8C2;
}
.site-foot__inset {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0 80px 0;
}

/*
  LINKS
  ---
*/

.site-foot a {
  color: #fff;
}

/*
  BOLD
  ---
*/

.site-foot b {
  font-weight: 400;
  color: #fff
}

/*
  Adjust item-office
  ---
*/

.site-foot .item-office__inset {
  box-shadow: none;
  border: none;
}

/*
  Adjust list
  ---
*/

.site-foot .list {
  position: relative;
  margin-top: -100px;
  top: -94px;
  overflow: hidden;
}
.site-foot .list__inset {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 24px;
}

/*
  line
  ...
*/

.site-foot .list:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #F6F5F6;
}

/*
  about
  ---
*/

.site-foot__about {
  width: 55%;
  float: left;
}

/*
  logo
  ---
*/

.site-foot__logo {
  display: block;
}

/*
  address
  ---
*/

.site-foot__address {
  display: inline-block;
  vertical-align: top;
  margin: 42px 42px 0 0;
}

/*
  SPAN
  ...
*/

.site-foot__address span {
  display: block;
  line-height: inherit;
}

/*
  note
  ---
*/

.site-foot__note {
  margin: 26px 0 0 0;
}

/*
  socials
  ---
*/

.site-foot__socials {
  margin: 26px 0 0 0;
  font-size: 0;
}

/*
  Adjust icon
  ...
*/

.site-foot__socials .icon {
  margin-right: 16px;
  border: 1px solid #C3B8C2;
  border-radius: 50%;
}

/*
  SVG
*/

.site-foot__socials .icon svg {
  fill: #fff;
}

/*
  nav
  ---
*/

.site-foot__nav {
  width: 37%;
  float: right;
  margin-top: 30px;
}

/*
  title
  ...
*/

.site-foot__nav__title {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #fff;
}

/*
  LINK
  ...
*/

.site-foot__nav a {
  display: block;
  padding: 6px 0;
  line-height: 1.5;
  color: inherit;
}

/* hover */

.site-foot__nav a:active {
  color: #fff;
}

/*
  copy
  ---
*/

.site-foot__copy {
  margin: 64px 0 0 0;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

/*
  SPAN
  ...
*/

.site-foot__copy span:first-child {
  float: left;
}
.site-foot__copy span:last-child {
  float: right;
}

/*
  modal
  ***
*/

.modal {
  pointer-events: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  padding: 5% 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 150ms linear;
}

/* - visible */

.modal.--visible {
  pointer-events: all;
  opacity: 1;
}

/*
  Adjust TITLES
  ---
*/

.modal h1:first-child, 
.modal h2:first-child, 
.modal h3:first-child, 
.modal h4:first-child, 
.modal h5:first-child, 
.modal h6:first-child {
  margin-top: 0;
}

/*
  Adjust icon
  ---
*/

.modal .icon {
  position: absolute;
  right: 32px;
  top: 32px;
  background-color: #C800A1;
}

/*
  SVG
  ...
*/

.modal .icon svg {
  fill: #fff;
}

/*
  window
  ---
*/

.modal__window {
  box-sizing: border-box;
  max-height: calc(100% - 10%);
  width: 480px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px 26px;
  background-color: #fff;
  box-shadow: 32px 32px 64px rgba(35, 31, 18, 0.12);
  border: 20px solid #fff;
  border-radius: 24px;
  transition: transform 150ms ease-in-out;
}

/* - visible */

.modal.--visible .modal__window {
  transform: translate(-50%, -50%) scale(1);
}

/*
  image
  ---
*/

.modal__image {
  display: block;
  margin: 0 0 18px 0;
  box-shadow: 12px 12px 48px rgba(35, 31, 18, 0.12);
  border-radius: 50%;
}

/*
  title
  ---
*/

.modal__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.modal__excerpt {
  margin: 12px 0 0 0;
}

/*
  content
  ---
*/

.modal__content {
  margin-top: 32px;
}

/*
  HOVERS
  ======
*/

@media (hover: hover) {

  a:hover {
    text-decoration-thickness: 1px;
    color: #000;
  }

  /***/

  a.button:hover {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    color: #C800A1;
  }
  a.button--color-primary:hover {
    background-color: #dd16b5;
    border-color: #dd16b5;
    color: #fff;
  }

  /***/

  .link:hover {
    background-color: #F6F5F6;
    color: #72676F;
  }

  /***/

  .slick-arrow:hover:before, 
  .slick-arrow:hover:after {
    background-color: #fff;
  }

  /***/

  .flash__link:hover {
    color: #fff;
  }

  /***/

  .drop---holder:hover .drop {
    pointer-events: all;
    opacity: 1;
  }

  /***/

  .gallery-item a:hover img {
    transform: scale(1.1);
  }

  /***/

  .nav-pagination .icon:hover {
    background-color: #C800A1;
    border-color: #C800A1;
    color: #fff;
  }
  .nav-pagination .icon:hover svg {
    fill: #fff;
  }
  .nav-pagination__link:hover {
    background-color: #C800A1;
    border-color: #C800A1;
    color: #fff;
  }

  /***/

  a.list-logos__item:hover {
    filter: grayscale(0);
    opacity: 1;
  }

  /***/

  a.item-gen__inset:hover {
    color: #72676F;
  }
  a.item-gen__inset:hover .item-gen__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: #C800A1;
  }

  /***/

  .item-office__contacts a:hover {
    color: #C800A1 !important;
  }

  /***/

  .site-head__nav__list > li:hover > a {
    color: #C800A1 !important;
  }

  /***/

  .site-foot__nav a:hover {
    color: #fff;
  }

}