.site-footer {
  padding-bottom: 24px;
  background: var(--Deep-Purple, #512455);
}

.site-footer > * {
  padding-top: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 24px */
}

.site-footer hr {
  height: 1px;
  width: 100%;
  opacity: 0.2;
  background: #fff;
  margin: 0px;
  margin-top: 96px;
}

.site-footer form input,
.site-footer form input:-webkit-autofill,
.site-footer form input:-webkit-autofill:hover,
.site-footer form input:-webkit-autofill:focus,
.site-footer form input:autofill,
.site-footer form input:-internal-autofill-selected {
  outline: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 24px */
  padding: 12px 16px;
  width: 100%;
}

.site-footer form input:-webkit-autofill::first-line,
.site-footer form input:-webkit-autofill,
.site-footer form input:-webkit-autofill:hover,
.site-footer form input:-webkit-autofill:focus,
.site-footer form input:-webkit-autofill:active {
  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important; /* 24px */
}

.site-footer form input:-webkit-autofill,
.site-footer form input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.site-footer form button {
  position: absolute;
  right: 16px;
  padding: 0px;
  top: 12px;
  background: none;
  border: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  cursor: pointer;
}

.site-footer .subtitle {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
}

.site-footer .top-level-menu {
  display: flex;
  gap: 48px;
  padding: 0px;
  margin: 0px;
}

.site-footer .top-level-menu .second-level-menu {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer .bottom-links ul {
  display: flex;
  gap: 24px;
  padding: 0px;
  margin: 0px;
  flex-wrap: wrap;
}

/* Style for the accordion container */
.accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* padding: 24px 0px; */
  transition: max-height 0.3s ease; /* Add a transition effect to max-height */
  overflow: hidden; /* Hide overflowing content */
}

/* Style for the accordion title (header) */
.accordion-title {
  padding: 24px 0px;
  cursor: pointer;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 24px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-arrow {
  background-image: url("../assets/icons/arrow.svg");
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.accordion.open .accordion-arrow {
  transform: rotate(0deg);
}

.accordion-content {
  max-height: 0; /* Initially hide the content */
  overflow: hidden;
  transition: max-height 0.3s ease; /* Add a transition effect to max-height */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-content > * {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
}

.accordion-content > div:last-child {
  padding-bottom: 24px;
}

@media only screen and (max-width: 768px) {
  .site-footer .bottom-part {
    flex-wrap: wrap;
  }

  .site-footer hr {
    margin-top: 40px;
  }

  .site-footer > * {
    padding-top: 40px;
  }

  .site-footer .title {
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 160% !important; /* 24px */
  }

  .site-footer .bottom-part .copyright {
    width: 100%;
    padding-bottom: 16px;
  }
}
