* {
  box-sizing: border-box; }
  *:before, *:after {
    box-sizing: border-box; }
  *:focus {
    outline: 0; }

/* Base */
body, html {
  margin: 0;
  padding: 0; }

body {
  font-family: "Gilroy", sans-serif !important;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  background: #fff;
  overflow-x: hidden; }
  @media (min-width: 768px) {
    body {
      font-size: 18px; } }

iframe {
  border: 0; }

img {
  max-width: 100%;
  max-height: 100%; }

/* Headers */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1;
  font-weight: normal;
  margin: 0; }

h1, .h1 {
  font-size: 22px; }
  @media (min-width: 768px) {
    h1, .h1 {
      font-size: 36px; } }

h2, .h2 {
  font-size: 22px; }
  @media (min-width: 768px) {
    h2, .h2 {
      font-size: 32px; } }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 65px; } }

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-size: 16px; }
  @media (min-width: 768px) {
    h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
      font-size: 26px; } }

/* Text */
p {
  margin: 10px 0; }
  p:first-child {
    margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }

a {
  text-decoration: none;
  color: inherit;
  transition: .2s ease; }
  a:hover {
    text-decoration: none;
    color: #D8B571; }

b, strong {
  font-weight: 700; }

i, em {
  font-style: italic; }

/* Lists */
ul, ol {
  overflow: hidden;
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc; }
  ul:first-child, ol:first-child {
    margin-top: 0; }
  ul:last-child, ol:last-child {
    margin-bottom: 0; }

ol {
  list-style-type: decimal; }

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: 0.3s opacity;
  opacity: 0;
  visibility: hidden;
  z-index: -1; }
  .preloader svg {
    width: 50px;
    height: 50px;
    animation: preloader-rotate 2s infinite linear;
    fill: #ECCF8C; }
  .preloader.show {
    opacity: 1;
    visibility: visible;
    z-index: 10000; }

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg); } }
.form__field {
  margin-bottom: 10px; }
  @media (min-width: 1200px) {
    .form__field {
      margin-bottom: 15px; } }
  .form__field input:not([type=submit]) {
    background: #D9D9D9;
    border-radius: 30px;
    font-family: "Gilroy", sans-serif;
    border: none;
    height: 36px;
    padding: 10px 20px;
    display: block;
    width: 100%; }
    @media (min-width: 1200px) {
      .form__field input:not([type=submit]) {
        height: 45px; } }
  .form__field [type=submit] {
    padding: 10px 20px;
    border: 0;
    height: 36px;
    display: block;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
    background: linear-gradient(91.86deg, #D1B673 17.86%, #F9E1AA 49.48%, #E1D3B0 84.59%);
    border-radius: 30px;
    transition: .2s; }
    @media (min-width: 1200px) {
      .form__field [type=submit] {
        height: 45px; } }

.feedback__wrapper {
  background: none; }
.feedback__title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px; }
.feedback__response {
  background: none;
  color: #fff;
  font-size: 18px;
  text-align: center; }
  .feedback__response .btn:hover:before {
    content: none; }
  .feedback__response .fancybox-close-small {
    display: none; }

::-webkit-input-placeholder {
  color: #666; }

::-moz-placeholder {
  color: #666; }

:-moz-placeholder {
  color: #666; }

:-ms-input-placeholder {
  color: #666; }

/*::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #555; }
::-webkit-scrollbar-thumb { background: #222; }*/
::-webkit-inner-spin-button {
  display: none; }

::-webkit-calendar-picker-indicator {
  display: none; }

::-webkit-inner-cancel-button {
  display: none; }

::-webkit-clear-button {
  display: none; }

::-webkit-search-cancel-button {
  display: none; }

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none; }

*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none; }

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none; }

input, textarea, select {
  font: inherit;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  transition: all .2s;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff; }
  input.is-error, textarea.is-error, select.is-error {
    border-color: #f00; }

button, [type='submit'], [type='reset'] {
  font: inherit;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  text-decoration: none;
  color: #000;
  outline: none; }

textarea {
  resize: none; }

[type='radio'], [type='checkbox'] {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0; }

.slider__controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 15px 0; }
  @media (min-width: 992px) {
    .slider__controls {
      margin: 25px 0; } }

.control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px; }
  @media (min-width: 992px) {
    .control {
      width: 36px;
      height: 36px; } }
  .control svg {
    width: 100%;
    height: 100%; }
  .control.prev svg {
    transform: rotate(180deg); }

.btn {
  border: 1px solid #D8B571;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  background: transparent;
  min-width: 197px;
  max-width: 100%;
  width: 250px;
  font-weight: 500;
  height: 40px;
  font-size: 12px; }
  @media (min-width: 992px) {
    .btn {
      font-size: 16px;
      height: 60px;
      border-width: 2px; } }

@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Thin.eot");
  src: local("Gilroy Thin"), local("Gilroy-Thin"), url("fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Thin.woff") format("woff"), url("fonts/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-UltraLight.eot");
  src: local("Gilroy UltraLight"), local("Gilroy-UltraLight"), url("fonts/Gilroy-UltraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-UltraLight.woff") format("woff"), url("fonts/Gilroy-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Light.eot");
  src: local("Gilroy Light"), local("Gilroy-Light"), url("fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Light.woff") format("woff"), url("fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Regular.woff") format("woff"), url("fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Medium.woff") format("woff"), url("fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-SemiBold.eot");
  src: local("Gilroy SemiBold"), local("Gilroy-SemiBold"), url("fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-SemiBold.woff") format("woff"), url("fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Heavy.eot");
  src: local("Gilroy Heavy"), local("Gilroy-Heavy"), url("fonts/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Heavy.woff") format("woff"), url("fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-ExtraBold.eot");
  src: local("Gilroy ExtraBold"), local("Gilroy-ExtraBold"), url("fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-ExtraBold.woff") format("woff"), url("fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
/*
 * base on bootstrap 4
 */
/* container */
.container {
  width: 100%;
  max-width: 100vw;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 1400px) {
    .container {
      max-width: 1344px;
      padding-right: 10px;
      padding-left: 10px; } }

.m-auto {
  margin: auto; }

/* row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px; }
  @media (min-width: 576px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }
  @media (min-width: 768px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }
  @media (min-width: 992px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }
  @media (min-width: 1200px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }
  @media (min-width: 1400px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

/* col */
.col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px; }
  @media (min-width: 576px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 768px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 992px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 1200px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 10px;
      padding-left: 10px; } }
  @media (min-width: 1400px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 10px;
      padding-left: 10px; } }

