@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap");

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: swap;
  src: url("assets/MaterialIcons.woff2")
    format("woff2");
}

:root {
  --primary: #632cba;
  --header: transparent;
  --highlighted: #ffb13d;
  --accent: #4ea8de;
  --accent-hover: #e42956;
  --highlighted-hover: #2c76e6;
}

:focus {
  outline: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.85);
}

.center {
  max-width: 1446px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  font-weight: bold;
  font-size: 12px;
  background: var(--primary);
  border: none;
  padding: 0 16px;
  -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  box-shadow: none;
  background: var(--accent-hover);
}

.btn.btn-secondary {
  background: var(--accent);
}

.btn.btn-secondary:hover {
  background: var(--highlighted-hover);
}

section {
  padding: 10px 0;
}

section h2 {
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 10px;
}

.wrapper-instanthookups-3 {
  position: relative;
  overflow-x: hidden;
}

.container-section-instanthookups-3 {
  background:
    radial-gradient(
      50% 50% at 60.47% 50%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #fef1fb;
}

section .section-title {
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 32px;
  font-family: "Dosis", sans-serif;
  color: var(--primary);
  text-transform: uppercase;
}

p {
  margin-bottom: 10px;
}

/*********** header section ***********/

.header-section-instanthookups-3 {
  padding: 20px 0;
  background: var(--header);
  position: relative;
}

.header-section-instanthookups-3 .center {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
}

.header-section-instanthookups-3 .header-logo {
  display: block;
}

.header-section-instanthookups-3 .header-logo img {
  max-width: 91px;
}

.header-nav-block {
  display: flex;
  align-items: center;
  font-size: 12px;
  position: relative;
  z-index: 3;
}

.header-section-instanthookups-3 .header-title {
  grid-column: -1/1;
  font-size: 16px;
  border-top: 2px solid #000000;
  padding-top: 10px;
}

.header-section-instanthookups-3 .header-nav-item {
  margin-left: 10px;
  color: inherit;
  text-transform: uppercase;
}

.header-nav-item.dropdown-item span {
  padding-right: 18px;
  position: relative;
  cursor: pointer;
}

.header-nav-item.dropdown-item span::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(0,0,0,0.5)"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.header-nav-item.dropdown-item.hover {
  color: var(--primary);
}

.header-nav-item.dropdown-item.hidden {
  color: rgba(0, 0, 0, 0.85);
}

.header-nav-item.dropdown-item.hover + .dropdown-child {
  display: block;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 90px;
}

.header-nav-item.dropdown-item.hidden + .dropdown-child {
  display: none;
}

.header-section-instanthookups-3 .header-nav-item:hover {
  color: var(--primary);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-child {
  display: none;
  min-width: 200px;
  font-size: 16px;
  padding: 10px;
}

.dropdown-child a {
  text-decoration: none;
  display: block;
  color: #5e5e5e;
  padding: 10px;
  box-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.dropdown-child a:hover {
  color: var(--primary);
}

.dropdown-child a:first-child {
  box-shadow: none;
}

.dropdown:hover .dropdown-child {
  display: block;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 90px;
}

.overlay-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.overlay-block.is-active {
  display: block;
}

/*********** main section ***********/

.main-section-instanthookups-3 {
  padding: 0;
}

.main-section-instanthookups-3 .center {
  padding: 20px 20px 30px;
  background: #fff;
}

.main-section-instanthookups-3 .main-bg {
  position: relative;
  height: 240px;
  background: url("assets/resource.png")
    no-repeat center bottom / contain;
}

.main-section-instanthookups-3 .main-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.main-section-instanthookups-3 .main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: var(--primary);
  font-family: "Dosis", sans-serif;
  position: relative;
}

/*********** breadcrumbs section ***********/

.breadcrumbs-section-instanthookups-3 {
  padding: 0 0 30px;
}

.breadcrumbs-item {
  font-size: 14px;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.breadcrumbs-item a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  display: inline-block;
}

.breadcrumbs-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-item::after {
  content: "";
  margin: 0 8px 0 5px;
  align-self: center;
  border: solid #000;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin-bottom: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumbs-item:last-child::after {
  display: none;
}

/* Detail block */

.details-item img {
  margin: auto;
  object-fit: cover;
  transform: rotate(-5deg);
  clip-path: polygon(
    10% 0,
    90% 0,
    100% 10%,
    100% 90%,
    90% 100%,
    10% 100%,
    0 90%,
    0 10%
  );
  max-width: 330px;
  width: 100%;
}

.details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.details-header h2 {
  padding-bottom: 0;
}

.details-item .btns-block {
  text-align: center;
  margin-top: 20px;
}

.details-item .btn-secondary {
  min-width: 200px;
}

.details-item {
  margin-bottom: 30px;
}

.details-item:last-child {
  margin-bottom: 10px;
}

.overview-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.overview-item p {
  padding-left: 13px;
}

.overview-title {
  padding: 2px 14px;
  color: #fff;
  -webkit-clip-path: polygon(5% 4%, 90% 0%, 98% 18%, 100% 97%, 10% 98%, 0 86%);
  clip-path: polygon(5% 4%, 90% 0%, 98% 18%, 100% 97%, 10% 98%, 0 86%);
  background: #c4c4c4;
  display: inline-block;
}

/* Comparsion block */

.comprasion-section .comprasion-item {
  padding-bottom: 30px;
}

.comprasion-block .comprasion-point {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.comprasion-block .comprasion-point:before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
}

.comparsion-cons .comprasion-point:before {
  color: var(--primary);
  content: "\2715";
}

.free-item .comprasion-inner {
  padding: 31px 20px 20px 28px;
  max-width: 302px;
  background: #e3f3fd;
  clip-path: polygon(
    3% 3%,
    90% 0,
    100% 10%,
    100% 96%,
    13% 100%,
    0% 97%,
    0% 100%,
    0% 100%
  );
}

.pay-item .comprasion-inner {
  padding: 31px 20px 20px 28px;
  max-width: 302px;
  background: #fef1fb;
  clip-path: polygon(
    3% 3%,
    90% 0,
    100% 10%,
    100% 96%,
    13% 100%,
    0% 97%,
    0% 100%,
    0% 100%
  );
}

.pay-item .comprasion-point:before {
  color: var(--primary);
}

/* Compar block */

.compar-point {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.compar-inner .compar-point:last-child {
  margin-bottom: 0;
}

.compar-point:before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
}

.compar-cons .compar-point:before {
  color: var(--primary);
  content: "\2715";
}

.compar-inner {
  padding-bottom: 20px;
}

/* Member block */

.members-item {
  margin-bottom: 40px;
  text-align: center;
}

.members-content {
  text-align: left;
}

.members-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.members-item:last-child {
  margin-bottom: 0;
}

.members-photo {
  position: relative;
  margin-top: 20px;
}

.members-photo::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234EA8DE"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 46px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  right: -6px;
}

.members-photo .heart::before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23632CBA"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 63px;
  height: 63px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -28px;
  left: 8px;
}

.members-photo .heart::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23632CBA"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10px;
  right: -13px;
}

.members-photo.odd::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234EA8DE"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 46px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -23px;
  right: 79%;
}

.members-photo.odd .heart::before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23632CBA"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 39px;
  height: 39px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -23px;
  left: -7px;
}

.members-photo.odd .heart::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234EA8DE"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 62px;
  height: 62px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -26px;
  right: -28px;
}

.members-photo.odd img {
  transform: rotate(-5deg);
}

.members-photo img {
  transform: rotate(5deg);
  clip-path: polygon(
    10% 0,
    90% 0,
    100% 10%,
    100% 90%,
    90% 100%,
    10% 100%,
    0 90%,
    0 10%
  );
}

/* FAQ */

.faq-item {
  display: block;
  width: 100%;
  padding: 10px;
  word-break: break-word;
  cursor: pointer;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #d3d5d9;
}

.faq-title {
  position: relative;
  padding-right: 30px;
  font-size: 24px;
}

.faq-item.is-active .faq-title {
  color: var(--accent);
}

.faq-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-top-width: 0;
  border-left-width: 0;
  transform: translateY(-10px) rotate(45deg);
}

.faq-content {
  display: none;
  margin-top: 10px;
  opacity: 0;
}

.faq-content p {
  margin-bottom: 10px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-item.is-active .faq-content {
  display: block;
  animation: fadeIn 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

.faq-item.is-active .faq-title:before {
  border-color: var(--accent);
  transform: translateY(-3px) rotate(-135deg);
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.text-section .text-block {
  margin-bottom: 30px;
}

.contact-block .contact-pic {
  width: 250px;
  height: 244px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.contact-data .data-item {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  grid-gap: 5px;
  margin-bottom: 20px;
}

.data-item b {
  margin-bottom: 4px;
  padding: 2px 14px;
  color: #fff;
  -webkit-clip-path: polygon(5% 4%, 90% 0%, 98% 18%, 100% 97%, 10% 98%, 0 86%);
  clip-path: polygon(5% 4%, 90% 0%, 98% 18%, 100% 97%, 10% 98%, 0 86%);
  background: #c4c4c4;
}

.data-item span a {
  color: rgba(0, 0, 0, 0.85);
  word-break: break-word;
}

/*********** rating block ***********/

.rating-block {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-left: 24px;
}

.rating-block .rating-count {
  font-size: 16px;
  line-height: 28px;
  margin-left: 6px;
}

.rating-block .rating-item {
  line-height: 1;
  margin: 0 6px 0 0;
  font-size: 24px;
}

.rating-block .rating-item:last-child {
  margin-right: 0;
}

.rating-block .rating-item:first-child {
  margin-left: 0;
}

.rating-block .rating-item.is-active:before {
  content: "\2605";
}

.rating-block .rating-item:before {
  content: "\2606";
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
}

/*********** aside block ***********/

.category-title {
  margin-bottom: 30px;
  font-size: 32px;
  color: var(--primary);
  font-family: "Dosis", sans-serif;
  text-transform: uppercase;
}

/*********** category block ***********/

.aside-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category-item {
  position: relative;
  margin: 0 auto 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 268 450" preserveAspectRatio="none"><path d="M 25,2 L 266,2 L 266,420 L 241,448 L 2,448 L 2,27 Z" fill="%23ffffff" stroke="none"/></svg>')
    no-repeat center top / 100% 100%;
  max-width: 268px;
  color: inherit;
  z-index: 2;
}

.category-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 268 450" preserveAspectRatio="none"><path d="M 25,2 L 266,2 L 266,420 L 241,448 L 2,448 L 2,27 Z" fill="none" stroke="%23632CBA" stroke-width="2"/></svg>')
    no-repeat center top / 100% 100%;
  pointer-events: none;
  z-index: 10;
}

.photo .heart {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
}

.heart:before {
  content: "\e95c";
  color: #fff;
  font-size: 32px;
  font-family: "Material Icons";
  line-height: 48px;
}

/* Contact Us Page Specific Styles */
.main-section-instanthookups-contact {
  padding: 0;
}
.main-section-instanthookups-contact .center {
  padding: 20px 20px 30px;
  background: #fff;
}
.main-section-instanthookups-contact .main-bg {
  position: relative;
  height: 300px;
  background: url(https://web.archive.org/web/20250630001832im_/https://www.instanthookup.net/resource/main-pic-web.png)
    no-repeat center bottom / contain;
}
.main-section-instanthookups-contact .main-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.main-section-instanthookups-contact .main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: var(--primary);
  font-family: "Dosis", sans-serif;
  position: relative;
}

@media (min-width: 992px) {
  .main-section-instanthookups-contact {
    position: relative;
  }
  .main-section-instanthookups-contact .center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 400px;
    margin-left: -460px;
    margin-top: 37px;
    background: transparent;
    padding: 0;
  }
  .main-section-instanthookups-contact .main-title {
    font-size: 64px;
  }
  .main-section-instanthookups-contact .main-bg {
    position: static;
    height: 430px;
    margin-bottom: 0;
    background: #fef1fb
      radial-gradient(
        50% 50% at 60.47% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      );
  }
  .main-section-instanthookups-contact .main-bg:before {
    height: 450px;
    width: 331px;
    left: 53%;
    background: url(https://web.archive.org/web/20250630001832im_/https://www.instanthookup.net/resource/main-pic-web.png)
      no-repeat center bottom / contain;
  }
  .main-section-instanthookups-contact .main-title::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -44px;
    height: 186px;
    bottom: 0;
    width: 9px;
    background: var(--accent);
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 99%, 0% 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 99%, 0% 100%);
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}

.breadcrumbs-section-instanthookups-contact {
  padding: 0 0 10px;
}
.breadcrumbs-item {
  font-size: 14px;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transform: translateY(-30px);
}
.breadcrumbs-item a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  display: inline-block;
}
.breadcrumbs-item a:hover {
  text-decoration: underline;
}
.breadcrumbs-item::after {
  content: "";
  margin: 0 8px 0 5px;
  align-self: center;
  border: solid #000;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin-bottom: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.breadcrumbs-item:last-child::after {
  display: none;
}

.about-us-section img {
  margin-top: -30px;
  margin-bottom: 20px;
}
.about-us-section .section-title {
  position: relative;
}
.contact-us-section .section-title {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.contact-us-section p span {
  color: var(--primary);
}

.photo .heart-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 15px;
  left: 26px;
  text-align: center;
  z-index: 1;
}

.photo .heart-icon:before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-top: 8px;
}

.category-block .photo {
  position: relative;
  z-index: -1;
  width: calc(100% + 30px);
}

.category-item .photo img {
  width: 100%;
  object-fit: cover;
  -webkit-clip-path: polygon(
    7% 0%,
    84% 0,
    91% 13%,
    93% 86%,
    84% 96%,
    7% 85%,
    0% 76%,
    1% 10%
  );
  clip-path: polygon(
    7% 0%,
    84% 0,
    91% 13%,
    93% 86%,
    84% 96%,
    7% 85%,
    0% 76%,
    1% 10%
  );
  -webkit-transform: rotate(-6deg) translate(-4px, 0);
  transform: rotate(-6deg) translate(-4px, 0);
}

.category-item .category-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.category-item .header-block {
  display: flex;
  justify-content: space-between;
  padding: 0 34px;
  margin: -4px 0 10px;
  font-weight: bold;
}

.category-item .rating-wrapper {
  padding: 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-item .rating-wrapper span {
  color: rgba(0, 0, 0, 0.5);
}

.category-item .btn-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 42px;
}

/* Tabe of content */

.page-nav-block {
  margin-bottom: 50px;
}

.page-nav {
  background: var(--primary);
  clip-path: polygon(
    3% 3%,
    90% 0,
    100% 10%,
    100% 96%,
    13% 100%,
    0% 97%,
    0% 100%,
    0% 100%
  );
  padding: 40px 40px 26px 60px;
}

