/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #231f20;
  --sk-color-white: white;
  --sk-color-primary: #969469;
  --sk-color-primary-light: #c59454;
  --sk-color-primary-dark: #6b5538;
  --sk-color-second: #1890FF;
  --sk-color-second-light: #40A9FF;
  --sk-color-second-dark: #0050B3;
  --sk-color-third: #13C2C2;
  --sk-color-third-light: #5CDBD3;
  --sk-color-third-dark: #006D75;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-second);
  --sk-color-bg-second: #f2f6fd;
  /* Typography */
  --sk-color-text: #231f20;
  --sk-color-text-heading: #6b5538;
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #c8c8c8;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

.hero-block {
  padding: 70px 30px 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1340px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block {
    padding: 129px 30px 143px;
  }
}
.hero-block__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block__content-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 23px 30px;
  width: 586px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-block__content-wrapper {
    width: 780px;
    padding: 28px 60px 30px;
  }
}
.hero-block__subtitle {
  color: #fff;
  font-family: var(--sk-font-primary);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 31px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 1200px) {
  .hero-block__subtitle {
    font-size: 28px;
    margin-bottom: 41px;
  }
}
.hero-block__subtitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #eadbac;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .hero-block__subtitle::after {
    width: 120px;
    bottom: -15px;
  }
}
.hero-block__title {
  color: #eadbac;
  font-family: var(--sk-font-secondary);
  font-size: 32.5px;
  font-weight: 400;
  font-style: normal;
  line-height: 32.5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 !important;
}
@media (max-width: 375px) {
  .hero-block__title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .hero-block__title {
    font-size: 50px;
    line-height: 50px;
  }
}
