/* Font */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

/* SVG Font */
@font-face {
  font-family: "dating-review";
  src: url("dating-review.woff?13777057") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "dating-review";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-like:before {
  content: "\e800";
}
.icon-user:before {
  content: "\e801";
}
.icon-close:before {
  content: "\e802";
}
.icon-done:before {
  content: "\e803";
}
.icon-fb:before {
  content: "\e804";
}
.icon-info:before {
  content: "\e805";
}

.features-logo a img {
  width: 100%;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  word-wrap: break-word;
}
img {
  border: none;
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}
/* Common  */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-width: 300px;
  min-height: 480px;
  font: 500 1.8rem/1.5 "Roboto", "Arial", sans-serif;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
}
.price-section .rating-item:nth-child(3) {
  margin: 0 4rem 1rem 0;
}
.center {
  max-width: 1226px;
  margin: 0 auto;
  padding: 0 18px;
}
/* Buttton */
.btn {
  display: inline-flex;
  padding: 0 1rem;
  width: 100%;
  max-width: 153px;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  /*border: 2px solid #ff7f57;
  background: transparent;
  color: #ff7f57;*/
  border: 2px solid #ff7f57;
  background: #ff7f57;
  color: #fff;
  
  height: 5rem;
  font-weight: 500;
  border-radius: 10rem;
  transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn a,
.btn span {
  margin: auto;
  -ms-flex-item-align: center;
}
.btn a {
  color: inherit;
}
.btn:hover {
  /*border: 2px solid #ff7f57;
  background: #ff7f57;
  color: #fff;*/
  background: transparent;
  color: #ff7f57;
}
.btn.active {
  /*background: #ff7f57;
  border: 2px solid #ff7f57;
  color: #fff;*/
  background: transparent;
  color: #ff7f57;
}

.btn.active:hover {
  border-color: #ff6433;
  background: #ff6433;
}
/********** Header **********/
.header-section {
  margin-bottom: 2rem;
  background: #6f544d url(header-bg_married.jpg) no-repeat center top / cover;
  position: relative;
  transition: background-color 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 34, 34, 0.1);
}
.header-section .center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 15px 5.3rem;
  min-height: 320px;
}
.header-section .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-section .header-description {
  font-weight: bold;
  font-size: 11.2rem;
  text-transform: uppercase;
  color: #ffffff;
  /*opacity: 0.3;*/
  line-height: 1.3;
  text-align: center;
}
.header-section .header-description .btn {
  display: none;
  /*background-color: #fff;
  color: #ff7f57;*/
  background-color: #ff7f57;
  color: #fff;
  border-color: #fff;
}
.header-section .header-description .btn:hover {
  background-color: #fff;
  color: #ff7f57;
}
.header-section .header-description .btn.is-animated {
    animation-name: hvr-pulse-shrink;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Pulse Shrink */
@keyframes hvr-pulse-shrink {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(0.9);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.9);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.logo {
  font-weight: bold;
  font-size: 3rem;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.logo img{
  max-width: 170px;
  width: 100%;
  display: block;
}
.dropdown-item > span:after {
  content: "";
  align-self: center;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-left: 1rem;
  margin-bottom: 4px;
  -webkit-transform: rotate(45deg);
  transition: transform 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header-nav-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
  margin-right: 1rem;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
}
.header-nav-item.dropdown-item span {
  padding: 1.2rem 1rem 1.2rem 1rem;
  display: block;
}
.header-nav-item.active {
  border-radius: 10px 10px 0px 0px;
  background: rgba(255, 255, 255, 0.1);
  cursor: inherit;
}
.header-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header-nav-item > span {
  letter-spacing: 0.1em;
  padding: 1.2rem 1.6rem 1.2rem 1.2rem;
}
.header-nav-item-inner {
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  position: absolute;
  z-index: 100;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 300px;
  padding: 5px 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  border-radius: 0 0 10px 10px;
  background: #fff;
  border-bottom: 9px solid #fff1ed;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.full-menu-item-title {
  font-weight: 700;
  color: #000;
  padding: 8px 12px;
}
.header-nav-item-inner.full-menu {
  display: flex;
  left: auto;
  padding: 5px 20px 5px 89px;
      border-radius: 10px 0 10px 10px;
}
.header-nav-item-inner.full-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 82px;
  height: 111px;
  background: url("heart.svg") no-repeat 0 0 / cover;
}
.header-nav-item-inner.full-menu .full-menu-item {
  min-width: 200px;
}
.header-nav-item-inner a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ffaf96;
  display: inline-block;
  margin-right: 10px;
}
.active .header-nav-item-inner {
  visibility: visible;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  opacity: 1;
}
.header-nav-item-inner a {
  padding: 8px 12px;
  font: 1.4rem/1.2 "Roboto", Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}
