@font-face {
  font-family: 'PTRootUI';
  src: url("../fonts/PT-Root-UI_Medium.woff2") format("woff2"), url("../fonts/PT-Root-UI_Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PTRootUI';
  src: url("../fonts/PT-Root-UI_Regular.woff2") format("woff2"), url("../fonts/PT-Root-UI_Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PTRootUI';
  src: url("../fonts/PT-Root-UI_Bold.woff2") format("woff2"), url("../fonts/PT-Root-UI_Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

.gutter-x-5 {
  margin-left: -5px;
  margin-right: -5px;
}

.gutter-x-5 > * {
  padding-left: 5px;
  padding-right: 5px;
}

.gutter-x-15 {
  margin-left: -15px;
  margin-right: -15px;
}

.gutter-x-15 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.gutter-x-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.gutter-x-10 > * {
  padding-left: 10px;
  padding-right: 10px;
}

.gutter-x-30 {
  margin-left: -30px;
  margin-right: -30px;
}

.gutter-x-30 > * {
  padding-left: 30px;
  padding-right: 30px;
}

.gutter-y-55 {
  margin-bottom: -55px;
}

.gutter-y-55 > * {
  padding-bottom: 55px;
}

.gutter-y-10 {
  margin-bottom: -10px;
}

.gutter-y-10 > * {
  padding-bottom: 10px;
}

.gutter-y-15 {
  margin-bottom: -15px;
}

.gutter-y-15 > * {
  padding-bottom: 15px;
}

.gutter-y-10 {
  margin-bottom: -10px;
}

.gutter-y-10 > * {
  padding-bottom: 10px;
}

.gutter-y-25 {
  margin-bottom: -25px;
}

.gutter-y-25 > * {
  padding-bottom: 25px;
}

.gutter-y-20 {
  margin-bottom: -20px;
}

.gutter-y-20 > * {
  padding-bottom: 20px;
}

.gutter-y-30 {
  margin-bottom: -30px;
}

.gutter-y-30 > * {
  padding-bottom: 30px;
}

.gutter-y-40 {
  margin-bottom: -40px;
}

.gutter-y-40 > * {
  padding-bottom: 40px;
}

.btn--xs {
  height: 35px;
  font-size: 14px;
}

.btn--sm {
  height: 40px;
  font-size: 14px;
}

.btn--md {
  height: 50px;
  font-size: 14px;
}

.btn--lg {
  height: 55px;
  font-size: 18px;
}

.btn--xl {
  height: 60px;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s ease;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  text-decoration: none;
}

.btn--block {
  width: 100%;
}

.btn--transparent-border {
  color: #000;
  border: 2px solid transparent;
}

.btn--transparent-border:hover {
  color: #ff42a7;
  border-color: #ff42a7;
}

.btn--dark-pink {
  background: #000;
  color: white !important;
}

.btn--dark-pink:hover {
  background: #ff42a7;
}

.btn--pink {
  background: #ff42a7;
  color: white !important;
}

.btn--pink-border-dark {
  border: 2px solid #ff42a7;
  color: #ff42a7;
}

.btn--pink-border-dark:hover {
  background: #000;
  border-color: #000;
  color: #ff42a7;
}

.btn--shadow {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
}

.btn--pink-dark {
  background: #ff42a7;
  color: white;
}

.btn--pink-dark:hover {
  background: #000;
  color: #ff42a7;
}

.btn--light {
  font-weight: 400;
}

.btn--border {
  border: 1px solid #e9e9e9;
  color: #ff42a7 !important;
}

.btn--hover-shadow:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.btn--white-dark {
  background: white;
  color: #ff42a7;
}

.btn--white-dark:hover {
  background: #000;
  color: white;
}

.btn--white-border {
  border: 2px solid white;
  color: white;
}

.btn--white-border:hover {
  background: white;
  color: #ff42a7;
}

.site-header {
  background: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.site-header__row {
  height: 80px;
}

.burger {
  padding: 9px 2px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger__item {
  background: #000000;
  display: block;
  width: 30px;
  height: 3px;
  position: relative;
}

.burger__item:before,
.burger__item:after {
  background: #000000;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.burger__item:before {
  top: -8px;
}

.burger__item:after {
  bottom: -8px;
}

.burger.active .burger__item {
  background: none;
}

.burger.active .burger__item:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active .burger__item:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.site-mobile-bar {
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e9e9e9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  text-align: center;
  display: none;
}

.jumbotron {
  padding-top: 80px;
}

.jumbotron__title {
  color: #000000;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 500;
  opacity: 0.85;
  margin: 0;
}

.jumbotron__picture {
  margin-top: 80px;
}

.jumbotron__content {
  max-width: 690px;
}

.jumbotron .btn {
  width: 270px;
}

.jumbotron p {
  color: #6e6e6e;
  margin-bottom: 80px;
}

.jumbotron__list {
  list-style: none;
  color: #6e6e6e;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  padding: 0;
  margin: 30px 0 20px;
}

.jumbotron__list li {
  position: relative;
  padding-left: 25px;
}

.jumbotron__list li:before {
  background: #ff42a7;
  content: '';
  border-radius: 10px;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 0;
}

.jumbotron-bg {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.jumbotron-bg > * {
  position: relative;
  z-index: 2;
}

.jumbotron-bg:before {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.jumbotron-bg p {
  font-size: 22px;
  font-weight: 300;
}

.jumbotron-fixed {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.jumbotron-fixed:before {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.jumbotron-fixed__text {
  color: #afafaf;
  padding: 0 0 30px 0;
  font-size: 32px;
  font-weight: 300;
  margin: 25px 0 30px;
}

.jumbotron-fixed__row {
  height: 90vh;
}

.jumbotron-fixed__title {
  font-size: 72px;
  color: white;
  font-weight: 600;
  line-height: 120%;
}

.jumbotron-files .container {
  position: relative;
  height: 900px;
}

.jumbotron-files__button {
  position: relative;
  width: 260px;
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 90px;
  padding-left: 50px;
}

.jumbotron-files__button span {
  position: relative;
  z-index: 2;
}

.jumbotron-files__button:before {
  content: url("https://thumb.tildacdn.com/tild6131-3963-4138-a134-633739623635/-/resize/260x/-/format/webp/_2.png");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.jumbotron-files__content {
  padding-top: 15vh;
}

.jumbotron-files p {
  font-size: 19px;
  max-width: 400px;
  margin-top: 20px;
}

.jumbotron-files__display {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 30%;
}

.jumbotron-files__display iframe {
  position: absolute;
  right: 16%;
  top: 19%;
  height: 67%;
  width: 70%;
}

.jumbotron-files__display .mac {
  margin-top: 30px;
}

.jumbotron-files__display .phone {
  left: -90px;
  position: absolute;
  top: 42%;
  z-index: 2;
}

.jumbotron-files__text {
  position: absolute;
  bottom: 10%;
  font-weight: 300;
  left: 0;
  right: 0;
  color: white;
  z-index: 5;
  font-size: 20px;
  padding: 0 40px;
}

.jumbotron-files__bg {
  position: absolute;
  left: 0;
  top: 10px;
  right: -30px;
  height: 100%;
}

.jumbotron-files__img {
  width: 102%;
  position: absolute;
  top: 0;
  left: 0;
}

.jumbotron-files__file-top {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 2;
}

.jumbotron-files__file-left {
  position: absolute;
  bottom: 20%;
  z-index: 2;
  left: 7%;
}

.jumbotron-files__file-bottom {
  position: absolute;
  bottom: 20%;
  right: 10%;
  z-index: 5;
}

.home-jumbotron .container {
  position: relative;
}

.home-jumbotron .container img {
  position: absolute;
  right: 0;
}

.home-jumbotron__row {
  height: 80vh;
  display: flex;
  align-items: center;
  outline: 1px solid red;
}

.home-section {
  margin-top: 135px;
}

.home-section--lg {
  margin-top: 80px;
}

.home-section--dark {
  background: #efefef;
}

.home-tabs {
  background: #ffffff;
  max-width: 960px;
  border: 0 solid #eeeeee;
  border-radius: 50px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

.home-tabs__controls {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eeeeee;
}

.home-tabs__controls a {
  padding: 18px 20px;
  color: #000;
  display: block;
  font-weight: 400;
  font-size: 18px;
  position: relative;
}

.home-tabs__controls a.is--active:before {
  visibility: visible;
  opacity: 1;
}

.home-tabs__controls a:before {
  background: #ff42a7;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.home-tabs__controls a:hover {
  text-decoration: none;
}

.home-tabs__content {
  padding: 40px;
}

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

.home-video iframe {
  width: 860px;
  height: 484px;
}

.home-partners .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-reviews__picture {
  padding-right: 30px;
}

.home-reviews__picture img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-advantages__title {
  margin-bottom: 10px;
}

.home-advantages__picture {
  margin-right: 20px;
  padding-top: 10px;
}

.home-dark-section {
  background: #f3f3f3;
  padding: 60px 0;
}

.home-dark-section .title-lg {
  font-size: 46px;
}

.home-dark-section .btn {
  padding: 0 60px;
}

.home-resource {
  padding: 30px;
  font-size: 18px;
  color: white;
  position: relative;
  min-height: 380px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
}

.home-resource:hover .home-resource__picture {
  transform: scale(1.1);
}

.home-resource__picture {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: .3s;
}

.home-resource .btn {
  height: 45px;
}

.home-resource .col-item {
  position: relative;
  z-index: 2;
}

.home-resource:before {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

.home-resource.is--pink {
  background: #ff42a7;
  min-height: initial;
}

.home-resource.is--pink:before {
  display: none;
}

.title-lg {
  font-size: 50px;
  font-weight: 800;
  line-height: 120%;
}

.title-lg-1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 110%;
}

.title-md {
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
}

.title-sm {
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
}

.size-20 {
  font-size: 20px;
}

.size-22 {
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}

.size-28 {
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}

.size-24 {
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}

.size-18 {
  font-size: 18px;
}

.txt-24 {
  font-size: 24px;
}

.txt-20 {
  font-size: 20px;
}

.size-15 {
  font-size: 15px;
}

.txt-gray {
  color: #6e6e6e;
}

.bolder {
  font-weight: 500;
}

.size-14 {
  font-size: 14px;
}

.link-pink {
  color: #ff42a7 !important;
  transition: .3s opacity;
}

.link-pink:hover {
  opacity: .6;
  text-decoration: none;
}

.list-dotted {
  color: #6e6e6e;
  font-size: 18px;
}

.list-dotted ul {
  padding-left: 20px;
}

.color-gray {
  color: #b3b3b3;
}

.color-pink {
  color: #ff42a7;
}

.color-white {
  color: white;
}

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

.text-content {
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 130%;
}

.text-content h1 {
  font-size: 52px;
  line-height: 1;
}

.text-content h2 {
  font-size: 32px;
}

.text-content--single {
  font-size: 18px;
}

.text-content--single h1 {
  font-size: 36px;
}

.text-content p {
  margin-bottom: 30px;
  line-height: 150%;
}

.text-content ul,
.text-content ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.text-content ul li,
.text-content ol li {
  margin-bottom: 5px;
}

.text-content a {
  color: #ff42a7;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-content .wp-block-image {
  text-align: center;
  margin: 40px 0;
}

.text-content .wp-block-image figcaption {
  font-size: 14px;
  margin-top: 15px;
}

.text-content .wp-block-image img {
  max-width: 100%;
  height: auto;
}

.bolder {
  font-weight: 800;
}

.light {
  font-weight: 300;
}

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

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

p {
  font-weight: 300;
}

.medium {
  font-weight: 400 !important;
}

.text-content-sm h2 {
  font-size: 24px;
  font-weight: 500;
}

.text-content-sm p {
  font-size: 16px;
}

b {
  font-weight: 500;
}

.site-footer {
  background: #111111;
  font-size: 14px;
  color: white;
}

.site-footer__gotop {
  position: fixed;
  bottom: 40px;
  left: 40px;
  display: none;
}

.site-footer__gotop.show {
  display: block;
}

.site-footer__top {
  padding-top: 75px;
  padding-bottom: 25px;
  border-bottom: 1px solid #292929;
}

.site-footer__top nav a {
  color: white;
  display: block;
  transition: color .3s;
}

.site-footer__top nav a:hover {
  color: #ff42a7;
  text-decoration: none;
}

.site-footer__top nav a:not(:last-child) {
  margin-bottom: 10px;
}

.site-footer__title {
  color: #525252;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
}

.site-footer__social {
  margin-top: 30px;
}

.site-footer__social svg {
  width: 25px;
  height: 25px;
}

.site-footer__social a {
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

.site-footer__social a:hover {
  text-decoration: none;
}

.site-footer__social path {
  width: 25px;
  height: 25px;
}

.site-footer__bottom {
  padding: 10px 0;
}

.site-footer__bottom .col-item {
  padding-right: 8px;
}

.site-footer__bottom a {
  color: white;
  transition: color .3s;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #ff42a7;
}

.mb-60 {
  margin-bottom: 60px;
}

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

.h-100 {
  height: 100%;
}

.outline {
  outline: 1px solid red;
}

.list-null {
  list-style: none;
  padding: 0;
  margin: 0;
}

.img-r {
  max-width: 100%;
}

.circle-big {
  position: relative;
  margin: 0 auto 20px;
}

.circle-big__txt {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-big svg {
  width: 120px;
  height: 120px;
}

.circle-big .bg {
  fill: none;
  stroke-width: 12px;
  stroke: #f3f3f3;
}

.circle-big .progress {
  fill: none;
  stroke-width: 12px;
  stroke: #ff42a7;
  stroke-linecap: round;
  stroke-dasharray: 326.56;
  stroke-dashoffset: 60;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  -webkit-animation: big 1.5s ease-in-out;
  animation: big 1.5s ease-in-out;
}

@-webkit-keyframes big {
  from {
    stroke-dashoffset: 326.56;
  }

  to {
    stroke-dashoffset: 60;
  }
}

@keyframes big {
  from {
    stroke-dashoffset: 326.56;
  }

  to {
    stroke-dashoffset: 60;
  }
}

@-webkit-keyframes one {
  from {
    stroke-dashoffset: 232.36;
  }

  to {
    stroke-dashoffset: 80;
  }
}

@keyframes one {
  from {
    stroke-dashoffset: 232.36;
  }

  to {
    stroke-dashoffset: 80;
  }
}

@-webkit-keyframes two {
  from {
    stroke-dashoffset: 232.36;
  }

  to {
    stroke-dashoffset: 140;
  }
}

@keyframes two {
  from {
    stroke-dashoffset: 232.36;
  }

  to {
    stroke-dashoffset: 140;
  }
}

@-webkit-keyframes appear {
  0%, 50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0%, 50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.team__img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-input {
  background: #fff;
  color: #575757;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  padding-left: 20px;
  width: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 80px;
  overflow-x: hidden;
}

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

p {
  font-weight: 300 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.site-menu > li {
  position: relative;
  height: 80px;
}

.site-menu > li:hover {
  position: relative;
  z-index: 4;
}

.site-menu > li:hover ul {
  visibility: visible;
  opacity: 1;
}

.site-menu > li:hover > a {
  opacity: .4;
}

.site-menu > li.dropdown {
  position: relative;
}

.site-menu > li.dropdown > a:before {
  content: ' ';
  position: absolute;
  border-top-color: inherit;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  left: 100%;
  top: 50%;
  margin-left: 5px;
}

.site-menu > li.dropdown > a:before {
  border-color: #000 transparent transparent transparent;
}

.site-menu ul {
  background: #ffffff;
  padding: 18px 20px;
  margin: 0;
  list-style: none;
  position: absolute;
  text-align: left;
  width: 170px;
  border-radius: 3px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  font-size: 14px;
  transform: translateX(-50%);
  left: 50%;
  top: 94%;
  visibility: hidden;
  opacity: 0;
}

.site-menu ul a:hover {
  color: #ff42a7;
}

.site-menu ul:before {
  content: '';
  position: absolute;
  border: solid transparent;
  border-width: 10px;
  right: 50%;
  transform: translateX(50%);
  border-bottom-color: white;
  top: -20px;
}

.site-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}

.site-menu a {
  transition: opacity .3s, color .3s;
  color: #000;
  line-height: 1.4;
  position: relative;
}

.site-menu a:hover {
  text-decoration: none;
}

.access {
  background: #efefef;
  padding: 120px 0;
}

.access .btn {
  padding: 0 60px;
}

.access__text {
  margin-bottom: 70px;
}

.access p {
  font-weight: 400;
}

.access__btn {
  position: relative;
  display: inline-block;
}

.access__btn svg {
  position: absolute;
  fill: #c9c9c9;
  width: 80px;
  transform: scale(0.6);
  right: 100%;
  top: -50px;
}

.tab__content {
  display: none;
}

.tab__content.is--show {
  display: block;
}

.contacts a {
  color: #ff42a7;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: #f3f3f3;
}

.section-functions {
  padding: 100px 0;
}

.section-functions iframe {
  height: 400px;
  width: 100%;
}

.section-functions--dark {
  background: #f2f2f2;
}

.spacing {
  letter-spacing: 2.5px;
}

.time-code {
  position: relative;
}

.time-code__item {
  font-size: 18px;
  display: flex;
}

.time-code__item span {
  white-space: nowrap;
  flex: 0 0 95px;
  font-weight: 600;
  max-width: 95px;
}

.time-code__content {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.time-code__bg {
  position: absolute;
}

.time-code iframe {
  position: absolute;
  width: 75%;
  height: 64%;
  left: 0;
  right: 0;
  top: 4%;
  padding-top: 80px;
  z-index: 9;
  margin: 0 auto;
}

.time-code__noute {
  max-width: 100%;
  position: relative;
  z-index: 4;
}

.post-sm {
  font-size: 14px;
  line-height: 120%;
}

.post-sm:hover {
  text-decoration: none;
}

.post-sm__picture {
  height: 105px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-sm__title {
  color: #313132;
  font-weight: 500;
  margin: 10px 0;
}

.post-sm__text {
  color: #777;
  font-size: 12px;
}

.post:hover {
  text-decoration: none;
}

.post__picture {
  height: 170px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post__picture--big {
  height: 240px;
}

.post__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #000;
}

.access-big {
  background: #f3f3f3;
  padding: 100px 0 20px;
}

.form {
  border: 2px solid #ff42a7;
  background-position: center center;
  padding: 25px;
}

.form__title {
  font-size: 30px;
  color: #000;
  font-weight: 600;
}

.form__text {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 120%;
}

.text-arrow {
  padding-left: 50px;
}

.text-arrow__title {
  position: relative;
}

.text-arrow__title:before {
  content: '';
  width: 30px;
  display: block;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  background: url("../images/icons/arrows-double.webp") no-repeat center/cover;
}

.case {
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  position: relative;
  mso-line-height-alt: 100%;
  color: white;
  border-radius: 15px;
}

.case:after {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  left: 0;
  z-index: 2;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
}

.case > div {
  position: relative;
  z-index: 4;
}

.case__title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 130%;
  margin-right: 50px;
  margin-bottom: 20px;
}

.case__icon {
  position: absolute;
  right: -10px;
  top: 10px;
}

.case__text {
  font-size: 18px;
}

.case img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-panel {
  height: 100%;
  padding: 0 40px;
}

.text-panel__col {
  background: #f7f7f7;
  padding: 50px 0;
}

.text-panel__col:not(:last-child) .text-panel {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.comment-icon {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding-left: 140px;
}

.comment-icon:before {
  content: url("../images/icons/comment.webp");
  position: absolute;
  left: 0;
}

.partners {
  text-align: center;
}

.partners a {
  filter: grayscale(100%);
  transition: .3s;
}

.partners a:hover {
  filter: none;
}

.price {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price__top {
  background: #111111;
  padding: 15px;
}

.price__top--is-pink {
  background: #ff42a7;
}

.price__title {
  color: white;
  font-size: 22px;
  border-bottom: 1px solid white;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
}

.price__content {
  background: #f0f0f0;
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price__list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.price__list li:before {
  content: '';
  position: absolute;
  background: url("../images/icons/check-circle.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
  left: 0;
}

.price__value {
  text-align: center;
  color: white;
  position: relative;
  padding: 30px 0 20px;
}

.price__value sup {
  font-size: 24px;
  position: absolute;
  top: 30px;
  font-weight: 400;
  margin-left: -15px;
}

.price__value b {
  font-size: 55px;
  line-height: 100%;
}

.price__value span {
  font-size: 24px;
}

table:not(.selection_tarif_table) {
  width: 100%;
  font-size: 20px;
  text-align: center;
}

table td {
  padding: 20px 30px;
}

table td:first-child {
  text-align: left;
}

table tbody {
  font-size: 17px;
  font-weight: 300;
}

table thead td {
  background: #ff42a7;
  color: white;
  text-align: center;
  font-weight: 500;
  line-height: 140%;
  padding: 30px 20px;
}

.accordion__item {
  margin: 5px auto;
}

.accordion__item .accordion__title {
  background: #eaeaea;
  position: relative;
  display: block;
  padding: 15px 60px 15px 30px;
  margin-bottom: 2px;
  color: #202020;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s;
  cursor: pointer;
}

.accordion__item .accordion__title:hover {
  background: #e5e4e4;
  transition: all 0.5s ease-out;
}

.accordion__item .accordion-active {
  background: #e5e4e4;
}

.accordion__item .accordion__title .accordion__arrow {
  background: #c9c9c9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  margin-right: 5px;
  border-radius: 50%;
  transition: all 0.2s ease-out;
}

.accordion__item .accordion__rotate {
  transform: rotate(225deg);
}

.accordion__item .accordion__content {
  background: #f3f3f3;
  padding: 30px;
  margin-bottom: 2px;
  font-size: 14px;
  display: none;
}

.accordion__item .accordion__arrow-item {
  font-weight: 700;
}

.calculate-range {
  background: #ffffff;
  border: 6px solid #ff42a7;
  box-shadow: 0 0 20px 0 rgba(59, 2, 33, 0.3);
  padding: 30px 50px;
}

.calculate-range__title {
  line-height: 1.2;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

.calculate-range__input {
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  height: 50px;
  padding-left: 5px;
}

.calculate-range__input--bg {
  background: rgba(255, 66, 167, 0.3);
  border: none;
}

.noUi-target {
  margin-top: 55px;
  border: none;
  box-shadow: none;
}

.noUi-horizontal {
  height: 2px;
}

.noUi-connect {
  background: #ff42a7;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -8px;
  background: #ff42a7;
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-tooltip {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 14px;
  padding: 5px 5px;
  text-align: center;
}

@media (min-width: 578px) {
  .home-choice__content {
    border-right: 2px solid #d1d1d1;
    padding: 0 50px;
  }
}

@media (min-width: 768px) {
  .home-choice:nth-child(3n) .home-choice__content {
    border: none;
  }
}

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

  .site-menu > li > a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  table tr:nth-child(even) td {
    background: #eeeeee;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }
}

@media (max-width: 1199px) {
  .jumbotron-files__img {
    width: 110%;
  }
}

@media (max-width: 991px) {
  .jumbotron {
    padding-top: 60px;
  }

  .jumbotron__title {
    font-size: 36px;
  }

  .jumbotron p {
    margin-bottom: 40px;
  }

  .jumbotron-files .container {
    height: initial;
  }

  .jumbotron-files__content {
    padding-top: 90px;
  }

  .jumbotron-files__display {
    position: relative;
    height: initial;
    bottom: initial;
  }

  .jumbotron-files__display .mac {
    width: 100%;
  }

  .jumbotron-files__text {
    padding: 0;
    position: static;
    color: #000;
    margin: 60px 0 20px;
  }

  .jumbotron-files__bg {
    position: static;
    height: initial;
  }

  .home-section {
    margin-top: 80px;
  }

  .home-video iframe {
    width: 100%;
  }

  .home-dark-section {
    text-align: center;
  }

  .home-resource {
    min-height: 240px;
  }

  .title-lg {
    font-size: 36px !important;
  }

  .title-md {
    font-size: 36px !important;
  }

  .text-content h1 {
    font-size: 36px !important;
  }

  .team__img {
    height: 240px;
  }

  .site-menu > li {
    height: initial;
  }

  .site-menu > li > a {
    margin-bottom: 20px;
    display: inline-block;
  }

  .access {
    padding: 80px 0;
  }

  .access {
    padding: 40px 0;
  }

  .access__text {
    margin-bottom: 40px;
  }

  .section-functions {
    padding: 80px 0;
  }

  .access-big {
    padding: 80px 0;
  }

  table:not(.selection_tarif_table) td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid #d9d9d9;
    padding: 15px;
  }

  table:not(.selection_tarif_table) td:nth-child(even) {
    background: #d9d9d9;
  }

  table:not(.selection_tarif_table) td:before {
    content: attr(data-label);
  }

  table:not(.selection_tarif_table) tr {
    display: block;
  }

  table:not(.selection_tarif_table) thead {
    display: none;
  }


  .calculate-range {
    padding: 20px;
  }

  .calculate-range__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .gutter-x-5-md {
    margin-left: -5px;
    margin-right: -5px;
  }

  .gutter-x-5-md > * {
    padding-left: 5px;
    padding-right: 5px;
  }

  .gutter-y-20-md {
    margin-bottom: -20px;
  }

  .gutter-y-20-md > * {
    padding-bottom: 20px;
  }

  .btn--xs {
    height: 40px;
    font-size: 16px;
    padding: 0 15px !important;
  }

  .btn--sm {
    height: 40px;
    font-size: 16px;
    padding: 0 15px !important;
  }

  .btn--md {
    height: 40px;
    font-size: 16px;
    padding: 0 15px !important;
  }

  .btn--lg {
    height: 40px;
    font-size: 16px;
    padding: 0 15px !important;
  }

  .btn--xl {
    height: 40px;
    font-size: 16px;
    padding: 0 15px !important;
  }

  .jumbotron__title {
    font-size: 24px;
  }

  .jumbotron__content {
    max-width: 100%;
  }

  .jumbotron .btn {
    width: initial;
  }

  .jumbotron-bg {
    height: initial;
    padding: 50px 0;
  }

  .jumbotron-fixed__text {
    font-size: 28px !important;
  }

  .jumbotron-fixed__row {
    height: initial;
    padding: 50px 0;
  }

  .jumbotron-fixed__title {
    font-size: 36px !important;
  }

  .home-section {
    margin-top: 60px;
  }

  .home-tabs {
    border-radius: 25px;
  }

  .home-tabs__controls {
    display: block;
    text-align: center;
  }

  .home-tabs__controls a {
    padding: 10px;
    font-size: 16px;
  }

  .home-tabs__content {
    padding: 20px;
  }

  .home-video iframe {
    height: 240px;
  }

  .home-dark-section {
    padding: 30px 0;
  }

  .title-lg {
    font-size: 28px !important;
  }

  .title-lg-1 {
    font-size: 28px !important;
  }

  .title-md {
    font-size: 28px !important;
  }

  .size-20 {
    font-size: 18px;
  }

  .size-22 {
    font-size: 20px;
  }

  .size-28 {
    font-size: 20px;
  }

  .size-24 {
    font-size: 18px;
  }

  .size-18 {
    font-size: 16px;
  }

  .txt-24 {
    font-size: 20px;
  }

  .txt-20 {
    font-size: 18px;
  }

  .text-content {
    font-size: 18px;
  }

  .text-content h1,
  .text-content h2,
  .text-content h3,
  .text-content h4,
  .text-content h5,
  .text-content h6 {
    margin-bottom: 25px;
  }

  .text-content h1 {
    font-size: 28px !important;
  }

  .text-content h2 {
    font-size: 24px !important;
  }

  .site-footer__gotop {
    bottom: 15px;
    left: initial;
    right: 15px;
  }

  .site-footer__gotop svg {
    width: 40px;
    height: 40px;
  }

  .site-footer__top {
    padding-top: 40px;
  }

  .mb-60 {
    margin-bottom: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section-functions {
    padding: 60px 0;
  }

  .section-functions iframe {
    height: 240px;
  }

  .access-big {
    padding: 60px 0;
  }

  .case {
    padding: 20px;
    min-height: initial;
  }

  .case__title {
    font-size: 20px;
  }

  .case__text {
    font-size: 16px;
  }

  .text-panel {
    padding: 30px 15px;
  }

  .text-panel__col {
    padding: 0;
  }

  .text-panel__col:not(:last-child) .text-panel {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 576px) {
  .home-choice__content {
    border-bottom: 2px solid #d1d1d1;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) and (min-width: 578px) {
  .home-choice:nth-child(2n) .home-choice__content {
    border: none;
  }
}

@media (max-width: 991px) and (min-width: 578px) {
  .home-choice__content {
    padding: 0 25px;
  }
}

