<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap');

:root {
  --dark: #000;
  --light: #fff;
  --primary: #8465FE;
  --accent: #FEC901;

  --primary-light: #F0F2FF;
  --primary-hover: #7e61ee;
  --transition: all 0.25s cubic-bezier(.39, 0, .17, .99);
  --header: #fff;
  --main-gradient: linear-gradient(98.34deg, #3D0470 0%, #92026D 56.39%);
  --menu-text: #494949;
  --section-title: 24px;
  --offset: 20px;
  --radius: 30px;
  --section-offset: 60px;

  --text_color: #494949;
  --text_color_muted: rgba(0, 0, 0, 0.6);
  --text_color_muted_invert: rgba(255, 255, 255, 0.6);

  --icon_color: rgba(0, 0, 0, 0.9);
}

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "icomoon";

  font-display: block;
  src: url("icomoon.woff2") format("woff2");
}

[class^="icon-"],
[class*=" icon-"],
.nav-mobile-btn,
[data-role="dropdown"] span::after {
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon";
  text-transform: none;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
}

[id*="google-cache-hdr"] + div {
    height: 100%;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #fff;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 500;
  font-family: 'Poppins', Arial, sans-serif;
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

section {
  padding: 30px 0;

}

html {
  scroll-behavior: smooth;
}

body {
  font: 400 14px/1.5 'Poppins', Arial, sans-serif;
  color: var(--text_color);
  -webkit-font-smoothing: antialiased;
}
.article-block ul li {
	padding-left: 16px;
	position: relative;
	margin-bottom: 10px;
}

.article-block ul li:last-child {
	margin-bottom: 0;
}

.article-block ul li a {
	text-decoration: underline;
	color: rgba(0, 0, 0, 0.5);
}

.article-block ul li a:hover {
	text-decoration: none;
}

.article-block ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
}


.wrapper {
  position: relative;
  overflow-x: hidden;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  height: 60px;
  min-width: 180px;
  color: var(--light);
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  border-radius: 10px;
}

.btn:hover {
  background-color: var(--primary-hover);
}

.btn-join-web {
  display: none;
}

/*** Main ***/
.main-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  position: relative;
}

/* Header */
.header {
  background: var(--header);
  color: #fff;
  padding: 10px 0;
  z-index: 12;
}

.header .center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  max-width: 100%;
  height: 40px;
  width: 100%;
}

.nav-mobile-btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 11;
}
.nav-mobile-btn::after {
  content: "\e97d";
  font-size: 30px;
}
.show-menu .nav-mobile-btn::after {
  content: "\e933";
}

/* Navigation */
.nav {
  transition: var(--transition);
  z-index: 10;
  color: var(--menu-text);
  line-height: 1.67;
  font-size: 18px;
}

.nav-item span {
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
}

.nav-item-dropdown a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--text_color);
  transition: var(--transition);
}
.nav-item-dropdown a:hover {
  color: var(--primary);
}
.nav-item-dropdown .current-page {
  color: var(--primary);
}

/*** Main-section ***/
.main-section .center {
  padding: 0;
}


.photo-item {
  position: relative;
  background: #fff;
}

.photo-item img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.slogan-title {
  font-weight: 600;
  color: var(--dark);
}

.slogan-title .accent {
  color: var(--primary);
}

.slogan-description {
  font-weight: 500;
  font-size: 18px;
  
  text-align: center;
}

/* Content sectiion */
.section-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.45;
  margin-bottom: 20px;
  text-align: center;
}


/* Article block */

.article-block {
  display: grid;
  grid-gap: 40px;
}
.article-photo {
  width: calc(100% + 40px);
  margin-left: -20px;
  /*padding-bottom: 100%;*/
  background: no-repeat center top / cover;
  margin-bottom: 20px;
}
.article-photo-1 {
  background-image: url(b1_1.jpg);
  min-height: 320px;
}
.article-photo-2 {
  background-image: url(b1_2.jpg);
  min-height: 236px;
}
.article-photo-1-adult_dating {
  background-image: url(b1_1adult_dating.jpg);

}

.article-photo-2-adult_dating {
  background-image: url(b1_2adult_dating.jpg);

}

.article-photo-1-older_hookup {
  background-image: url(b1_1older_hookup.jpg);

}

.article-photo-2-older_hookup {
  background-image: url(b1_2older_hookup.jpg);

}

.article-photo-1-older_lesbian_dating {
  background-image: url(b1_1older_lesbian_dating.jpg);

}

.article-photo-2-older_lesbian_dating {
  background-image: url(b1_2older_lesbian_dating.jpg);

}