.col {
  max-width: 100%;
  flex-basis: 0;
  flex-grow: 1; }

.col-auto {
  width: auto;
  max-width: none;
  flex: 0 0 auto; }

.col-1 {
  max-width: 8.3333333333%;
  flex: 0 0 8.3333333333%; }

.col-2 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%; }

.col-3 {
  max-width: 25%;
  flex: 0 0 25%; }

.col-4 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%; }

.col-5 {
  max-width: 41.6666666667%;
  flex: 0 0 41.6666666667%; }

.col-6 {
  max-width: 50%;
  flex: 0 0 50%; }

.col-7 {
  max-width: 58.3333333333%;
  flex: 0 0 58.3333333333%; }

.col-8 {
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%; }

.col-9 {
  max-width: 75%;
  flex: 0 0 75%; }

.col-10 {
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%; }

.col-11 {
  max-width: 91.6666666667%;
  flex: 0 0 91.6666666667%; }

.col-12 {
  max-width: 100%;
  flex: 0 0 100%; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

.offset-12 {
  margin-left: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.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 (min-width: 576px) {
  .col-sm {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 576px) {
  .col-sm-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 576px) {
  .col-sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 576px) {
  .col-sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 576px) {
  .col-sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 576px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-3 {
    margin-left: 25%; } }

@media (min-width: 576px) {
  .offset-sm-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-6 {
    margin-left: 50%; } }

@media (min-width: 576px) {
  .offset-sm-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-9 {
    margin-left: 75%; } }

@media (min-width: 576px) {
  .offset-sm-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 576px) {
  .order-sm-first {
    order: -1; } }

@media (min-width: 576px) {
  .order-sm-last {
    order: 13; } }

@media (min-width: 576px) {
  .order-sm-0 {
    order: 0; } }

@media (min-width: 576px) {
  .order-sm-1 {
    order: 1; } }

@media (min-width: 576px) {
  .order-sm-2 {
    order: 2; } }

@media (min-width: 576px) {
  .order-sm-3 {
    order: 3; } }

@media (min-width: 576px) {
  .order-sm-4 {
    order: 4; } }

@media (min-width: 576px) {
  .order-sm-5 {
    order: 5; } }

@media (min-width: 576px) {
  .order-sm-6 {
    order: 6; } }

@media (min-width: 576px) {
  .order-sm-7 {
    order: 7; } }

@media (min-width: 576px) {
  .order-sm-8 {
    order: 8; } }

@media (min-width: 576px) {
  .order-sm-9 {
    order: 9; } }

@media (min-width: 576px) {
  .order-sm-10 {
    order: 10; } }

@media (min-width: 576px) {
  .order-sm-11 {
    order: 11; } }

@media (min-width: 576px) {
  .order-sm-12 {
    order: 12; } }

@media (min-width: 768px) {
  .col-md {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 768px) {
  .col-md-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 768px) {
  .col-md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 768px) {
  .col-md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 768px) {
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 768px) {
  .col-md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 768px) {
  .col-md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 768px) {
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 768px) {
  .col-md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 768px) {
  .col-md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 768px) {
  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 768px) {
  .col-md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 768px) {
  .col-md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 768px) {
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-3 {
    margin-left: 25%; } }

@media (min-width: 768px) {
  .offset-md-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-6 {
    margin-left: 50%; } }

@media (min-width: 768px) {
  .offset-md-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-9 {
    margin-left: 75%; } }

@media (min-width: 768px) {
  .offset-md-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 768px) {
  .order-md-first {
    order: -1; } }

@media (min-width: 768px) {
  .order-md-last {
    order: 13; } }

@media (min-width: 768px) {
  .order-md-0 {
    order: 0; } }

@media (min-width: 768px) {
  .order-md-1 {
    order: 1; } }

@media (min-width: 768px) {
  .order-md-2 {
    order: 2; } }

@media (min-width: 768px) {
  .order-md-3 {
    order: 3; } }

@media (min-width: 768px) {
  .order-md-4 {
    order: 4; } }

@media (min-width: 768px) {
  .order-md-5 {
    order: 5; } }

@media (min-width: 768px) {
  .order-md-6 {
    order: 6; } }

@media (min-width: 768px) {
  .order-md-7 {
    order: 7; } }

@media (min-width: 768px) {
  .order-md-8 {
    order: 8; } }

@media (min-width: 768px) {
  .order-md-9 {
    order: 9; } }

@media (min-width: 768px) {
  .order-md-10 {
    order: 10; } }

@media (min-width: 768px) {
  .order-md-11 {
    order: 11; } }

@media (min-width: 768px) {
  .order-md-12 {
    order: 12; } }

@media (min-width: 992px) {
  .col-lg {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 992px) {
  .col-lg-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 992px) {
  .col-lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 992px) {
  .col-lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 992px) {
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 992px) {
  .col-lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 992px) {
  .col-lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 992px) {
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 992px) {
  .col-lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 992px) {
  .col-lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 992px) {
  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 992px) {
  .col-lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 992px) {
  .col-lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 992px) {
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 992px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 992px) {
  .offset-lg-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 992px) {
  .offset-lg-3 {
    margin-left: 25%; } }

@media (min-width: 992px) {
  .offset-lg-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 992px) {
  .offset-lg-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 992px) {
  .offset-lg-6 {
    margin-left: 50%; } }

@media (min-width: 992px) {
  .offset-lg-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 992px) {
  .offset-lg-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 992px) {
  .offset-lg-9 {
    margin-left: 75%; } }

@media (min-width: 992px) {
  .offset-lg-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 992px) {
  .offset-lg-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 992px) {
  .order-lg-first {
    order: -1; } }

@media (min-width: 992px) {
  .order-lg-last {
    order: 13; } }

@media (min-width: 992px) {
  .order-lg-0 {
    order: 0; } }

@media (min-width: 992px) {
  .order-lg-1 {
    order: 1; } }

@media (min-width: 992px) {
  .order-lg-2 {
    order: 2; } }

@media (min-width: 992px) {
  .order-lg-3 {
    order: 3; } }

@media (min-width: 992px) {
  .order-lg-4 {
    order: 4; } }

@media (min-width: 992px) {
  .order-lg-5 {
    order: 5; } }

@media (min-width: 992px) {
  .order-lg-6 {
    order: 6; } }

@media (min-width: 992px) {
  .order-lg-7 {
    order: 7; } }

@media (min-width: 992px) {
  .order-lg-8 {
    order: 8; } }

@media (min-width: 992px) {
  .order-lg-9 {
    order: 9; } }

@media (min-width: 992px) {
  .order-lg-10 {
    order: 10; } }

@media (min-width: 992px) {
  .order-lg-11 {
    order: 11; } }

@media (min-width: 992px) {
  .order-lg-12 {
    order: 12; } }

@media (min-width: 1200px) {
  .col-xl {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 1200px) {
  .col-xl-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 1200px) {
  .col-xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 1200px) {
  .col-xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 1200px) {
  .col-xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 1200px) {
  .col-xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 1200px) {
  .col-xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 1200px) {
  .col-xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 1200px) {
  .col-xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 1200px) {
  .col-xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 1200px) {
  .offset-xl-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 1200px) {
  .offset-xl-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 1200px) {
  .offset-xl-3 {
    margin-left: 25%; } }

@media (min-width: 1200px) {
  .offset-xl-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 1200px) {
  .offset-xl-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 1200px) {
  .offset-xl-6 {
    margin-left: 50%; } }

@media (min-width: 1200px) {
  .offset-xl-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 1200px) {
  .offset-xl-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 1200px) {
  .offset-xl-9 {
    margin-left: 75%; } }

@media (min-width: 1200px) {
  .offset-xl-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 1200px) {
  .offset-xl-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1200px) {
  .order-xl-first {
    order: -1; } }

@media (min-width: 1200px) {
  .order-xl-last {
    order: 13; } }

@media (min-width: 1200px) {
  .order-xl-0 {
    order: 0; } }

@media (min-width: 1200px) {
  .order-xl-1 {
    order: 1; } }

@media (min-width: 1200px) {
  .order-xl-2 {
    order: 2; } }

@media (min-width: 1200px) {
  .order-xl-3 {
    order: 3; } }

@media (min-width: 1200px) {
  .order-xl-4 {
    order: 4; } }

@media (min-width: 1200px) {
  .order-xl-5 {
    order: 5; } }

@media (min-width: 1200px) {
  .order-xl-6 {
    order: 6; } }

@media (min-width: 1200px) {
  .order-xl-7 {
    order: 7; } }

@media (min-width: 1200px) {
  .order-xl-8 {
    order: 8; } }

@media (min-width: 1200px) {
  .order-xl-9 {
    order: 9; } }

@media (min-width: 1200px) {
  .order-xl-10 {
    order: 10; } }

@media (min-width: 1200px) {
  .order-xl-11 {
    order: 11; } }

@media (min-width: 1200px) {
  .order-xl-12 {
    order: 12; } }

@media (min-width: 1400px) {
  .col-xxl {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 1400px) {
  .col-xxl-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 1400px) {
  .col-xxl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 1400px) {
  .col-xxl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 1400px) {
  .col-xxl-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 1400px) {
  .col-xxl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 1400px) {
  .col-xxl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 1400px) {
  .col-xxl-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 1400px) {
  .col-xxl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 1400px) {
  .col-xxl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 1400px) {
  .col-xxl-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 1400px) {
  .col-xxl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 1400px) {
  .col-xxl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 1400px) {
  .col-xxl-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 1400px) {
  .offset-xxl-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 1400px) {
  .offset-xxl-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 1400px) {
  .offset-xxl-3 {
    margin-left: 25%; } }

@media (min-width: 1400px) {
  .offset-xxl-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 1400px) {
  .offset-xxl-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 1400px) {
  .offset-xxl-6 {
    margin-left: 50%; } }

@media (min-width: 1400px) {
  .offset-xxl-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 1400px) {
  .offset-xxl-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 1400px) {
  .offset-xxl-9 {
    margin-left: 75%; } }

@media (min-width: 1400px) {
  .offset-xxl-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 1400px) {
  .offset-xxl-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1400px) {
  .order-xxl-first {
    order: -1; } }

@media (min-width: 1400px) {
  .order-xxl-last {
    order: 13; } }

@media (min-width: 1400px) {
  .order-xxl-0 {
    order: 0; } }

@media (min-width: 1400px) {
  .order-xxl-1 {
    order: 1; } }

@media (min-width: 1400px) {
  .order-xxl-2 {
    order: 2; } }

@media (min-width: 1400px) {
  .order-xxl-3 {
    order: 3; } }

@media (min-width: 1400px) {
  .order-xxl-4 {
    order: 4; } }

@media (min-width: 1400px) {
  .order-xxl-5 {
    order: 5; } }

@media (min-width: 1400px) {
  .order-xxl-6 {
    order: 6; } }

@media (min-width: 1400px) {
  .order-xxl-7 {
    order: 7; } }

@media (min-width: 1400px) {
  .order-xxl-8 {
    order: 8; } }

@media (min-width: 1400px) {
  .order-xxl-9 {
    order: 9; } }

@media (min-width: 1400px) {
  .order-xxl-10 {
    order: 10; } }

@media (min-width: 1400px) {
  .order-xxl-11 {
    order: 11; } }

@media (min-width: 1400px) {
  .order-xxl-12 {
    order: 12; } }

/* display */
.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; } }

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important; } }

@media (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important; } }

@media (min-width: 576px) {
  .d-sm-table {
    display: table !important; } }

@media (min-width: 576px) {
  .d-sm-table-row {
    display: table-row !important; } }

@media (min-width: 576px) {
  .d-sm-table-cell {
    display: table-cell !important; } }

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important; } }

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; } }

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important; } }

