#main {
padding-top: 0.5em;
z-index: 100;
}

.section1-background {
    background-color: black;
}

.section1 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    background-image: url("../icons/pexels-pixabay-356049.jpg");
    background-color: rgba(0,0,0,0.2);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
}

.section1-text {
    margin: 5vw 10vw;
    text-align: center;
    font-family: Ubuntu, sans-serif;
    font-size: 4vw;
    font-weight: 400;
    color: #ffffff;
}

.section1-spin-logo {
    margin-bottom: 6vw;
}

.spin-logo {
    width: 15vw;
    animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.replication-description {
    display: flex;
    flex-flow: column;
    background-color: #efefef;
}

.replication-top {
    margin-left: 2vw;
    margin-top: 1.5vw;
    height: fit-content;
    width: fit-content;
    font-family: Ubuntu, sans-serif;
    font-size: 3vw;
    font-weight: 700;
    color: black;
    /*background-color: blanchedalmond;*/
}

.replication-bottom {
    display: flex;
    flex-flow: row;
    margin-top: 3vw;
}

.replication-bottom-beyblade {
    /*background-color: lightcoral;*/
    /*max-width: 40vw;*/
    width: 20vw;
    overflow: hidden;
    margin-top: -12%;
    margin-left: -25%;
}

.replication-bottom-cards {
    /*background-color: lightgreen;*/
    margin-top: 3vw;
    margin-left: 2vw;
    margin-right: auto;
    display: flex;
    flex-flow: row;
    gap: 4vw;
}

.replication-beyblade {
    height: auto;
    width: 50vw;
    animation: rotation2 60s infinite linear;
}

@keyframes rotation2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.card1 {
    width: 18vw;
    height: 27vw;
    border-radius: 2vw;
    border: 0.13vw solid #ec644c;
    background-image: linear-gradient(#fd867f, #ec644c);
    margin-top: 0;
    transition: margin-top 1s, border 0.5s;
    overflow: visible;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.card1-text {
    /*background-color: cornflowerblue;*/
    vertical-align: center;
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 1.3vw;
    color: white;
    text-align: justify-all;
    margin: 2.5vw 2vw 2vw;
}

.card1:hover {
    /*margin-top: 2vw;*/
    border: 0.13vw solid white;
}

.card2 {
    width: 18vw;
    height: 27vw;
    border-radius: 2vw;
    border: 0.13vw solid white;
    background: white;
    margin-top: 2vw;
    transition: margin-top 1s, border 0.5s;
    overflow: visible;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    align-content: center;
}

.card2-text {
    /*background-color: cornflowerblue;*/
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 1.35vw;
    color: black;
    text-align: justify-all;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
}

.card2:hover {
    /*margin-top: 2vw;*/
    border: 0.13vw solid #ec644c;
}

.help-section {
    display: flex;
    flex-flow: column;
    background-image: linear-gradient(#efefef, white);
}

.help-section-text {
    margin-left: 2vw;
    margin-top: 1.5vw;
    height: fit-content;
    width: fit-content;
    font-family: Ubuntu, sans-serif;
    font-size: 3vw;
    font-weight: 700;
    color: black;
    /*background-color: blanchedalmond;*/
}

.help-section-form {
    /*background-color: cornflowerblue;*/
    margin-left: 2vw;
    display: flex;
    flex-flow: row;
}

html {
  height: 100%;
}

.login-box {
    /*background-color: #fd867f;*/
    width: 30vw;
    margin-top: 1vw;
    margin-left: 3vw;
}

.login-box h2 {
  margin: 0 0 3vw;
  padding: 0;
  color: #000000;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 1vw 0;
  font-size: 1vw;
  color: #000000;
  margin-bottom: 0.5vw;
  border: none;
  border-bottom: 1px solid #000000;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
    position: absolute;
    top: -1vw;
    left: 0;
    padding: 1.5vw 0;
    font-size: 1.5vw;
    font-family: Ubuntu, sans-serif;
    color: #000000;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -2vw;
  left: 0;
  color: #ec644c;
  font-size: 1vw;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #ec644c;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.submit-form {
    margin-left: 2vw;
    /*background-color: lightgreen;*/

}

.submit-form-button {
    margin-top: 15vw;
    font-family: Ubuntu, sans-serif;
    font-size: 1.8vw;
    height: 3vw;
    width: 8vw;
    background-color: #ec644c;
    border: none;
    border-radius: 0.6vw;
    color: white;
    cursor: pointer;
}

.submit-form-button:hover {
    background-color: #be513e;
}

.submit-form-button:active {
    background-color: #933f30;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.partners-section {
    margin-top: 4vw;
}

.partners-section-text {
    margin-left: 2vw;
    margin-top: 1.5vw;
    height: fit-content;
    width: fit-content;
    font-family: Ubuntu, sans-serif;
    font-size: 3vw;
    font-weight: 700;
    color: black;
    margin-bottom: 0.6vw;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    /*background-color: #2196F3;*/
    padding: 10px;
    align-items: center;
}
.grid-item {
  /*background-color: rgba(255, 255, 255, 0.8);*/
  /*border: 1px solid rgba(0, 0, 0, 0.8);*/

  font-size: 2vw;
  text-align: center;
}

.partner-logo {
    width: 15vw;
}

.european-funding {
    margin-top: 6vw;
    /*background-color: cornflowerblue;*/
    margin-left: 25%;
    display: flex;
    flex-flow: row nowrap;
    gap: 2vw;
    align-items: center;
    margin-bottom: 3vw;
}

.european-funding-image {
    /*background-color: lightgreen;*/
    border-right: solid black;
}

.european-union-flag {
    width: 8vw;
    margin-right: 2vw;
}

.european-funding-text {
    /*background-color: #fd867f;*/
    max-width: 30vw;
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 1.5vw;
    color: black;
    text-align: justify-all;
    vertical-align: center;
    align-content: center;
    align-items: center;
}

.socials {
    background-image: linear-gradient(#303539, #202325);
    display: flex;
    flex-flow: column;
}

.social-icon {
    margin-top: 5vw;
    transition: all 0.3s;
}

.social-icon:hover {
    fill: #ec644c;
    cursor: pointer;
}

.social-style {
    width: 2vw;
    height: fit-content;
    /*background-color: #fd867f;*/
}

.socials-text {
    font-family: Ubuntu, sans-serif;
    color: white;
    font-size: 1.5vw;
    font-weight: 300;
}

.socials-top {
    margin-top: 3vw;
    display: flex;
    flex-flow: row;
    gap: 1vw;
    align-items: center;
    justify-content: center;
}

.spin-logo2 {
    width: 3vw;
    margin-right: -0.5vw;
}

.social-communitas-text {
    font-family: Ubuntu, sans-serif;
    font-size: 1.4vw;
    font-weight: 500;
    color: white;
    /*background-color: lightcoral;*/
    height: fit-content;
    width: fit-content;
    margin-right: 15vw;
}

.socials-bottom {
    margin-top: 2vw;
    font-family: Ubuntu, sans-serif;
    opacity: 0.6;
    color: white;
    text-align: center;
}

.see-more-button {
    font-family: Ubuntu, sans-serif;
    font-size: 1.5vw;
    height: 3vw;
    width: 8vw;
    background-color: #ec644c;
    border: none;
    border-radius: 0.6vw;
    color: white;
    cursor: pointer;
}

.see-more-button:hover {
    background-color: #be513e;
}

.see-more-button:active {
    background-color: #933f30;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.checkbox-form {
    margin-left: 3vw;
  --_clr-primary: #464545;
  --_clr-hover: rgba(236, 100, 76, 0.29);
  --_clr-checked: #ec644c;
}
.checkbox-form > div {
  --_clr-current: var(--_clr-primary);
    display: flex;
    align-items: center;
  /*gap: 0.5vw;*/
}
.checkbox-form > div + div {
  margin-block-start: 0.5vw;
}
.checkbox-form label {
  cursor: pointer;
  color: var(--_clr-current);
  transition: color 150ms ease-in-out;
}

/* styled checkbox */
.checkbox-form input[type="checkbox"] {
  appearance: none;
  outline: none;
  width: 1.5vw;
  height: 1.5vw;
  aspect-ratio: 1;
  padding: 0.25vw;
  background: transparent;
  border: 1px solid var(--_clr-current);
  border-radius: 2px;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.checkbox-form input[type="checkbox"]::after {
  content: "\2714";
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  color: var(--_clr-checked);
  font-size: inherit;
  font-family: inherit;
}

.checkbox-form label:hover,
.checkbox-form input[type="checkbox"]:focus-visible,
.checkbox-form input[type="checkbox"]:focus-visible + label,
.checkbox-form input[type="checkbox"]:hover,
.checkbox-form input[type="checkbox"]:hover + label {
  --_clr-current: var(--_clr-hover);
}
.checkbox-form input[type="checkbox"]:focus-visible::after,
.checkbox-form input[type="checkbox"]:hover::after {
  opacity: 0.5;
  color: var(--_clr-hover);
}

.checkbox-form input[type="checkbox"]:checked + label:not(:hover),
.checkbox-form input[type="checkbox"]:checked:not(:hover) {
  --_clr-current: var(--_clr-checked);
}
.checkbox-form input[type="checkbox"]:checked::after {
  opacity: 1;
}

.generic-section {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.generic-section-header {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
    height: fit-content;
    width: fit-content;
    font-family: Ubuntu, sans-serif;
    font-size: 5vw;
    font-weight: 700;
    color: black;
    /*background-color: blanchedalmond;*/
}

.generic-content-section {
    text-align: justify;
    width: auto;
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 1.5vw;
    font-family: Ubuntu, sans-serif;
    font-size: 1.5vw;
    font-weight: 300;
    color: black;
}

.generic-content-title {
    width: auto;
    border-bottom: 2px solid #000000;
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 1.5vw;
    height: auto;
    font-family: Ubuntu, sans-serif;
    font-size: 3vw;
    font-weight: 700;
    color: black;
    /*background-color: blanchedalmond;*/
}

.video {
    margin-top: 2vw;
    margin-bottom: 2vw;
}

iframe {
    display: block;
    border-style:none;
    margin-left: auto;
    margin-right: auto;
}

section {

  margin-left: 6vw;
    margin-right: 6vw;
  color: black;
}

summary {
    display: block;
    cursor: pointer;
    font-family: Ubuntu, sans-serif;
    color: black;
    padding-bottom: 4vw;
    font-size: 2.5vw;
    font-weight: 700;
    transition: .3s;
}

summary:hover {
    color: #ec644c;
}


summary:before {
    color: black;
    font-size: 1.5vw;
    content: "\2BC8";
    /*content: url("static/icons/communitas logo.png");*/
    margin-right: 0.2vw;
    transition: all 0.2s;
}

details > div {

  overflow: auto;
  height: 100%;
    font-size: 1.3vw;
  padding: 0 2vw;
  font-family: Ubuntu, sans-serif;
    font-weight: 300;
  line-height: 1.5;
}

details[open] > summary:before {
    color: #ec644c;
    content: "\2BC6";
}

details[open] > summary {
    color: #ec644c;
}

@media (min-width: 768px) {
  details[open] > div > p {
    opacity: 0;
    animation-name: showContent;
    animation-duration: 0.6s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    margin: 0;
    padding-left: 20px;
  }

  details[open] > div {
    animation-name: slideDown;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }

  details[open] > div > img {
    opacity: 0;
    height: 100%;
    margin: 0;
    animation-name: showImage;
    animation-duration: 0.3s;
    animation-delay: 0.15s;
    animation-fill-mode: forwards;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    height: 0;
    padding: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes showImage {
  from {
    opacity: 0;
    clip-path: inset(50% 0 50% 0);
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes showContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}