@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@font-face {
  font-family: 'Material Icons';
  src: url('MaterialIcons.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus {
  outline: 0;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.85);
  transition: var(--transition);
}
:root {
  --primary:#FF357E;
  --accent: #3C787E;
  --header: #241623;
  --success:#C7EF00;
  --danger: #FF7A00;

  --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
}
/* Base */
html,
body,
.wrapper {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font: 16px/1.45 'Open Sans', 'Arial', sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
section {
  padding: 110px 0 20px;
  margin-top: -90px;
}
.center {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
.wrapper {
  position: relative;
  overflow-x: hidden;
}
.wrapper.mobile-nav-visible {
  overflow: hidden;
}
/* Btns */
.btn {
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  padding: 17px 10px;
  background: var(--primary);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  text-align: center;
  position: relative;
  max-width: 195px;
  box-shadow: inset 0 1000px 0 0 transparent;
}
.btn:hover {
  box-shadow: inset 0 1000px 0 0 rgba(255, 255, 255, 0.2);
}

/* Page title & description */
.page-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  color: black;
}
.page-description {

  text-align: center;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 10;
}
.header .center {
  max-width: 1960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 90px;
}
.header .header-logo {
  display: block;
  transition: none;
  margin-right: 20px;
}
.header-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.join-btn {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  margin-left: 13px;
  text-align: center;
  box-shadow: inset 0 1000px 0 0 transparent;
}
.join-btn:hover {
   box-shadow: inset 0 1000px 0 0 rgba(255, 255, 255, 0.2);
}
.join-btn::before {
  content: '\e904';
  font-family: 'Material Icons';
  color: #fff;
  font-size: 24px;
  line-height: 50px;
}
.join-btn span {
  display: none;
}
/* Mobile btn */
.header-mobile-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.header-mobile-btn-inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 14px;
  width: 24px;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}
.header-mobile-btn-inner .mobile-btn-item {
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: var(--transition);
  z-index: 1;
}
.mobile-nav-visible .header-mobile-btn-inner {
  width: 24px;
  height: 24px;
  transform: rotate(-270deg);
  right: 10px;
}
.mobile-nav-visible .header-mobile-btn-inner .icon-line-1 {
  transform: rotate(-45deg);
}
.mobile-nav-visible .header-mobile-btn-inner .icon-line-2 {
  transform: rotate(45deg);
}
.mobile-nav-visible .header-mobile-btn-inner .icon-line-3 {
  display: none;
}
.mobile-nav-visible .header-mobile-btn-inner .mobile-btn-item {
  background-color: #000;
  position: absolute;
}
/* Header page nav */
.header-page-nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  overflow-y: scroll;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 80px;
  top: 0;
  background: #fff;
  transform: translateX(100%);
  padding: 16px 20px;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1;
}
.mobile-nav-visible .header-page-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.nav-item {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 26px;
  transition: var(--transition);
  text-transform: uppercase;
}
[data-role='dropdown'] > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[data-role='dropdown'] > span::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--primary);
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 2px;
}
.nav-item-dropdown {
  display: none;
  margin-top: 10px;
  padding-left: 24px;
}
.is-active .nav-item-dropdown {
  display: block;
}
.nav-item-dropdown a {
  display: block;
  color: inherit;
  padding: 6px 0;
  color: rgba(0, 0, 0, 0.4);
}
/* Anchor section */
.anchor-block {
  margin-top: 30px;
}
.anchor-block img {
  display: none;
}
.anchor-inner {
  margin-right: 40px;
  padding: 20px;
}
.anchor-inner .title {
  color: var(--primary);
  margin-bottom: 20px;
}
.anchor-inner a {
  display: block;
  margin-bottom: 10px;
}
.anchor-photo-block {
  align-items: center;
  background: linear-gradient(to top, rgba(255, 53, 126, 0.9), rgba(255, 53, 126, 0.9)), url(photo-1.png);
  text-align: center;
  color: #fff;
  box-shadow: 0px 30px 24px -20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 26px 21px;
}
.anchor-photo-block .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.anchor-photo-block .btn {
  display: inline-block;
  max-width: 240px;
  margin-top: 20px;
  background: #ffffff;
  color: #000;
  font-weight: 700;
}

/* Photo grid section */
.photo-grid-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  grid-gap: 10px;
  counter-reset: chapter;
}
.photo-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.photo-grid-block .photo-item::before {
  content: counter(chapter);
  counter-increment: chapter;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  box-shadow: inset 0px 1000px 0px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-weight: 700;
  line-height: 50px;
}
.photo-item .btn {
  position: absolute;
  width: calc(100% - 20px);
  left: 10px;
  bottom: 10px;
  background: #fff;
  color: #000;
  max-width: 60%;
}
.photo-item .btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-item .btn span:after {
  content: '\e9a2';
  display: inline-block;
  font-family: 'Material Icons';
  font-size: 20px;
  margin-left: 10px;
}
.photo-item img {
  width: 100%;
  height: 100%;
}