@media (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) {
  .d-md-block {
    display: block !important; } }

@media (min-width: 768px) {
  .d-md-table {
    display: table !important; } }

@media (min-width: 768px) {
  .d-md-table-row {
    display: table-row !important; } }

@media (min-width: 768px) {
  .d-md-table-cell {
    display: table-cell !important; } }

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important; } }

@media (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; } }

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important; } }

@media (min-width: 992px) {
  .d-lg-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important; } }

@media (min-width: 992px) {
  .d-lg-table {
    display: table !important; } }

@media (min-width: 992px) {
  .d-lg-table-row {
    display: table-row !important; } }

@media (min-width: 992px) {
  .d-lg-table-cell {
    display: table-cell !important; } }

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important; } }

@media (min-width: 992px) {
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; } }

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .d-xl-table {
    display: table !important; } }

@media (min-width: 1200px) {
  .d-xl-table-row {
    display: table-row !important; } }

@media (min-width: 1200px) {
  .d-xl-table-cell {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important; } }

@media (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important; } }

@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important; } }

@media (min-width: 1400px) {
  .d-xxl-inline-block {
    display: inline-block !important; } }

@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important; } }

@media (min-width: 1400px) {
  .d-xxl-table {
    display: table !important; } }

@media (min-width: 1400px) {
  .d-xxl-table-row {
    display: table-row !important; } }

