/* Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

@font-face {
  font-family: 'fontello';
  src:
    url('fontello.woff2') format('woff2'),
    url('fontello.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.icon-ok:before {
  content: '\e802';
}
.icon-star:before {
  content: '\e804';
}
.icon-close:before {
  content: '\e805';
}
.icon-add_box_24px:before {
  content: '\e806';
}
[class^='icon-']:before,
[class*=' icon-']:before {
  font-family: 'fontello';
}
:root {
  --accent: #2ECE51;
  --primary: #000;
  --secondary: #cfd4fc;
  --accent-hover: #2CE518;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  word-break: break-word;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}
ul,
ol {
  list-style: none;
}
ul li,
ol li {
  margin-bottom: 1.5rem;
}
ul li:before,
ol li:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background: #000;
  margin: 0 1.4rem 0 0.5rem;
}
a {
  text-decoration: underline;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}

a:hover {
  text-decoration: none;
}

/* Common  */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
}
body {
  font: 1.5rem/1.3 'Roboto', 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  background: #fff url('online-datingreviews-bg.svg') no-repeat center top / cover;
}
.center {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.6rem;
  color: #fff;
}
.page-title {
  font-size: 3rem;
  margin-bottom: 2.2rem;
  color: #000;
  text-align: center;
}
p {
  line-height: 1.4;
}
.btn {
  display: inline-flex;
  justify-content: center;
  padding: 1.9rem 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-decoration: none;
}
.btn.btn-secondary {
  background: #2ECE51;
  color: #3d3d3b;
}
.btn.btn-secondary:hover {
  background: #e7eafe;
}
.btn.btn-accent {
  background: #2ECE51;
}
.btn.btn-accent:hover {
  background: #2CE518;
}
/********** HEADER SECTION **********/
.online-datingreviews-header-section {
  margin-bottom: 2rem;
  position: relative;
}
.online-datingreviews-header-section .logo img {
  max-width: 200px;
  display: block;
}
.online-datingreviews-header-section .center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.online-datingreviews-header-section .center {
  padding: 4rem 1.5rem 1.6rem;
}
/********** HEADER MENU **********/
.dropdown-item > span:after {
  content: '\e806';
  font-family: 'fontello';
  color: #2ECE51;
  display: inline-block;
  margin-left: 0.8rem;
}
.online-datingreviews-header-nav-item {
  display: inline-flex;
  cursor: pointer;
  background: transparent;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
  margin-right: 1rem;
  font-size: 1.6rem;
  z-index: 1;
  position: relative;
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}

.online-datingreviews-header-nav-item.active {
  color: #2ECE51;
}
.online-datingreviews-header-nav-item.dropdown-item span {
  background: #fff;
  padding: 0.8rem;
  display: block;
  box-shadow: 0px 0rem 1rem transparent;
}
.online-datingreviews-header-nav-item.dropdown-item.is-active span {
  box-shadow: 0px 0rem 0.5rem rgba(0, 0, 0, 0.1);
  color: #2ECE51;
}
.online-datingreviews-header-nav-item.dropdown-item:before {
  content: '';
  height: 1rem;
  width: 1rem;
  position: absolute;
  bottom: 0;
  left: -1rem;
  background: #fff;
}
.online-datingreviews-header-nav-item.dropdown-item:after {
  content: '';
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 5px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: -1.2rem;
  box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05);
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
  opacity: 0;
}
.online-datingreviews-header-nav-item.dropdown-item.is-active:after {
  opacity: 1;
}
.online-datingreviews-header-nav-item.dropdown-item span:before {
  content: '';
  height: 1rem;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 101;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}
.online-datingreviews-header-nav-item.dropdown-item.is-active span:before {
  opacity: 1;
}
.online-datingreviews-header-nav-item > span {
  padding: 0 0.8rem;
  margin: auto;
  -ms-flex-item-align: center;
}
.online-datingreviews-header-nav-item-inner {
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  position: absolute;
  z-index: 100;
  top: 100%;
  right: 0;
  max-height: 400px;
  padding: 10px 0 12px 0;
  transform: translateY(-10px);
  box-shadow: 0px 0px 0.5rem rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 5px;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}
.full-menu-item-title {
  font-weight: 700;
  color: #000;
  padding: 8px 12px;
}
.online-datingreviews-header-nav-item-inner.full-menu {
  display: flex;
  padding: 10px 0 12px;
}
.online-datingreviews-header-nav-item-inner.full-menu .full-menu-item {
  position: relative;
}
.online-datingreviews-header-nav-item-inner.full-menu .full-menu-item:last-child:after {
  display: none;
}
.online-datingreviews-header-nav-item-inner.full-menu .full-menu-item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 80%;
  margin: auto;
  width: 1px;
  background: #666;
  opacity: 0.2;
}
.is-active .online-datingreviews-header-nav-item-inner {
  visibility: visible;
  transform: translateY(0px);
  opacity: 1;
}
.online-datingreviews-header-nav-item-inner a {
  padding: 8px 1.5rem;
  font: 1.6rem/1.3 'Roboto', Arial, Helvetica, sans-serif;
  color: #3d3d3b;
  cursor: pointer;
  text-transform: none;
  display: block;
  position: relative;
  white-space: nowrap;
}

