@font-face {
  font-family: "SVN Poppins";
  src: url(../font/FzPoppins/401SVN-Poppins.woff2) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bgr-color: #fff;
  --txt-light: #fff;
  --txt-deep-dark: #000;
  --txt-dark: #555;
  --bd-dark: #000;
  --bsd-xss: #0000000a;
  --bsd-xs: #0000001a;
  --bsd-s: #0000002a;
  --bsd-m: #0000003a;
  --bsd-l: #0000004a;
  --bsd-xl: #0000005a;
  --brg-color-1: #f2dfff;
  --brg-color-2: #fffbff;

  --toast-brg: #fff;
  --toast-normal: #DDDDDD;
  --toast-successful: #75D00F;
  --toast-error: #F33950;

  --toast-theme-1-brg: #444;
  --toast-theme-1-color: #ddd;
}

@keyframes toast {
  0% {
    transform: translateX(calc(100% + 15px));
  }

  100% {
    transform: translateX(calc(0%));
  }
}

@keyframes cooldown {
  0% {
    transform: translateX(calc(0%));
  }

  100% {
    transform: translateX(calc(-100%));
  }
}

.toast {
  z-index: 999;
  transform: translateX(calc(100% + 15px));
  position: fixed;
  top: 10px;
  right: 15px;


  border-radius: 6px;
  overflow: hidden;

  box-shadow: 3px 3px 10px #00000012;

  .wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    background-color: var(--toast-normal);
  }

  .wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    bottom: 0;
    width: 13px;
    background-color: var(--toast-brg);
    border-radius: 6px;
  }

  .wrapper {
    background-color: var(--toast-brg);
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    padding: 5px 20px 5px 12px;

    min-width: 250px;


    .toast-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      color: var(--toast-normal);

      i {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        height: 35px;
        width: 35px;
        font-size: 20px;
        background-color: unset;
      }
    }

    .toast-info {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;
      height: 100%;
      color: #000;

      .toast-title {
        font-weight: 500;
      }

      .toast-content {
        font-size: 14px;
        font-weight: 300;
      }
    }
  }
}

.toast.admin {
  .wrapper {
    background-color: var(--toast-theme-1-brg);

    .toast-info {
      color: var(--toast-theme-1-color);
    }
  }

  .wrapper::before {
    background-color: var(--toast-theme-1-brg);
  }

  .wrapper::after {
    background-color: var(--toast-theme-1-brg);
  }
}

.toast.successful {
  animation: toast .35s ease-out forwards;

  .wrapper::before {
    background-color: var(--toast-successful);
  }

  .toast-icon {
    color: var(--toast-successful);
  }

  .cooldown {
    animation: cooldown 3s ease-out forwards;
    background-color: var(--toast-successful);
  }
}

.toast.error {
  animation: toast .35s ease forwards;

  .wrapper::before {
    background-color: var(--toast-error);
  }

  .toast-icon {
    color: var(--toast-error);
  }

  .cooldown {
    animation: cooldown 3s ease-out forwards;
    background-color: var(--toast-error);
  }

}

/* Ẩn biểu tượng con mắt trong ô nhập mật khẩu */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

/* form login*/
@keyframes formInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes formOutOpacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes formSideToTop {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-50px);
  }
}

@keyframes formSideToBottom {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0px);
  }
}

.login.show {
  display: unset;

  .form-overlay {
    animation: formInOpacity .35s forwards;
  }

  .form {
    animation: formSideToBottom .35s forwards, formInOpacity .5s forwards;
  }
}

.login.wait {
  display: unset;

  .form-overlay {
    animation: formOutOpacity .5s forwards;
  }

  .form {
    animation: formSideToTop .25s forwards, formOutOpacity .25s forwards;
  }
}