@media (min-width: 1400px) {
  .d-xxl-table-cell {
    display: table-cell !important; } }

@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important; } }

@media (min-width: 1400px) {
  .d-xxl-inline-flex {
    display: inline-flex !important; } }

.animate {
  transition-delay: 0s;
  transition-duration: 1s;
  animation-duration: 2s; }
  .animate.fadeInUp {
    transition-property: transform, opacity;
    transform: translateY(30px);
    opacity: 0; }
    .animate.fadeInUp.animated {
      transform: translateY(0);
      opacity: 1; }
  .animate.fadeInLeft {
    transition-property: transform, opacity;
    transform: translateX(-50%);
    opacity: 0; }
    .animate.fadeInLeft.animated {
      transform: translateX(0);
      opacity: 1; }
  .animate.fadeIn {
    transition-property: opacity;
    opacity: 0; }
    .animate.fadeIn.animated {
      opacity: 1; }
  .animate.fadeInRight {
    transition-property: transform, opacity;
    transform: translateX(50%);
    opacity: 0; }
    .animate.fadeInRight.animated {
      transform: translateY(0);
      opacity: 1; }
  .animate[data-duration="0.1"] {
    transition-duration: 0.1s; }
  .animate[data-delay="0.1"] {
    transition-delay: 0.1s; }
  .animate[data-duration="0.2"] {
    transition-duration: 0.2s; }
  .animate[data-delay="0.2"] {
    transition-delay: 0.2s; }
  .animate[data-duration="0.3"] {
    transition-duration: 0.3s; }
  .animate[data-delay="0.3"] {
    transition-delay: 0.3s; }
  .animate[data-duration="0.4"] {
    transition-duration: 0.4s; }
  .animate[data-delay="0.4"] {
    transition-delay: 0.4s; }
  .animate[data-duration="0.5"] {
    transition-duration: 0.5s; }
  .animate[data-delay="0.5"] {
    transition-delay: 0.5s; }
  .animate[data-duration="0.6"] {
    transition-duration: 0.6s; }
  .animate[data-delay="0.6"] {
    transition-delay: 0.6s; }
  .animate[data-duration="0.7"] {
    transition-duration: 0.7s; }
  .animate[data-delay="0.7"] {
    transition-delay: 0.7s; }
  .animate[data-duration="0.8"] {
    transition-duration: 0.8s; }
  .animate[data-delay="0.8"] {
    transition-delay: 0.8s; }
  .animate[data-duration="0.9"] {
    transition-duration: 0.9s; }
  .animate[data-delay="0.9"] {
    transition-delay: 0.9s; }
  .animate[data-duration="1"] {
    transition-duration: 1s; }
  .animate[data-delay="1"] {
    transition-delay: 1s; }
  .animate[data-duration="1.1"] {
    transition-duration: 1.1s; }
  .animate[data-delay="1.1"] {
    transition-delay: 1.1s; }
  .animate[data-duration="1.2"] {
    transition-duration: 1.2s; }
  .animate[data-delay="1.2"] {
    transition-delay: 1.2s; }
  .animate[data-duration="1.3"] {
    transition-duration: 1.3s; }
  .animate[data-delay="1.3"] {
    transition-delay: 1.3s; }
  .animate[data-duration="1.4"] {
    transition-duration: 1.4s; }
  .animate[data-delay="1.4"] {
    transition-delay: 1.4s; }
  .animate[data-duration="1.5"] {
    transition-duration: 1.5s; }
  .animate[data-delay="1.5"] {
    transition-delay: 1.5s; }
  .animate[data-duration="1.6"] {
    transition-duration: 1.6s; }
  .animate[data-delay="1.6"] {
    transition-delay: 1.6s; }
  .animate[data-duration="1.7"] {
    transition-duration: 1.7s; }
  .animate[data-delay="1.7"] {
    transition-delay: 1.7s; }
  .animate[data-duration="1.8"] {
    transition-duration: 1.8s; }
  .animate[data-delay="1.8"] {
    transition-delay: 1.8s; }
  .animate[data-duration="1.9"] {
    transition-duration: 1.9s; }
  .animate[data-delay="1.9"] {
    transition-delay: 1.9s; }
  .animate[data-duration="2"] {
    transition-duration: 2s; }
  .animate[data-delay="2"] {
    transition-delay: 2s; }
  .animate[data-duration="2.1"] {
    transition-duration: 2.1s; }
  .animate[data-delay="2.1"] {
    transition-delay: 2.1s; }
  .animate[data-duration="2.2"] {
    transition-duration: 2.2s; }
  .animate[data-delay="2.2"] {
    transition-delay: 2.2s; }
  .animate[data-duration="2.3"] {
    transition-duration: 2.3s; }
  .animate[data-delay="2.3"] {
    transition-delay: 2.3s; }
  .animate[data-duration="2.4"] {
    transition-duration: 2.4s; }
  .animate[data-delay="2.4"] {
    transition-delay: 2.4s; }
  .animate[data-duration="2.5"] {
    transition-duration: 2.5s; }
  .animate[data-delay="2.5"] {
    transition-delay: 2.5s; }
  .animate[data-duration="2.6"] {
    transition-duration: 2.6s; }
  .animate[data-delay="2.6"] {
    transition-delay: 2.6s; }
  .animate[data-duration="2.7"] {
    transition-duration: 2.7s; }
  .animate[data-delay="2.7"] {
    transition-delay: 2.7s; }
  .animate[data-duration="2.8"] {
    transition-duration: 2.8s; }
  .animate[data-delay="2.8"] {
    transition-delay: 2.8s; }
  .animate[data-duration="2.9"] {
    transition-duration: 2.9s; }
  .animate[data-delay="2.9"] {
    transition-delay: 2.9s; }
  .animate[data-duration="3"] {
    transition-duration: 3s; }
  .animate[data-delay="3"] {
    transition-delay: 3s; }
  .animate[data-duration="3.1"] {
    transition-duration: 3.1s; }
  .animate[data-delay="3.1"] {
    transition-delay: 3.1s; }
  .animate[data-duration="3.2"] {
    transition-duration: 3.2s; }
  .animate[data-delay="3.2"] {
    transition-delay: 3.2s; }
  .animate[data-duration="3.3"] {
    transition-duration: 3.3s; }
  .animate[data-delay="3.3"] {
    transition-delay: 3.3s; }
  .animate[data-duration="3.4"] {
    transition-duration: 3.4s; }
  .animate[data-delay="3.4"] {
    transition-delay: 3.4s; }
  .animate[data-duration="3.5"] {
    transition-duration: 3.5s; }
  .animate[data-delay="3.5"] {
    transition-delay: 3.5s; }
  .animate[data-duration="3.6"] {
    transition-duration: 3.6s; }
  .animate[data-delay="3.6"] {
    transition-delay: 3.6s; }
  .animate[data-duration="3.7"] {
    transition-duration: 3.7s; }
  .animate[data-delay="3.7"] {
    transition-delay: 3.7s; }
  .animate[data-duration="3.8"] {
    transition-duration: 3.8s; }
  .animate[data-delay="3.8"] {
    transition-delay: 3.8s; }
  .animate[data-duration="3.9"] {
    transition-duration: 3.9s; }
  .animate[data-delay="3.9"] {
    transition-delay: 3.9s; }
  .animate[data-duration="4"] {
    transition-duration: 4s; }
  .animate[data-delay="4"] {
    transition-delay: 4s; }
  .animate[data-duration="4.1"] {
    transition-duration: 4.1s; }
  .animate[data-delay="4.1"] {
    transition-delay: 4.1s; }
  .animate[data-duration="4.2"] {
    transition-duration: 4.2s; }
  .animate[data-delay="4.2"] {
    transition-delay: 4.2s; }
  .animate[data-duration="4.3"] {
    transition-duration: 4.3s; }
  .animate[data-delay="4.3"] {
    transition-delay: 4.3s; }
  .animate[data-duration="4.4"] {
    transition-duration: 4.4s; }
  .animate[data-delay="4.4"] {
    transition-delay: 4.4s; }
  .animate[data-duration="4.5"] {
    transition-duration: 4.5s; }
  .animate[data-delay="4.5"] {
    transition-delay: 4.5s; }
  .animate[data-duration="4.6"] {
    transition-duration: 4.6s; }
  .animate[data-delay="4.6"] {
    transition-delay: 4.6s; }
  .animate[data-duration="4.7"] {
    transition-duration: 4.7s; }
  .animate[data-delay="4.7"] {
    transition-delay: 4.7s; }
  .animate[data-duration="4.8"] {
    transition-duration: 4.8s; }
  .animate[data-delay="4.8"] {
    transition-delay: 4.8s; }
  .animate[data-duration="4.9"] {
    transition-duration: 4.9s; }
  .animate[data-delay="4.9"] {
    transition-delay: 4.9s; }
  .animate[data-duration="5"] {
    transition-duration: 5s; }
  .animate[data-delay="5"] {
    transition-delay: 5s; }
  .animate[data-duration="5.1"] {
    transition-duration: 5.1s; }
  .animate[data-delay="5.1"] {
    transition-delay: 5.1s; }