.page-nav .nav-item {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.page-nav .nav-item:last-child {
  margin-bottom: 0;
}

/*********** footer section ***********/

.footer-section-instanthookups-3 {
  background: #f0f0f0;
  text-align: center;
  padding: 30px 0;
}

.footer-section-instanthookups-3 .logo {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-section-instanthookups-3 .logo img {
  width: 160px;
  max-width: none;
}

.footer-section-instanthookups-3 .copyright-block {
  color: #4f4f4f;
  font-size: 14px;
  margin-top: 40px;
}

.footer-links-item a {
  display: inline-block;
  margin: 0 19px;
  color: #2d2d2d;
  text-decoration-line: underline;
}

.footer-links-item a:hover {
  text-decoration: none;
  color: var(--primary);
}

@media screen and (max-width: 374px) {
  .header-nav-block {
    font-size: 10px;
  }
  .header-section-instanthookups-3 .header-logo img {
    max-width: 64px;
  }
  .header-nav-item.dropdown-item span::after {
    line-height: 11px;
  }
}

@media screen and (min-width: 420px) {
  .dropdown:hover .dropdown-child {
    min-width: 200px;
  }
}

@media screen and (min-width: 980px) {
  body {
    font-size: 16px;
  }
  .container-section-instanthookups-3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 575px;
    background: var(--primary);
    -webkit-clip-path: polygon(0 0, 60% 5%, 100% 10%, 0 100%);
    clip-path: polygon(0 0, 60% 5%, 100% 10%, 0 100%);
    z-index: 1;
  }
  .container-section-instanthookups-3::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 575px;
    background: var(--accent);
    -webkit-clip-path: polygon(0% 5%, 60% 2%, 100% 4%, 0 100%);
    clip-path: polygon(0% 5%, 60% 2%, 100% 4%, 0 100%);
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
    z-index: 1;
  }
  .header-section-instanthookups-3 .header-nav-item {
    margin-left: 44px;
  }
  .header-nav-item.dropdown-item span {
    padding-right: 26px;
  }
  .header-nav-item.dropdown-item span::after {
    font-size: 22px;
    line-height: 16px;
  }
  .header-section-instanthookups-3 .header-logo img {
    position: relative;
    max-width: 161px;
    z-index: 1;
  }
  .container-section-instanthookups-3 {
    background: #fff;
  }
  .main-section-instanthookups-3 .center {
    background: transparent;
  }
  .main-section-instanthookups-3 .main-title::before {
    content: "";
    position: absolute;
    top: -28px;
    left: -44px;
    height: 186px;
    bottom: 0;
    width: 9px;
    background: var(--accent);
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 99%, 0% 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 99%, 0% 100%);
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  .header-section-instanthookups-3 .center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .header-section-instanthookups-3 .header-title {
    max-width: 320px;
    border: none;
    padding: 0 0 0 20px;
    margin-left: 82px;
  }
  .header-nav-block {
    order: 1;
    font-size: 16px;
  }
  .main-section-instanthookups-3 {
    position: relative;
  }
  .main-section-instanthookups-3 .center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 400px;
    margin-left: -460px;
    margin-top: 37px;
  }
  .main-section-instanthookups-3 .main-title {
    font-size: 64px;
  }
  .main-section-instanthookups-3 .main-bg {
    height: 240px;
    margin-bottom: 0;
    background: #fef1fb
      radial-gradient(
        50% 50% at 60.47% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      );
  }
  .main-section-instanthookups-3 .main-bg:before {
    height: 240px;
    width: 331px;
    left: 34%;
    background: url("assets/main-pic-web.png")
      no-repeat center bottom / contain;
  }
  section {
    padding: 10px 0;
  }
  .about-us-section {
    padding-bottom: 0;
  }
  section .section-title {
    padding-bottom: 34px;
    font-weight: bold;
    font-size: 32px;
    font-family: "Dosis", sans-serif;
    color: var(--primary);
  }
  .category-title {
    margin-bottom: 34px;
  }
  .aside-block {
    margin-top: 50px;
  }
  .data-item,
  .contact-data {
    font-size: 16px;
  }
  .data-item span {
    padding: 0px 0 0 17px;
    margin-top: -4px;
  }
  .details-item .data-item {
    display: flex;
    flex-direction: column;
    word-break: break-word;
  }
  .data-item b {
    display: block;
  }
  .content-wrapper-instanthookups-3 .center {
    display: grid;
    grid-template-columns: 1fr 276px;
    grid-gap: 60px;
    margin: 0 auto;
  }
  .breadcrumbs-section-instanthookups-3 {
    padding: 0 0 20px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
  }
  .text-block h2 {
    padding-bottom: 30px;
  }
  .footer-section-instanthookups-3 .center {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .footer-links {
    text-align: right;
    display: flex;
    padding-top: 50px;
  }
  .footer-section-instanthookups-3 .logo {
    margin-bottom: 10px;
  }
  .aside-block h2 {
    border-bottom: none;
  }
  .header__arrow::before {
    content: "\f107";
    display: block;
    font-family: FontAwesome;
  }
  .content-wrapper-instanthookups-3 {
    position: relative;
    overflow: hidden;
  }
  .content-wrapper-instanthookups-3::before {
    content: "";
    position: absolute;
    bottom: -253px;
    left: -130px;
    width: 851px;
    height: 679px;
    clip-path: ellipse(47% 38% at 49% 51%);
    background: #fef1fb;
    z-index: -1;
    transform: rotate(26deg);
  }
  /* Detail block */
  .overview-block {
    grid-template-columns: 1fr;
  }
  .details-block {
    display: grid;
    grid-template-columns: minmax(150px, 330px) 1fr minmax(150px, 240px);
    grid-gap: 30px;
  }
  .details-item .btn-secondary {
    font-size: 16px;
    height: 44px;
  }
  .details-item {
    margin-bottom: 0;
  }
  .details-item:last-child {
    margin-bottom: 0;
  }
  .details-block .btn-block {
    margin-top: 40px;
  }
  .comprasion-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
  }
  .comprasion-section .comprasion-item {
    padding-bottom: 0;
  }
  .free-item .comprasion-inner,
  .pay-item .comprasion-inner {
    max-width: 100%;
    padding: 41px 30px 30px 38px;
  }
  .compar-section {
    margin: 15px 0;
    padding: 0 20px;
  }
  .compar-point {
    padding-right: 60px;
  }
  .members-item {
    display: grid;
    grid-gap: 40px;
  }
  .faq-section {
    padding-bottom: 0;
  }
  .faq-item {
    padding: 32px 28px;
    margin-bottom: 30px;
    border: 2px solid #d3d5d9;
  }
  .sections-wrapper {
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1366px) {
  .main-section-instanthookups-3 .main-bg:before {
    left: 800px;
  }
  .content-wrapper-instanthookups-3 .center {
    grid-gap: 100px;
  }
  /* Detail block */
  .details-block {
    grid-template-columns: minmax(150px, 330px) 1fr minmax(150px, 282px);
    grid-gap: 40px;
  }
  .details-header {
    margin-bottom: 34px;
  }
  .details-item .btns-block {
    margin-top: 54px;
  }
  .details-item:last-child {
    margin-bottom: 0;
    padding-left: 56px;
    position: relative;
  }
  .details-item:last-child::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    height: 100%;
    bottom: 0;
    border: 1px solid #c4c4c4;
    transform: rotate(5deg);
  }
}

