body {
  font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0.5em;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.header {
  transition: transform 0.3s;
}

.header--Hidden {
  transform: translateY(-100%);
}

.wrapper {
  max-width: 1140px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.button {
  background-color: #61CE70;
  padding: 10px 32px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 2px solid black;
}

.button:hover {
  background-color: white;
}

@media (max-width: 768px) {
  .button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

#intro-section:before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: #ffcd00;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: -550px;
  border-radius: 100%;
}

@media (max-width: 768px) {
  #intro-section:before {
    display: none;
  }
}

.partnersGrid img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.pageForm label {
  font-size: 18px;
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.pageForm input,
.pageForm textarea {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #2C2838;
  width: 100%;
  font-weight: 600;
}

.pageForm input:focus,
.pageForm textarea:focus {
  outline: none;
  border: 1px solid #61CE70;
}

.pageForm select {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #2C2838;
  width: 100%;
  font-weight: 600;
}

.pageForm select:focus {
  outline: none;
  border: 1px solid #61CE70;
}

.pageFormUpload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

section {
  scroll-margin-top: 100px;
}

.pageFormUpload__File {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 1s;
  z-index: 1;
}

.pageFormUpload__File--Active {
  background-color: #61CE70;
}

.pageFormUpload__Icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  cursor: pointer;
}

.pageFormUpload__Icon--Active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pageFormUpload__File input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.pageFormUpload__FileName {
  font-size: 18px;
  font-weight: 600;
  color: white;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faqItem {
  background-color: #F0F0F0;
  padding: 34px 50px 34px;
  border-radius: 45px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .faqItem {
    padding: 20px 24px 20px;
  }
}

.faqTitle {
  font-size: 20px;
  font-weight: 700;
  color: #2C2838;
  position: relative;
  list-style: none;
}

@media (max-width: 768px) {
  .faqTitle {
    font-size: 18px;
    padding-right: 40px;
  }
}



.faqTitle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('images/dropdown.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  transition: 0.5s;
}

.faqText {
  font-size: 18px;
  font-weight: 400;
  color: #2C2838;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.faqText a {
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s;
}

.faqText p {
  margin-top: 15px;
  font-weight: 500;
}

.faqText ul {
  margin-top: 15px;
  font-weight: 500;
  list-style: none;
}

.faqText ul li {
  margin-top: 10px;
  padding-left: 16px;
  position: relative;
}

.faqText ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #61CE70;
  border-radius: 50%;
  margin-right: 10px;
}

.faqText p:first-child {
  margin-top: 30px;
}

.faqText a:hover {
  color: #61CE70;
}

.faqItem--Active {
  cursor: default;
}

.faqItem--Active .faqText {
  max-height: 700px;
}

.faqItem--Active .faqTitle {
  cursor: pointer;
}

.faqItem--Active .faqTitle::after {
  transform: translateY(-50%) rotate(180deg);
}


footer {
  overflow: hidden;
}

footer:after {
    content: '';
    position: absolute;
    width: 100vh;
    height: 100vh;
    background: #ffcd00;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-radius: 100%;
}


.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #61CE70;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}