.login {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;


  .wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

    .form-overlay {
      background-color: #0000005a;
      backdrop-filter: blur(10px);
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .form:hover {
      box-shadow: 5px 5px 15px #0000001a;
    }

    .form.active {
      display: flex;
    }

    .form {
      display: none;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      position: absolute;
      z-index: 2;
      background: linear-gradient(-135deg, #ffe0f8, #c0b6ff);
      width: 100%;
      max-width: 400px;
      padding: 30px;
      gap: 25px;
      border-radius: 30px;
      box-shadow: 5px 5px 15px #0000000f;
      transition: .3s all;

      img {
        width: 100%;
        object-fit: cover;
      }

      .box-input {
        width: 100%;
        padding: 16px;
        background-color: #fff;
        border-radius: 20px;
        display: grid;
        place-items: start;
        box-shadow: 0 0 20px #00000012;
        gap: 5px;
        position: relative;
        color: #333;

        label {
          width: 100%;
        }

        input {
          width: 100%;
          padding: 5px 34px;
          font-size: 16px;
          border: unset;
          background-color: transparent;
          border-radius: 10px;
          font-family: 'SVN Poppins';
          outline: none;
        }

        .fa-solid {
          color: #888;
          position: absolute;
          bottom: 16px;
          left: 16px;
          height: 34px;
          aspect-ratio: 1/1;
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 2;
          background-color: unset !important;
        }

        .fa-eye,
        .fa-eye-slash {
          left: unset;
          right: 16px;
          cursor: pointer;
          display: none;
        }

        i.active {
          display: flex;
        }
      }

      button:hover {
        background: linear-gradient(135deg, #ffbaef, #ac9fff);
        color: #fff;
      }

      button {
        font-size: 16px;
        height: 45px;
        width: 100%;
        border: unset;
        cursor: pointer;
        border-radius: 20px;
        background: #fff;
        font-weight: bold;
        color: #000;
        font-family: 'SVN Poppins';
        font-weight: normal;
      }

      .option {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        a {
          text-decoration: unset;
          color: #000;
          font-size: 12px;
        }
      }

      .option.register {
        justify-content: center;
      }
    }
  }
}

/* header */
@keyframes headerFixedShow {
  0%{
    transform: translateY(-100%);
    opacity: 0;
  }
  100%{
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes headerFixedHide {
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.header-fixed{
  position: fixed;
  background-color: green;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  transform: translateY(-100%);
}
.header-fixed.show{
  animation: headerFixedShow .25s ease forwards;
}
.header {
  height: 83px;
  width: 100%;
  font-family: "SVN Poppins", sans-serif;
  z-index: 10;
  position: relative;
}

.header__wrapper {
  position: relative;
  z-index: 10;
  padding: 0 15px;
  background: linear-gradient(0deg,
      #ffffff 0%,
      #fffbff 50%,
      #f2dfff 100%);
}

.header__wrapper::before {
  position: absolute;
  content: '';
  top: 100%;
  z-index: 100;
  background: linear-gradient(var(--bsd-xss), transparent);
  height: 10px;
  top: 83px;
  left: 0;
  right: 0;
}

.header__inner {
  max-width: 1570px;
  margin: 0 auto;
  height: 83px;
  display: flex;
}

.header__inner>* {
  flex: 1 0 0;
}

.header__inner__left {
  display: inherit;
  align-items: stretch;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: 15px;
  /* padding: 20px 0; */
}

.header__logo img {
  width: 100%;
  max-height: 45%;
  object-fit: cover;
  max-height: 83px !important;
}

.header__inner__middle {
  display: inherit;
  align-items: center;
  flex: 4.5;
  display: flex;
}

.nav {
  display: inherit;
  align-items: center;
  gap: 15px;
}

.nav-item {
  display: inherit;
  align-items: stretch;
  position: relative;
}

.nav-item::before {
  transition: all 0.35s;
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(135deg, #ed55c7, #6756ca);
}

.nav-item:hover {
  background: linear-gradient(135deg, #ed55c7, #6756ca);
  background-clip: text;
  -webkit-background-clip: text;
}

.nav-item:hover.nav-item::before {
  opacity: 1;
}

.nav-link {
  color: #000;
}

.header__inner__right {
  display: inherit;
  align-items: center;
  justify-content: flex-end;
}

.header__right.nav {
  height: 50%;
  align-items: stretch;
  gap: unset;
}

.header__right .nav-item {
  aspect-ratio: 1/1;
}

.header__right .nav-link {
  margin: 5px;
}

.header__right .nav-item:first-child .nav-link {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--bd-dark);
  border-radius: 6px;
  display: inherit;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.header__right .nav-item:first-child:hover .nav-link {
  -webkit-text-fill-color: var(--txt-light);
  background: linear-gradient(135deg, #ed55c7, #6756ca);
  border-color: #fff;
}

.header__right i {
  font-size: 16px;
}

.nav-link>img {
  width: 100%;
  object-fit: cover;
}

.nav-link>.img-hover {
  display: none;
}

.header__right.nav-item:hover .nav-link>.img-default {
  display: none;
}

.header__right.nav-item:hover .nav-link>.img-hover {
  display: unset;
  transform: translateY(-5px);
}
/* cart */
#show-cart.show{
  .mini-cart {
    display: unset;
  }
}
.mini-cart {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 10px;
  z-index: 100;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 50px;
    aspect-ratio: 1/1;
    border-radius: 4px;
  }
}

.mini-cart-wrapper {
  position: relative;
  padding: 10px;
  background-image: linear-gradient(-135deg, #eeebff9a, #ffe9fa9a);
  backdrop-filter: blur(20px);
  background-color: #ffffffe8;
  box-shadow: 0 0 25px var(--bsd-l);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 5px;
}

.list-item {
  overflow-y: auto;
  height: 100%;
  max-height: 282px;
}
.list-item {
-ms-overflow-style: none;
scrollbar-width: none;
}
.list-item::-webkit-scrollbar {
 display: none;
}
.list-item>.item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 10px;
  margin-bottom: 10px;
  color: #222 !important;
  background-color: #ffffff9a;
  padding: 10px 15px 10px 10px;
  box-shadow: 0 0 10px var(--bsd-xss);
  border-radius: 8px;
  position: relative;
  height: 84px;
}

.list-item>.item:hover {
  .item-right {
    opacity: 1;
  }
}

.list-item>.item.delete {
  animation: deleteItemCart .5s ease forwards;
  
}

@keyframes deleteItemCart {
  0% {
    transform: translateX(0);
    height: 84px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 10px;
  }
  
  80% {
    transform: translateX(-100%);
    height: 84px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 10px;
  }
  
  100% {
    transform: translateX(-100%);
    height: 0px;
    margin-bottom: 0px;
    padding: 0px 0px 0px 0px;
  }
}

.list-item .item-left {
  display: flex;
}

.list-item .item-middel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.list-item .item-middle-more {
  display: flex;
  align-items: center;
  gap: 5px;

  span {
    font-size: 12px;
  }

}

.list-item .item-middel-price {
  /* color: red; */
  font-size: 13px;
}

.list-item .item-middel-quantity {
  font-size: 13px;
}

.list-item .item-middel-name {
  width: 200px;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mini-cart-wrapper>button {
  border: unset;
  padding: 8px 0;
  font-weight: bold;
  border-radius: 4px;
  color: #fefefe;
  width: 325px;
}

.view-cart-now {
  background-color: #9b8cfc;
}

.payment-now {
  background-color: #292929;
}

.total-price-in-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  gap: 10px;
  color: #222;
  margin-bottom: 10px;

  span {
    -webkit-text-fill-color: var(--txt-light);
    background: linear-gradient(135deg, #ed55c7, #6756ca);
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
}
span.total-price-cart{
  font-size: 18px;
}

.item-right {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
}

/* sub menu */
@keyframes subMenuOpacity {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes subMenuOpacity2 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sub__menu.shows {
  display: unset;
  opacity: 0;
  animation: subMenuOpacity .35s ease forwards;
}

.sub__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-text-fill-color: var(--txt-deep-dark);
  z-index: 9;
}

.sub__menu__wrapper {
  position: relative;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub__menu__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--bgr-color);
  z-index: -1;
}

.sub__menu.shows .sub__menu__dropdown {
  animation: fadeInForSubMenu .35s forwards;
}

.sub__menu__dropdown {
  max-width: 1200px;
  margin: 0 -30px;
  display: flex;
  opacity: 0;
}

@keyframes fadeInForSubMenu {
  to {
    opacity: 1;
  }
}

.menu__dropdown__col {
  padding: 0 30px 30px 30px;
  width: calc(100% / 4);
}

.col-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col__menu-item {
  padding: 6px 0;
}

.item-highlight {
  font-size: 18px;
  font-weight: bold;
}

.col__menu-link {
  color: var(--txt-deep-dark);
}

.col__menu-item:hover>.col__menu-link {
  background: linear-gradient(135deg, #ed55c7, #6756ca);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* container */

.container {
  display: flex;
  flex-direction: column;
}

.banner {
  position: relative;
  width: 100%;
}

.banner__list {
  display: flex;
  overflow: hidden;
  position: relative;
  /* animation: 4s;
  scroll-behavior: smooth; */
  /* height: 549px; */

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img__hidden {
    opacity: 0;
    /* height: 100%; */
  }
}

.banner__list__img {
  position: absolute;
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
  object-fit: cover;
  transition: left 0.4s ease;
  height: 100%;
}

.banner__list__img.img1 {
  left: 0;
}

.banner__list__img.img2 {
  left: 100%;
}

.banner>i {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 36px;
  height: 36px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 5;
}

.banner>i:hover {
  background-color: rgb(180, 7, 206);
  border-color: rgb(180, 7, 206);
  transition: 0.8s;
}

.banner .fa-angle-left {
  left: 20px;
  padding-right: 2px;
}

.banner .fa-angle-right {
  padding-left: 2px;
  right: 20px;
}

.banner__control {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 54px;
  z-index: 5;
}

.banner__control__outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #bc0516;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
}

.banner__control__outline.active {
  border: 1px solid transparent;
}

.banner__control__outline.active .banner__control__inner {
  background-color: #fff;
}

/* .banner__control__outline + .banner__control__outline {
  margin-left: 8px;
} */

.banner__control__inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #bc0516;
}

.criterion {
  display: flex;
}

.criterion__list {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  display: flex;
  padding: 20px 0;
}

.criterion__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.criterion__items+.criterion__items {
  border-left: 1px solid #555;
}

.criterion__items__title {
  color: #0a0a0a;
  font-weight: bold;
  font-size: 14px;
}

.criterion__items__text {
  color: rgb(35, 35, 35);
  font-size: 12px;
}

/* category */
.category {
  background-color: #efefef;
  padding: 30px 0;
}

.category__content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.category__title {
  color: #0a0a0a;
  font-weight: bold;
  font-size: 26px;
}

.category__list {
  display: flex;
  flex-wrap: wrap;
}

.category__items {
  display: flex;
  align-items: stretch;
  flex: 1 0 calc((100% / 4) - 20px);
  margin: 0 10px 20px 10px;
  background-color: var(--bgr-color);
  border-radius: 10px;
  cursor: pointer;
}

span.category__items__name {
  width: 60%;
  display: block;
  align-self: self-end;
  padding: 10px 10px 20px 10px;
  font-weight: bold;

}

.category__items img {
  width: 40%;
}

/* product-diplay */

.diplay__title {
  margin-bottom: 10px;
  color: #0a0a0a;
  font-size: 26px;
}

.product__types {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.product__types__items {
  padding: 10px 16px;
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product__types__items:hover {
  background: linear-gradient(135deg, #ed55c7, #6756ca);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-color: transparent;
}

.product__types__items+.product__types__items {
  margin-left: 22px;
}

.product__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px !important;
  margin-right: -10px !important;
  padding-top: 20px;
}

.product__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% / 5 - 20px);
  margin: 0 10px 20px 10px;
  cursor: pointer;
}

.product__items img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 2/3;
  object-fit: cover;
}

.product__items__name {
  color: black;
  font-weight: 500;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}

.product__items>div {
  margin-top: 12px;
}

.product__items__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.price-old-wrapp {
  display: flex;
  min-width: 100px;
  align-items: stretch;
  gap: 20px;
  height: 20px;
}

.product__items__price__cur {
  padding-right: 12px;
  font-weight: bold;
  font-size: 13px;
  color: rgb(17, 17, 17);
  display: contents;
}

span.product__items__price__cur__content {
  margin-right: 10px;
  font-weight: bold;
  font-size: 17px;
}

span.product__items__price__cur__content.l {

  font-size: 2.4rem;
  line-height: 2.6rem;
}

.product__items__price__old__content {
  font-size: 15px;
  opacity: 0.6;
  font-weight: normal;
  white-space: nowrap;
  color: #111;
  text-decoration: line-through;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product__items__price__discount {
  position: relative;
  background-color: rgb(212, 15, 15);
  padding-right: 5px;
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.product__items__price__discount::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  content: "";
  border-width: 10px;
  border-style: solid;
  border-color: rgb(212, 15, 15);
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}


/* banner_col2 */
.banner_col2__list {
  display: flex;
}

.banner_col2__items {
  flex: 1 0 calc(100% / 2 - 30px);
  padding: 0 15px 30px 15px;
}

.banner_col2__items img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer */
#footer {
  display: flex;
  width: 100%;
  background-color: whitesmoke;
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  min-height: 279px;
  width: 100%;
  padding: 32px 10px;
}

.footer__items {
  padding: 0 15px;
}

.footer__items img {
  width: 50%;
}

.footer__items--mini-display {
  display: none;
}

.footer__items__mini__title {
  display: block;
  padding: 10px 0;
  border-top: none;
  border-bottom: 1px solid #ddd;
  color: #b407ce;
  font-weight: 700;
}

.footer__items__mini__inner {
  display: flex;
  flex-direction: column;
}

.footer__items__mini__text {
  padding: 10px 0;
  cursor: pointer;
}

/* @media screen and (min-width: 801px) {
  .footer__items {
    max-width: calc(100% / 6);
    width: 100%;
  }

  .footer__items:first-child,
  .footer__items:last-child {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
  }
}

@media screen and (max-width: 800px) {
  .footer__items {
    flex: 1 1 45%;
  }

  .footer__items:first-child,
  .footer__items:last-child {
    flex: 1 1 55%;
  }

  .footer__items {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 550px) {}

@media (max-width: 549px) {
  .footer__items:not(:first-child) {
    display: none;
  }

  .footer__items--mini-display {
    display: flex;
    flex-direction: column;
  }
} */

.footer__items {
  flex: 4 0 0;
  display: flex;
  flex-direction: column;
}
.footer__items:nth-child(2),
.footer__items:nth-child(3){
  flex: 2;
}
.footer__items__descriptions,
.footer__items__social {
  margin-top: 14px;
}

.footer__items span {
  /* max-width: 400px; */
  color: #232323;
  font-size: 16px;
  text-align: justify;
}

.footer__items__social {
  display: flex;
}

.footer__items__title {
  color: rgb(10, 10, 10);
  font-size: 18px;
  font-weight: 900;
}

.footer__items__text {
  margin-top: 14px;
}

/* icon socials */

.footer__items__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.footer__items__social__link i {
  color: #fff;
}

.footer__items__social__link+.footer__items__social__link {
  margin-left: 4px;
}

.footer__items__social__link.facebook {
  background-color: #3a589d;
}

.footer__items__social__link.instagram {
  background-color: #3b6994;
}

.footer__items__social__link.tiktok {
  background-color: #111;
}

.footer__items__social__link.twitter {
  background-color: #2478ba;
}

.footer__items__social__link.youtube {
  background-color: #c33223;
}