@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@100;200;300;400;500;600;700;800&display=swap");
.mouse-parallax {
  height: 1000px;
  width: 100%;
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.mouse-parallax-bg,
.mouse-parallax-fog-1,
.mouse-parallax-fog-2 {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  transition: all 0.1s ease;
}

.mouse-parallax-bg {
  background-image: url(images/MJ/first-section-bg.png);
  z-index: -3;
}

.mouse-parallax-fog-1 {
  background-image: url(images/fog.png);
  left: -10%;
  z-index: -2;
  opacity: 0.5;
}

.container .btn {
  position: relative;
  top: 0;
  left: 0;
  width: 250px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  font-weight: 400px;
  z-index: 1;
  transition: 0.5s;
  backdrop-filter: blur(15px);
}

.container .btn:hover a {
  letter-spacing: 3px;
}

.container .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(45deg) translate(0);
  transition: 0.5s;
  filter: blur(0px);
}

.container .btn:hover a::before {
  transform: skewX(45deg) translate(200px);
}

.container .btn::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: -5px;
  width: 30px;
  height: 10px;
  background: #f00;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.container .btn:hover::before {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.container .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: -5px;
  width: 30px;
  height: 10px;
  background: #f00;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.container .btn:hover::after {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.container .btn::before,
.container .btn::after {
  background: #ff1f71;
  box-shadow: 0 0 5px #ff1f71, 0 0 15px #ff1f71, 0 0 30px #ff1f71, 0 0 60px #ff1f71;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #00BAF0;
  background: linear-gradient(to left, #f46b45, #eea849);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .menu-glass-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.2px);
    -webkit-backdrop-filter: blur(3.2px);
    border: 1px solid rgba(255, 255, 255, 0.17);
    padding: 16px;
    z-index: 20;
    max-width: 800px;
    width: calc(100% - 128px);
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
  }
  .menu {
    justify-content: center;
  }
}
@media (min-width: 980px) {
  .menu-glass-card {
    max-width: 1200px;
  }
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 768px) {
  .header {
    position: fixed;
  }
  .menu-button-container {
    position: fixed;
    top: 33px;
    right: 23px;
    z-index: 1001;
  }
  .navbar {
    position: fixed;
    z-index: 1000;
    background-color: rgba(21, 21, 21, 0.6);
  }
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: fixed;
    top: 0;
    padding-top: 50px;
    padding-bottom: 20px;
    left: -120%;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
  #menu-toggle ~ .menu li {
    margin: 5px 0;
    padding: 0;
    border: 0;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu {
    left: 0;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
  }
}
#galaxy {
  position: absolute;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Exo 2", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.glass-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.2px);
  -webkit-backdrop-filter: blur(3.2px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  padding: 16px;
  z-index: 20;
  width: 100%;
}

@media (min-width: 980px) {
  .text {
    font-size: 20px;
  }
}

@media (min-width: 980px) {
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  width: calc(100% - 32px);
}