.article-photo-1-mature_hookup {
  background-image: url(b1_1mature_hookup.jpg);

}

.article-photo-2-mature_hookup {
  background-image: url(b1_2mature_hookup.jpg);

}

.article-photo-1-cougar_hookup {
  background-image: url(b1_1cougar_hookup.jpg);

}

.article-photo-2-cougar_hookup {
  background-image: url(b1_2cougar_hookup.jpg);

}

.article-photo-1-granny_hookup {
  background-image: url(b1_1granny_hookup.jpg);

}

.article-photo-2-granny_hookup {
  background-image: url(b1_2granny_hookup.jpg);

}

.article-photo-1-older_gay_dating {
  background-image: url(b1_1older_gay_dating.jpg);

}

.article-photo-2-older_gay_dating {
  background-image: url(b1_2older_gay_dating.jpg);

}

.article-photo-1-adult_roleplay_chat {
  background-image: url(b1_1adult_roleplay_chat.jpg);

}

.article-photo-2-adult_roleplay_chat {
  background-image: url(b1_2adult_roleplay_chat.jpg);

}

.article-photo-1-mature_chat {
  background-image: url(b1_1mature_chat.jpg);

}

.article-photo-2-mature_chat {
  background-image: url(b1_2mature_chat.jpg);

}

/*** start breadcrumbs ***/
.breadcrumbs-section {
  padding: 40px 0 0 0;
  margin-bottom: 20px;
}
.breadcrumbs-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs-list-item {
  margin-bottom: 20px;
  font-size: 14px;
  cursor: pointer;
      margin-right: 10px;
}

.breadcrumbs-list-item.active {
  color: var(--primary);
}
.breadcrumbs-list-item:last-child:after {
  display: none;
}
/*** end breadcrumbs ***/
.article-info p{
  margin-bottom: 10px;
  color: #494949;
}
.article-info p:last-child {
  margin-bottom: 0;
}
/* {hoto block */
.photo-section .photo-block {
  display: grid;
  grid-gap: 20px;
}
.photo-section .photo-item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.photo {
  padding-bottom: 71.43%;
  background: no-repeat center top / cover;
 
}
.photo-1 {
  background-image: url(b2_1.jpg);
}
.photo-2 {
  background-image: url(b2_2.jpg);
}
.photo-3 {
  background-image: url(b2_3.jpg);
}
.photo-info {
  padding: 10px;
  text-align: center;
}
.photo-info p{
  margin-bottom: 10px;
  font-size: 12px;
  color: #494949;
}
.photo-info p:last-child {
  margin-bottom: 0;
}
.photo-info .btn {
  width: 100%;
}
.photo-info h3,
.photo-info h4 {
  font-weight: 500;
font-size: 16px;

margin-bottom: 10px;
}


/* Slider */
.slider-section .center {
  padding: 0;
}

.slider {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  padding: 0 0 30px;
}

.slider-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.slider-view {
  display: flex;
  height: 100%;
  transition: all 0.4s ease-out;

}

.slider-item {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  cursor: pointer;
  user-select: none;

  display: flex;
  flex-direction: column;

  background: center center no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-item .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 220px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    min-width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px;



}

.slider-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.slider-view img {
  width: 100%;
  height: auto;


  user-select: none;
  pointer-events: none;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  width: 110px;
  margin: 20px auto 0;
}

.slider-arrow {
  z-index: 9;

  transition: opacity 0.35s linear 0s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;

  /*background-color: var(--primary);*/
}


.slider-arrow.is-hidden {
  display: none;
}

.slider-arrow.arrow-prev {
  left: 0;
  background: url(bottom.svg) no-repeat center top / cover;
      transform: rotate(90deg);
}



.slider-arrow.arrow-next {
  right: 0;
  background: url(bottom.svg) no-repeat center top / cover;
      transform: rotate(-90deg);
}


