.runda_foot {
  border-top: 1px solid #E4E1DA;
  background: #2E2A26;
  padding-top: calc(var(--text-gap-sm) * 2);
}

.runda_foot .runda-sub-title {
  color: #D1BAA7;
}

.runda_foot_list {
  display: flex;
  justify-content: space-between;
  padding: calc(var(--text-gap-lg) / 2) 0;
}

.runda_foot_list_item {
  width: 220px;
  flex-shrink: 0;
}

.runda_foot_list_item:nth-child(3),
.runda_foot_list_item:nth-child(4) {
  margin-left: 82px;
}

.runda_foot_info {
  width: 476px;
  flex-shrink: 0;
  padding-right: 142px;
}

.runda_foot_info_logo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  margin-bottom: var(--text-gap-sm);
}

.runda_foot_info_logo img {
  width: auto;
  height: 27px;
  object-fit: cover;
  aspect-ratio: 37 / 27;
}

.runda_foot_info_logo span {
  color: #fff;
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
}

.runda_foot .runda-text {
  color: #D1BAA7;
  line-height: 1.5;
}

.runda_foot_btn {
  border-radius: 0px;
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 16px;
  width: fit-content;
  padding: 14px 22px;
  gap: 10px;
  text-transform: uppercase;
}

.runda_foot_list_item h3 {
  color: #D1BAA7;
  font-family: var(--semiBold-font-family);
  font-size: var(--text-size);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.runda_foot_list_item ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* .runda_foot_list_item .runda-text {
  color: #FFF !important;
} */

.runda_foot_list_item_follow a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.runda_foot_list_item_follow img {
  height: calc(1.5 * var(--text-size));
  /* aspect-ratio: 1 / 1; */
  max-width: 25px;
  object-fit: cover;
}

.runda_foot_copyright {
  border-top: 1px solid #E4E1DA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--text-gap-sm) 0 calc(var(--text-gap-sm) * 2);
}

.runda_foot_copyright_social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.runda_foot a:hover,
.runda_foot a:hover .runda-text {
  color: #E3D5C4 !important;
}

@media screen and (max-width: 1500px) {
  .runda_foot_list_item {
    width: auto;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 334px !important;
  }
}


@media screen and (max-width: 992px) {
  .runda_foot_list {
    flex-direction: column;
    gap: var(--text-gap-lg);
  }

  .runda_foot_list_item {
    width: 100% !important;
    max-width: none !important;
  }

  .runda_foot_info {
    margin-right: 0;
  }

  .runda_foot_list_item ul {
    display: none;
    animation: fadeIns 0.3s ease-in-out;
  }

  @keyframes fadeIns {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .runda_foot_list_item ul.active {
    display: flex;
  }

  .runda_foot_list_item h3 {
    position: relative;
  }

  .runda_foot_list_item h3::after {
    content: '\e643';
    font-family: 'iconfont';
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
  }

  .runda_foot_list_item.active h3::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .runda_foot_copyright {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .runda_foot_copyright {
    justify-content: center;
  }

  .runda_foot_copyright_social {
    justify-content: space-between;
  }
}