.online-datingreviews-header-section .online-datingreviews-header-nav-item:hover,
.online-datingreviews-header-nav-item-inner a:hover{
    color: #2CE518;
  }
/* MOBILE BTN */
.mobile-nav-visible .mobile-btn {
  width: 24px;
  transform: rotate(-270deg);
  right: 10px;
}
.mobile-nav-visible .mobile-btn .icon-line-1 {
  transform: rotate(-45deg);
}
.mobile-nav-visible .mobile-btn .icon-line-2 {
  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: #000;
  transition: all 0.35s cubic-bezier(0.39, 0, 0.17, 0.99);
  z-index: 1;
}
/**********  MAIN BLOCK  **********/
.online-datingreviews-main-block {
  display: flex;
  align-items: flex-end;
  height: 508px;
  position: relative;
  padding: 4rem 4rem 3rem;
  margin-top: 4rem;
}
.online-datingreviews-main-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.online-datingreviews-main-block .online-datingreviews-main-content {
  max-width: 500px;
  color: #fff;
}
.online-datingreviews-main-block .online-datingreviews-main-content p {
  max-width: 430px;
}
/**********  ABOUT BLOCK  **********/
.online-datingreviews-about-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
}

.online-datingreviews-about-block img  {
  margin: 0 auto;
}
.online-datingreviews-about-content {
  padding-top: 2.4rem;
  text-align: center;
}
.online-datingreviews-about-content p{
  text-align: left;
}
.online-datingreviews-about-title {
  color: #3d3d3b;
  font-size: 3rem;
  margin-bottom: 2rem;
  display: inline-block;
  text-decoration: none;
}
.online-datingreviews-about-title:hover {
  text-decoration: underline;
}
/**********  TEXT BLOCK  **********/
.online-datingreviews-text-block {
  max-width: 880px;
  margin: 5rem auto;
}
.online-datingreviews-text-block p {
  margin-bottom: 1rem;
}
.online-datingreviews-text-block p:last-child {
  margin-bottom: 0;
}
.img-block {
  margin-top: 8rem;
}
.checked-text {
  max-width: 719px;
  margin: 2rem auto 0;
}
.checked-text p {
  margin-bottom: 1.6rem;
  padding-left: 3rem;
  position: relative;
  text-transform: capitalize;
}
.checked-text p:last-child {
  margin-bottom: 0;
}
.checked-text p:before {
  content: '\e802';
  font-family: 'fontello';
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.4rem;
}
/**********  CATEGORY BLOCK  **********/
.online-datingreviews-category-block {
  margin: 5rem 0;
}
.online-datingreviews-category-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
  border-radius: 0.5rem;
}

.online-datingreviews-category-link {
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: underline;
  color: #666;
}
.online-datingreviews-category-item:last-child {
  margin-bottom: 0;
}
.online-datingreviews-category-item p {
  margin-bottom: 1.6rem;
  padding-left: 3rem;
  position: relative;
  text-transform: capitalize;
}
.online-datingreviews-category-item p:last-child {
  margin-bottom: 0;
}
.online-datingreviews-category-item p:before {
  content: '\e802';
  font-family: 'fontello';
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.4rem;
}
.online-datingreviews-category-item .online-datingreviews-category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 2.5rem 2.5rem;
}
.online-datingreviews-category-item .online-datingreviews-category-aside {
  flex: 1;
  text-align: center;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  max-width: 213px;
}

.online-datingreviews-category-aside .btn {
  margin: 1rem auto;
}

.online-datingreviews-category-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
}
.online-datingreviews-category-image-wrapper::after {
  content:'';
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #FFFFFF 29.22%, rgba(255, 255, 255, 0) 100%);
}