.slider-pagination {
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.slider-pagination-item {
  cursor: pointer;
  display: inline-block;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  margin: 0 10px;
  background-color: rgba(254, 201, 1, 0.1);
  position: relative;
  transition: all 0.2s linear 0s;
}

.slider-pagination-item.is-active {
  background-color: #fec901;
  box-shadow: 0 0 0 3px rgba(254, 201, 1, 0.5);
}

.slider-off {
  height: auto;
}

.slider-off .slider-view {
  display: block;
}

.slider-off .slider-item {
  width: 100%;
}

.slider-off .clone-item,
.slider-off .slider-nav,
.slider-off .slider-pagination,
.slider-no-nav .slider-nav,
.slider-no-pagination .slider-pagination {
  display: none;
}

@media (min-width: 700px) {
  .slider-content {
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --slide_margin: 20px;
  }
}

@media screen and (min-width: 992px) {
  :root {
    --slide_margin: 40px;
  }
}


/* Footer */
.footer {
  padding: var(--offset) 0;
  background-color: var(--dark);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.footer a {
  color: var(--light);
  text-decoration: underline;
}
.footer a:hover {
  text-decoration: none;
}
.footer .center {
  display: grid;
  gap: var(--offset);
  justify-content: center;
}
.footer-dmca {
  display: block;
  margin: auto;
      border-radius: 8px;
}
.footer-logo {
  display: block;
  margin: 0 auto;
  background-color: transparent;

}

.footer-text {
  font-size: 12px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.footer-links-block {
  display: flex;
  flex-direction: column;
}
.footer-links-block li {
  margin-bottom: 30px;
}
.footer-links-block li:last-child {
  margin-bottom: 0;
}

.footer-links-block a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
  font-size: 12px;
}

/* Overlay block */
.overlay-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.show-menu .overlay-block,
.overlay-block.active {
  display: block;
}

@media (max-width:767px) {
  .article-image img {
    width: 100%;
  }
}
@media (max-width:991px) {
  :root {
    --article-image-border-width: 10px;
  }
  

  
  .center {
    padding: 0 20px;
  }

  .main-content-block .btn-block {
    margin-top: 20px;
  }

  /* Navigation */
  .show-menu section,
  .show-menu .footer {
    display: none;
  }
  
  .show-menu {
    overflow: hidden;
  }
  
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    transform: translateX(100%);
    padding: 20px 10px 30px;
    opacity: 0;
      
    visibility: hidden;
    background: var(--light);
  }
  
  .show-menu .nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }
  .nav-item span {
    display: block;
    margin: 10px 0;
    line-height: 20px;
   
  }
  
  .nav-item-join {
    margin-top: var(--offset);
  }
  .nav-item-join .btn {
    width: 100%;
  }
  
  .main-content-block {
    padding: 20px;
  }
  .main-content-block .btn {
    width: 100%;
  }
  
  .slogan-title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 39px;
    color: var(--dark);
    text-align: center;
  }
  

}