html, body {
  min-width: 320px;
  height: 100%; }

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto; }

.video__container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }
  .video__container iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.header {
  padding: 5px 15px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1); }
  @media (min-width: 992px) {
    .header {
      padding: 5px 48px; } }
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo {
    width: 100px; }
  .header__content {
    display: flex;
    align-items: center;
    gap: 35px; }
  .header__menu {
    display: none; }
    @media (min-width: 992px) {
      .header__menu {
        display: block; } }
  .header__phones-value {
    position: relative;
    display: flex;
    align-items: center; }
    .header__phones-value > a {
      display: flex;
      align-items: center;
      gap: 15px; }
      .header__phones-value > a:before {
        content: '';
        width: 8px;
        height: 8px;
        background: #000;
        clip-path: polygon(0 0, 100% 0, 50% 100%); }
    .header__phones-value:hover .header__phones-list {
      opacity: 1; }
  .header__phones-list {
    position: absolute;
    left: 23px;
    opacity: 0;
    transition: .2s;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 0 15px 10px;
    margin: 0 -15px -10px; }
    .header__phones-list a {
      display: block;
      white-space: nowrap;
      margin-bottom: 5px; }
      .header__phones-list a:last-child {
        margin-bottom: 0; }
  .header__socials {
    display: none; }
    @media (min-width: 992px) {
      .header__socials {
        display: block; } }
    .header__socials .social__item {
      width: 23px;
      height: 23px; }
  .header__mobile {
    position: fixed;
    width: 90%;
    height: calc(100vh - 48px);
    top: 48px;
    left: 0;
    transition: .2s;
    transform: translateX(-100%);
    padding: 15px 20px;
    background: #fff; }
    .header__mobile.active {
      transform: translateX(0); }
    .header__mobile .header__menu {
      display: block;
      margin-bottom: 20px; }
      .header__mobile .header__menu nav ul {
        display: block; }
        .header__mobile .header__menu nav ul a {
          padding: 10px 0;
          display: block; }
    .header__mobile .header__socials {
      display: block; }

nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0; }
  nav ul a {
    padding: 0 18px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px; }
  nav ul li:hover .catalog__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

