@charset "UTF-8";
/*slideshow styles*/
@import url(https://db.onlinewebfonts.com/c/345e34e93fd8fb4d615a376223beec96?family=URW+Antiqua+W01+Extra+Narrow);
@import url("https://fonts.googleapis.com/css2?family=Joan&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.slideshow-container {
  display: block;
  position: relative;
  width: 45vw;
  height: 35vw;
  min-width: 500px;
  overflow: hidden;
  float: right;
  margin: 0 0 30px 60px;
}

.float-left {
  float: left;
  margin: 0 40px 20px 0;
}

.slideshow-image.active {
  opacity: 1;
}

.image-scaled {
  width: 600px;
  height: 416px;
}

.image-scaled-height {
  height: 660px;
  width: 590px;
}

.mobile-images {
  display: none;
}

.desktop-images {
  display: flex;
}

/*Wrappers and spacers*/
.internal-elements-wrapper-1 {
  width: 90%;
}

.internal-elements-wrapper-2 {
  align-items: center;
}

.spacer-1 {
  width: 100%;
  height: 78px;
}

.spacer-2 {
  width: 100%;
  height: 50px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  align-self: start;
  margin-left: 40px;
}

.image-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  min-width: 430px;
  float: right;
  justify-content: center;
}
.image-title-wrapper a {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 800px) and (max-width: 1000px) {
  .internal-elements-wrapper-1 {
    flex-direction: column;
    align-content: center;
  }
  .internal-elements-wrapper-2 {
    align-self: unset;
    max-width: 600px;
  }
  .logo-wrapper {
    align-self: center;
    margin-left: 0px;
    margin-bottom: 10px;
  }
}
/*Hero image styles*/
.hero-image-spacer {
  height: 100vh;
  width: 100%;
}

.hero-image-container {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.35);
}

.hero-text-container {
  z-index: 3;
  position: absolute;
  top: 50vh;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-text-container h1 {
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-text-container p {
  font-family: "Tinos", serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  color: #e0e0e0;
  font-size: 25px;
}

/*Global styles*/
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: url("../images/main_bg.webp");
  background: #181818;
  background-repeat: repeat;
  background-size: auto;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181818;
  opacity: 0.9; /* 90% прозорості (0.1 непрозорості) */
  z-index: -1; /* Щоб псевдоелемент був під вмістом сторінки */
}

main {
  min-height: 100vh;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
h2 {
  margin: 10px 0;
  text-align: center;
  font-family: "Joan", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 34px;
  color: red;
  width: fit-content;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

h3 {
  text-align: left;
  font-family: "Joan", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: red;
  margin: 20px;
}

p {
  /* margin: 20px; */
  text-align: justify;
  font-family: "Joan", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  hyphens: auto;
  -webkit-hyphens: auto;
  color: #dbd8d8;
  /* width: 40vw;
  max-width: 500px; */
}

a {
  text-decoration: none;
}

section {
  margin: 0 auto;
  display: flex;
  /* flex-direction: row; */
  flex-direction: column;
  padding: 20px;
  align-items: center;
}

li b {
  color: red;
  font-weight: normal;
}

.fd-row {
  display: flex;
  flex-direction: row;
}

.jc-sb {
  justify-content: space-between;
}

.cover {
  object-fit: cover;
}

.svg-aligner {
  display: flex;
  align-self: auto;
}

.subtitle {
  display: flex;
}
.subtitle p {
  font-size: 24px;
}

.s2 {
  padding-left: 45vw;
}

.desktop-text {
  display: block !important;
}

.mobile-text {
  display: none !important;
}

.hide-on-desktop {
  display: none;
}

.hide-on-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-html {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.captcha {
  width: 300px;
  height: 100px;
}

.margin-z-a {
  margin: 0 auto;
}

.float-none {
  float: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hello-text {
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.85);
}

/*Mobile styles*/
/* @media (max-width: 800px){} */
@media (max-width: 1000px) {
  section {
    flex-direction: column;
  }
  p {
    font-size: 17px;
  }
  .share-html {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  .desktop-text {
    display: none !important;
  }
  .mobile-text {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  h2 {
    text-align: center;
  }
  .s2 {
    padding: 0;
  }
  .subtitle {
    align-self: center;
  }
  /*Wrappers and spacers*/
  .internal-elements-wrapper-1 {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
  }
  .internal-elements-wrapper-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-self: center;
    max-width: 750px;
  }
  .spacer-1 {
    width: 100%;
    height: 0;
  }
  .image-title-wrapper {
    max-height: 500px;
    align-self: center;
    min-width: 100%;
  }
  .logo-wrapper {
    margin-bottom: 20px;
    align-self: center;
  }
  /*slideshow styles*/
  .slideshow-container {
    width: 600px;
    align-self: center;
    margin: 0;
    max-width: 700px;
    height: 500px;
    float: none;
  }
}
@media (min-width: 450px) and (max-width: 600px) {
  .slideshow-container {
    height: 470px;
  }
}
.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

@media (min-width: 0px) and (max-width: 620px) {
  .hero-text-container {
    top: 40vh;
  }
  /*Wrappers and spacers*/
  .image-title-wrapper {
    min-width: 100%;
    max-height: none;
  }
  .mobile-images {
    display: flex;
  }
  .desktop-images {
    display: none;
  }
  .slideshow-container {
    min-width: 100vw;
    position: relative;
    max-width: 100vw;
  }
  .slideshow-container .slideshow-image {
    object-fit: cover;
    border-radius: 0px;
  }
  .svg-aligner {
    align-self: center;
  }
  .logo-wrapper {
    margin: 0;
    margin-bottom: 20px;
  }
  .subtitle {
    width: 100%;
  }
  .hide-on-mobile {
    display: none;
  }
  .hide-on-desktop {
    display: flex;
  }
}
.hero-image {
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */
