@font-face {
  font-family: "UkraineHead";
  src: url("assets/TTChocolates-Regular.ttf");
}
@font-face {
  font-family: "Chevani";
  src: url("assets/PS-Chevani-Free.otf");
}
body {
  font-family: "UkraineHead";
}
html {
  scroll-behavior: smooth;
}
section {
  padding: 0 5rem;
}
/* ---------------- header ----------------- */
header {
  background-color: #bb2649;
}
.header-links li a:link {
  font-family: "Chevani";
  font-size: 4rem;
}
.header-links li {
  font-family: "Chevani";
  font-size: 4rem;
}
.header-link a:link,
.header-link a:visited {
  font-size: 4rem;
  color: #fff;
}
.header-link a:hover,
.header-link a:active {
  color: #000;
}
.language-switcher a:link,
.language-switcher a:visited {
  font-size: 4rem;
  color: #000;
}
.header-links {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding: 4rem 1rem;
}
/* ---------------- hero ---------------- */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.hero_content {
  padding: 20rem 0 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  color: #fff;
  font-size: 10rem;
  margin-bottom: 8rem;
  font-family: "Chevani";
}
.hero-title span {
  color: #bb2649;
}

.hero-subtitle {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20rem;
}

.sign-in-button:link,
.sign-in-button:visited {
  text-align: center;
  text-wrap: nowrap;
  display: block;
  color: #fff;
  font-family: "UkraineHead";
  font-size: 1.6rem;
  background-color: #bb2649;
  box-sizing: border-box;
  padding: 1.6rem 0;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s;
  border: 1px solid #bb2649;
}
.hero_content .sign-in-button:link,
.hero_content .sign-in-button:visited {
  max-width: 30rem;
  width: 100%;
}
.sign-in-button:hover,
.sign-in-button:active {
  color: #bb2649;
  background-color: #fff;
  border: 1px solid #bb2649;
}
/* ----------- about --------------- */
.about-section {
  margin: 10rem 0;
  padding: 0;
}
.about-section > .about-text-block {
  padding: 0 5rem;
}
.marquee-text {
  font-family: "Chevani";
  color: #000;
  font-size: 10rem;
  white-space: nowrap;
}
.marquee-text span {
  color: #bb2649;
}
.marquee {
  overflow: hidden;
  display: flex;
}
.about-text-block {
  max-width: 80rem;
  text-align: center;
  margin: 2rem auto;
}
.about-title {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-text {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 5rem;
}
/* -------------- events --------------- */
.soon {
  text-align: center;
  text-wrap: nowrap;
  display: block;
  color: #fff;
  font-family: "UkraineHead";
  font-size: 1.6rem;
  background-color: #bb2649;
  box-sizing: border-box;
  padding: 1.6rem 0;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s;
  border: 1px solid #bb2649;
  opacity: 0.5;
  cursor: no-drop;
}
.events-section,
.previous-events-section {
  display: flex;
  margin: 10rem;
  gap: 10rem;
  justify-content: center;
}
.events-section {
  padding: 0;
}
.event-picture {
  max-width: 30rem;
}
.event-picture:not(:last-child) {
  margin-bottom: 1rem;
}
.event-picture img {
  width: 100%;
}
.event-title {
  font-family: "Chevani";
  color: #000;
  font-size: 10rem;
  margin-bottom: 2rem;
  line-height: 1;
}
.event {
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.event:not(:first-child) {
  margin-top: 3rem;
}
.event-date {
  margin-bottom: 1rem;
  text-wrap: nowrap;
}
.dot {
  position: absolute;
  top: 50%;
  left: -30px;
  height: 15px;
  width: 15px;
  background-color: #bb2649;
  border-radius: 100px;
  transform: translate(0, -50%);
}
/* ----------- ball ------------- */
.ball-section {
  text-align: center;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.ball-title {
  color: #000000;
  font-size: 10rem;
  margin-bottom: 2rem;
  font-family: "Chevani";
}
.ball-title span {
  color: #bb2649;
}
.ball-text {
  font-size: 1.6rem;
  max-width: 100rem;
}
/* ---------------- grid --------------- */
.grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 10rem auto;
}
.grid-item:nth-child(1) {
  border-right: 1px solid #bb2649;
  border-bottom: 1px solid #bb2649;
  justify-self: end;
}
.grid-item:nth-child(2) {
  border-left: 1px solid #bb2649;
  border-bottom: 1px solid #bb2649;
}
.grid-item:nth-child(3) {
  border-right: 1px solid #bb2649;
  border-top: 1px solid #bb2649;
  justify-self: end;
}
.grid-item:nth-child(4) {
  border-left: 1px solid #bb2649;
  border-top: 1px solid #bb2649;
}
.grid-item {
  padding: 2rem;
  max-width: 60rem;
  text-align: center;
}
.grid-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.grid-text {
  font-size: 1.6rem;
}
/* ----------- buyers ------------- */
.buyers-section {
  margin: 10rem 10rem 0;
}
.buyers-title {
  color: #000000;
  font-size: 12rem;
  margin-bottom: 5px;
  line-height: 1;
  font-family: "Chevani";
  text-transform: uppercase;
}
.buyers-title span {
  color: #bb2649;
}
.buyers-text {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.countries {
  display: flex;
  gap: 10rem;
  justify-content: start;
}
.countries ul {
  font-size: 2.5rem;
}
.countries ul li {
  margin-bottom: 1rem;
}

/*---------------- partners -------------- */
.partners-section {
  margin: 10rem 10rem 0 10rem;
}
.partners-container {
  margin: 0 auto;
  display: flex;
  gap: 10rem;
  justify-content: space-between;
}
.partners-title {
  font-size: 12rem;
  font-family: "Chevani";
}
.partners-title span {
  color: #bb2649;
}
.partners-image-container {
  max-width: 60rem;
}
.partners-image-container img {
  width: 100%;
}
/*---------------- founder -------------- */
.founder-section {
  margin: 10rem;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
.founder-image_container img {
  width: 100%;
}
.founder-name,
.founder-name-mob {
  font-size: 6rem;
  font-family: "Chevani";
  color: #bb2649;
  text-wrap: nowrap;
  margin-bottom: 2rem;
}
.founder-image_container {
  justify-self: end;
}
.founder-title,
.founder-title-mob {
  font-size: 6rem;
  font-family: "Chevani";
  margin-bottom: 2rem;
}
.founder-text_container {
  text-align: center;
}
.start-blockquote {
  position: absolute;
  top: 0;
  left: -30px;
}
.end-blockquote {
  position: absolute;
  bottom: 0;
  right: -30px;
}
.founder-text {
  font-size: 2.2rem;
  position: relative;
}
/* .founder-text p:not(:last-child) {
  margin-bottom: 1rem;
} */
/*---------------- previous -------------- */
.previous-events-section {
  margin: 10rem;
}
.previous-event-pictures {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
.previous-event-pictures .event-picture {
  width: 15rem;
  overflow: hidden;
  margin: 0;
}
.previous-event-pictures .event-picture img {
  height: 100%;
}
.previous-events-section ul,
.previous-events-section li {
  list-style: disc !important;
}
.previous-join-is a:link,
.previous-join-is a:visited {
  color: #000;
  text-decoration: underline;
}
/* footer */
footer {
  background-color: #bb2649;
  padding: 4rem;
  display: flex !important;
  justify-content: start;
  gap: 20rem;
}
footer svg path {
  fill: #fff;
}
.logo_container {
  max-width: 13rem;
}
.logo_container svg {
  width: 100%;
}
.founder-name-mob {
  display: none;
}
.founder-title-mob {
  display: none;
}

.media-link img {
  width: 32px;
}
.media-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info a,
.contact-info p {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}
