.footer {
  background-color: #060606;
  display: block;
  height: 213px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 60px 0px 60px 0px;
  width: 1280px;
}
.footer__container--footer-custom-style {
  width: 1732px;
}
.footer__main__content__01 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer__content__01 {
  display: flex;
}
.footer__txt__01 {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #dcdee4;
  cursor: pointer;
}
.footer__txt__01:hover {
  color: #ffffff;
}
.footer__txt__02 {
  font-size: 14px;
  font-weight: 500;
  color: #a7a9b1;
  cursor: pointer;
}
.footer__txt__02:hover {
  color: #ffffff;
}
.footer__content__02 {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-top: 12px;
}
.footer__txt__03 {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #a7a9b1;
}
.footer__txt__04 {
  font-size: 14px;
  font-weight: 500;
  color: #dcdee4;
  cursor: pointer;
}
.footer__txt__04:hover {
  color: #ffffff;
}
.footer__content__03 {
  font-size: 14px;
  font-weight: 400;
  color: #6f6f74;
}
.footer__main__content__02 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__content__04 {
  color: #a7a9b1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__content__04 .icon {
  cursor: pointer;
}
.footer__content__04 .icon svg {
  width: 100%;
  height: 100%;
}
.footer__content__04 :hover {
  color: #ffffff;
}
.footer__content__05 {
  display: flex;
  justify-content: row;
  justify-content: flex-end;
  position: relative;
}
.footer__content__05 .icon {
  width: 20px;
  height: 20px;
}
.footer__content__05 .icon i:before,
.footer__content__05 .icon i:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #dcdee4;
  transform: translate(-50%, -50%);
}
.footer__content__05 .icon i:after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.45s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.footer__content__05.open-true #menu,
.footer__content__05.open-true #menu-mobile {
  z-index: 99;
  opacity: 1;
  transform: translate(0);
}
.footer__content__05.open-true i:after {
  transform: translate(-50%, -50%) rotate(720deg);
}
.footer__menu {
  position: absolute;
  background-color: #222224;
  padding: 30px;
  border-radius: 16px;
  color: #dcdee4;
  font-size: 14px;
  width: 186px;
  height: 130px;
  bottom: 38px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: all 0.45s;
  opacity: 0;
  transform: translateY(5%);
}
.footer__menu-item {
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}
.footer__menu-item + .footer__menu-item {
  margin-top: 10px;
}
.footer__menu-item:hover {
  color: #ffffff;
}
.footer__button-plus {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #dcdee4;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  height: 20px;
}
.footer__button-plus:hover {
  color: #ffffff;
}
.footer__button-plus:hover .icon i:before,
.footer__button-plus:hover .icon i:after {
  background-color: #ffffff;
}

.footer__mobile {
  display: none;
}

@media (min-width: 1280px) and (max-width: 1919px) {
  .footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .footer__container {
    margin: 0px;
    width: 1280px;
  }
  .footer .footer__content__04 img {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 1279px) {
  .footer__mobile {
    display: block;
    background-color: #060606;
    width: auto;
    height: auto;
  }
  .footer__mobile .footer__container__mb {
    padding: 100px 40px 100px 40px;
    height: 100%;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__content__05 {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02 .footer__content__04 img {
    height: 40px;
    width: 40px;
    margin-right: 14px;
    margin-left: 0px;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__menu {
    position: absolute;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    color: white;
    width: 250px;
    bottom: 60px;
    height: 135px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__menu-item {
    margin: 5px 0;
    cursor: pointer;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__menu-item:hover {
    background-color: #444;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__01 p {
    margin-bottom: 0px;
  }
  .footer__mobile .footer__container__mb .footer__content__01 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 88px 0px 32px 0px !important;
  }
  .footer__mobile .footer__container__mb .footer__txt__02 {
    font-weight: 300;
    color: var(--grey-a-7-a-9-b-1, #a7a9b1);
    font-size: 22px;
    font-style: normal;
    line-height: normal;
  }
  .footer__mobile .footer__container__mb .footer__content__02 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__mobile .footer__container__mb .footer__txt__03 {
    color: var(--grey-a-7-a-9-b-1, #a7a9b1);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-right: 0px;
    margin-bottom: 16px !important;
  }
  .footer__mobile .footer__container__mb .footer__txt__04 {
    color: var(--grey-dcdee-4, var(--default, #dcdee4));
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer__mobile .footer__container__mb .footer__content__03 {
    margin-top: 63px;
    color: var(--grey-6-f-6-f-74, #6f6f74);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .footer__mobile .footer__container__mb .footer__txt__01 {
    font-size: 24px;
    font-style: normal;
    line-height: normal;
    font-weight: 500;
    color: var(--grey-dcdee-4, var(--default, #dcdee4));
    margin-right: 30px;
  }
  .footer {
    display: none;
  }
  .footer__button-plus {
    gap: 10px;
    font-size: 28px;
  }
  .footer__menu {
    width: 332px;
    height: 220px;
    padding: 40px;
    margin-bottom: 30px;
    z-index: 3;
    bottom: 30px;
  }
  .footer__menu-item {
    font-size: 28px;
    line-height: 33.41px;
    width: 253px;
  }
  .footer__menu-item + .footer__menu-item {
    margin-top: 20px;
  }
  .footer__content__05 .icon i:before,
  .footer__content__05 .icon i:after {
    width: 20px;
    height: 4px;
  }
}
@media (max-width: 768px) {
  .footer__mobile .footer__container__mb {
    padding: 50px 20px 50px 20px;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02 .footer__content__04 img {
    height: 20px;
    width: 20px;
    margin-right: 7px;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__menu {
    padding: 10px;
    border-radius: 4px;
    width: 125px;
    bottom: 30px;
    height: 67.5px;
  }
  .footer__mobile .footer__container__mb .footer__content__footer__02__menu-item {
    margin: 2.5px 0;
  }
  .footer__mobile .footer__container__mb .footer__content__01 {
    margin: 44px 0px 16px 0px !important;
  }
  .footer__mobile .footer__container__mb .footer__txt__02 {
    font-size: 11px;
  }
  .footer__mobile .footer__container__mb .footer__content__02 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__mobile .footer__container__mb .footer__txt__03 {
    font-size: 11px;
    margin-bottom: 8px !important;
  }
  .footer__mobile .footer__container__mb .footer__txt__04 {
    margin-bottom: 15px !important;
    font-size: 11px;
  }
  .footer__mobile .footer__container__mb .footer__content__03 {
    margin-top: 31.5px;
    font-size: 10px;
  }
  .footer__mobile .footer__container__mb .footer__txt__01 {
    font-size: 11px;
    margin-right: 15px;
  }
  .footer {
    display: none;
  }
  .footer__button-plus {
    gap: 5px;
    font-size: 14px;
  }
  .footer__menu {
    width: 166px;
    height: 110px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  .footer__menu-item {
    font-size: 14px;
    line-height: 16.705px;
    width: 126.5px;
  }
  .footer__menu-item + .footer__menu-item {
    margin-top: 10px;
  }
  .footer__content__05 .icon {
    width: 20px;
    height: 20px;
  }
  .footer__content__05 .icon i:before,
  .footer__content__05 .icon i:after {
    width: 10px;
    height: 2px;
  }
}