.footer {
  background: #f3f3f3;
  padding: 28px 0 20px; }
  @media (min-width: 992px) {
    .footer {
      padding-bottom: 45px; } }
  .footer__logo {
    width: 150px;
    margin-bottom: 15px; }
    @media (min-width: 992px) {
      .footer__logo {
        width: 190px;
        margin-bottom: 30px; } }
  .footer__top {
    border-bottom: 2px solid #a9a9a9;
    padding-bottom: 20px; }
    @media (min-width: 992px) {
      .footer__top {
        padding-bottom: 60px; } }
  .footer__item {
    margin-bottom: 12px; }
    @media (min-width: 992px) {
      .footer__item:last-child {
        margin-bottom: 0; } }
    .footer__item-title {
      font-weight: 500;
      margin-bottom: 10px; }
    .footer__item-content {
      font-size: 16px;
      font-weight: 300; }
    .footer__item ul.phones {
      padding-left: 30px; }
      .footer__item ul.phones li {
        margin-bottom: 12px; }
        .footer__item ul.phones li:first-child {
          font-weight: 700; }
        .footer__item ul.phones li:last-child {
          margin-bottom: 0; }
    .footer__item .btn {
      font-size: 12px;
      height: 36px; }
      @media (min-width: 992px) {
        .footer__item .btn {
          font-size: 14px;
          height: 47px; } }
  .footer__menu ul li {
    margin-bottom: 10px; }
    .footer__menu ul li:last-child {
      margin-bottom: 0; }
  .footer__bottom {
    font-size: 12px;
    padding-top: 20px; }
    @media (min-width: 992px) {
      .footer__bottom {
        font-size: 14px;
        padding-top: 38px; } }
  .footer .copyright {
    font-weight: 500;
    margin-bottom: 10px; }
    @media (min-width: 992px) {
      .footer .copyright {
        margin-bottom: 0; } }
  .footer .requisites {
    display: flex;
    gap: 14px;
    font-weight: 300; }
    .footer .requisites__title {
      font-weight: 500; }

@media (min-width: 992px) {
  .burger {
    display: none; } }
.burger.active span {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -4px); }
  .burger.active span:nth-last-child(1) {
    transform: rotate(-45deg) translate(1px, 1px); }
  .burger.active span:nth-last-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2); }
.burger span {
  display: block;
  width: 29px;
  height: 2px;
  margin-bottom: 6px;
  margin-left: auto;
  position: relative;
  background: #526888;
  z-index: 2;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; }
  .burger span:first-child {
    transform-origin: 0% 0%; }
  .burger span:nth-last-child(2) {
    transform-origin: 0% 100%; }
  .burger span:last-child {
    margin-bottom: 0; }

.breadcrumbs {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  white-space: nowrap; }
  .breadcrumbs__item {
    font-size: 14px; }
    .breadcrumbs__item a {
      opacity: 0.7; }

.social {
  display: flex;
  align-items: center;
  gap: 5px; }
  .social__item {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px; }
    .social__item svg {
      fill: #000;
      width: 61%;
      height: 61%; }

.main {
  position: relative; }
  @media (min-width: 992px) {
    .main {
      height: calc(100vh - 49px); } }
  .main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .main__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px; }
    @media (min-width: 992px) {
      .main__content {
        padding-bottom: 100px; } }
    .main__content .btn {
      background: rgba(255, 255, 255, 0.8);
      width: 250px; }
      @media (min-width: 992px) {
        .main__content .btn {
          width: 306px; } }

.catalog {
  position: relative;
  z-index: 1; }
  .catalog__menu {
    background: #fff;
    width: 100%;
    padding: 44px 0 83px;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: .2s;
    visibility: hidden;
    transform: translateY(-10px); }
    .catalog__menu-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 24px; }
    .catalog__menu-item {
      text-align: center;
      text-transform: uppercase; }
      .catalog__menu-item-img {
        display: flex;
        margin-bottom: 22px; }
      .catalog__menu-item-title {
        font-size: 14px;
        font-weight: 500; }
  .catalog__section {
    padding: 30px 0; }
    @media (min-width: 992px) {
      .catalog__section {
        padding: 125px 0 90px; } }
    .catalog__section .heading {
      margin-bottom: 30px; }
      @media (min-width: 992px) {
        .catalog__section .heading {
          margin-bottom: 144px; } }
      .catalog__section .heading h2 {
        font-size: 34px; }
        @media (min-width: 992px) {
          .catalog__section .heading h2 {
            font-size: 97px; } }
      .catalog__section .heading span {
        font-size: 14px; }
        @media (min-width: 992px) {
          .catalog__section .heading span {
            font-size: 40px; } }
    @media (min-width: 992px) {
      .catalog__section.shkafy .heading h2 {
        font-size: 90px; } }
    .catalog__section.prihozhie .choice__block {
      justify-content: flex-start; }
      @media (min-width: 992px) {
        .catalog__section.prihozhie .choice__block {
          gap: 100px; } }
    .catalog__section.prihozhie .choice__content {
      text-align: left; }
    .catalog__section-item {
      padding-bottom: 40px; }
      @media (min-width: 992px) {
        .catalog__section-item {
          padding-bottom: 70px; } }
      .catalog__section-item-img {
        overflow: hidden;
        height: 190px;
        margin-bottom: 20px; }
        @media (min-width: 992px) {
          .catalog__section-item-img {
            margin-bottom: 40px;
            height: 358px; } }
        .catalog__section-item-img img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .catalog__section-item-content {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 15px; }
        @media (min-width: 992px) {
          .catalog__section-item-content {
            align-items: center;
            gap: 30px;
            flex-direction: row; } }
      .catalog__section-item-title {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 18px; }
        @media (min-width: 992px) {
          .catalog__section-item-title {
            font-size: 32px; } }
        .catalog__section-item-title span {
          display: block;
          font-weight: normal;
          font-size: 12px; }
          @media (min-width: 992px) {
            .catalog__section-item-title span {
              font-size: 16px; } }
      .catalog__section-item-btn {
        width: 197px; }
  .catalog__container {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    flex-direction: column;
    gap: 20px;
    text-align: center; }
    @media (min-width: 992px) {
      .catalog__container {
        gap: 70px;
        flex-direction: row;
        text-align: left; } }
    .catalog__container:before {
      content: '';
      position: absolute;
      background: #d9d9d9;
      left: 50%;
      z-index: -1;
      transform: translate(-50%, -50%);
      width: calc(100% + 48px);
      top: 66%;
      height: 80%; }
      @media (min-width: 992px) {
        .catalog__container:before {
          top: 50%;
          height: 75%; } }
  .catalog__img {
    max-width: 587px;
    flex: none; }
  .catalog__title {
    font-weight: 500;
    font-size: 25px; }
    @media (min-width: 992px) {
      .catalog__title {
        font-size: 32px; } }
  .catalog__subtitle {
    font-weight: 200;
    font-size: 14px;
    margin-bottom: 15px; }
    @media (min-width: 992px) {
      .catalog__subtitle {
        font-size: 20px;
        margin-bottom: 50px; } }
  .catalog__btn {
    width: 197px;
    justify-self: center; }
    @media (min-width: 992px) {
      .catalog__btn {
        justify-self: flex-start; } }