.online-datingreviews-category-logo {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/**********  POPULAR BLOCK **********/
.online-datingreviews-popular-block {
  margin: 8rem 0;
}
.online-datingreviews-popular-block-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.online-datingreviews-popular-item {
  padding: 2rem;
  text-align: center;
  width: 27.6rem;
  margin: 2rem;
  border: 2px solid #2ECE51;
  background: #fff;
  border-radius: 0.5rem;
}
.online-datingreviews-popular-item .logo-block {
  display: inline-flex;
  height: 12rem;
}
 .online-datingreviews-popular-item .logo-block img {
  margin: auto;
  -ms-flex-item-align: center;
}
.online-datingreviews-popular-name {
  margin: 1.6rem 0;
  font-size: 1.8rem;
  color: #000;
}
.online-datingreviews-popular-item .btn-secondary {
  margin-top: 1rem;
}
.online-datingreviews-popular-item .btn {
  margin: 2rem auto;
}
.online-datingreviews-popular-item .btn-link {
  color: #000000;
}
.rating-block {
  display: flex;
  justify-content: center;
}
.rating-block .rating-item {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 0.4rem;
}
.rating-block .rating-item.is-active:before {
  color: #2ECE51;
}
.rating-block .rating-item:before {
  font-size: 2rem;
  color: #3d3d3b;
}
/**********  FOOTER SECTION **********/
.online-datingreviews-footer-section {
  padding: 4rem 0;
  margin-top: 10rem;
  background: #09142e url('footer-bg.jpg') no-repeat center top / cover;
  text-align: center;
}
.online-datingreviews-footer-section .logo {
  display: inline-block;
}
.online-datingreviews-footer-section .copyright-block {
  width: 100%;
  color: #bbbbbb;
  font-size: 12px;
  text-align: center;
}
.online-datingreviews-footer-section .links-block {
  display: flex;
  justify-content: center;
  margin: 2rem;
}
.online-datingreviews-footer-section .links-block a {
  color: #BCBFC7;
  font-weight: 700;
  margin: 0 4rem;
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.online-datingreviews-footer-section .links-block a:hover {
  text-decoration: underline;
}
/**********  OVERLAY BLOCK **********/
.overlay-block.is-active {
  display: block;
}
.mobile-nav-visible .overlay-block.is-active {
  display: none;
}
.overlay-block {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/**********  MEDIA DEVICES **********/

@media screen and (max-width: 1050px) {
  .online-datingreviews-header-nav-block {
    display: none;
    flex: auto;
  }
  .online-datingreviews-header-section .center {
    padding: 2rem 1.5rem 0;
  }
  .mobile-btn-block {
    display: flex;
    padding: 20px 0 20px 20px;
  }
  .mobile-nav-visible .online-datingreviews-header-section .online-datingreviews-header-nav-block {
    width: 100%;
    display: block;
    margin-top: 2rem;
  }
  .mobile-nav-visible .online-datingreviews-header-section .online-datingreviews-header-nav-item {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    margin: 0;
  }
  .mobile-nav-visible .online-datingreviews-header-section .online-datingreviews-header-nav-item span {
    margin: 0;
  }
  .online-datingreviews-header-nav-item.dropdown-item span:before {
    right: -0.5rem;
    left: auto;
    bottom: 0;
    width: 1rem;
    height: 100%;
  }
  .online-datingreviews-header-nav-item.dropdown-item:before,
  .online-datingreviews-header-nav-item.dropdown-item:after {
    display: none;
  }
  .mobile-nav-visible .online-datingreviews-header-section .online-datingreviews-header-nav-item > span {
    padding: 1rem 1.4rem 1.2rem 1.4rem;
    display: block;
    position: relative;
  }
  .online-datingreviews-header-nav-item-inner,
  .online-datingreviews-header-nav-item-inner.full-menu {
    max-height: 100%;
    overflow: auto;
    display: none;
    position: static;
  }
  .online-datingreviews-header-nav-item-inner.full-menu .full-menu-item:after {
    width: calc(100% - 2.7rem);
    height: 1px;
    right: 0;
    left: 0;
    top: auto;
    bottom: -0.6rem;
  }
  .dropdown-item.is-active .online-datingreviews-header-nav-item-inner {
    flex: 1;
    display: block;
    padding: 0;
  }
  .online-datingreviews-header-nav-item-inner a:last-child {
    margin-bottom: 10px;
  }
  .online-datingreviews-header-nav-item-inner a {
    color: #000;
  }
  .online-datingreviews-header-nav-item-inner a:before {
    border-color: #000;
  }
  .mobile-nav-visible .online-datingreviews-header-section .online-datingreviews-header-nav-item > span:after {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 850px) {
  html {
    font-size: 55%;
  }
  .online-datingreviews-main-block {
    height: auto;
    min-height: 350px;
  }

  .online-datingreviews-about-content {
    padding: 1.4rem 0 0;
  }
  .online-datingreviews-about-title {
    margin-bottom: 0.8rem;
  }
  .online-datingreviews-footer-section {
    padding: 2rem 0;
    margin-top: 5rem;
  }
  .online-datingreviews-footer-section .links-block {
    display: block;
  }
  .online-datingreviews-text-block {
    margin: 2.5rem auto;
  }
  .online-datingreviews-category-block {
    margin: 2.5rem 0;
  }
  .online-datingreviews-category-item {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 750px) {
  .online-datingreviews-category-item {
    flex-direction: column;
    align-items: center;
  }
  .online-datingreviews-category-item .online-datingreviews-category-content {
    padding: 2rem 0;
  }
  .online-datingreviews-category-item .online-datingreviews-category-aside {
    padding: 0;
    margin: auto;
  }
  /*.online-datingreviews-category-image-wrapper {*/
  /*  height: 172px;*/
  /*  width: 243px;*/
  /*}*/
  /*.online-datingreviews-category-image {*/
  /*  position: relative;*/
  /*  top: -70px;*/
  /*  width: 100%;*/
  /*}*/
}

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

  .online-datingreviews-popular-item {
    max-width: 125px;
    width: 100%;
    margin: 1rem;
    padding: 1rem;
  }
}
@media screen and (max-width: 450px) {
.page-title-main{
  font-size:1.5rem;
}}