:root {
  --title-color: #005BAA;
  --title-font: 'Montserrat';
  --title-weight: 800;
  --title-style: normal;

  --color-accent: #005BAA;
  --text-color: #000;

  --bg: #ffffff;

  --wrapper-bg: #F5F5F5;
  --wrapper-blur: blur(140px);
  --wrapper-margin-top: 20vh;
  --wrapper-padding: 30px;
  --wrapper-radius: 20px;
  --wrapper-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
  --wrapper-border: none;

  --btn-bg: #ffffff;
  --btn-border: 1px solid #005BAA;
  --btn-color: #005BAA;
  --btn-radius: 5px;
}


*{
  box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
  background: var(--bg);
}

body {
  padding-bottom: 20px;
  /*background: url(../img/bottom.png) no-repeat bottom 0 right 20px;*/
}

h1, p {
  margin: 0;
}

/*.container */

  .container {
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
  }
  @media (min-width: 360px) {
    html {
      font-size: 14px;
    }
  }
  @media (min-width: 768px) {
    html {
      font-size: 14px;
    }
    .container {
      max-width: 750px;
    }
  }
  @media (min-width: 992px) {
    .container {
      max-width: 970px;
    }
  }
  @media (min-width: 1200px) {
    html {
      font-size: 16px;

      /*border-top: 10px solid #000;*/
    }
    .container {
      /*max-width: 1200px;*/
    }
  }
  @media (min-width: 1440px) {
    html {
      font-size: 18px;
    }
    .container {
      /*max-width: 1400px;*/
    }
  }

.bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  /*max-width: 1500px;*/
  height: 100%;
  /*max-height: 50vh;*/
  margin: 0 0 0 auto;

  -o-object-fit: cover;
     object-fit: cover;

  -o-object-position: top center;
     object-position: top center;

    z-index: -1;
}

.main {
  max-width: 100%;
  height: 50vh;
  margin: 0 auto;
  /*margin-top: 55px;*/
  /*margin-bottom: -70px;*/

  object-fit: contain;
  object-position: top center;

  border-radius: 0 0 50px 50px;
}

.main--full {
  display: block;
  margin: 0 -30px;
}

.logo {
  /*position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;*/

  display: block;
  max-width: 60%;
  margin: 0 auto 20px;
  z-index: 1;
}


.logo.logo--right {
  left: auto;
}

.margin-top {
    margin-top: var(--wrapper-margin-top);
}

.accent {
  color: var(--color-accent);
}

/*test*/

  .wrapper {
    /*padding: var(--wrapper-padding);*/

    background: var(--wrapper-bg);
    -webkit-backdrop-filter: var(--wrapper-blur);
            backdrop-filter: var(--wrapper-blur);
    border-radius: var(--wrapper-radius);
    box-shadow: var(--wrapper-shadow);

    border: var(--wrapper-border);
  }

  .test {
    padding-top: 45px;
    padding-bottom: var(--wrapper-padding);
  }

  .header {
    padding: var(--wrapper-padding);
  }

  .header__title {
    margin-bottom: 30px;

    font-family: var(--title-font), sans-serif;
    font-size: 2rem;
    font-weight: var(--title-weight);
    font-style: var(--title-style);
    color: var(--title-color);
    line-height: 1.2;
    text-transform: uppercase;
  }
  .header__title-small {
    display: block;
    font-size: 2rem;
  }

  .header__title img {
    height: 1.5em;
    vertical-align: bottom;
  }

  .header__text,
  .final__text {
    /*margin-bottom: 20px;*/

    font-size: 1rem;
    line-height: 1.5;
    -webkit-transition: 1s;
    transition: 1s;
  }

  .final__text {
    /*width: 70%;*/
    /*margin: 0 auto 20px;*/
    font-weight: bold;
    /*font-size: 1.2rem;*/
  }

  .quest__text {
    padding: 0 var(--wrapper-padding);
    margin-bottom: 20px;

    /*font-family: var(--title-font), sans-serif;*/
    /*font-style: italic;*/
    font-size: 1.2rem;
    font-weight: 700;
    
    line-height: 1.5;
  }