.costs-block {
  width: 60%;
  background-color: #fff;
  box-shadow: 0 0 40px rgb(255 46 96 / 60%);
  border-radius: 5px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.costs-item.costs-title-item {
  border-bottom: 1px solid var(--primary);
}

.costs-item {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

.costs-column {
  width: 33.33%;
  color: #080808;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 801px) {
  .costs-block {
    padding: 15px 20px 15px;
  }
}
.costs-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.costs-column {
  width: 33.33%;
  color: #080808;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.costs-block {
  width: 80%;
  background-color: #fff;
  box-shadow: 0 0 40px rgb(99 54 186 / 60%);
  border-radius: 5px;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
}
@media screen and (min-width: 801px) {
  .costs-block {
    padding: 15px 30px 15px;
  }
}
.costs-item.costs-title-item {
  border-bottom: 1px solid var(--accent);
}
@media screen and (max-width: 650px) {
  .header-nav-block {
    flex-direction: column;
    align-items: end;
  }
}
.dropdown:hover:nth-child(even) .dropdown-child {
  display: grid;
}
.dropdown:nth-child(even) .dropdown-child {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 2em;
  grid-gap: 2em;
  padding: 35px;
}
.dropdown:nth-child(even) .dropdown-child a {
  min-width: 120px;
}
.dropdown:hover:first-of-type .dropdown-child {
  display: grid;
}
.dropdown:first-of-type .dropdown-child {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 2em;
  grid-gap: 2em;
  padding: 35px;
}
.dropdown:first-of-type .dropdown-child a {
  min-width: 120px;
}

/*UX fix*/
@media screen and (max-width: 650px) {
  .banner-section {
    display: none;
  }
  .mebers-block {
    display: none;
  }
}
/* MOBILE BTN */
.mobile-nav-visible .mobile-btn {
  right: 10px;
  width: 24px;
  transform: rotate(-270deg);
}
.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 {
  position: absolute;
  background-color: #636e72;
}
.mobile-btn-block {
  display: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mobile-btn {
  position: relative;
  top: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 27px;
  height: 20px;
  padding: 0;
  overflow: initial;
  transition: none;
}
.mobile-btn .mobile-btn-item {
  z-index: 1;
  width: 100%;
  height: 3px;
  background-color: #636e72;
  transition: all 0.35s cubic-bezier(0.39, 0, 0.17, 0.99);
}

.btn-secondary-fix {
  display: none;
}
.mobile-logo {
  display: none;
}

@media screen and (max-width: 960px) {
  .container-section-instanthookups-3 {
    padding-top: 20px;
  }
  .header-nav-block {
    flex-direction: column;
    align-items: start;
  }
  .main-section-instanthookups-3 {
    display: none;
  }
  .header-section-instanthookups-3 {
    z-index: 100;
  }
  .mobile-btn-block {
    margin-top: -65px;
  }
  .mobile-logo {
    display: block;
    margin: 0 auto;
    width: 15%;
  }
  .overlay-block.is-active {
    background: rgba(0, 0, 0, 0);
  }
  .mobile-btn-block {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 40px 20px 20px 20px;
  }
  .menu {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .menu.active {
    transform: translateX(0);
  }
  .menu li {
    list-style-type: none;
  }
  .active .header-logo {
    display: none;
  }
  .breadcrumbs-section-instanthookups4 {
    z-index: -1;
  }
  .header-nav-block {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.85);
    padding-bottom: 15px;
  }
  .header-nav-item {
    width: 100%;
    box-shadow: 0px -1px 0px rgb(0 0 0 / 10%);
  }
  .header-section-instanthookups-3 .header-nav-item {
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 0;
  }
  .header-section-instanthookups-3 .dropdown {
    box-shadow: 0px -1px 0px rgb(0 0 0 / 10%);
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
  }
  .dropdown:hover .dropdown-child {
    position: relative;
  }
  .dropdown .dropdown-child {
    position: relative;
    font-size: 14px;
    text-transform: none;
  }
  .dropdown:first-of-type .dropdown-child {
    padding: 0;
  }
  .dropdown:hover:first-of-type .dropdown-child {
    display: block;
  }
  .dropdown:hover:nth-child(even) .dropdown-child {
    display: block;
  }
  .dropdown:nth-child(even) .dropdown-child {
    padding: 0;
  }
  .container-section-instanthookups-3 {
    box-shadow: 5px 5px 5px #e7e7e7;
    height: 60px;
  }
  .header-nav-item.dropdown-item span {
    position: initial;
  }
  .header-nav-item.dropdown-item span::after {
    position: absolute;
    top: auto;
    bottom: auto;
  }
  .header-nav-item.dropdown-item.is-active span::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--primary);
  }
  .btn.btn-secondary {
    display: none;
  }
  .btn-secondary-fix {
    position: fixed;
    width: 100%;
    height: 65px;
    z-index: 100;
    margin: 0 auto;
    display: flex;
    bottom: 10px;
  }
  .btn.btn-mobile {
    min-width: 260px;
    min-height: 60px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #4fd1c5;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px var(--primary);
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    margin: 0 auto;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

@media screen and (max-width: 500px) {
  .mobile-logo {
    width: 30%;
  }
}

.page-nav .nav-item:after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.9)"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/></svg>');
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
}

.users-label {
  color: #fff;
  position: absolute;
  left: 18px;
  top: 156px;
  width: 200px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 19px;
}
.users-item a {
  position: relative;
}