@media (min-width: 768px) {
  .container {
    max-width: 800px;
    width: calc(100% - 128px);
  }
}
@media (min-width: 980px) {
  .container {
    max-width: 1200px;
  }
}
section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.section-shadow {
  background: linear-gradient(to bottom, #262626 0, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

body {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 35px;
}

li {
  list-style: none;
  cursor: pointer;
}

a {
  color: #fff;
}

.first-section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first-section .btn {
  margin: 50px auto 0;
}

.first-section__glass-card {
  height: min-content;
  width: 90%;
  margin: 80px 0 50px;
}

.first-section__content {
  display: flex;
  gap: 50px;
  height: 630px;
  margin-top: 20px;
  font-weight: 600;
  position: relative;
}

.first-section__img {
  filter: blur(1px);
}

.first-section__img-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.first-section__text {
  font-size: 20px;
}

.about-me-section {
  background-image: url(images/MJ/future-city.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-me-section .section-shadow {
  background: linear-gradient(to bottom, #171627 0, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 100%);
}
.about-me-section .title-card {
  width: auto;
  margin-bottom: 24px;
  align-self: flex-start;
}
.about-me-section .section-title {
  margin-bottom: 0;
}

.about-me-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 980px) {
  .about-me-img {
    width: 300px;
    height: 300px;
  }
}

.about-me-text {
  margin-top: 50px;
}

.consultations-section {
  background-image: url(images/MJ/neurons.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.consultations-section .section-shadow {
  background: none;
}
.consultations-section .btn {
  margin-top: 25px;
}
.consultations-section .glass-card {
  margin-top: 20px;
}
.consultations-section .consultations-text {
  margin-top: 12px;
}

.water {
  margin-top: 20px;
}
.water canvas {
  opacity: 0.3;
  border-radius: 16px;
  width: 100%;
}

.tea-section {
  background-image: url(images/tea-plantation-4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tea-section .section-shadow {
  background: linear-gradient(to bottom, #090718 0, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 100%);
}
.tea-section .glass-card {
  margin-top: 20px;
}
.tea-section .events-card {
  text-align: center;
}

.tea-card {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.tea-card:nth-child(even) {
  flex-direction: row-reverse;
}
.tea-card .glass-card {
  flex-basis: 43%;
  height: min-content;
}
.tea-card .tea-card-img {
  border-radius: 16px;
  flex-basis: 50%;
  width: 50%;
  object-fit: contain;
}

.tea-going-section {
  background-image: url(images/MJ/tea-going.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tea-going-section .section-shadow {
  background: linear-gradient(to bottom, #080c07 0, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 100%);
}

.container .tea-going-btn {
  margin: 30px auto 0;
}

.tea-going-modal-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.tea-going-text {
  margin-top: 12px;
}

.tea-going-container .section-title {
  text-align: center;
  margin-bottom: 8px;
  margin-top: 36px;
}
.tea-going-container .tea-going-btn {
  margin-top: 8px;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}
.modal h4 {
  margin-top: 12px;
}
.modal .btn {
  margin: 12px auto 0;
}

/* Modal Content/Box */
.modal-content {
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.energy-section {
  background-image: url(images/MJ/energy-bg-copy.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.energy-section .section-shadow {
  background: linear-gradient(to bottom, #111108 0, rgba(0, 0, 0, 0) 45px, rgba(0, 0, 0, 0) 100%);
}
.energy-section .glass-card {
  margin-bottom: 8px;
}

.energy-img {
  width: 100%;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .energy-img {
    object-fit: contain;
    object-position: top;
    max-height: 500px;
  }
}
@media (min-width: 980px) {
  .energy-img {
    object-fit: contain;
    object-position: top;
    max-height: 600px;
  }
}
.events-section {
  background-image: url(images/MJ/energy-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #1d1d1d;
}
.events-section .glass-card {
  background: rgba(255, 255, 255, 0.2);
}
.events-section .events-card-content {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.events-section .events-card-content .btn {
  margin-top: 12px;
}
.events-section .events-card-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 36px;
}
.events-section .events-card-img {
  border-radius: 16px;
  width: 100%;
}
.events-section .events.events-section .events-card-container-card-content {
  margin-left: 36px;
}
.events-section .events.events-section .events-card-container-card-content .btn {
  margin-top: 36px;
}
.events-section .events.events-section .events-card-container-card-content .btn a {
  color: #333;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  border-radius: 16px;
}

.first-section {
  background-image: url(images/MJ/first-section-bg-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.first-section__content {
  flex-direction: column-reverse;
  height: unset;
}
@media (min-width: 980px) {
  .first-section__content img {
    max-height: 700px;
    object-fit: contain;
  }
}

.first-section__glass-card {
  width: 100%;
}

.mouse-parallax {
  display: none;
}

.first-section__text {
  font-size: 14px;
}

.tea-card {
  flex-direction: column-reverse;
}
.tea-card .glass-card {
  margin-top: 12px;
  font-size: 14px;
}

.tea-card + .tea-card {
  margin-top: 30px;
}

.tea-card:nth-child(even) {
  flex-direction: column-reverse;
}

.tea-card .tea-card-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .tea-card .tea-card-img {
    max-height: 600px;
  }
}
@media (min-width: 980px) {
  .tea-card .tea-card-img {
    max-height: 700px;
    width: 70%;
    margin: 0 auto;
  }
}
.events-card-container {
  flex-direction: column;
}

.tea-section .events-card-img {
  width: 100%;
}

.tea-section .events-card-content {
  margin-left: 0;
  margin-top: 16px;
}

.tea-section .events-card-content .btn {
  margin: 32px auto 0;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

footer {
  padding: 8px;
  background-color: #1d1d1d;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 768px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer-container {
    max-width: 800px;
    width: calc(100% - 128px);
  }
}
@media (min-width: 980px) {
  footer {
    padding-top: 24px;
  }
  footer .footer-container {
    max-width: 1200px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .footer-container .footer-content {
    flex-basis: 27%;
  }
}

.footer-menu {
  margin-top: 5px;
  font-size: 14px;
}

.footer-bottom {
  width: 100%;
  margin-top: 12px;
  padding: 5px 0;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  display: flex;
  justify-content: center;
}
.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom .footer-container {
    max-width: 800px;
    width: calc(100% - 128px);
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 980px) {
  .footer-bottom .footer-container {
    max-width: 1200px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-bottom .footer-container .footer-content {
    flex-basis: 27%;
  }
}
.footer-bottom a {
  text-decoration: none;
}

.footer-content {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.footer-content a {
  margin-top: 4px;
}
.footer-content p {
  font-size: 14px;
}

.footer-socials-container {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}

.footer-social {
  width: 48px;
}

.footer-social-link + .footer-social-link {
  margin-left: 8px;
}


.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, sans-serif;  
    color: #FFF;
    background: #337AB7;
    padding: 10px 20px; 
    border-top: 4px solid #BFE2FF;
}
/* Оформление кнопок */
.cookie_btn {
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 4px 12px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    background: #337AB7;
    border: 2px solid #BFE2FF;
}
.cookie_btn:hover {
    color: #FFF;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}


input[type="submit"]:disabled {
    opacity: .5;
}

/*# sourceMappingURL=style.css.map */