.header-nav-item-inner a:hover {
  background: #fff1ed;
  color: #f58665;
}
/* MOBILE BTN */
.mobile-nav-visible .mobile-btn {
  width: 24px;
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
}
.mobile-nav-visible .mobile-btn .icon-line-1 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile-nav-visible .mobile-btn .icon-line-2 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-nav-visible .mobile-btn .icon-line-3 {
  display: none;
}
.mobile-nav-visible .mobile-btn .mobile-btn-item {
  background-color: #000;
  position: absolute;
}
.mobile-btn-block {
  display: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mobile-btn {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  height: 20px;
  width: 27px;
  position: relative;
  padding: 0;
  top: 0;
  transition: none;
  overflow: initial;
}
.mobile-btn .mobile-btn-item {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 1;
}

/**********  BREADCRUMPS  **********/
.breadcrumbs-section {
  margin-bottom: 2.6rem;
}
.breadcrumbs-block .nav_item,
.breadcrumbs-block .nav_item a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  display: inline-block;
}
.breadcrumbs-block .nav_item > span {
  /*margin: 0 3.4rem 0 3rem;*/
  align-self: center;
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-right: 1rem;
  margin-bottom: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.breadcrumbs-block .nav_item.last {
  color: #ff7f57;
}

/** MAIN BLOCK */
.main-block .center {
  display: flex;
  align-items: flex-start;
}
.main-section {
  flex: 1;
  margin-right: 3.8rem;
}
.sidebar-block {
  max-width: 267px;
  width: 100%;
}

/* Features BLOCK */
.features-logo-block {
  text-align: center;
}
.features-logo-block .btn {
  margin: 1rem 0;
}
.features-title {
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.features-block {
  display: flex;
  align-items: flex-start;
  max-width: 69.1rem;
}
.features-logo {
  width: 26.6rem;
  height: 26.6rem;
  /*display: inline-flex;*/
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px rgba(24, 25, 28, 0.05);
  border-radius: 20px;
  padding: 2rem;
}
.features-logo a {
  margin: auto;
  -ms-flex-item-align: center;
  width: 100%;
}
.features-list {
  margin-left: 6rem;
  flex: 1;
}
.features-list-title {
  font-weight: 500;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.9);
  width: 100%;
}
.features-item {
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  font-weight: normal;
  overflow-x: hidden;
}
.features-item:after {
  content: "";
  position: absolute;
  border: 0.1rem dashed #989898;
  display: inline-block;
  width: 100%;
  top: 23px;
  margin-left: 10px;
  z-index: -1;
  opacity: 0.3;
}
.features-item:before {
  font-family: "dating-review";
  content: "\e803";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 15px;
  color: #38dd34;
  background: #fff;
}

/* Social BLOCK */
.social-section {
  margin-bottom: 5rem;
}
.social-section p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 2rem;
}
.social-title {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.social-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}
.social-photo {
  max-width: 26.6rem;
}
.social-list {
  margin-left: 6rem;
  flex: 1;
}
.social-item {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  font-weight: normal;
}

.social-item:before {
  font-family: "dating-review";
  content: "\e803";
  position: absolute;
  left: -25px;
  top: 2px;
  bottom: 0;
  margin: auto;
  font-size: 15px;
  color: #000;
}

.social-item.facebook-icon:before {
  content: "\e804";
  font-size: 18px;
}
.social-item.done-icon:before {
  content: "\e803";
  font-size: 14px;
}
.social-item.user-icon:before {
  content: "\e801";
  font-size: 18px;
}
.social-item.like-icon:before {
  content: "\e800";
}
.social-item.info-icon:before {
  content: "\e805";
  font-size: 18px;
}

/* differences BLOCK */
.differences-title {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
}
.differences-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}
.differences-block > div {
  flex: 1;
  position: relative;
}
.pros-item,
.cons-item {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  font-weight: normal;
  padding-left: 30px;
  margin-right: 1.5rem;
}
.pros-item:before {
  font-family: "dating-review";
  content: "\e803";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  font-size: 15px;
  color: #38dd34;
}
.cons-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 5px;
}