/* Photo section */
.photo-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  grid-gap: 10px;
}
/* Circle section */
.circle-section {
  text-align: center;
}
.circle-section .btn {
  margin: auto;
}
.circle-section .page-title {
  margin-bottom: 40px;
}
.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 40px;
  padding: 10px;
}
.circle-item svg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
}
.circle-item.circle-1 {
  margin-bottom: 60px;
}
.circle-item.circle-1:before {
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  background: var(--header);
  filter: blur(50px);
  left: 95px;
  top: 20px;
  z-index: -1;
}
.circle-item.circle-1:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  background: var(--primary);
  filter: blur(40px);
  left: 40px;
  bottom: -10px;
  z-index: -2;
}
.circle-item.circle-2:before {
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  background: var(--success);
  filter: blur(50px);
  left: 40px;
  top: -10px;
  z-index: -1;
}
.circle-item.circle-2:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  background: var(--accent);
  filter: blur(40px);
  left: -20px;
  bottom: 50px;
  z-index: -2;
}
.circle-item.circle-3 {
  width: 250px;
  height: 250px;
  margin-bottom: 10px;
}
.circle-item.circle-3:before {
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  background: var(--success);
  filter: blur(50px);
  left: -10px;
  top: -10px;
  z-index: -1;
}
.circle-item.circle-3:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  background: var(--header);
  filter: blur(40px);
  left: 100px;
  top: 10px;
  z-index: -2;
}
.circle-item.circle-4 {
  width: 230px;
  height: 230px;
}
.circle-item.circle-4:before {
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  background: var(--accent);
  filter: blur(50px);
  left: -10px;
  top: 50px;
  z-index: -1;
}
.circle-item.circle-4:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  background: var(--danger);
  filter: blur(40px);
  left: 50px;
  bottom: -10px;
  z-index: -2;
}
.circle-item .circle-count {
  font-size: 36px;
  margin-bottom: 5px;
  color: #fff;
}
.circle-item:before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  left: 15%;
  top: 15%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(43.2994px);
}
/* Text block */
.text-section p {
  margin-bottom: 10px;
  
}
.text-section p:last-child {
  margin-bottom: 0;
}
.text-block {
  display: grid;
}
.text-block picture {
  margin: auto;
}
.text-block .text-inner {
  margin-top: -10px;
}
.text-block .title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}
.text-block p {
  margin-bottom: 10px;
}
.text-block .text-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}
.text-block .text-link:hover {
  opacity: 0.72;
}
.text-block .text-link:after {
  content: '\e9a2';
  font-family: 'Material Icons';
  font-size: 20px;
  margin-left: 10px;
}
/* bg-section */
.bg-block {
  background: url(bg1-mob.jpg) no-repeat center top / cover;
  border-radius: 10px;
  padding: 10px;
}
.bg-block-inner {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  padding: 30px 10px;
  color: #fff;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.bg-block-inner .title {
  font-size: 36px;
  margin-bottom: 10px;
}
/* Footer bg-section */
.footer-bg {
  background: url(footer-bg.jpg) no-repeat center top / cover;
  padding: 30px 20px 32px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}
