:root {
  --speed: 300ms;
  --time-function: ease-in-out;
  --container: 1440px;
}

/* FONT SourceSansPro */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
.video {
  position: relative;
  width: 100%;
}
.video__preview {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.video__preview.is-played {
  display: none;
}
.video__preview:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.video__preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}
.video__button:nth-child(n) {
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0px;
  border: none;
  color: white;
  z-index: 3;
  background: var(--ast-global-color-2);
}
@media only screen and (min-width: 768px) {
  .video__button:nth-child(n) {
    width: 95px;
    height: 95px;
  }
}
.video__button:nth-child(n) svg {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .video__button:nth-child(n) svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
  }
}
@media only screen and (min-width: 768px) {
  .video__button:nth-child(n) svg {
    margin-left: 10px;
  }
}
.video__button:nth-child(n):before {
  z-index: 0;
  position: absolute;
  content: "";
  box-shadow: 0px 0px 5px var(--ast-global-color-7);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  border-radius: inherit;
}
@media (any-hover: hover) {
  .video__button:nth-child(n):hover:before {
    opacity: 1;
  }
}
.video__button:nth-child(n):after {
  content: "";
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  background: var(--ast-global-color-0);
  opacity: 0.6;
  position: absolute;
  z-index: 1;
}
.video__watermark {
  position: absolute;
  z-index: 1;
  bottom: 3px;
  right: 7px;
}
@media only screen and (max-width: 767px) {
  .video__watermark {
    width: 54px;
    height: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .video__watermark {
    bottom: 11px;
    right: 27px;
  }
}
.video__video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .video__video {
    height: 190px;
  }
}
.video__video.is-active {
  z-index: 4;
}

@media only screen and (max-width: 767px) {
  .offers .video {
    height: 252px;
  }
}
.offers .video__button {
  position: relative;
  top: 0px;
  left: 0px;
  transform: none;
}
.offers .video__preview:after {
  background-image: linear-gradient(0deg, rgba(23, 199, 255, 0.2), rgba(23, 199, 255, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.offers__title-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-transform: transalteY(-30px);
  -o-transform: transalteY(-30px);
  -ms-transform: transalteY(-30px);
  -webkit-transform: transalteY(-30px);
  transform: transalteY(-30px);
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .offers__title-wrapper {
    max-width: 291px;
    margin-left: auto;
    margin-right: auto;
  }
}
.offers__title {
  text-align: center;
  margin-bottom: 5px;
  color: var(--ast-global-color-1);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .offers__title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .offers__title {
    margin-bottom: 32px;
  }
}

.appeal {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1000px) {
  .appeal {
    padding-bottom: 80px;
  }
  .offers + .appeal {
    margin-top: -60px;
    position: relative;
    z-index: 3;
  }
}
@media only screen and (max-width: 1199px) {
  .appeal .container {
    padding: 0px;
  }
}
.appeal__inner {
  padding: 30px 20px;
  background: var(--ast-global-color-5);
}
@media only screen and (min-width: 768px) {
  .appeal__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.appeal__img {
  height: auto;
}
@media only screen and (max-width: 767px) {
  .appeal__img {
    margin-bottom: 30px;
  }
  .appeal__img img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .appeal__img, .appeal__left {
    margin-right: 80px;
  }
}
.appeal__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .appeal__left {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .appeal__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.appeal__left .appeal__title {
  margin-top: 40px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .appeal__left .appeal__title {
    margin-bottom: 0px;
    margin-left: 40px;
  }
}
.appeal__title {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .appeal__title {
    font-size: 40px;
    text-align: left;
  }
}
.appeal__text {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .appeal__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.appeal__title-with-image .appeal__text {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  max-width: 590px;
  width: 100%;
}

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