/* SERVICE SECTION */
.services-section {
  margin-bottom: 9rem;
  margin-top: 5rem;
}
.services-block {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  margin-bottom: 2.4rem;
}
.services-title {
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 4rem;
  color: #bbbbbb;
}
.services-list {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 4.4rem 4rem 4rem 4.2rem;
}
.services-block > div {
  width: 45%;
  max-width: 42rem;
  position: relative;
}
.services-item {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  font-weight: normal;
  padding-left: 30px;
  margin-right: 1.5rem;
}
.services-item:before {
  font-family: "dating-review";
  content: "\e803";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  font-size: 15px;
  color: #38dd34;
}

/* QUESTION SECTION */
.question-section {
  margin-bottom: 5rem;
}
.question-title {
  font-weight: bold;
  font-size: 3.2rem;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 1.8rem;
  max-width: 90rem;
}
.question-block {
  max-width: 90rem;
}
.question-section p {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 90rem;
}
.question-header {
  font-size: 2.2rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  font-weight: bold;
  padding: 3rem 5rem 3rem 3.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.2rem;
  display: inline-block;
}
/*.question-header:after {*/
/*    content: "";*/
/*    align-self: center;*/
/*    border: solid #000;*/
/*    border-width: 0 2px 2px 0;*/
/*    display: inline-block;*/
/*    padding: 2px;*/
/*    transform: rotate(45deg);*/
/*    margin-left: 1rem;*/
/*    margin-bottom: 4px;*/
/*    -webkit-transform: rotate(45deg);*/
/*    position: absolute;*/
/*    right: 1.1rem;*/
/*    top: -0.3rem;*/
/*    height: 0.2rem;*/
/*    width: 0.2rem;*/
/*    bottom: 0;*/
/*    margin: auto;*/
/*    transition: transform 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);*/

