html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  width: 100%;
  min-height: 100vh;
  font-family: "Quicksand", sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  font-size: 1.1em;
}
@media only screen and (max-width: 490px) {
  p {
    scale: 0.9;
  }
}
@media only screen and (max-width: mobile) {
  p {
    scale: 0.9;
  }
}

.this {
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: black;
  padding: 10px;
}
a:hover {
  cursor: pointer;
  scale: 1.02;
  transition: 0.5s;
  background-color: #F7B5C2;
  border-radius: 10px;
  padding: 10px;
}

.button {
  background-color: #FEE1E7;
  border: none;
  padding: 10px;
  font-weight: 500;
  transition: 0.5s;
}
.button:hover {
  scale: 1.1;
  transition: 0.5s;
  cursor: pointer;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.8em;
  font-weight: 500;
}
@media only screen and (max-width: 490px) {
  h1 {
    scale: 0.85;
    text-align: center;
    line-height: 1.4;
  }
}
@media only screen and (max-width: mobile) {
  h1 {
    scale: 0.85;
    text-align: center;
    line-height: 1.4;
  }
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6em;
}
@media only screen and (max-width: 490px) {
  h2 {
    scale: 0.85;
    text-align: center;
    line-height: 1.4;
  }
}
@media only screen and (max-width: mobile) {
  h2 {
    scale: 0.85;
    text-align: center;
    line-height: 1.4;
  }
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4em;
}
@media only screen and (max-width: 490px) {
  h3 {
    scale: 0.85;
  }
}
@media only screen and (max-width: mobile) {
  h3 {
    scale: 0.85;
  }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 50px;
  min-height: 100vh;
}

.nav {
  background-color: #FEE1E7;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav span {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20px;
}
.nav span img {
  padding-left: 30px;
  height: 60px;
}
@media only screen and (max-width: 490px) {
  .nav span img {
    max-width: 45vw;
    padding-left: 2vw;
  }
}
@media only screen and (max-width: mobile) {
  .nav span img {
    max-width: 45vw;
    padding-left: 2vw;
  }
}
@media only screen and (max-width: 800px) {
  .nav nav {
    display: none;
  }
}

nav {
  padding-right: 30px;
  display: flex;
  flex-direction: row;
  min-width: 35%;
  gap: 20px;
  justify-content: flex-end;
}
#dropbt {
  visibility: hidden;
}
@media only screen and (max-width: 800px) {
  #dropbt {
    visibility: visible;
    padding-right: 20px;
  }
}

section.menuVisible {
  display: none;
}

#container.visible section.menuVisible {
  display: flex;
  overflow: hidden;
  gap: 0;
  flex-direction: column;
  position: absolute;
  background-color: white;
  opacity: 0.95;
  margin-top: 80px;
  padding: 30px 0 0px 0;
  width: 100%;
  z-index: 1;
  border-bottom: #FFC14C solid 1px;
}
#container.visible section.menuVisible a {
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: -50px;
  width: 100%;
  border-top: #FFC14C solid 1px;
}