/*.btn*/

  .btn {
    min-width: 240px;
    padding: 15px 30px;
    margin: 0 10px 20px;

    /*font-family: var(--title-font);*/
    font-weight: bold;
    font-size: 1rem;
    /*font-style: italic;*/
    color: var(--btn-color);
    /*text-transform: uppercase;*/

    -webkit-background: var(--btn-bg);
            background: var(--btn-bg);
    /*box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.16);*/
    border-radius: var(--btn-radius);

    vertical-align: top;

    border: var(--btn-border);
    cursor: pointer;
  }

  .btn-final {
    font-weight: bold;
    text-transform: uppercase;

    color: #fff;
    /*border-radius: 30px;*/
    background-color: var(--color-accent);
  }

  .btn-img {
    min-width: auto;
    padding: 10px;
    margin-bottom: 60px !important;

    background: #fff;
    border: 3px solid #B3B3B3;
    border-radius: 15px;
    box-shadow: 0px 0px 80px rgba(255, 255, 255, 0.5);

    overflow: hidden;
  }
  .btn-img:hover,
  .btn-img:active {
    border: 3px solid var(--color-accent);
  }
  .btn-img img {
    max-width: 100%;
  }

  .soldout {
    position: relative;
    border: 1px solid #CCCCCC;
    box-shadow:  none;
  }
  .soldout img {
    opacity: 0.5;
  }
  .soldout-label {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;

    height: 2rem;
    margin: auto 0;
    padding: 0 1em;

    color: #FFFFFF;
    font-size: 0.6em;
    text-transform: uppercase;
    line-height: 2rem;

    background: #000;
    /*border-radius: 0px 0.5em 0px 1em;*/
    border-radius: 0;

    z-index: 1;
  }

@media (max-width: 1440px) {
  .logo {
  }
}


@media (max-width: 992px) {
  html {
    /*background: url(../img/bg-tablet-bottom.jpg) no-repeat bottom center/100%;*/
  }
  .logo {
    top: 15px;
    left: 15px;
    right: 15px;

    /*height: 120px;*/
  }

  .margin-top {
      margin-top: 28vh;
  }

  .wrapper {
     /*margin-top: calc(var(--wrapper-margin-top) + 7vh); */
  }

  .header {
    padding: calc(var(--wrapper-padding) - 10px);
  }

  .test {
    padding-bottom: calc(var(--wrapper-padding) - 10px);
  }

  .header__title {
    /*font-size: 2rem;*/
  }

  .main {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {

  html {
    background: url(../images/bg-mob_bottom.jpg) no-repeat center bottom/100%;
  } 

  .margin-top {
      margin-top: 17vh;
  }
  .wrapper {
    /*padding: 20px;*/
  }

  .bg {
    height: auto;
    /*max-height: 40vh;*/
  }

  .main {
    height: auto;

    border-radius: 0 0 30px 30px;
  }
  .main--full {
    margin: 0 -15px;
  }

  .header__title {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .header__title-small {
    font-size: 1.4rem;
  }

  .header__text,
  .final__text {
    /*line-height: 1.2;*/
  }
  .final__text {
    width: 100%;
  }

  .btn {
    min-width: 40%;
    /*width: 90%;*/
    padding: 10px 20px;
    margin: 0 5px 10px;
  }

  .btn-img {
    min-width: auto;
    width: auto;
    padding: 10px;
  }

  .btn-final {
    min-width: 90%;
  }
}

/* Slick-dots (Цифры) */

  .slick-dots {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;
    margin: 0 auto;
    padding: 0;

    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    /*font-family: 'Exo 2', sans-serif;*/
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 25px 0 0;

    list-style: none;
    text-align: center;
    line-height: 30px;

    border: 1px solid var(--text-color);
    border-radius: 50%;
    pointer-events: none;
  }

  .slick-dots li:nth-last-child(2) {
    margin-right: 0;
  }

  .slick-dots li:last-child {
    display: none;
  }

  .slick-dots li:not(:nth-last-child(2)):before {
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;

    content: "";
    display: inline-block;
    height: 1px;
    width: 16px;
    margin: auto 5px;
    background-color: var(--text-color);
  }

  .slick-dots li button {
    /*width: inherit;
    height: inherit;*/
    padding: 0;

    color: inherit;
    border: none;
    background-color: transparent;
  }

  .slick-dots li.slick-active {
  }

  .slick-dots li.check {
    color: transparent;
    background: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
  }

/* End Slick-dots */

.hide {
  min-height: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}

.show {
  height: auto;
  opacity: 1;
}

.autoink{
    position: relative;
    overflow: hidden;
   -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.ink{
   position: absolute;
   
   display: block;
   height: 200px;
   width: 250px;
   top: -20px;
   left: -140px;


   background: rgba(255, 255, 255, 1.0);
   border-radius: 100%;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   transform: scale(0);
   z-index: 20;  
}

.animate {
  webkit-animation: ripple 4s linear infinite;
  -moz-animation: ripple 4s linear infinite;
  -ms-animation: ripple 4s linear infinite;
  -o-animation: ripple 4s linear infinite;
  animation: ripple 4s linear infinite;
}

@keyframes ripple {  
20% {     
    opacity: 0;     
    transform: scale(2.5);
    }
100% {     
    opacity: 0;     
    transform: scale(2.5);
    }
}