.realization {
  margin: 57px 0 40px; }
  @media (min-width: 992px) {
    .realization {
      margin-bottom: 94px; } }
  .realization__block {
    position: relative;
    overflow: hidden; }
    .realization__block-control {
      background: #979797;
      content: "";
      width: 14px;
      height: 77px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(calc(50% - 2px), -50%);
      cursor: pointer; }
    .realization__block-after {
      background-size: cover;
      width: 100%;
      padding-bottom: 57%;
      position: relative; }
    .realization__block-before {
      background-size: cover;
      bottom: 0;
      height: 100%;
      max-width: 100%;
      min-width: 0.6%;
      overflow: visible;
      position: absolute;
      width: 50%;
      animation: first 2s 1 normal ease-in-out 0.1s;
      -webkit-animation: first 2s 1 normal ease-in-out 0.1s; }
      .realization__block-before:before {
        content: '';
        width: 4px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #979797; }
    .realization__block input {
      -moz-appearance: none;
      -webkit-appearance: none;
      border: none;
      background: transparent;
      cursor: col-resize;
      height: 100%;
      left: 0;
      margin: 0;
      outline: none;
      padding: 0;
      position: absolute;
      bottom: 0;
      width: 100%; }
      .realization__block input::-moz-range-track {
        background: transparent; }
      .realization__block input::-ms-track {
        border: none;
        background-color: transparent;
        height: 100vw;
        left: 0;
        outline: none;
        position: relative;
        top: -100vw;
        width: 100%;
        margin: 0;
        padding: 0;
        cursor: col-resize;
        color: transparent; }
      .realization__block input::-ms-fill-lower {
        background-color: transparent; }
      .realization__block input::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 100vw;
        width: 0.5%;
        opacity: 0; }
      .realization__block input::-moz-range-thumb {
        -moz-appearance: none;
        height: 100vw;
        width: 0.5%;
        opacity: 0; }
      .realization__block input::-ms-thumb {
        height: 100vw;
        width: 0.5%;
        opacity: 0; }
      .realization__block input::-ms-tooltip {
        display: none; }

.services {
  margin-bottom: 45px; }
  @media (min-width: 992px) {
    .services {
      margin-bottom: 145px; } }
  .services .heading h2 {
    font-size: 22px; }
    @media (min-width: 992px) {
      .services .heading h2 {
        font-size: 48px; } }
  .services__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px; }
    @media (min-width: 992px) {
      .services__list {
        grid-gap: 20px;
        grid-template-columns: repeat(5, 1fr); } }
  .services__item {
    font-weight: 500;
    text-align: center; }
    .services__item-img {
      display: flex;
      margin-bottom: 15px; }
      @media (min-width: 992px) {
        .services__item-img {
          margin-bottom: 32px; } }
    .services__item-title {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      height: 36px; }
      @media (min-width: 992px) {
        .services__item-title {
          height: 57px;
          font-size: 18px; } }
    .services__item:first-child .services__item-title {
      text-transform: uppercase;
      border: 1px solid #D8B571;
      font-size: 12px;
      height: 36px; }
      @media (min-width: 992px) {
        .services__item:first-child .services__item-title {
          font-size: 14px;
          height: 48px;
          border-width: 2px; } }

.video {
  position: relative;
  margin-bottom: 40px; }
  @media (min-width: 992px) {
    .video {
      margin-bottom: 100px;
      height: calc(100vh - 49px); } }
  .video video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .video__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.about {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .about {
      margin-bottom: 114px; } }
  .about__item {
    display: flex;
    gap: 12px;
    margin-bottom: 25px; }
    @media (min-width: 992px) {
      .about__item {
        display: block;
        margin-bottom: 0; } }
    .about__item-img {
      position: relative;
      width: 150px;
      flex: none; }
      @media (min-width: 992px) {
        .about__item-img {
          width: auto;
          margin-bottom: 40px; } }
      .about__item-img-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 1;
        font-size: 32px; }
        @media (min-width: 992px) {
          .about__item-img-content {
            font-size: 64px; } }
        .about__item-img-content img {
          max-width: 50%; }
    .about__item-title {
      font-weight: 500;
      margin-bottom: 10px; }
    .about__item-text {
      font-weight: 300; }
      .about__item-text a {
        text-decoration: underline; }