section {
  width: 80%;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.heroSection {
  flex: 1;
}
.heroSection article {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 150px;
}
.heroSection article img {
  width: 40%;
  border: #FFC14C solid 2px;
}
@media only screen and (max-width: 1050px) {
  .heroSection article img {
    width: 50%;
  }
}
@media only screen and (max-width: laptop) {
  .heroSection article img {
    width: 50%;
  }
}
@media only screen and (max-width: 720px) {
  .heroSection article img {
    width: 90%;
  }
}
@media only screen and (max-width: tablet) {
  .heroSection article img {
    width: 90%;
  }
}
.heroSection article span {
  width: 40%;
}
.heroSection article span p {
  width: 100%;
  line-height: 2em;
}
@media only screen and (max-width: 720px) {
  .heroSection article span {
    width: 90%;
  }
}
@media only screen and (max-width: tablet) {
  .heroSection article span {
    width: 90%;
  }
}
@media only screen and (max-width: 1050px) {
  .heroSection article {
    gap: 80px;
  }
}
@media only screen and (max-width: laptop) {
  .heroSection article {
    gap: 80px;
  }
}
@media only screen and (max-width: 1000px) {
  .heroSection article {
    gap: 50px;
  }
}
@media only screen and (max-width: 720px) {
  .heroSection article {
    flex-direction: column;
  }
}
@media only screen and (max-width: tablet) {
  .heroSection article {
    flex-direction: column;
  }
}

.container > .contacts {
  flex: 1;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 70px;
  line-height: 1.2;
}
.contacts span {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contacts span a {
  text-decoration: underline;
}
.contacts span span {
  display: flex;
  flex-direction: row;
  width: 80%;
  align-items: center;
  justify-content: space-evenly;
}
.contacts span span article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
@media only screen and (max-width: 490px) {
  .contacts span span {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
  }
}
@media only screen and (max-width: mobile) {
  .contacts span span {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
  }
}

.groups article {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  gap: 50px;
}
.groups article span {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}
.groups article span h3 {
  padding-bottom: 10px;
}
@media only screen and (max-width: 660px) {
  .groups article span {
    align-items: center;
    text-align: center;
  }
}
.groups article img {
  width: 100%;
}
@media only screen and (max-width: 1050px) {
  .groups article {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: laptop) {
  .groups article {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .groups article {
    grid-template-columns: 1fr;
    width: 70%;
    justify-content: center;
  }
}

.join {
  width: 60%;
  gap: 30px;
  line-height: 1.3;
}
.join p {
  text-align: center;
}

#ytEmbed {
  display: grid;
  width: 90%;
  gap: 50px;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
}
#ytEmbed iframe {
  max-width: 45vw;
}
@media only screen and (max-width: 1050px) {
  #ytEmbed {
    gap: 30px;
  }
  #ytEmbed iframe {
    width: 400px;
    height: auto;
  }
}
@media only screen and (max-width: laptop) {
  #ytEmbed {
    gap: 30px;
  }
  #ytEmbed iframe {
    width: 400px;
    height: auto;
  }
}
@media only screen and (max-width: 850px) {
  #ytEmbed {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media only screen and (max-width: 490px) {
  #ytEmbed iframe {
    max-width: 90vw;
    height: fit-content;
    gap: 10px;
  }
}
@media only screen and (max-width: mobile) {
  #ytEmbed iframe {
    max-width: 90vw;
    height: fit-content;
    gap: 10px;
  }
}

footer {
  font-size: 0.9em;
  width: 100%;
  min-height: 100px;
  background-color: #FEE1E7;
  display: grid;
  grid-template-columns: 5fr 1fr;
}
footer .contacts {
  padding: 30px;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
footer .contacts nav {
  padding: 0;
  justify-content: space-between;
}
@media only screen and (max-width: 490px) {
  footer .contacts nav {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: mobile) {
  footer .contacts nav {
    flex-wrap: wrap;
  }
}
footer .contacts .socials {
  display: flex;
  flex-direction: row;
  width: min-content;
  gap: 30px;
  justify-content: space-between;
  font-size: 2em;
}
@media only screen and (max-width: 900px) {
  footer .contacts {
    min-width: 70%;
    width: auto;
  }
}
@media only screen and (max-width: 720px) {
  footer .contacts {
    align-items: center;
  }
}
@media only screen and (max-width: tablet) {
  footer .contacts {
    align-items: center;
  }
}
@media only screen and (max-width: 490px) {
  footer .contacts {
    min-width: 70%;
    width: auto;
  }
}
@media only screen and (max-width: mobile) {
  footer .contacts {
    min-width: 70%;
    width: auto;
  }
}
footer article {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer article img {
  width: 100%;
  max-width: 60vw;
}
@media only screen and (max-width: 1050px) {
  footer article img {
    width: 35vw;
  }
}
@media only screen and (max-width: laptop) {
  footer article img {
    width: 35vw;
  }
}
@media only screen and (max-width: 720px) {
  footer {
    line-height: 1.3;
    grid-template-columns: 1fr;
    align-items: center;
  }
}
@media only screen and (max-width: tablet) {
  footer {
    line-height: 1.3;
    grid-template-columns: 1fr;
    align-items: center;
  }
}

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