/**/
/* fonts */
/**/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@font-face {
  font-family: Circe;
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fnt/Circe-Regular.woff') format('woff');
}


/**/
/* reset */
/**/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  margin: 0; 
  -webkit-appearance: none; 
}


/**/
/* defaults */
/**/
html, body {
  height: 100%;
  background-color: #FFF;
  font-family: Circe, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
body {
  overflow: hidden;
}
body.loaded {
  height: auto;
  overflow: visible;
}
a {
  text-decoration: none;
}
img {
  display: block;
}
button {
  cursor: pointer;
}
.page {
  overflow: hidden;
  background-color: #FFF;
  pointer-events: none;
  opacity: 0;
  transition-delay: 0.25s;
  transition-duration: 0.25s;
  transition-property: opacity;
}
body.loaded .page {
  pointer-events: auto;
  opacity: 1 !important;
}


/**/
/* grid */
/**/
.grid-cont {
  max-width: 1076px;
  margin: 0 auto;
  padding: 0 34px;
}
.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.grid-row--nog {
  margin-right: 0;
  margin-left: 0;
}
.grid-row--nog > .grid-col {
  padding-right: 0;
  padding-left: 0;
}
.grid-row--aic {
  align-items: center;
}
.grid-row--aib {
  align-items: flex-end;
}
.grid-row--jcc {
  justify-content: center;
}
.grid-row--jce {
  justify-content: flex-end;
}
.grid-row--jca {
  justify-content: space-around;
}
.grid-row--jcb {
  justify-content: space-between;
}
.grid-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}
.grid-col--1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.grid-col--2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.grid-col--3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.grid-col--4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.grid-col--5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.grid-col--6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.grid-col--7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.grid-col--8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.grid-col--9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.grid-col--10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.grid-col--11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.grid-col--12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.grid-col--auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.grid-col--order-0 {
  order: -1;
}
@media screen and (max-width: 1023.98px) {
  .grid-col--md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .grid-col--md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-col--md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-col--md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-col--md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-col--md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .grid-cont {
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid-col--sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .grid-col--sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-col--sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-col--sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-col--sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-col--sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-col--sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-col--sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .grid-col--sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-col--sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-col--sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .grid-col--sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-col--sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .grid-col--order-sm-0 {
    order: -1;
  }
}
@media screen and (max-width: 575.98px) {
  .grid-col--xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .grid-col--xs-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-col--xs-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-col--xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-col--xs-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-col--xs-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-col--xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-col--xs-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .grid-col--xs-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-col--xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-col--xs-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .grid-col--xs-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-col--xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/**/
/* margin */
/**/
.mt--075 {
  margin-top: 12px;
}
.mt--100 {
  margin-top: 16px;
}
.mt--200 {
  margin-top: 32px;
}
.mt--300 {
  margin-top: 48px;
}
.mt--400 {
  margin-top: 64px;
}


/**/
/* display */
/**/
.removed {
  display: none;
}
@media screen and (max-width: 1279.98px) {
  .removed-lg {
    display: none;
  }
  .blocked-lg {
    display: block;
  }
  .iblocked-lg {
    display: inline-block;
  }
}
@media screen and (max-width: 1023.98px) {
  .removed-md {
    display: none;
  }
  .blocked-md {
    display: block;
  }
  .iblocked-md {
    display: inline-block;
  }
}
@media screen and (max-width: 767.98px) {
  .removed-sm {
    display: none;
  }
  .blocked-sm {
    display: block;
  }
  .iblocked-sm {
    display: inline-block;
  }
}
@media screen and (max-width: 575.98px) {
  .removed-xs {
    display: none;
  }
  .blocked-xs {
    display: block;
  }
  .iblocked-xs {
    display: inline-block;
  }
}


/**/
/* typography */
/**/
h1, .h1 {
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h2, .h2 {
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
p, .p {
  font-size: 20px;
  line-height: 1.2;
}
.p--tall {
  line-height: 1.4;
}
.p--small {
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (max-width: 767.98px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 1.25;
  }
  h2, .h2 {
    font-size: 24px;
    line-height: 1.3334;
  }
  p, .p {
    font-size: 16px;
    line-height: 1.25;
  }
}


/**/
/* button */
/**/
.button {
  display: inline-block;
  vertical-align: top;
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #000;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  transition-duration: 0.125s;
  transition-property: background-color;
}
.button:hover {
  background-color: #16605C;
}



/**/
/* LOADER */
/**/

/**/
/* loader */
/**/
.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition-duration: 0.25s;
  transition-property: opacity;
}
body.loaded .loader {
  pointer-events: none;
  opacity: 0;
}


/**/
/* spinner */
/**/
.spinner {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 24px;
  animation: rotator 1.5s linear infinite;
  transition-duration: 0.25s;
  transition-property: opacity;
}
.spinner__path {
  stroke: #16605C;
  stroke-dashoffset: 0;
  stroke-dasharray: 100;
  transform-origin: center;
  animation: dash 1.5s ease-in-out infinite;
}
body.loaded .spinner {
  opacity: 0;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 100;
  }
  50% {
    stroke-dashoffset: 25;
    transform:rotate(135deg);
  }
  100% {
    stroke-dashoffset: 100;
    transform:rotate(450deg);
  }
}




/**/
/* HEADER */
/**/


/**/
/* header */
/**/
.header {
  position: relative;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .header {
    border-top-width: 32px;
    border-bottom-width: 32px;
  }
}


/**/
/* logo */
/**/
.logo-link {
  display: block;
}
.logo {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .logo {
    width: auto;
    height: 32px;
  }
}




/**/
/* CONTENT */
/**/


/**/
/* intro */
/**/
.intro {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  text-align: center;
  transition-duration: 0.25s;
  transition-property: opacity;
}
.intro.hidden {
  opacity: 0;
}
.intro__title {
  padding-bottom: 16px;
}
.intro__subtitle {
  padding-bottom: 32px;
}
.intro__button {
  margin-bottom: 32px;
}
a.intro__button {
  display: none;
}
.intro__icon {
  margin: 0 8px;
}
@media screen and (max-width: 767.98px) {
  .intro {
    padding-top: 8px;
  }
  .intro__button {
    display: none;
    margin-bottom: 0;
  }
  a.intro__button {
    display: inline-block;
  }
}


/**/
/* hero */
/**/
.hero {
  position: relative;
  height: 800px;
  padding-top: 72px;
}
.hero.passed {
  overflow: hidden;
}
.hero__frames {
  position: absolute;
  top: -122px;
  left: 50%;
  width: 900px;
  height: 1200px;
  margin-left: -450px;
  transition-duration: 0.25s;
  transition-property: opacity;
}
.hero__frames img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero__frames .active {
  opacity: 1;
}
.hero__frames.hidden {
  opacity: 0;
}
.hero__phone {
  position: relative;
  z-index: 1;
  width: 410px;
  height: 812px;
  margin: 0 auto;
  background: url(../img/phone@2x.png) 50% 0%/100% auto no-repeat;
}
.hero__videos {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 350px;
  height: 700px;
  margin-left: -177px;
  overflow: hidden;
  border-radius: 33px 33px 0 0;
  background-color: #000;
  opacity: 0;
  transition-duration: 0.125s;
  transition-property: opacity;
}
.hero__videos video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition-duration: 0.125s;
  transition-property: opacity;
}
.hero__videos video.active {
  opacity: 1;
}
.hero__videos.visible {
  opacity: 1;
}
.hero__cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1390px;
  margin-left: -695px;
  background-color: #16605C;
  color: #FFF;
  transform: translateY(100%);
  transition-duration: 0.375s;
  transition-property: opacity, transform;
}
.hero__cover .grid-row {
  height: 800px;
}
.hero__cover.visible {
  opacity: 1;
  transform: none;
}
.hero__caption {
  position: relative;
  z-index: 1;
  display: block;
  margin: 40px 0 40px -24px;
  padding-left: 24px;
  opacity: 0.4;
  transition-duration: 0.125s;
  transition-property: opacity;
}
.hero__caption:hover {
  opacity: 0.7;
}
.hero__caption.active {
  pointer-events: none;
  opacity: 1;
}
.hero__pause {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  transition-duration: 0.125s;
  transition-property: border, opacity;
}
  .hero__pause {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M5.50526 16.3407V4.03297L7.4 1.3956L6.89474 1L5.50526 2.93407V1H4.87368V3.81319L1 9.17582L1.50526 9.57143L4.87368 4.91209V16.3407H1.25263V17H9V16.3407H5.50526Z" fill="%23A9913B" stroke="%23A9913B"/></svg>') 50% 50% no-repeat;
  }
  .hero__caption:nth-child(2) .hero__pause {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="18" viewBox="0 0 12 18" fill="none"><path d="M1.91286 16.2986V12.2219C2.82573 12.7918 3.82158 13.0986 4.90041 13.0986C8.05394 13.0986 10.6266 10.3808 10.6266 7.04931C10.6266 3.71781 8.05394 1 4.85892 1C3.78008 1 2.70124 1.35068 1.74689 1.96438C1.49793 2.13973 1.24896 2.3589 1 2.57808L1.41494 3.06027C1.62241 2.8411 1.82988 2.66575 2.07884 2.49041C2.90871 1.92055 3.86307 1.6137 4.85892 1.6137C7.6805 1.6137 10.0041 4.02466 10.0041 7.04931C10.0041 10.0301 7.72199 12.4849 4.85892 12.4849C3.78008 12.4849 2.74274 12.1342 1.87137 11.4767V9.15343H1.29046V17H11V16.3425H1.91286V16.2986Z" fill="%23A9913B" stroke="%23A9913B"/></svg>');
  }
  .hero__caption:nth-child(3) .hero__pause {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="18" viewBox="0 0 12 18" fill="none"><path d="M11 6.01099C11 3.24176 8.72926 1 5.97817 1C3.22707 1 1 3.24176 1 6.01099H1.65502C1.65502 3.63736 3.62009 1.65934 5.97817 1.65934C8.33624 1.65934 10.3013 3.63736 10.3013 6.01099C10.3013 6.93407 9.99563 7.76923 9.51528 8.47253C8.59825 7.54945 7.33188 6.97802 5.9345 6.97802V7.63736C7.15721 7.63736 8.29258 8.16483 9.0786 9C8.29258 9.83517 7.15721 10.3626 5.9345 10.3626V11.022C7.33188 11.022 8.59825 10.4505 9.51528 9.52747C9.99563 10.2308 10.3013 11.0659 10.3013 11.989C10.3013 14.4066 8.33624 16.3407 5.97817 16.3407C3.62009 16.3407 1.65502 14.4066 1.65502 11.989H1C1 14.7582 3.22707 17 5.97817 17C8.72926 17 11 14.7582 11 11.989C11 10.8901 10.6507 9.83517 9.99563 9C10.607 8.16483 11 7.15385 11 6.01099Z" fill="%23A9913B" stroke="%23A9913B"/></svg>');
  }
/*
.hero__pause::after,
.hero__pause::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 10px;
  margin-top: -5px;
  border-left: 3px solid #A9913B;
  transition-duration: 0.125s;
}
.hero__pause::after {
  right: 50%;
  margin-right: -4px;
  transition-property: opacity;
}
.hero__pause::before {
  left: 50%;
  margin-left: -4px;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  transition-property: margin, border;
}
*/
.hero__pause svg {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #A9913B;
  stroke-width: 3px;
  stroke-dasharray: 91;
  stroke-dashoffset: 91;
  transform: rotate(-90deg);
}
/*
.hero__caption.active .hero__pause {
  opacity: 1;
}
.hero__caption.paused .hero__pause::after {
  opacity: 0;
}
.hero__caption.paused .hero__pause::before {
  margin-left: -3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left-width: 8px;
}
*/
.hero__pics {
  position: relative;
  height: 800px;
}
.hero__pics img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 900px;
  margin-left: -450px;
  opacity: 0;
  transform: scale(0.75);
  transform-origin: 50% 100%;
  transition-duration: 0.25s;
  transition-property: opacity, transform;
}
.hero__pics img.active {
  opacity: 1;
  transform: none;
}
.hero__nums {
  position: relative;
}
.hero__nums img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition-duration: 0.125s;
  transition-property: opacity;
}
.hero__nums img.active {
  opacity: 1;
}
.hero__nums img:first-child {
  position: static;
}
@media screen and (max-width: 1279.98px) {
  .hero__cover {
    right: 0;
    left: 0;
    width: auto;
    margin: 0;
  }
}
@media screen and (max-width: 1023.98px) {
  .hero {
    height: auto;
  }
  .hero__phone {
    height: 470px;
  }
  .hero__cover {
    position: relative;
    padding-top: 56px;
    transform: none;
  }
  .hero__cover .grid-row {
    height: auto;
  }
  .hero__captions {
    display: flex;
    text-align: center;
    margin-bottom: 56px;
  }
  .hero__caption {
    flex-grow: 1;
    flex-basis: 33.333%;
    margin: 0;
    padding: 0;
  }
  .hero__pause {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 0 auto 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="18" viewBox="0 0 10 18" fill="none"><path d="M5.50526 16.3407V4.03297L7.4 1.3956L6.89474 1L5.50526 2.93407V1H4.87368V3.81319L1 9.17582L1.50526 9.57143L4.87368 4.91209V16.3407H1.25263V17H9V16.3407H5.50526Z" fill="%23A9913B" stroke="%23A9913B"/></svg>') 50% 50% no-repeat;
    opacity: 1;
  }
  .hero__caption:nth-child(2) .hero__pause {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="18" viewBox="0 0 12 18" fill="none"><path d="M1.91286 16.2986V12.2219C2.82573 12.7918 3.82158 13.0986 4.90041 13.0986C8.05394 13.0986 10.6266 10.3808 10.6266 7.04931C10.6266 3.71781 8.05394 1 4.85892 1C3.78008 1 2.70124 1.35068 1.74689 1.96438C1.49793 2.13973 1.24896 2.3589 1 2.57808L1.41494 3.06027C1.62241 2.8411 1.82988 2.66575 2.07884 2.49041C2.90871 1.92055 3.86307 1.6137 4.85892 1.6137C7.6805 1.6137 10.0041 4.02466 10.0041 7.04931C10.0041 10.0301 7.72199 12.4849 4.85892 12.4849C3.78008 12.4849 2.74274 12.1342 1.87137 11.4767V9.15343H1.29046V17H11V16.3425H1.91286V16.2986Z" fill="%23A9913B" stroke="%23A9913B"/></svg>');
  }
  .hero__caption:nth-child(3) .hero__pause {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="18" viewBox="0 0 12 18" fill="none"><path d="M11 6.01099C11 3.24176 8.72926 1 5.97817 1C3.22707 1 1 3.24176 1 6.01099H1.65502C1.65502 3.63736 3.62009 1.65934 5.97817 1.65934C8.33624 1.65934 10.3013 3.63736 10.3013 6.01099C10.3013 6.93407 9.99563 7.76923 9.51528 8.47253C8.59825 7.54945 7.33188 6.97802 5.9345 6.97802V7.63736C7.15721 7.63736 8.29258 8.16483 9.0786 9C8.29258 9.83517 7.15721 10.3626 5.9345 10.3626V11.022C7.33188 11.022 8.59825 10.4505 9.51528 9.52747C9.99563 10.2308 10.3013 11.0659 10.3013 11.989C10.3013 14.4066 8.33624 16.3407 5.97817 16.3407C3.62009 16.3407 1.65502 14.4066 1.65502 11.989H1C1 14.7582 3.22707 17 5.97817 17C8.72926 17 11 14.7582 11 11.989C11 10.8901 10.6507 9.83517 9.99563 9C10.607 8.16483 11 7.15385 11 6.01099Z" fill="%23A9913B" stroke="%23A9913B"/></svg>');
  }
  .hero__pause::after,
  .hero__pause::before {
    display: none;
  }
  .hero__videos {
    opacity: 1;
  }
  .hero__pics {
    height: 728px;
    margin: 0;
  }
  .hero__pics::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/phone@2x.png) 50% 0%/410px auto no-repeat;
    pointer-events: none;
  }
}
@media screen and (max-width: 767.98px) {
  .hero {
    padding-top: 40px;
  }
  .hero__frames {
    top: -80px;
    width: 588px;
    height: 784px;
    margin-left: -294px;
  }
  .hero__frames.hidden {
    opacity: 1;
  }
  .hero__phone {
    width: 304px;
    height: 304px; 
  }
  .hero__cover {
    padding-top: 32px;
  }
  .hero__captions {
    margin-bottom: 16px;
  }
  .hero__caption {
    font-size: 14px;
    line-height: 1;
  }
  .hero__videos {
    width: 260px;
    height: 520px;
    margin-left: -131px;
    border-radius: 24px 24px 0 0;
  }
  .hero__pics {
    height: 540px;
  }
  .hero__pics img {
    width: auto;
    height: 100%;
    margin-left: -304px;
  }
  .hero__pics::after {
    background-size: 304px auto;
  }
}


