* {
  padding: 0;
  margin: 0;
  color: #100624;
  font-family: "Satoshi-Regular";
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

.hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pointer {
  cursor: pointer;
}

header {
  background: #ffffff;
  position: fixed !important;
  top: 0;
  z-index: 999;
}

h1 {
  line-height: 100%;
  font-family: "Satoshi-Bold";
}

h2 {
  font-size: 52px;
  line-height: 100%;
  font-family: "Satoshi-Bold";
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
  font-weight: normal;
  line-height: 160%;
}

p {
  line-height: 160%;
}

.only-mobile {
  display: none;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.big-container {
  width: 1400px;
  margin: 0 auto;
  /* background: gray; */
}

.container {
  position: relative;
  padding: 0 50px;
}

.anchor {
  position: absolute;
  opacity: 0;
  left: 0;
  top: -130px;
}

.spacer {
  width: 100%;
  height: 87px;
}

.green-button {
  padding: 10px 25px;
  background: #31bb53;
  color: #ffffff;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 700;
}

.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  position: relative;
  margin-left: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: -3px;
}

.dropdown {
  cursor: pointer;
  position: relative;
}
.dropdown-inner {
  border-radius: 8px;
  position: absolute;
  top: 100%;
  left: -15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: white;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.dropdown-inner a {
  display: block;
  padding: 10px 15px 10px;
  width: 100%;
  min-width: 120px;
  margin: 0;
}
.dropdown-inner a:hover {
  background: rgba(215, 229, 234, 0.4);
}

.green-button-big {
  padding: 20px 40px;
  background: #31bb53;
  color: #ffffff;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 700;
}

.transparent-button {
  padding: 9.5px 40px;
  border: 1.5px solid #31bb53;
  border-radius: 12px;
  color: #100624;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.selection {
  font-family: "Satoshi-Bold";
  white-space: nowrap;
}

.translucency {
  opacity: 0.5;
  font-size: 13px;
}

/* header */

.parent {
  display: flex;
  justify-content: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 80px;
  width: 1140px;
}

.logo {
  width: 140px;
  display: block;
  cursor: pointer;
}

.logo img {
  width: 100%;
}

.header-mobile {
  display: none;
}

.header-links-mobile {
  display: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.header-links {
  display: flex;
  gap: 40px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Accordion styles */

label {
  width: 100%;
  cursor: pointer;
}

.tab-label-closed {
  display: flex;
}

.tab-label-opened {
  display: none;
}

.open-icon {
  display: block;
  width: 16px;
}

.close-icon {
  display: none;
  width: 16px;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab {
  width: 100%;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid #dddcde;
}

.tab-content {
  max-height: 0;
  padding: 0 20px;
}

.tab-label {
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 20px;
  font-weight: bold;
  font-size: 20px;
}

input:checked ~ .tab-label-closed {
  display: none;
}

input:checked ~ .tab-label-opened {
  display: flex;
}

input:checked ~ .tab-label .open-icon {
  display: none;
}

input:checked ~ .tab-label .close-icon {
  display: block;
}

input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 0 0 20px;
}

.names {
  display: flex;
  gap: 30px;
  align-items: center;
}

.form button {
  width: 100%;
  margin-top: 30px;
}

.form input {
  width: 100%;
  padding: 13px 20px;
  background: #ffffff;
  border: 1px solid rgba(131, 143, 141, 0.4);
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.form input:focus,
.form textarea:focus {
  color: #100624;
  border: 1px solid #31bb53;
  outline: 0;
}

.form textarea {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(131, 143, 141, 0.4);
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

/* footer */

.content-footer {
  background-image: url("./media/background-footer.png");
  background-size: cover;
  margin-top: 60px;
  padding: 70px 80px 40px;
  border-radius: 50px 50px 0 0;
}

.footer-top {
  display: flex;
  margin-bottom: 80px;
}

.logo-footer {
  flex: 1;
}

.links {
  flex: 1;
  display: flex;
  gap: 10%;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.social-media-mob {
  display: none;
}

.link a {
  align-items: center;
  display: flex;
  gap: 10px;
}

.link img {
  width: 20px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #dddcde;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 50px;
}

@media (max-width: 1400px) {
  .big-container {
    width: 100%;
  }

  header {
    left: 0;
    right: 0;
  }

  .header {
    width: 100%;
    margin: 20px 0;
  }

  .header-content {
    margin-left: 80px;
  }
  .buttons {
    margin-right: 80px;
  }
}

@media (max-width: 1250px) {
  h1 {
    line-height: 110%;
  }

  footer h4 {
    margin-bottom: 10px;
  }
}

@media (max-width: 1150px) {
  .header-content {
    margin-left: 0;
  }
  .buttons {
    margin-right: 0;
  }

  .content-footer {
    padding: 60px 20px 40px;
  }
}

@media (max-width: 980px) {

  h2 {
    font-size: 36px;
    line-height: 110%;
  }

  .only-mobile {
    display: block;
  }
  .spacer {
    height: 61px;
  }

  .container {
    padding: 0;
    width: 100%;
  }

  .parent-active {
    height: 100%;
    background: #ffffff;
  }

  .header {
    display: none;
  }

  .header-mobile {
    display: block;
    margin: 0;
    width: 100%;
  }

  .dropdown {
    display: none;
  }

  .header-content-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
  }

  .header-links-mobile {
    flex-direction: column;
    gap: 30px;
    padding: 20px 20px 40px;
  }

  .header-links-mobile-active {
    display: flex;
    text-align: center;
    position: relative;
    background: white;
  }
  .header-links-mobile-active:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(131, 143, 141, 0.4);
    z-index: -1;
  }

  .open-menu {
    width: 20px;
    margin-left: 20px;
  }

  .tab-label {
    gap: 20px;
  }

  .names {
    flex-direction: column;
    gap: 0;
  }

  .form button {
    margin-top: 18px;
  }

  .content-footer {
    margin-top: 0;
    border-radius: 0;
    background-image: url(./media/background-footer-mob.png);
  }

  .footer-top {
    flex-direction: column;
  }

  .social-media {
    display: none;
  }

  .social-media-mob {
    display: flex;
  }

  .link {
    margin-top: 40px;
  }

  .links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