@media (min-width: 992px) {

  :root {
    --section-offset: 120px;
    --section-title: 34px;
    --offset: 40px;
    --article-image-border-width: 20px;
  }
  
  .btn-join-web {
    display: inline-flex;
  }
  
  .main-container {
    padding-bottom: 60px;
  }
  
  body {
    font-size: 18px;
    background: url(bg.jpg) no-repeat left top / cover;
  }
  .main-section .photo-block {
    position: relative;
  }
  .main-section .photo-item {
        display: inline-block;
        background: #fff;
  }
  .main-section .photo-item:before{
    content: '';
    width: 64px;
    height: 35px;
    position: absolute;
    left: -138px;
    bottom: 86px;
    background: url(dots1.svg) no-repeat center top / cover;
  }
  .main-section .photo-item:after{
    content: '';
    width: 203px;
    height: 345px;
    position: absolute;
    right: 0;
    bottom: -274px;
    background: url(dots2.svg) no-repeat center top / cover;
    z-index: -1;
  }
  .btn {
    height: 50px;
    min-width: 180px;
    font-size: 14px;
    padding: 15px 30px;
  }
  
  .section-title {
    font-size: 40px;
    margin-bottom:60px;
  }
  
  .photo-section .photo-block {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
  }
  
  .photo-section .photo-item:nth-child(1) {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
  }
  .photo-section .photo-item:nth-child(1) .photo-info {
    width: 637px;
    flex-shrink: 0;
  }
  .photo-info {
    padding: 60px; 
  }
  .photo-section .photo-item:nth-child(1) .photo {
    flex: 1;
    padding-bottom: 0;
  }
  .photo-item:nth-child(2) {
    flex: 1;
    margin-right: 40px;
  }
  .photo-item:nth-child(2) .photo {
    padding-bottom: 0;
    height: 360px;
  }
   .photo-item:nth-child(3) .photo {
    padding-bottom: 0;
    height: 360px;
  }
  .photo-info h3, .photo-info h4 {
    font-size: 32px;
    margin-bottom: 40px;
}
.photo-info .btn {
 
  max-width: 320px;
  margin: 30px auto 0;
  padding: 15px 20px;
}
   .photo-item:nth-child(3) {
    flex: 1;
  }
  .photo-info p {
    font-size: 18px;
  }
    .article-item {
    display: flex;
  }
.article-photo {
  width: 600px;
   margin: 0 80px 0 0;
  flex-shrink: 0;
  padding-bottom: 0;
}
.article-block {
  grid-gap: 60px;
}
.article-info p {
  margin-bottom: 20px;
}
.article-item.article-reverse {
  flex-direction: row-reverse;
}
.article-reverse .article-info {
  width: 600px;
   margin: 0 80px 0 0;
  flex-shrink: 0;
  padding-bottom: 0;
}

.article-reverse .article-photo {
  width: auto;
  flex: 1;
  margin: 0;
  flex-shrink: 0;
}
.slider-section {
  padding-bottom: 90px;
}
.slider-nav {
   
    width: 136px;
    margin: 60px auto 0;
}
.slider-arrow {
  width: 40px;
  height: 40px;
}
.slider-item .btn {
  padding: 15px 20px;
  
}
  section {
    padding: 60px 0;
  }

  .header {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header-logo img {
    height: 50px;
  }
  .main-content-block {
    max-width: 600px;
  }
  .main-content-block .btn-block {
    margin-top: 60px;
  }
  .nav-item-join {
    display: none;
  }
  .nav-mobile-btn {
    display: none;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;

    grid-gap: 40px;
  }

  .nav-item {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
  }

  [data-role="dropdown"] span::after {
    content: "";
    color: var(--icon_color);
    position: relative;
    flex-shrink: 0;
    
    margin-left: 8px;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    background: url(bottom.svg) no-repeat center top / cover;
  }

  .nav-item span {
    display: flex;
    align-items: center;
    line-height: 1.5;
    font-weight: 400;
     color: var(--text_color);

  }
  .active.nav-item span::after {
    transform: rotate(180deg);
  }

  .nav-item-dropdown {
    opacity: 0;
    visibility: hidden;
    padding: 30px 40px;
    display: block;
    width: 100%;
    overflow-y: auto;
    position: absolute;
    top: 36px;
    left: 50%;
    width: 240px;
    background: var(--light);
    transform: translateX(-50%);
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
border-radius: 10px;
  }
  .nav-item-dropdown a {
    font-size: 18px;
  }
  .active .nav-item-dropdown {
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }

  /*** Main-section ***/
  .main-section {
    position: relative;
  }
  .main-section .center {
    display: grid;
    grid-template-columns: minmax(39%,1fr) minmax(57%,418px);
    grid-gap: 100px;
    align-items: center;
  }

  .main-section .photo-block {
    order: 2;
    margin-right: -78%;
   
  }

  .main-content-block {
    padding-left: 10px;
  }


  .slogan-title {
    margin-bottom: 60px;
    font-size: 46px;
   line-height: 69px;
    text-align: left;
  }
  .slogan-description {
    text-align: left;
    font-size: 22px;
  }
  
  
  /* Footer */
  .footer .center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-content {
    width: 100%;
  }
  .footer-dmca {
    margin: 0;
    height: 54px;
    width: 150px;
  }
  .footer {
    padding: 40px 0;
  }
  
  .footer-logo {
    margin: 0;
    width: 160px;
    height: 50px;
  }
  
  .footer-links-block {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-column: 2 / 2;
  }

  .footer-links-block li {
    margin-bottom: 0;
    margin-right: 50px;
  }
  .footer-links-block li:last-child {
    margin-right: 0;
  }

  .footer-content {
    grid-column: 1 / 4;
  }
}



@media (min-width: 1560px) {
  .photo-item:nth-child(2) {
    width: 637px;
    flex: initial; 
  }
  .center {
    max-width: 1540px;
  }
  
  .nav-item {
    margin: 0 100px;
  }
  
}

/* iPad styles */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .main-section .center {
    grid-template-columns: minmax(40%,1fr) minmax(52%,418px);
  }
  .slogan-title {
    font-size: 30px;
    line-height: 40px;
  }
  .main-section. .photo-block {
    margin-right: 0;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .main-section .center {
    grid-template-columns: minmax(40%,1fr) minmax(50%,418px);
  }
  .slogan-title {
    font-size: 30px;
    line-height: 40px;
  }
   .main-section. .photo-block {
    margin-right: 0;
  }
  .main-content-block {
    padding: 5vh 10px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
  .article-section .center {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-device-width: 1360px) and (max-device-width: 1366px) and (orientation: landscape) {
  .main-section .center {
    max-width: 100%;
    grid-template-columns: minmax(30%,1fr) minmax(58%,418px);
  }
  .main-content-block {
    padding-left: 40px;
  }
   .main-section. .photo-block {
    margin-right: 0;
  }
}</pre></body></html>