@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul, li {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a,
a:hover {
  text-decoration: none; }

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none !important; }

body {
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased; }

button,
input[type=cancel],
input[type=reset],
input[type=submit]:hover {
  cursor: pointer; }

input[type=file],
input[type=password],
input[type=submit],
input[type=text],
input[type=email],
input[type=search],
textarea,
select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto; }

select::ms-expand {
  display: none; }

input::-ms-clear {
  display: none; }

/**************
END RESETT CSS
****************/
@font-face {
  font-family: "DINCondensed";
  src: url("../font/DINPro-CondensedBold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap; }
@font-face {
  font-family: "DINCondensed";
  src: url("../font/PFDinCondensedMedium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap; }
@font-face {
  font-family: "DINCondensed";
  src: url("../font/PFDinCondensedRegular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap; }
@font-face {
  font-family: "DINCondensed";
  src: url("../font/PFDinCondensedLight.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap; }
:root {
  --main-font: "DINCondensed", sans-serif;
  --blue-gradient: linear-gradient(to bottom, #1a4cf8, #0674fd);
  --green: #6eb927;
  --blue: #1459fa; }

html,
body {
  min-height: 100vh; }

html {
  font-size: 10px; }

body {
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
  font-family: var(--main-font); }

img {
  max-width: 100%; }

a {
  color: currentColor;
  -webkit-transition: all .2s;
  transition: all .2s; }

h1,
.h1 {
  font-size: 2.25rem; }

h2,
.h2 {
  font-size: 1.5rem; }

h3,
.h3 {
  font-size: 1.375rem; }

.font-500 {
  font-weight: 500; }

b,
strong {
  font-weight: 700; }

.font-900 {
  font-weight: 900; }

.text-center {
  text-align: center; }

.text-uppercase {
  text-transform: uppercase; }

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.container {
  width: 100%;
  max-width: 600px;
  padding: 0 10px;
  margin: 0 auto; }

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.main-container {
  width: 100%;
  background: url("../img/bg.jpg") center 75% no-repeat;
  background-size: cover;
  padding-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .main-container__bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0; }

.logo {
  text-align: center;
  margin: 0 auto 5rem; }

.tariff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 15px;
  padding: 15px 0;
  border: 2px solid #0674fe;
  position: relative;
  background: #fff;
  margin-bottom: 2rem; }
  .tariff:hover {
    -webkit-box-shadow: 0 4px 15px rgba(20, 89, 250, 0.95);
            box-shadow: 0 4px 15px rgba(20, 89, 250, 0.95);
    -webkit-transform: scale(1.02);
            transform: scale(1.02); }
  .tariff--best {
    background: var(--blue-gradient);
    border-color: transparent; }
    .tariff--best .decor {
      background-image: url("../img/green_angle.png"); }
    .tariff--best .price__left,
    .tariff--best .price__right__top,
    .tariff--best .price__right__bottom,
    .tariff--best .tariff__left span {
      color: #fff; }
    .tariff--best .tariff__left {
      border-color: #fff; }

.decor {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 13px;
  background: url("../img/blue_angle.png") 100% center no-repeat;
  background-size: auto 100%;
  z-index: 1; }

.tariff__left {
  width: 5rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  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;
  border-right: 2px solid #b2b2b2;
  position: relative;
  z-index: 2; }
  .tariff__left span {
    display: inline-block;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    font-size: 3rem;
    color: #797979;
    font-weight: 400;
    text-transform: capitalize; }

.tariff__center {
  padding-left: 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 2; }

.price__left {
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--blue); }

.price__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.price__right__top {
  font-size: 9rem;
  font-weight: 700;
  margin-bottom: 0.05em;
  letter-spacing: -.05em;
  color: var(--blue); }

.price__right__bottom {
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -.02em; }

.tariff__right {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 7.5rem;
  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;
  position: relative;
  z-index: 2; }
  .tariff__right span {
    display: inline-block;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    font-size: 3.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff; }

.features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4rem 0; }
  .features-list li {
    width: 48%;
    font-size: 2rem;
    margin-bottom: 0.75em;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff; }

.list-image {
  position: relative;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  background: var(--blue-gradient);
  margin-right: 0.5em; }
  .list-image::before {
    content: '';
    width: 1em;
    height: 0.9em;
    background: url("../img/check.svg") 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    left: 70%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .service-list li {
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700; }
    .service-list li:last-child {
      width: 100%;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .service-list li .icon {
      width: 1.8em;
      height: 1.8em;
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      border-radius: 50%;
      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;
      background: var(--blue-gradient);
      margin-right: .5em; }
      .service-list li .icon img {
        max-width: 2.3rem;
        width: 100%; }

.footer {
  background-color: #fff;
  text-align: center;
  padding: 3rem 10px;
  color: #555555;
  line-height: 1.2; }
  .footer .logo {
    margin-bottom: 3rem; }
  .footer p {
    margin-bottom: 0.25em; }
  .footer a {
    color: #000; }
    .footer a:hover {
      color: var(--blue); }

@media (max-width: 1600px) {
  html {
    font-size: 0.6vw; } }
@media (max-width: 1200px) {
  .container {
    max-width: 480px; }

  .features-list li {
    font-size: 2.4rem; }

  .service-list li {
    font-size: 3.5rem; }

  .footer p {
    font-size: 2.4rem; } }
@media (max-width: 1023px) {
  html {
    font-size: 0.8vw; } }
@media (max-width: 480px) {
  html {
    font-size: 1.4vw; }

  .main-container {
    background-position: 70% top; }

  .tariff {
    margin-bottom: 10px;
    padding: 10px 0; }

  .tariff__left {
    width: 40px;
    border-width: 1px; }
    .tariff__left span {
      font-size: 22px; }

  .tariff__right {
    width: 60px; }
    .tariff__right span {
      font-size: 22px; }

  .features-list li {
    font-size: 15px; }

  .list-image::before {
    width: 0.7em;
    height: 0.5em;
    left: 50%; }

  .service-list li .icon {
    width: 1.4em;
    height: 1.4em; }
    .service-list li .icon img {
      max-width: 60%; }

  .main-container__bottom {
    padding: 15px 0; }

  .footer p {
    font-size: 12px; } }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("../img/icons/ajax-loader.gif") center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "â†"; }
    [dir="rtl"] .slick-prev:before {
      content: "â†’"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "â†’"; }
    [dir="rtl"] .slick-next:before {
      content: "â†"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "â€¢";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*Header*/
/*Footer*/

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