@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
a,
input,
textarea,
button,
body,
img,
h1,
h2,
h3,
h4 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #1d1d1d;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  box-sizing: border-box;
}

.swal2-styled.swal2-confirm {
  background-color: #85b79d !important;
}

.swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fffaf4;
  position: relative;
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 1080px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 560px) {
  .inner {
    padding: 0 12px;
  }
}

.inner-narrow {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .inner-narrow {
    max-width: 1080px;
  }
}
@media (max-width: 1080px) {
  .inner-narrow {
    padding: 0 20px;
  }
}
@media (max-width: 560px) {
  .inner-narrow {
    padding: 0 12px;
  }
}

strong {
  font-weight: 800;
}

.main {
  max-width: 2560px;
  position: relative;
  overflow: clip;
  padding: 32px 0 0 0;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .main {
    padding: 16px 0 0 0;
  }
}

@view-transition {
  navigation: auto;
}
::view-transition-group(*) {
  animation-duration: 0.33s;
}

::view-transition-old(root) {
  animation: 0.33s ease-in both leave;
}

::view-transition-new(root) {
  animation: 0.33s ease-in both enter;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*) {
    animation-duration: 0.33s;
  }
}
.transition-title {
  view-transition-name: post-title;
}

.transition-link {
  view-transition-name: post-title;
}

@keyframes img-move {
  0% {
    transform: scale(1.05) translate(-1.5%, -1%);
  }
  100% {
    transform: scale(1.1) translate(1.5%, 1%);
  }
}
h2 {
  font-size: 32px;
  line-height: 1.1em;
  margin: 0 0 0.75em 0;
}
@media (max-width: 560px) {
  h2 {
    font-size: 24px;
    line-height: 1.2em;
  }
}

h3,
h4 {
  font-size: 24px;
  line-height: 1em;
  margin: 0 0 0.75em 0;
}
@media (max-width: 560px) {
  h3,
  h4 {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 600;
  }
}

.large-title {
  font-size: min(4.25vw, 70px);
  line-height: 1em;
  margin: unset;
}
@media (max-width: 560px) {
  .large-title {
    font-size: 30px;
    line-height: 1.2em;
  }
}

.large-title-section {
  font-size: min(4.15vw, 64px);
  line-height: 1em;
  margin: unset;
}
@media (max-width: 560px) {
  .large-title-section {
    font-size: 28px;
    line-height: 1.2em;
  }
}

.medium-title {
  font-size: 36px;
  line-height: 1.1em;
  margin: unset;
}
@media (max-width: 560px) {
  .medium-title {
    font-size: 24px;
    line-height: 1.2em;
  }
}

.radius {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.17s ease;
}
@media (max-width: 560px) {
  .radius {
    border-radius: 11px;
  }
}

.text-red {
  color: #dc3b44;
}

.text-green {
  color: #85b79d;
}

.btn {
  padding: 17px 15px;
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.17s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  border: none;
  position: relative;
}
.btn:hover {
  box-shadow: 0px 0px 15px rgba(29, 29, 29, 0.25);
}
.btn.border {
  border: 1px solid #1d1d1d;
}
.btn.green {
  background: #85b79d;
}
.btn.red {
  background: #dc3b44;
}
.btn.profile-btn {
  max-width: 200px;
}
.btn.light {
  background: #fffaf4;
  border: 1px solid rgba(29, 29, 29, 0.4);
}
.btn.light span {
  color: #1d1d1d;
}
.btn.light:hover {
  background: #85b79d;
  color: #fff;
  border: 1px solid rgba(29, 29, 29, 0.05);
}
.btn.light:hover span {
  color: #fff;
}
.btn.beige {
  background: #faf1e6;
  border: 1px solid rgba(29, 29, 29, 0.4);
}
.btn.beige span {
  color: #1d1d1d;
}
.btn.beige:hover {
  background: #85b79d;
  color: #fff;
  border: 1px solid rgba(29, 29, 29, 0.05);
}
.btn.beige:hover span {
  color: #fff;
}
.btn.margin-end {
  margin: 12px 0 0 auto;
}
.btn .text-before {
  position: absolute;
  left: -100%;
  display: block;
  color: #1d1d1d;
  font-size: 14px;
}
.btn .icon {
  width: 19px;
  height: 17px;
}
.btn span {
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 7px;
}
@media (max-width: 760px) {
  .logo img {
    width: 49px;
  }
}
.logo span {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .logo span {
    font-size: 12px;
  }
}

.glob-wrapper {
  position: relative;
  padding: 16px;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
}
.glob-wrapper svg {
  position: absolute;
  left: -1px;
  z-index: 1;
  height: 100%;
  width: 7px;
  top: 0;
}
.glob-wrapper span {
  position: relative;
}