/**/
/* delivery */
/**/
.delivery {
  position: relative;
  margin: 80px 0;
}
.delivery__line {
  margin: 36px 8px 0;
}
.delivery__goose {
  margin-top: 32px;
}
.delivery__table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}
.delivery__table td {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.delivery__table td:last-child {
  padding-left: 40px;
  text-align: right;
  white-space: nowrap;
}
.delivery__table tr:last-child td {
  border-bottom: none;
}
.delivery__button {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 32px;
  background-color: #16605C;
  line-height: 1.125;
  text-align: left;
  color: #FFF;
  transition-duration: 0.125s;
  transition-property: background-color;
}
.delivery__button:hover {
  background-color: #000;
}
.delivery__button::before {
  content: '';
  display: block;
  width: 22px;
  height: 30px;
  margin: 0 20px 0 -10px;
  background-image: url(../img/marker.svg);
}
.delivery__payment {
  margin-right: 8px;
}
@media screen and (max-width: 1023.98px) {
  .delivery__line {
    margin: 24px 12px 0;
    transform: rotate(33deg);
  }
  .delivery__goose {
    margin-top: 0;
  }
  .delivery__time {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767.98px) {
  .delivery {
    margin: 40px 0;
  }
  .delivery__table {
    margin-bottom: -8px;
  }
  .delivery__table td {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .delivery__button {
    margin-bottom: -16px;
  }
  .delivery__payment {
    width: auto;
    margin-right: 0;
  }
  .delivery__payment[height="16"] {
    height: 12px;
  }
  .delivery__payment[height="20"] {
    height: 16px;
  }
  .delivery__payment[height="32"] {
    height: 24px;
  }
}


/**/
/* temperature */
/**/
.temperature {
  max-width: 1390px;
  margin: 36px auto;
  padding: 44px 0;
  background-color: #292F30;
  color: #FFF;
}
.temperature__title {
  position: relative;
}
.temperature__title::after {
  content: '';
  position: absolute;
  right: -24px;
  bottom: -58px;
  width: 196px;
  height: 140px;
  background: url(../img/fish.svg)
}
@media screen and (max-width: 1023.98px) {
  .temperature {
    margin: 0;
    padding-bottom: 164px;
    text-align: center;
    background: #292F30 url(../img/fish.svg) 50% 100% no-repeat;
  }
  .temperature__title {
    margin-bottom: 24px;
  }
  .temperature__title::after {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .temperature {
    padding: 40px 0 156px;
  }
  .temperature__title {
    margin-bottom: 16px;
  }
}


/**/
/* selfpick */
/**/
.selfpick {
  max-width: 1390px;
  margin: 36px auto;
  padding: 64px 0;
  background-color: #676FE5;
  text-align: center;
  color: #FFF;
}
.selfpick__icon {
  margin-right: auto;
  margin-left: auto;
}
.selfpick__num {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1023.98px) {
  .selfpick {
    margin: 0;
  }
  .selfpick__icon {
    width: 200px;
    height: 200px;
  }
  .selfpick__num {
    margin-top: 24px;
  }
  .selfpick__caption {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 767.98px) {
  .selfpick {
    padding: 40px 0;
  }
  .selfpick__icon {
    width: 232px;
    height: 232px;
  }
  .selfpick__caption {
    max-width: 220px;
    margin-right: auto;
    margin-left: auto;
  }
  .selfpick__caption br {
    display: none;
  }
}


/**/
/* outro */
/**/
.outro {
  margin: 80px 0;
  text-align: center;
}
.outro__icon {
  margin: 0 8px;
}
a.outro__button {
  display: none;
}
.outro__telegram {
  display: inline-block;
  vertical-align: top;
  margin-top: 64px;
  transition-duration: 0.125s;
  transition-property: color;
}
.outro__telegram:hover {
  color: #16605C;
}
.outro__telegram img {
  display: block;
  margin: 0 auto 12px;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767.98px) {
  .outro {
    margin-top: 40px;
  }
  .outro__button {
    display: none;
    margin-bottom: 0;
  }
  a.outro__button {
    display: inline-block;
  }
}


/**/
/* popup */
/**/
.popup {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background-color: rgba(0,0,0, 0.7);
  pointer-events: none;
  opacity: 0;
  transition-duration: 0.25s;
  transition-property: opacity;
}
.popup.active {
  pointer-events: auto;
  opacity: 1;
}
.popup__tbl {
  display: table;
  width: 100%;
  height: 100%;
}
.popup__tcl {
  display: table-cell;
  vertical-align: middle;
  padding: 32px;
  cursor: pointer;
}
.popup__window {
  position: relative;
  max-width: 1390px;
  overflow: hidden;
  margin: 0 auto;
  padding: 48px;
  background-color: #16605C;
  text-align: center;
  color: #FFF;
  cursor: default;
}
.popup__window--alt {
  padding: 0;
}
.popup__gmap {
  height: 752px;
  max-height: calc(100vh - 64px);
  position: relative;
}

.popup__gmap iframe{
  width: 100%;
  height: calc(100% + 50px);
  position: absolute;
  left: 0;
  top: -50px;
}

.popup__code {
  margin-right: auto;
  margin-left: auto;
}
.popup__gooses {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: 353px;
}
.popup__close {
  position: absolute;
  top: 7px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #FFF url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><path fill="%23000" d="M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z"/></svg>') 50% 50% no-repeat;
}
@media screen and (max-width: 1279.98px) {
  .popup__gooses {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .popup__tcl {
    padding: 20px;
  }
  .popup__gmap {
    max-height: calc(100vh - 40px);
  }
}



/**/
/* FOOTER */
/**/


/**/
/* footer */
/**/
.footer {
  margin: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .footer {
    margin: 40px 0;
  }
}


/**/
/* copyrights */
/**/
.copyrights {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: rgba(0,0,0,0.5);
}
.copyrights a {
  white-space: nowrap;
  transition-duration: 0.125s;
  transition-property: color;
}
.copyrights a:hover {
  color: #16605C;
}


/**/
/* policy */
/**/
.policy {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  text-align: center;
}
.policy a {
  transition-duration: 0.125s;
  transition-property: color;
}
.policy a:hover {
  color: #16605C;
}

.outro__telegram{
  display: block;
}

@media screen and (min-width: 400px) {
  .outro__telegram{
    display: inline-block;
  }

  .outro__telegram + .outro__telegram{
    margin-left: 20px;
  }
}