.reviews {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .reviews {
      margin-bottom: 90px; } }
  .reviews__container {
    position: relative;
    padding: 30px 0; }
    @media (min-width: 992px) {
      .reviews__container {
        padding: 50px 0 100px; } }
    .reviews__container:before {
      content: '';
      z-index: -1;
      position: absolute;
      background: #f5f5f5;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% + 48px);
      height: 100%; }
  .reviews .heading {
    margin-bottom: 0; }
    .reviews .heading__block span a {
      text-decoration: underline; }
    @media (min-width: 992px) {
      .reviews .heading__block .rating {
        padding-top: 10px; } }
    .reviews .heading__block .rating .c-star {
      width: 26px;
      height: 26px; }
      @media (min-width: 992px) {
        .reviews .heading__block .rating .c-star {
          width: 38px;
          height: 38px; } }
  .reviews__item {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    @media (min-width: 992px) {
      .reviews__item {
        gap: 20px;
        flex-direction: row; } }
    .reviews__item-img {
      flex: none;
      display: flex;
      width: 220px;
      height: 220px; }
      @media (min-width: 992px) {
        .reviews__item-img {
          width: 306px;
          height: 306px; } }
      .reviews__item-img img {
        object-fit: cover;
        width: 100%; }
    .reviews__item-rating {
      margin-bottom: 5px; }
    .reviews__item-name {
      font-weight: 500;
      text-decoration: underline;
      font-size: 18px;
      margin-bottom: 10px; }
      @media (min-width: 992px) {
        .reviews__item-name {
          font-size: 24px;
          margin-bottom: 23px; } }
    .reviews__item-date {
      margin-bottom: 10px; }
      @media (min-width: 992px) {
        .reviews__item-date {
          margin-bottom: 22px; } }
    .reviews__item-text {
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      height: 52px;
      overflow: hidden; }
      @media (min-width: 992px) {
        .reviews__item-text {
          -webkit-line-clamp: 5;
          height: 112px; } }
    .reviews__item-more {
      color: #D8B571;
      font-size: 14px;
      text-decoration: underline;
      cursor: pointer;
      margin-top: 10px; }

.rating {
  display: flex;
  gap: 3px;
  padding-top: 6px; }
  .rating .c-star {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: rgba(53, 55, 61, 0.5); }
    @media (min-width: 992px) {
      .rating .c-star {
        width: 28px;
        height: 28px; } }
    .rating .c-star.active {
      fill: #D8B571;
      stroke: #D8B571; }
      .rating .c-star.active .stroke {
        fill: none;
        stroke: rgba(53, 55, 61, 0.5); }

.order {
  margin-bottom: 40px; }
  @media (min-width: 992px) {
    .order {
      margin-bottom: 100px; } }
  .order .heading {
    margin-bottom: 0; }
  .order__item {
    position: relative;
    color: #fff;
    margin-right: 5px; }
    @media (min-width: 992px) {
      .order__item {
        margin-right: 0; } }
    .order__item.dark {
      color: #000; }
    .order__item img {
      display: block; }
    .order__item-content {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-weight: 700;
      padding: 20px 15px; }
      @media (min-width: 992px) {
        .order__item-content {
          padding: 30px 30px 57px; } }
      .order__item-content .phone {
        display: block;
        font-size: 18px;
        margin-bottom: 8px; }
        @media (min-width: 992px) {
          .order__item-content .phone {
            font-size: 36px;
            margin-bottom: 20px; } }
      .order__item-content .btn {
        font-size: 10px;
        min-width: unset;
        width: 140px;
        height: 32px; }
        @media (min-width: 992px) {
          .order__item-content .btn {
            width: 250px;
            height: 40px;
            font-size: 14px; } }
    .order__item-step {
      margin-bottom: 8px; }
      @media (min-width: 992px) {
        .order__item-step {
          margin-bottom: 16px; } }
    @media (min-width: 992px) {
      .order__item-title {
        font-size: 24px; } }

.vk {
  margin-bottom: 40px; }
  @media (min-width: 992px) {
    .vk {
      margin-bottom: 190px; } }
  .vk .heading {
    margin-bottom: 0; }
  .vk .social {
    margin: 15px 0; }
    @media (min-width: 992px) {
      .vk .social {
        margin: 42px 0 62px; } }
    .vk .social__item {
      width: 26px;
      height: 26px; }
      @media (min-width: 992px) {
        .vk .social__item {
          width: 48px;
          height: 48px; } }
  .vk__item {
    position: relative;
    padding-bottom: 194%;
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .vk__item {
        margin-bottom: 0; } }
    .vk__item iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }

.choice {
  padding: 15px 0 70px; }
  @media (min-width: 992px) {
    .choice {
      padding: 50px 0 120px; } }
  .choice__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    gap: 30px;
    text-transform: uppercase;
    padding: 0 15px; }
    @media (min-width: 992px) {
      .choice__block {
        padding: 0 77px;
        flex-direction: row; } }
    .choice__block:before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #efefef;
      width: 100%;
      height: calc(100% - 85px);
      z-index: -1; }
  .choice__img {
    width: 60%; }
    @media (min-width: 992px) {
      .choice__img {
        width: auto; } }
  .choice__content {
    text-align: center; }
  .choice__heading {
    margin-bottom: 30px; }
    @media (min-width: 992px) {
      .choice__heading {
        margin-bottom: 50px; } }
  .choice__title {
    line-height: 1;
    font-weight: 500;
    font-size: 20px; }
    @media (min-width: 992px) {
      .choice__title {
        font-size: 33px; } }
  .choice__subtitle {
    font-weight: 300;
    font-size: 14px; }
    @media (min-width: 992px) {
      .choice__subtitle {
        font-size: 17px; } }

.fancybox-slide--current {
  display: flex;
  justify-content: center;
  align-items: center; }
  .fancybox-slide--current .reviews__item {
    width: 65%; }
    .fancybox-slide--current .reviews__item-text {
      height: auto;
      display: block; }
    .fancybox-slide--current .reviews__item-img {
      height: auto; }
    .fancybox-slide--current .reviews__item-more {
      display: none; }

.heading {
  text-transform: uppercase;
  margin-bottom: 20px; }
  @media (min-width: 992px) {
    .heading {
      margin-bottom: 54px; } }
  .heading span {
    display: block;
    font-size: 12px; }
    @media (min-width: 992px) {
      .heading span {
        font-size: 28px; } }
  .heading__block {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    @media (min-width: 992px) {
      .heading__block {
        gap: 20px;
        flex-direction: row; } }

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