.footer-bg .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.footer-bg .title:before {
  content: '\e9b7';
  font-family: 'Material Icons';
  display: block;
  margin-bottom: 20px;
  font-size: 44px;
}
.footer-bg .btn {
  margin: 20px auto 0;
}
footer {
  background: var(--header);
  padding: 14px 0 24px;
  margin-top: 20px;
}
.footer-links-block a {
  display: block;
  font-weight: 700;
  margin-top: 30px;
  text-transform: uppercase;
  color: #fff;
}
.footer-links-block a:hover {
  text-decoration: underline;
}
/* Overlay block */
.overlay-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-device-width: 481px) and (max-device-width: 980px) { 
  footer {
    text-align: center;
  }
  .footer-logo {
    display: inline-block;
  }
}
@media screen and (min-width: 980px) {
  section {
    padding: 130px 0 40px;
  }
  .center {
    padding: 0 20px;
  }
  /* Header menu */
  .header-page-nav {
    display: flex;
    transform: none;
    opacity: 1;
    visibility: visible;
    position: static;
    margin-top: 0;
    overflow: initial;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    pointer-events: auto;
  }
  .header-mobile-btn-inner,
  .menu-header {
    display: none;
  }
  .nav-item[data-role='dropdown'].is-active::before {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  .nav-item[data-role='dropdown']::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #ffffff;
    display: inline-block;
    position: absolute;
    right: 7px;
    opacity: 0;
    bottom: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: var(--transition);
  }
  .wrapper.mobile-nav-visible {
    overflow: auto;
  }
  .wrapper.mobile-nav-visible .header-page-nav {
    display: flex;
  }
  .wrapper.mobile-nav-visible .header-page-nav {
    display: flex;
    transform: none;
  }
  .nav-item {
    font-size: 12px;
    display: inline-flex;
    padding: 9px 9px 9px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0;
    position: relative;
    margin-right: 5px;
    display: block;
  }
  .nav-item:last-child {
    margin-right: 0;
  }
  .nav-item.is-active,
  .nav-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .nav-item a {
    color: rgba(0, 0, 0, 0.85);
    padding: 8px 10px;
  }
  .nav-item a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .nav-item-dropdown {
    opacity: 0;
    visibility: hidden;
    padding: 15px 18px;
    display: block;
    width: 100%;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    max-height: 400px;
    margin-top: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #ffffff;
    transition: var(--transition);
  }
  .is-active .nav-item-dropdown {
    visibility: visible;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1;
  }
  /* Anchor section */
  .anchor-block {
    display: flex;
    align-items: center;
    margin-top: 40px;
  }
  .anchor-block .title {
    margin-bottom: 20px;
  }
  .anchor-block img {
    display: block;
  }
  .anchor-inner {
    padding: 0;
  }
  .anchor-photo-block {
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: 0;
  }
  .anchor-photo-content {
    padding: 20px 20px 20px 0;
    margin-left: -40px;
  }
  /* Photo grid section */
  .photo-grid-block {
    margin-top: 40px;
    grid-gap: 20px;
    grid-template-columns: 480px 220px 220px;
  }
  .photo-grid-block .photo-item:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  /* Photo block section */
  .photo-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 18px;
  }
  .circle-block {
    display: grid;
    grid-template-columns: 250px 250px;
    justify-content: space-between;
    grid-gap: 50px 10px;
    align-items: center;
    width: 580px;
    margin: auto;
    position: relative;
  }
  .circle-block .page-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    max-width: 318px;
    padding-bottom: 40px;
    z-index: 1;
    line-height: 1.2;
  }
  /* Circle section */
  .circle-item.circle-item.circle-1 {
    order: 4;
  }
  .circle-item.circle-2 {
    order: 0;
  }
  /* Text block */
  .text-section.text-left-block,
  .text-section.text-right-block {
    padding-bottom: 0;
  }
  .text-block {
    display: grid;
  }
  .text-right-block .text-block {
    grid-template-columns: 396px 1fr;
  }
  .text-left-block .text-block {
    grid-template-columns: 1fr 396px;
  }
  .text-left-block .text-block picture {
    order: 2;
    margin-left: 0;
    margin-right: -60px;
  }
  .text-block .text-inner {
    margin-top: 0;
  }
  .text-block picture {
    margin-top: -34px;
    margin-bottom: 20px;
    margin-left: -60px;
    border-radius: 10px;
    overflow: hidden;
  }
  /* bg-section */
  .bg-section {
    padding: 90px 0 40px;
  }
  .bg-block {
    background: url(bg1-web.jpg) no-repeat center top / cover;
    padding: 40px;
  }
  .bg-block-inner {
    padding: 30px 40px;
    min-height: 256px;
  }
  
  /* Header */
  .nav-item {
    font-size: 16px;
  }
  .header-page-nav {
    margin-right: 10px;
  }
  .join-btn {
    width: auto;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    margin-left: 13px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 26px;
  }
  .join-btn::before {
    content: '\e997';
    font-size: 24px;
    line-height: 50px;
    display: inline-block;
    margin-right: 11px;
  }
  .join-btn span {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
  }

.photo-item a:hover{
  background:var(--primary);
  color:#fff;
}
.anchor-photo-content a:hover{
  background:#eeeee9;
}
.anchor-inner .title{
  font-size:25px;
  text-align:center;
}
.anchor-inner{
  border-style: dotted;
  border-color:var(--primary);
  border-radius:20px;
  margin-top:50px;
  padding:20px;
}
.anchor-inner a:hover{
  text-decoration:underline;
}
.footer-desc{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width:500px;
  color: #e9e9e9;
}
.footer-desc img{
  border-radius:10px;
  max-width:160px;
  max-height:60px;
}
.copyright{
  text-align:center;
  color: #e9e9e9;
  font-size:14px;
  padding-top:40px;
} /* Footer bg-section */
  .footer-bg {
    min-height: 326px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer {
    padding: 50px 0;
    margin-top: 40px;
  }
  footer .center {
    display: flex;
    justify-content: space-between;
    max-width: 1960px;
    padding: 0 40px;
  }
  footer .center .footer-logo {
    margin-right: 40px;
  }
  .footer-links-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
  }
  .footer-links-block a {
    margin: 0 30px 0 0;
  }
  .footer-links-block a:last-child {
    margin-right: 0;
  }
  /* Overlay block */
  .overlay-block.is-active {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  /* Header */
  .nav-item {
    font-size: 16px;
  }
  .header-page-nav {
    margin-right: 10px;
  }
  .join-btn {
    width: auto;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    margin-left: 13px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 26px;
  }
  .join-btn::before {
    content: '\e997';
    font-size: 24px;
    line-height: 50px;
    display: inline-block;
    margin-right: 11px;
  }
  .join-btn span {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
  }
}