header {
  display: grid;
  align-items: center;
  background: #faf1e6;
  position: relative;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  z-index: 99;
  border: 1px solid rgba(29, 29, 29, 0.07);
  box-shadow: 3px 3px 25px rgba(29, 29, 29, 0.07);
  transition: all 0.17s ease;
  border-radius: 13px;
  padding: 10px 16px;
}
@media (max-width: 1080px) {
  header {
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 560px) {
  header {
    padding: 11px;
    border-radius: 9px;
  }
}
header.scrolled {
  padding: 10px 16px;
}
@media (max-width: 560px) {
  header.scrolled {
    padding: 11px;
    border-radius: 9px;
  }
}
header .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 0 auto;
}
@media (max-width: 1080px) {
  header .buttons .bt1 {
    display: none;
  }
}
header .ribbon-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  overflow: clip;
  border-bottom-right-radius: 9px;
}
@media (max-width: 560px) {
  header .ribbon-container {
    width: 21px;
    height: 21px;
  }
}
header .ribbon-container .ribbon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(50px, 2.75vw);
  margin: 0 auto;
}
@media (max-width: 1080px) {
  header nav {
    display: none;
  }
}
header nav .nav-item {
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
header nav .nav-item::after {
  position: absolute;
  bottom: -7px;
  width: 0%;
  height: 5px;
  border-radius: 3px;
  background: #85b79d;
  left: 0px;
  transition: all 0.17s ease;
  content: " ";
}
header nav .nav-item:hover::after {
  width: 100%;
}
header nav .nav-item.active::after {
  position: absolute;
  bottom: -7px;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #85b79d;
  left: 0px;
  transition: all 0.17s ease;
  content: " ";
}
header nav .drop-block {
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header nav .drop-block .drop-container {
  position: absolute;
  bottom: -7px;
}
header nav .drop-block .drop {
  position: absolute;
  top: 0;
  background: #faf1e6;
  border: 1px solid rgba(29, 29, 29, 0.25);
  padding: 13px;
  border-radius: 7px;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 15px;
  flex-direction: column;
  box-shadow: 1px 3px 15px rgba(29, 29, 29, 0.13);
}
header nav .drop-block .drop a {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
header nav .drop-block .nav-item {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
}
header nav .drop-block .nav-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.17s ease;
  width: 13px;
  height: 7px;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .drop-block .nav-item .arrow.flip {
  transform: rotateX(180deg);
}
header .mobile-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #85b79d;
  border-radius: 7px;
  width: 40px;
  height: 40px;
  display: none;
}
@media (max-width: 1080px) {
  header .mobile-button {
    display: flex;
  }
}

.navTrigger {
  position: absolute;
  top: 2px;
  right: 1px;
  z-index: 99;
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}
.navTrigger:focus {
  outline: none;
}
.navTrigger svg {
  width: 64px;
  height: 48px;
  top: -6px;
  left: -14px;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: absolute;
}
.navTrigger svg path {
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  transform: translateZ(0);
}
.navTrigger svg path:nth-child(2) {
  --duration: 0.5s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}
.navTrigger svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}
.navTrigger.active svg {
  stroke: #fff;
}
.navTrigger.active svg path {
  --offset: 57px;
}
.navTrigger.active svg path:nth-child(1), .navTrigger.active svg path:nth-child(3) {
  --delay: 0.15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}
.navTrigger.active svg path:nth-child(2) {
  --duration: 0.3s;
  --offset: 2px;
  --array-1: 1px;
}
.navTrigger.active svg path:nth-child(3) {
  --offset: 58px;
}

.overlay {
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-image: linear-gradient(#bababa, transparent);
  transition: all 0.17s ease;
}

.overlay2 {
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-image: linear-gradient(transparent, #000);
  transition: all 0.17s ease;
}

.login-page {
  margin: 0 0 -125px 0;
}
.login-page .login-page-top {
  margin: -155px 0 0 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.login-page .login-page-top .login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fffaf4;
}
@media (max-width: 1080px) {
  .login-page .login-page-top .login-grid {
    grid-template-columns: 1fr;
  }
}
.login-page .login-page-top .login-grid .bg-right {
  position: relative;
  max-width: min(960px, 51vw);
}
@media (max-width: 1080px) {
  .login-page .login-page-top .login-grid .bg-right {
    position: absolute;
    top: 0;
    max-width: unset;
    width: 100%;
    height: 100%;
  }
}
.login-page .login-page-top .login-grid .bg-right .bg-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login-page.soon {
  margin: 0;
  height: 100vh;
}
.login-page.soon .login-page-top {
  width: 100%;
  height: 100vh;
  margin: -32px 0 0 0;
}
.login-page.soon .login-page-top .login-grid {
  grid-template-columns: 1fr;
}
.login-page.soon .login-page-top .login-grid .bg-right {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
}
.login-page.soon .login-page-top .login-grid .login-container {
  margin: 25% auto;
  left: unset;
  box-shadow: 5px 5px 35px rgba(29, 29, 29, 0.15);
}
.login-page.soon .login-page-top .login-grid .login-container h1 {
  margin: 0 0 24px 0;
}

.login-container {
  padding: 40px 32px;
  background: #faf1e6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 35% auto 15% auto;
  flex-direction: column;
  z-index: 9;
  position: relative;
  left: 5em;
}
@media (max-width: 1080px) {
  .login-container {
    margin: 180px auto 120px auto;
    left: 0;
  }
}
@media (max-width: 520px) {
  .login-container {
    width: unset;
    max-width: 280px;
    padding: 24px 16px;
  }
}
.login-container h3 {
  margin: 0 0 24px 0;
}
@media (max-width: 520px) {
  .login-container h3 {
    margin: 0 0 16px 0;
  }
}

.form-container {
  background: transparent;
  width: 100%;
  margin: 24px 0;
}
.form-container:last-child {
  margin: 24px 0 0 0;
}
@media (max-width: 1080px) {
  .form-container {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .form-container {
    grid-column: span 1;
    margin: 16px 0;
  }
  .form-container:last-child {
    margin: 16px 0 0 0;
  }
}
.form-container .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px 0 0 auto;
  padding: 15px 35px;
  grid-column: span 1;
}
@media (max-width: 560px) {
  .form-container .btn {
    grid-column: span 1;
  }
}
.form-container .btn.login {
  width: 100%;
  margin: 9px 0;
  border: 1px solid rgba(29, 29, 29, 0.75);
  font-weight: 500;
  background: rgb(255, 250, 244);
}
.form-container .form-grid {
  display: grid;
  row-gap: 12px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  position: relative;
  grid-template-columns: 1fr;
  grid-auto-flow: row dense;
}
@media (max-width: 1440px) {
  .form-container .form-grid {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media (max-width: 560px) {
  .form-container .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-container .form-grid .nomargin {
  margin: 16px 0 0 0;
}
.form-container .form-grid.profile-page-form {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.form-container .form-grid.profile-page-form .btn {
  grid-column-start: 2;
  margin: 40px 0 0 auto;
}
@media (max-width: 560px) {
  .form-container .form-grid.profile-page-form .btn {
    grid-column-start: unset;
    margin: 16px 0 0 auto;
  }
}
@media (max-width: 560px) {
  .form-container .form-grid.profile-page-form {
    grid-template-columns: 1fr;
  }
}
.form-container .form-grid .alert {
  font-size: 20px;
}
.form-container .form-grid .message {
  grid-row: span 1;
  grid-column: span 1;
}
@media (max-width: 760px) {
  .form-container .form-grid .message {
    order: 4;
  }
}
@media (max-width: 560px) {
  .form-container .form-grid .message {
    grid-column: span 1;
    order: 4;
  }
}
.form-container .form-grid .message textarea {
  height: 160px;
}
.form-container .form-grid .long-line {
  grid-column: span 2;
  position: relative;
}
.form-container .form-grid .input-line-container.triple {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}
@media (max-width: 760px) {
  .form-container .form-grid .input-line-container.triple {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}
.form-container .form-grid .input-line {
  position: relative;
  width: 100%;
}
.form-container .form-grid .input-line.profile-image-row {
  grid-column: span 2;
}
.form-container .form-grid .input-line.gdpr {
  grid-column: span 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 80px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 760px) {
  .form-container .form-grid .input-line.gdpr {
    grid-column-start: unset;
    order: 5;
  }
}
@media (max-width: 560px) {
  .form-container .form-grid .input-line.gdpr {
    flex-direction: column;
    gap: 0px;
    grid-column: span 1;
  }
}
.form-container .form-grid .input-line.links {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.form-container .form-grid .input-line .input-link {
  text-decoration: underline;
  font-weight: 600;
  text-align: center;
}
.form-container .form-grid .input-title {
  color: unset;
  margin: 0 0 0.5em 0;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .form-container .form-grid .input-title {
    font-size: 12px;
    font-weight: 600;
  }
}

input,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 7px;
  background: unset;
  width: 100%;
  padding: 15px 19px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #efefef;
  background: #fffaf4;
}
@media (max-width: 560px) {
  input,
  textarea,
  select {
    padding: 13px 15px;
  }
}

select {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
}

.gdpr-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gdpr-container a {
  color: unset;
  font-weight: 700;
  display: block;
  align-self: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  text-transform: underline;
}
@media (max-width: 560px) {
  .gdpr-container a {
    font-size: 15px;
    margin: 5px 0 0 auto;
  }
}

input[name="message[gdpr]"] {
  border: unset;
  width: 0;
  height: 0;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 35px;
  display: none;
}

label.gdpr {
  color: unset;
  cursor: pointer;
  padding: 0 0 0 29px;
}
@media (max-width: 560px) {
  label.gdpr {
    font-size: 11px;
  }
}

label.gdpr::before {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #2d2d2d;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 5px;
  font-size: 16px;
  content: " ";
  display: block;
  color: #2d2d2d;
  font-weight: bold;
  line-height: 0.75em;
}

input:checked + label::before {
  content: "✔";
}

.header-sticky {
  position: sticky;
  top: 24px;
  z-index: 999;
}
@media (max-width: 560px) {
  .header-sticky {
    top: 16px;
  }
}

.homepage-top {
  margin: -155px 0 0 0;
  position: relative;
  z-index: 1;
  height: min(900px, 47vw);
  width: 100%;
}
@media (max-width: 1080px) {
  .homepage-top {
    height: 640px;
  }
}
@media (max-width: 1080px) {
  .homepage-top.subpage {
    height: 460px;
  }
}
.homepage-top.subpage .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .text {
  bottom: min(90px, 4vw);
}
@media (max-width: 560px) {
  .homepage-top.subpage .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .text {
    bottom: 16px;
    left: 12px;
  }
}
.homepage-top .homepage-swiper {
  width: 100%;
  height: 100%;
}
.homepage-top .homepage-swiper .swiper-container {
  width: 100%;
  height: 100%;
  overflow: clip;
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 3;
  transition: all 0.17s linear;
  animation: img-move 12s alternate infinite linear;
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .text {
  position: absolute;
  z-index: 7;
  bottom: 60px;
  left: 60px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 760px;
}
@media (max-width: 560px) {
  .homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .text {
    bottom: 16px;
    left: 12px;
  }
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .text .btn {
  margin: 24px 0 0 0;
}
.homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .blob {
  position: absolute;
  bottom: max(-7vw, -135px);
  left: max(-7vw, -135px);
  width: min(77vw, 1440px);
  height: auto;
  z-index: 3;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 560px) {
  .homepage-top .homepage-swiper .swiper-container .swiper-wrapper .swiper-slide .slide .blob {
    width: 640px;
  }
}

.homepage-blog {
  padding: min(120px, 7vw) 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
  position: relative;
}
@media (max-width: 760px) {
  .homepage-blog {
    flex-direction: column;
    gap: 5px;
  }
}
.homepage-blog .blog-title {
  max-width: 480px;
}
@media (max-width: 560px) {
  .homepage-blog .blog-title {
    margin: 0 0 16px 0;
  }
}
.homepage-blog .blog-title .btn {
  margin: 40px 0;
}
@media (max-width: 480px) {
  .homepage-blog .blog-title .btn {
    margin: 12px 0;
  }
}
.homepage-blog .blog-title .lines {
  position: absolute;
  left: -140px;
  bottom: 60px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 560px) {
  .homepage-blog .blog-title .lines {
    bottom: 0px;
    left: calc(100% - 150px);
    width: 200px;
  }
}
.homepage-blog .blog-slider {
  width: calc(min(480px, 29vw) * 3 + 40px);
  height: 100%;
  right: 0;
  overflow: clip;
}
@media (max-width: 480px) {
  .homepage-blog .blog-slider {
    width: 290px;
    overflow: visible;
    margin: 0 auto 0 0;
  }
}
.homepage-blog .blog-slider .swiper-container {
  width: 100%;
  height: 100%;
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide:last-child {
    display: none;
  }
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide {
  position: relative;
  width: min(480px, 29vw);
  height: min(680px, 39vw);
  display: block;
}
@media (max-width: 760px) {
  .homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide {
    width: 290px;
    height: 400px;
  }
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
  transition: all 0.17s linear;
  animation: img-move 12s alternate infinite linear;
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide .b-title {
  position: absolute;
  z-index: 5;
  bottom: min(40px, 2vw);
  left: min(24px, 1.5vw);
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 380px;
  color: #fff;
}
@media (max-width: 760px) {
  .homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide .b-title {
    left: 12px;
    bottom: 12px;
    width: 260px;
  }
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide .b-title .btn {
  margin: 24px 0 0 0;
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide .b-title h3 {
  color: #fff;
}
.homepage-blog .blog-slider .swiper-container .swiper-wrapper .swiper-slide .slide:hover .overlay2 {
  opacity: 0.21;
}
.homepage-blog .blog-slider .prog {
  display: flex;
  gap: 60px;
  margin: 24px 0;
  width: calc(min(480px, 29vw) * 2 + 20px);
  align-items: center;
  z-index: 5;
}
@media (max-width: 480px) {
  .homepage-blog .blog-slider .prog {
    width: 100%;
  }
}
.homepage-blog .blog-slider .prog .bar-container {
  width: min(840px, 51vw);
  height: 3px;
  position: relative;
  opacity: 0.75;
}
.homepage-blog .blog-slider .prog .bar-container .bar {
  height: 3px;
}
.homepage-blog .blog-slider .prog .bar-container .swiper-pagination-progressbar-fill {
  background: #1d1d1d;
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  align-self: end;
  margin: 0 0 0 auto;
}
.slider-buttons .next,
.slider-buttons .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
  border: 1px solid rgba(29, 29, 29, 0.5);
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.17s ease;
}
.slider-buttons .next:hover,
.slider-buttons .prev:hover {
  background: #85b79d;
  color: #fff;
  border: 1px solid rgba(29, 29, 29, 0.1);
}
.slider-buttons .next:hover span,
.slider-buttons .prev:hover span {
  color: #fff;
}
.slider-buttons .next img,
.slider-buttons .prev img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 13px;
  height: 13px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slider-buttons .next img {
  transform: rotate(180deg);
}

.support {
  background: #faf1e6;
  padding: 40px;
}
@media (max-width: 560px) {
  .support {
    padding: 24px 12px;
  }
}
.support h2 {
  text-align: center;
  margin: 0 0 40px 0;
}
.support .sup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .support .sup-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
  }
}
.support .sup-grid img {
  max-width: 280px;
  max-height: 140px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .support .sup-grid img {
    max-width: 120px;
  }
}

.homepage-about {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
  position: relative;
  z-index: 3;
  margin: 0 0 -120px 0;
}
@media (max-width: 560px) {
  .homepage-about {
    padding: 24px 0 60px 0;
    flex-direction: column;
    margin: 0 0 -24px 0;
  }
}
.homepage-about .text {
  max-width: 640px;
}
.homepage-about .text h2 {
  margin: 0 0 40px 0;
}
.homepage-about .text p {
  font-size: 16px;
  line-height: 1.5em;
}
.homepage-about .text .btn {
  margin: 40px 0 0 auto;
  align-self: end;
}
.homepage-about .biker {
  width: min(840px, 47vw);
  height: auto;
  bottom: -3vw;
  position: relative;
}
@media (max-width: 560px) {
  .homepage-about .biker {
    width: 100%;
    bottom: -60px;
  }
}

.text-center {
  text-align: center;
}

footer {
  position: relative;
  z-index: 1;
  background: #faf1e6;
  padding: 24px 0;
  margin: 160px 0 0 0;
}
@media (max-width: 560px) {
  footer {
    margin: 100px 0 0 0;
  }
}
footer .corner-flag {
  position: absolute;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  left: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
footer .corner-flag img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 80px;
  height: 80px;
  position: absolute;
  transform: rotate(0deg);
  bottom: -9px;
}
footer .grass-container {
  position: absolute;
  height: 125px;
  top: -125px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 560px) {
  footer .grass-container {
    height: 90px;
    top: -90px;
  }
}
footer .grass {
  width: 100%;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: top;
     object-position: top;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 350px 1fr 1fr 1fr;
  margin: 0 0 24px 0;
}
@media (max-width: 1080px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer-content .footer-logo {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1080px) {
  footer .footer-content .footer-logo {
    order: 99;
    grid-column: span 2;
  }
}
footer .footer-content .footer-logo img {
  margin: 0 auto;
  width: 260px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 760px) {
  footer .footer-content .footer-logo img {
    width: 160px;
  }
}
footer .footer-content .social {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer-content .social .fb {
  width: 60px;
  height: 60px;
  background: #fffaf4;
  padding: 21px;
  border-radius: 9px;
}
footer .footer-content .social .fb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-content .glob-wrapper {
  margin: 0 0 12px 0;
}
footer .footer-content .glob-wrapper span {
  font-size: 19px;
}
footer .footer-content .col {
  padding: 0 0 0 12px;
}
footer .footer-content .col .row {
  font-size: 16px;
  margin: 30px 0;
}
footer .footer-content .col .row a {
  font-size: inherit;
}
footer .cop {
  padding: 24px 0;
  border-top: 1px solid rgba(29, 29, 29, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 1080px) {
  footer .cop {
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
  }
}

.soon-container {
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
@media (max-width: 560px) {
  .soon-container {
    padding: 40px 0 0px 0;
  }
}
.soon-container .soon-bg {
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 2;
}
.soon-container .soon {
  position: relative;
  z-index: 3;
}
.soon-container .soon .calendar-cards .calendar-cards-slider {
  overflow: clip;
}
.soon-container .soon .calendar-cards .calendar-cards-slider .swiper-container .swiper-wrapper .swiper-slide {
  transition: all 0.33s ease;
  opacity: 0 !important;
}
.soon-container .soon .calendar-cards .calendar-cards-slider .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.calendar-row {
  overflow: clip;
  position: relative;
  padding: 0 0 5px 0;
}
@media (max-width: 560px) {
  .calendar-row {
    overflow: visible;
  }
}
.calendar-row .calendar-title {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}
@media (max-width: 560px) {
  .calendar-row .calendar-title .slider-buttons {
    display: none;
  }
}
.calendar-row .btn {
  font-weight: 500;
}
.calendar-row .calendar-row-slider {
  margin: 24px 0;
  width: 220px;
}
@media (max-width: 560px) {
  .calendar-row .calendar-row-slider {
    width: 180px;
    margin: 18px 0 5px 0;
  }
}
.calendar-row .calendar-row-slider .swiper-container .swiper-wrapper .swiper-slide .btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17px 35px;
  box-shadow: 0 2px 0 rgba(29, 29, 29, 0.5);
  font-weight: 500;
}
@media (max-width: 560px) {
  .calendar-row .calendar-row-slider .swiper-container .swiper-wrapper .swiper-slide .btn {
    padding: 15px 27px;
  }
}
.calendar-row .calendar-row-slider .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .btn {
  background: #85b79d;
  color: #fff;
}

.event-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin: 24px 0;
  gap: 40px;
}
@media (max-width: 560px) {
  .event-card-wide {
    grid-template-columns: 1fr;
  }
}
.event-card-wide .cover {
  position: relative;
  z-index: 1;
  width: min(740px, 45vw);
  height: min(450px, 27vw);
}
@media (max-width: 560px) {
  .event-card-wide .cover {
    width: 100%;
    height: 200px;
  }
}
.event-card-wide .cover:hover .overlay2 {
  opacity: 0.17;
}
.event-card-wide .cover .bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.event-card-wide .cover .event-title {
  z-index: 4;
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 32px;
  max-width: 420px;
}
@media (max-width: 560px) {
  .event-card-wide .cover .event-title {
    bottom: 16px;
    left: 16px;
  }
}
.event-card-wide .cover .event-title h3 {
  color: #fff;
}
.event-card-wide .data-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.event-card-wide .event-data {
  margin: auto 0 0 0;
}
.event-card-wide .event-data .row {
  padding: 0 0 19px 0;
  margin: 0 0 19px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 9px;
  font-size: 16px;
}
@media (max-width: 560px) {
  .event-card-wide .event-data .row {
    gap: 5px;
    font-size: 14px;
    padding: 0 0 11px 0;
    margin: 0 0 11px 0;
  }
}
.event-card-wide .event-data .row:not(:last-child) {
  border-bottom: 1px solid rgba(29, 29, 29, 0.15);
}
.event-card-wide .event-data .row strong {
  font-size: inherit;
  margin: 0 5px;
}
.event-card-wide .event-data .row span {
  font-size: inherit;
}
@media (max-width: 560px) {
  .event-card-wide .event-data .row span {
    width: 190px;
    margin: 0 0 0 auto;
  }
}
.event-card-wide .event-data .row a {
  font-size: inherit;
}
.event-card-wide .btn {
  margin: 24px 0 0 auto;
}

.icon {
  width: 31px;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 560px) {
  .icon {
    width: 27px;
    height: 27px;
  }
}

.large-cards {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin: 60px 0 80px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .large-cards {
    gap: 20px;
    margin: 24px 0 60px 0;
    grid-template-columns: 1fr;
  }
}
.large-cards .wave2 {
  position: absolute;
  bottom: -7%;
  right: -125px;
  z-index: 9;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 560px) {
  .large-cards .wave2 {
    right: -75px;
    width: 200px;
  }
}
.large-cards .card-large {
  height: min(47vw, 640px);
  position: relative;
}
@media (max-width: 560px) {
  .large-cards .card-large {
    height: 400px;
  }
}
.large-cards .card-large:hover .overlay2 {
  opacity: 0.21;
}
.large-cards .card-large .card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.large-cards .card-large .text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
}
@media (max-width: 560px) {
  .large-cards .card-large .text {
    bottom: 16px;
    left: 16px;
  }
}
.large-cards .card-large .text h2 {
  color: #fff;
}
.large-cards .card-large .text .glob-wrapper {
  color: #fff;
}
.large-cards .card-large .text .buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: start;
  margin: 16px 0 0 0;
}
.large-cards .card-large .text .buttons .btn {
  padding: 17px 30px;
}

.global-link {
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}

p {
  margin: 0 0 2em 0;
  padding: unset;
  line-height: 1.5em;
  font-size: 16px;
}
p:last-child {
  margin: unset;
}
@media (max-width: 560px) {
  p {
    font-size: 14px;
  }
}

ul,
ol {
  line-height: 1.5em;
  padding: 0 0 0 16px;
  margin: 2em 0;
  font-size: 16px;
}
@media (max-width: 560px) {
  ul,
  ol {
    font-size: 14px;
  }
}
ul li,
ol li {
  line-height: 1.5em;
  margin: 0 0 0.75em 0;
  position: relative;
}

ol {
  list-style: none;
  counter-reset: item;
}
ol li {
  counter-increment: item;
}
ol li:before {
  margin-right: 10px;
  content: counter(item);
  background: #1d1d1d;
  border-radius: 100%;
  color: white;
  width: 1.2em;
  text-align: center;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  font-size: 11px;
}

ul {
  list-style: none;
  counter-reset: item;
}
ul li {
  counter-increment: item;
}
ul li:before {
  margin-right: 10px;
  background: #85b79d;
  border-radius: 100%;
  color: white;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  content: " ";
  position: relative;
  top: 3px;
  width: 15px;
  height: 15px;
  font-size: 10px;
}

.small-title {
  font-size: 20px;
  line-height: 1.25em;
}

.rolunk-page .rolunk-top {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: min(160px, 7vw) 0 0 0;
  font-size: 16px;
  position: relative;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 24px;
}
@media (max-width: 860px) {
  .rolunk-page .rolunk-top {
    grid-template-columns: 1fr;
  }
}
.rolunk-page .rolunk-top h1 {
  margin: 0 0 30px 0;
}
.rolunk-page .rolunk-top p {
  font-size: inherit;
  line-height: 1.7em;
}
.rolunk-page .rolunk-top .col {
  position: relative;
}
.rolunk-page .rolunk-top .col.m {
  max-width: 640px;
}
.rolunk-page .rolunk-top .cirs {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
  justify-content: space-evenly;
  align-items: center;
  margin: 10% 0 0 0;
}
@media (max-width: 560px) {
  .rolunk-page .rolunk-top .cirs {
    margin: 40px 0;
  }
}
.rolunk-page .rolunk-top .cirs .cir {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.rolunk-page .rolunk-top .cirs .cir .c {
  position: absolute;
  z-index: 1;
  width: min(290px, 17vw);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 560px) {
  .rolunk-page .rolunk-top .cirs .cir .c {
    width: 135px;
  }
}
@media (max-width: 560px) {
  .rolunk-page .rolunk-top .cirs .cir > div .medium-title {
    font-size: 24px;
  }
  .rolunk-page .rolunk-top .cirs .cir > div .small-title {
    font-size: 14px;
  }
}
.rolunk-page .rolunk-top .cirs .cir > div span,
.rolunk-page .rolunk-top .cirs .cir > div strong {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}
.rolunk-page .rolunk-top .duo {
  position: relative;
  z-index: 1;
  width: min(725px, 39vw);
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 0;
}
@media (max-width: 1440px) {
  .rolunk-page .rolunk-top .duo {
    position: absolute;
  }
}
@media (max-width: 1280px) {
  .rolunk-page .rolunk-top .duo {
    position: absolute;
  }
}
@media (max-width: 860px) {
  .rolunk-page .rolunk-top .duo {
    position: relative;
    align-self: center;
    left: 25%;
  }
}

.banner-text {
  padding: 32px;
  background: #faf1e6;
  text-align: center;
  margin: 12px 0 60px 0;
  font-size: 24px;
}
@media (max-width: 560px) {
  .banner-text {
    font-size: 16px;
    padding: 24px;
  }
}
.banner-text h2 {
  margin: 0;
}
.banner-text p {
  margin: 0;
  font-size: 30px;
}
@media (max-width: 560px) {
  .banner-text p {
    font-size: 18px;
  }
}

.business-card {
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
}
.business-card .wave2 {
  position: absolute;
  bottom: -7%;
  left: -125px;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 560px) {
  .business-card .wave2 {
    left: -50px;
    width: 180px;
  }
}
.download-container {
  background: #faf1e6;
  padding: 40px;
  margin: 60px 0;
}
@media (max-width: 760px) {
  .download-container {
    padding: 24px 16px;
    margin: 30px 0;
  }
}
.download-container h2 {
  margin: 0 0 32px 0;
}
@media (max-width: 760px) {
  .download-container h2 {
    margin: 0 0 24px 0;
  }
}
.download-container .download-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 12px;
}
@media (max-width: 760px) {
  .download-container .download-items {
    grid-template-columns: 1fr;
  }
}
.download-container .download-items .link-item {
  font-size: 18px;
}
@media (max-width: 760px) {
  .download-container .download-items .link-item {
    font-size: 14px;
  }
}

.underline {
  margin: 7px 0 5px 0;
  padding: 0 0 13px 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.07);
}

.download-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blob-before {
  position: relative;
  display: block;
}
.blob-before::before {
  top: 0px;
  left: 0px;
  content: " ";
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 7px 0 0;
  border-radius: 50%;
}
.blob-before.green::before {
  background: #85b79d;
}
.blob-before.red::before {
  background: #dc3b44;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ec-day-grid .ec-day-head {
  justify-content: start;
  flex-direction: row;
}

.event-dialog {
  background: #faf1e6;
  padding: 13px;
  transition: all 0.17s ease;
  border: unset;
  box-shadow: 0 3px 11px rgba(29, 29, 29, 0.25);
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  width: 240px;
}
.event-dialog:popover-open {
  animation: fadein 0.17s ease-in forwards;
  top: 0;
}
.event-dialog:popover-open::backdrop {
  background-color: rgba(29, 29, 29, 0.25);
}
.event-dialog.profile-dialog {
  padding: 27px;
  width: 280px;
}
.event-dialog .title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  display: block;
}
.event-dialog .btn {
  margin: 16px 0 0 auto;
  color: #fff;
  padding: 9px 23px;
}
.event-dialog .dialog-content {
  width: calc(100% - 40px);
  position: relative;
}
.event-dialog .dialog-content > div {
  margin: 0 0 5px 0;
  font-size: 12px;
}
.event-dialog .close {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 29, 29, 0.5);
  border-radius: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  top: 9px;
  right: 9px;
  cursor: pointer;
}
.event-dialog .close .line {
  height: 1px;
  width: 60%;
  background: rgba(29, 29, 29, 0.5);
  transform: rotate(45deg);
  pointer-events: none;
  position: absolute;
}
.event-dialog .close .line:nth-child(2) {
  transform: rotate(-45deg);
}

.large-calendar {
  margin: 60px 0 60px 0;
}
.large-calendar h1 {
  margin: 0 0 12px 0;
}
@media (max-width: 560px) {
  .large-calendar h1 {
    margin: 0 0 12px 0;
  }
}
.large-calendar .ec {
  padding: 12px 7px 7px 7px;
  --ec-l-500: 99%;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-today {
    font-size: 12px;
  }
}
.large-calendar .ec .ec-body {
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  background: #faf1e6;
}
.large-calendar .ec .ec-header {
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  background: #faf1e6;
}
.large-calendar .ec .ec-header .ec-day {
  font-size: 14px;
  font-weight: 700;
  padding: 15px 0;
  text-transform: capitalize;
}
.large-calendar .ec .ec-button {
  font-weight: 500;
  padding: 11px 15px;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-button {
    padding: 5px 9px;
  }
}
.large-calendar .ec .ec-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25em;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-title {
    font-size: 12px;
    width: 120px;
  }
}
.large-calendar .ec .ec-toolbar {
  margin: 0 0 24px 0;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-toolbar {
    flex-direction: column;
    gap: 12px;
  }
}
.large-calendar .ec .ec-event {
  padding: 5px 5px 5px 9px;
  border-radius: 3px;
  margin: 3px 0 0 0 !important;
  cursor: pointer;
  line-height: 1.25em;
}
.large-calendar .ec .ec-event::after {
  z-index: 5;
  width: 3px;
  height: calc(100% - 9px);
  position: absolute;
  top: 5px;
  left: 3px;
  border-radius: 3px;
  background: #dc3b44;
  content: " ";
}
.large-calendar .ec .ec-event .ec-event-body {
  align-items: center;
}
.large-calendar .ec .ec-event .ec-event-time {
  font-weight: 500;
  line-height: inherit;
  align-self: start;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-event .ec-event-time {
    display: none;
  }
}
.large-calendar .ec .ec-event .ec-event-title {
  min-height: unset;
  font-weight: 500;
  line-height: inherit;
  white-space: unset;
}
@media (max-width: 560px) {
  .large-calendar .ec .ec-event .ec-event-title {
    white-space: nowrap;
  }
}
.large-calendar .ec .ec-day {
  padding: 5px 5px 7px 5px;
}
.large-calendar .ec .ec-event-title {
  font-size: 12px;
}
.large-calendar .ec-event-time {
  color: #1d1d1d;
}

.tab-wrapper .tab-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 0 12px 0;
  padding: 0 0 12px 0;
}
@media (max-width: 560px) {
  .tab-wrapper .tab-header {
    gap: 24px;
  }
}
.tab-wrapper .tab-header .tab-item {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 7px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.17s ease;
  box-shadow: 0 1px 0 rgba(29, 29, 29, 0.25);
}
@media (max-width: 560px) {
  .tab-wrapper .tab-header .tab-item {
    font-size: 16px;
  }
}
.tab-wrapper .tab-header .tab-item.active {
  background: #faf1e6;
  box-shadow: 0 5px 0 rgba(29, 29, 29, 0.25);
}

.text-underline {
  text-decoration: underline;
}

small {
  font-size: 0.75em;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin: 40px 0;
}
@media (max-width: 760px) {
  .data-grid {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
.data-grid .row {
  padding: 19px 15px;
  border-radius: 11px;
  background: #faf1e6;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 9px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .data-grid .row {
    padding: 15px 12px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 35px 1fr;
  }
  .data-grid .row a {
    font-weight: 800;
  }
  .data-grid .row span {
    grid-column: span 2;
  }
}

.event-desc {
  background: #faf1e6;
  padding: 20px 16px;
}
.event-desc h2 {
  margin: 0 0 24px 0;
}
.event-desc p {
  margin: 0;
  line-height: 1.6em;
}

.content-matrix {
  background-color: #faf1e6;
  margin: 36px auto;
  position: relative;
  z-index: 3;
  padding: 24px;
}
@media (max-width: 760px) {
  .content-matrix {
    padding: 16px 12px;
  }
}
.content-matrix.margin-negative-top {
  margin: -40px auto 24px auto;
}
@media (max-width: 1080px) {
  .content-matrix.margin-negative-top {
    margin: 24px auto;
  }
}
.content-matrix .btn {
  margin: 24px 0;
}

.cm-longtext a {
  text-decoration: underline;
  font-size: inherit;
  font-weight: 600;
}

.cm-large-image {
  max-height: 600px;
  overflow: clip;
  cursor: pointer;
  margin: 24px 0;
}
@media (max-width: 1080px) {
  .cm-large-image {
    margin: 12px 0;
  }
}
.cm-large-image .largeimage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cm-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin: 24px 0;
}
@media (max-width: 760px) {
  .cm-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.cm-gallery .gal-item {
  display: flex;
  position: relative;
  z-index: 1;
  overflow: clip;
  cursor: pointer;
}
.cm-gallery .gal-item:hover .overlay {
  opacity: 0.17;
}
.cm-gallery .gal-item .thumb {
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.cm-gallery .gal-item .num {
  position: absolute;
  z-index: 7;
  background: #85b79d;
  padding: 12px 15px 15px 12px;
  border-radius: 5px;
  color: #fff;
  bottom: -3px;
  right: -3px;
  font-weight: 600;
}
.cm-gallery .gal-item:nth-child(n+5) {
  display: none;
}

.gallery-page {
  padding: 40px 0;
}
.gallery-page h1 {
  text-align: center;
  margin: 0 0 0.6em 0;
}
.gallery-page .subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.gallery-grid .gal-item {
  overflow: clip;
  height: auto;
  max-height: 360px;
  cursor: pointer;
}
.gallery-grid .gal-item img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-grid .gal-item:hover .overlay2 {
  opacity: 0.17;
}
.gallery-grid .gal-item.wide {
  grid-column: span 2;
}
.gallery-grid .fitted {
  position: relative;
  width: 100%;
  height: min(680px, 39vw);
  display: block;
}
@media (max-width: 760px) {
  .gallery-grid .fitted {
    width: 100%;
    height: 240px;
  }
}
.gallery-grid .fitted img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.gallery-grid .fitted .b-title {
  position: absolute;
  z-index: 5;
  bottom: min(40px, 2vw);
  left: min(24px, 1.5vw);
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 380px;
  color: #fff;
}
@media (max-width: 760px) {
  .gallery-grid .fitted .b-title {
    left: 12px;
    bottom: 12px;
    width: 80%;
    font-size: 14px;
  }
  .gallery-grid .fitted .b-title .medium-title {
    font-size: inherit;
  }
  .gallery-grid .fitted .b-title .glob-wrapper {
    font-size: 10px;
  }
}
.gallery-grid .fitted .b-title .btn {
  margin: 24px 0 0 0;
  width: calc(100% - 17px);
}
@media (max-width: 560px) {
  .gallery-grid .fitted .b-title .btn {
    padding: 13px 21px;
    margin: 12px 0 0 0;
    width: unset;
  }
}
.gallery-grid .fitted .b-title h3 {
  color: #fff;
}
.gallery-grid .fitted .btn {
  margin: 12px 0 0 0;
  padding: 13px 45px;
}
.gallery-grid .fitted:hover .overlay2 {
  opacity: 0.21;
}

.korcsoportok-page h1 {
  margin: 40px 0;
}
.korcsoportok-page .korcsoportok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .korcsoportok-page .korcsoportok-grid {
    grid-template-columns: 1fr;
  }
}
.korcsoportok-page .korcsoportok-grid .korcsoport {
  padding: 24px;
  background: #faf1e6;
}
@media (max-width: 760px) {
  .korcsoportok-page .korcsoportok-grid .korcsoport {
    padding: 11px;
  }
}
.korcsoportok-page .korcsoportok-grid .korcsoport .title-line {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin: 0 0 24px 0;
}
.korcsoportok-page .korcsoportok-grid .korcsoport .title-line .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

table {
  width: 100%;
  border-spacing: 13px;
  overflow: auto;
}
@media (max-width: 760px) {
  table {
    border-spacing: 3px;
  }
}
table tr th {
  padding: 7px 0 7px 0;
  border-bottom: 2px solid rgba(29, 29, 29, 0.25);
  font-size: 16px;
  border-radius: 7px;
}
@media (max-width: 760px) {
  table tr th {
    font-size: 12px;
  }
}
table tr td {
  padding: 3px 15px 13px 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(29, 29, 29, 0.15);
  text-align: center;
}
@media (max-width: 760px) {
  table tr td {
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
  }
}
table tr td a {
  text-decoration: underline;
  font-weight: 600;
}
table.ranks {
  margin: 40px 0;
}
table.ranks th {
  background: #fff;
}
table.profile-table {
  border-collapse: collapse;
  margin: 24px 0 16px 0;
}
table.profile-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(29, 29, 29, 0.15);
}
table.profile-table tr td {
  text-align: start;
  border: unset;
  padding: 13px 0;
}
table.profile-table tr td:nth-child(2) {
  text-align: end;
}

.distances {
  padding: 24px;
  background: #faf1e6;
  margin: 24px 0;
  font-size: 18px;
}
.distances .row span {
  font-weight: 500;
}

.ranking-page h1 {
  margin: 40px 0;
}
.ranking-page .text {
  padding: 24px;
  background: #faf1e6;
}
.ranking-page .ranking {
  margin: 40px 0;
}
.ranking-page h2 {
  margin: 24px 0;
}
.ranking-page .rank-card {
  background: #fff;
  padding: 24px 24px 12px 24px;
  margin: 12px 0;
}
.ranking-page .rank-card .title-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(29, 29, 29, 0.07);
  padding: 0 0 7px 0;
  margin: 0 0 5px 0;
}
@media (max-width: 560px) {
  .ranking-page .rank-card .title-row {
    font-size: 16px;
  }
}
.ranking-page .rank-card .title-row .num {
  font-size: 22px;
}
.ranking-page .rank-card .title-row .points {
  margin: 0 0 0 auto;
  align-self: end;
  text-align: end;
  font-size: 22px;
}
.ranking-page .rank-card .title-row .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 3px;
  border: 1px solid #2d2d2d;
  transition: all 0.17s ease;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.ranking-page .rank-card .title-row .arrow.flip {
  transform: rotate(180deg);
}
.ranking-page .rank-card .result-wrapper {
  overflow: clip;
  height: 0;
}
.ranking-page .rank-card .result-wrapper.open {
  height: auto;
}
.ranking-page .rank-card .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, auto));
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
  margin: 12px 0 0 0;
  font-size: 12px;
  padding: 0 0 9px 0;
}
.ranking-page .rank-card .card-grid .result .title {
  font-weight: 600;
}
.ranking-page .rank-cards {
  margin: 0 0 40px 0;
}

.profile-page {
  margin: 40px 0;
}
.profile-page .radius {
  padding: 40px;
}
@media (max-width: 560px) {
  .profile-page .radius {
    padding: 24px 12px;
  }
}
.profile-page .profile-image {
  width: 160px;
  height: 160px;
  border-radius: 13px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile-page section {
  margin: 24px 0;
  background: #faf1e6;
  padding: 24px;
}
.profile-page section h3 {
  margin: 0 0 24px 0;
}
.profile-page section h3:not(:first-child) {
  margin: 36px 0 24px 0;
}
.profile-page section .text {
  margin: 24px 0;
}
.profile-page .res-row {
  font-weight: 500;
  font-size: 18px;
}
.profile-page .title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-page .title-row .num {
  display: flex;
  gap: 13px;
  font-size: 26px;
  line-height: 1em;
  font-weight: 500;
}
.profile-page .title-row .num.list {
  font-size: 16px;
  flex-direction: column;
}
.profile-page .title-row .num .icon {
  width: 35px;
  height: 29px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 560px) {
  .profile-page .title-row .num .icon {
    width: 27px;
    height: 21px;
  }
}
.profile-page .title-row .akesznum {
  font-size: 28px;
  margin: unset;
}
@media (max-width: 560px) {
  .profile-page .title-row .akesznum {
    font-size: 20px;
  }
}

.mobile-menu {
  position: fixed;
  bottom: 60px;
  right: -100%;
  transition: all 0.5s ease;
  width: 220px;
  padding: 24px 16px 40px 32px;
  background: #faf1e6;
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
  border: 1px solid rgba(29, 29, 29, 0.25);
  box-shadow: 0px 0px 60px rgba(29, 29, 29, 0.75);
  opacity: 0;
  z-index: 999;
}
.mobile-menu.hidden {
  right: -100%;
  opacity: 0;
}
.mobile-menu.slide-in {
  right: 0;
  opacity: 1;
}
@media (min-width: 1080px) {
  .mobile-menu.slide-in {
    right: -100%;
    opacity: 0;
  }
}
.mobile-menu .mobile-menu-items {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .mobile-menu-items .login-row {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.mobile-menu .mobile-menu-items .login-row .btn {
  padding: 9px 9px;
  font-size: 12px;
  gap: 5px;
  border-radius: 5px;
}
.mobile-menu .mobile-menu-items .login-row .btn .icon {
  width: 13px;
  height: 11px;
}
.mobile-menu .mobile-menu-items .nav-item {
  font-weight: 500;
  font-size: 22px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.17s ease;
}
.mobile-menu .mobile-menu-items .nav-item::after {
  position: absolute;
  bottom: -7px;
  width: 0%;
  height: 5px;
  border-radius: 3px;
  background: #85b79d;
  left: 0px;
  transition: all 0.17s ease;
  content: " ";
}
.mobile-menu .mobile-menu-items .nav-item:hover::after {
  width: 100%;
}
.mobile-menu .mobile-menu-items .nav-item.active::after {
  position: absolute;
  bottom: -7px;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #85b79d;
  left: 0px;
  transition: all 0.17s ease;
  content: " ";
}
.mobile-menu .close {
  margin: 0 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .close img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
  transform: rotate(180deg);
}

.errors ul,
.errors ol {
  margin: unset;
}
.errors ul li,
.errors ol li {
  margin: 0 0 0.75em 0;
  font-size: 12px;
  font-weight: 500;
}
.errors ul li::before,
.errors ol li::before {
  background: #dc3b44;
}

.mobile-only-hide-btn {
  display: flex;
}
@media (max-width: 560px) {
  .mobile-only-hide-btn {
    display: none;
  }
}

.mobile-only-btn {
  display: none;
}
@media (max-width: 560px) {
  .mobile-only-btn {
    display: flex;
  }
}/*# sourceMappingURL=main.css.map */