/*}*/
/*.question-header:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    height: 2.6rem;*/
/*    width: 2.6rem;*/
/*    border: 2px solid #70757A;*/
/*    border-radius: 50%;*/
/*    bottom: 0;*/
/*    margin: auto;*/
/*    cursor: pointer;*/
/*}*/
.question-content {
  height: 100%;
}
.tab-open .question-content {
  visibility: visible;
  height: 100%;
  animation: fadeIn 0.35s linear both;
}
/*.tab-open .question-header:after{*/
/*    -webkit-transform: rotate(-135deg);*/
/*    top: 0.3rem;*/
/*}*/
/*@keyframes fadeIn {*/
/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/
/* PRICE SECTION */
.price-section {
  padding: 7rem 0;
  margin: 1rem 0 6rem;
  background: url(apps-bg.jpg) no-repeat center top / cover;
}
.price-section .rating-widget {
  margin-bottom: 0;
}
.price-section .rating-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.price-title {
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 4.5rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
.price-section .rating-item {
  background: #fff;
  max-width: 26.6rem;
}
.price-section .rating-item:nth-child(2) {
  margin: 0 4rem 1rem;
}
.price-section .rating-item .item-price {
  width: 100%;
  flex: auto !important;
  padding: 3rem 15px 1rem !important;
}
.item-price-count {
  color: rgba(0, 0, 0, 0.9);
  opacity: 0.8;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.2;
}
.item-price-month {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  align-items: center;
  text-align: center;
  color: #ff7f57;
  opacity: 0.8;
}

/* RATING WIDGET SECTION*/
.rating-widget-section {
  padding: 3rem;
}
.rating-widget-section .rating-title {
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  color: rgba(0, 0, 0, 0.9);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.rating-widget-section .rating-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rating-item {
  max-width: 26.6rem;
}

/**********  SEO SECTION  **********/
.seo-section {
  padding: 0 0 1rem;
}
.seo-section .seo-block .seo-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.seo-section .seo-block p {
  margin-bottom: 4rem;
  font-size: 2rem;
  line-height: 1.8;
}

/**********  SIDEBAR BLOCK  **********/

/**********  RATING WIDGET  **********/
.rating-widget {
  margin-bottom: 9rem;
}
.card-2 {
  display: none;
}
.rating-widget .rating-title {
  color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
}
.rating-widget .rating-block .review-link {
  display: block;
  color: #000;
  font-size: 1.6rem;
  margin-top: 0.4rem;
}
.rating-widget .rating-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 6rem;
  background: linear-gradient(102.67deg, #e47195 -4.84%, #7b2bdd 57.52%);
  border-radius: 10px 10px 0px 0px;
}
.rating-widget .rating-header > div {
  flex: 1;
  padding: 0 15px;
  color: #f2f2f2;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.rating-widget .rating-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3.4rem 0 2.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px rgba(24, 25, 28, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.rating-widget .rating-item .item-site {
  width: 100%;
  flex: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.8rem;
  margin-bottom: 0.4rem;
}
.rating-widget .rating-item .item-btn {
  width: 100%;
  flex: auto;
}
.rating-widget .rating-item .item-site img {
  margin: auto;
}
.rating-widget .rating-item .item-score .item-score-count {
  color: rgba(0, 0, 0, 0.9);
  opacity: 0.8;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
.rating-widget .rating-item .item-score .item-score-label {
  color: #000;
  font-size: 1.6rem;
  margin-top: 0.4rem;
  font-weight: 400;
}
.rating-widget .rating-item .item-btn {
  margin-top: 2rem;
}
.rating-widget .rating-item > div {
  flex: 1;
  padding: 0 14px;
  text-align: center;
}
.rating-widget .stars-description {
  margin-bottom: 0.3rem;
}
.stars-block {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.stars-block .star-item {
  width: 1.4rem;
  height: 1.4rem;
  background: url(star.svg) no-repeat 0 0 / cover;
  margin: 0 0.3rem;
}

/********** FOOTER SECTION **********/
.footer-section {
  background: url(apps-bg.jpg) no-repeat center top / cover;
  color: #fff;
  padding: 4.8rem 0 7.6rem;
  font-size: 1.6rem;
}
.footer-section .footer-inner {
  display: flex;
  justify-content: space-between;
}
.footer-section .footer-navigation-block {
  display: flex;
  align-items: flex-start;
}
.footer-section .footer-navigation-block .footer-navigation-item {
  max-width: 150px;
  margin-top: 0.6rem;
}
.footer-section .footer-navigation-block .footer-navigation-item:nth-child(2) {
  margin: 0.6rem 12.4rem 0;
}
.footer-section .footer-navigation-block .footer-navigation-item a {
  display: block;
  margin-bottom: 2.4rem;
  color: #fff;
  font-size: 1.6rem;
}
.footer-section .footer-navigation-block .footer-navigation-item a:hover {
  text-decoration: underline;
}

/********** MEDIA DEVICES **********/
@media screen and (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .center {
    padding: 0 18px;
  }
  /********** HEADER **********/
  .mobile-btn-block {
    display: flex;
    padding: 20px 0 20px 20px;
  }
  .header-nav-block {
    display: none;
  }
  .header-section {
    background-position: 83% top;
  }
  .header-section .center {
    padding: 15px 27px 5.3rem;
  }
  .mobile-nav-visible section,
  .mobile-nav-visible footer,
  .mobile-nav-visible .main-block,
  .mobile-nav-visible .header-description {
    display: none;
  }
  .mobile-nav-visible .header-section {
    background: #fff;
  }
  .mobile-nav-visible .header-section .center {
    padding: 1.6rem 27px 5.3rem;
  }
  .mobile-nav-visible .header-section:before {
    display: none;
  }
  .mobile-nav-visible .header-section .header-nav-block {
    width: 100%;
    display: block;
    margin-top: 7.5rem;
    margin-right: -27px;
    margin-left: -27px;
    width: calc(100% + 54px);
  }
  .mobile-nav-visible .header-section .header-nav-item {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    color: #000;
    display: block;
    font-size: 3.2rem;
    border-radius: 0;
    margin: 0;
  }
  .mobile-nav-visible .header-section .header-nav-item > span {
    padding: 2rem 1.6rem 1.2rem 2rem;
    display: block;
  }
  .mobile-nav-visible .header-section .header-nav-item > span:after {
    border: solid #000;
    position: absolute;
    top: 3rem;
    padding: 0.5rem;
    border-width: 0 2px 2px 0;
    right: 15px;
  }
  .full-menu-item-title {
    font-weight: 700;
    color: #000;
    padding: 8px 0;
  }
  .header-nav-item-inner {
    max-height: 100%;
    overflow: auto;
  }
  .header-nav-item-inner.full-menu {
    display: block;
    position: relative;
    left: 0;
    padding: 0;
  }
  .header-nav-item-inner.full-menu .full-menu-item {
    min-width: auto;
  }
  .mobile-nav-visible .header-section .header-nav-item.active > span:after {
    -webkit-transform: rotate(-135deg);
    top: 3.5rem;
  }
  .mobile-nav-visible
    .header-section
    .header-nav-item.active
    .header-nav-item-inner {
    position: relative;
    padding: 4px 20px;
    display: block;
  }
  .mobile-nav-visible
    .header-section
    .header-nav-item.active
    .header-nav-item-inner
    div,
  .mobile-nav-visible
    .header-section
    .header-nav-item.active
    .header-nav-item-inner
    a {
    line-height: 1;
    padding: 12px 0;
  }
  .mobile-nav-visible .header-section .header-nav-item .header-nav-item-inner {
    position: relative;
    padding: 0;
  }
  .mobile-nav-visible .header-section .header-nav-item .header-nav-item-inner {
    box-shadow: none;
    transition: height 150ms cubic-bezier(0.39, 0, 0.17, 0.99);
    display: none;
  }
  .header-nav-item-inner.full-menu:before {
    display: none;
  }
  .mobile-nav-visible
    .header-section
    .header-nav-item
    .header-nav-item-inner
    div,
  .mobile-nav-visible
    .header-section
    .header-nav-item
    .header-nav-item-inner
    a {
    font-size: 2.4rem;
    overflow-y: visible;
    padding: 0;
    line-height: 0;
  }
  .mobile-nav-visible .header-section .logo {
      color: #000;
    background: #ac73ff;
    padding: 5px;
  }
  .btn {
    max-width: 17rem;
  }
  
  

  /* SEO SECTION */
  .seo-section .center {
    flex-wrap: wrap;
  }
  .seo-section .widget-block {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
  /* FOOTER SECTION */
  .footer-section {
    text-align: center;
  }
  .footer-section .copyright-block {
    font-weight: 400;
  }
  .footer-section .footer-inner {
    flex-direction: column;
  }
  .footer-section .footer-navigation-block {
    justify-content: space-around;
    width: 100%;
    margin: 2rem 0;
    text-align: left;
  }
  .footer-section .footer-navigation-block .footer-navigation-item {
    margin: 0 2rem;
  }
  .footer-section
    .footer-navigation-block
    .footer-navigation-item:nth-child(1) {
    margin-left: 0;
  }
  .footer-section
    .footer-navigation-block
    .footer-navigation-item:nth-child(3) {
    margin-right: 0;
  }
  .footer-section
    .footer-navigation-block
    .footer-navigation-item:nth-child(2) {
    margin: 0;
  }
}
@media screen and (max-width: 660px) {
  .main-block .center {
    flex-direction: column;
  }
  .header-section .header-description .btn {
    display: inline-flex;
    max-width: 20rem;
    height: 8rem;
  }
  
  .sidebar-block {
    max-width: 100%;
    width: 100%;
    margin-top: 7rem;
  }
  .main-section {
    margin-right: 0;
  }
  .services-block {
    flex-direction: column;
  }
  .services-block > div {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .social-block {
    flex-direction: column;
  }
  .social-list {
    margin: 2rem 0 0 3rem;
  }
  .social-item:before {
    top: 0;
  }
  .features-block {
    flex-direction: column;
  }
  .features-list {
    width: 100%;
    flex: auto;
    margin-left: 0;
    margin-top: 2rem;
  }
  .differences-block {
    flex-direction: column;
  }
  
  .card-1 {
    display: none !important;
  }
  .card-2 {
    display: block;
    margin: 0 auto;
  }
  
  .btn {
    border: 2px solid #ff7f57;
    background: transparent;
    color: #ff7f57;
  }
  .btn:hover {
    border: 2px solid #ff7f57;
    background: #ff7f57;
    color: #fff;
  }
  .btn.active {
    background: #ff7f57;
    border: 2px solid #ff7f57;
    color: #fff;
  }
  
  
  .card-2 .btn {
    /*max-width: 20rem;
    height: 8rem;*/
  }
}

@media screen and (max-width: 420px) {
  .header-section .header-description {
    font-size: 7.2rem;
  }
  .rating-widget-section .rating-block {
    justify-content: center;
  }
  .rating-widget {
    text-align: center;
  }
  .rating-widget .rating-item {
    margin: 0 auto 1rem;
  }
  .price-section .rating-item:nth-child(3) {
    margin: 0 auto 1rem;
  }
  
    .features-logo-block {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .features-logo-block .btn {
    margin-left: 1rem;
  }
  .features-section{
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 48%;
  }
}