/*<<< footer1 component */
._footer1 {
  padding: 12rem 0;
  background-color: var(--color-darker);
  background-color: var(--color-100);
  color: var(--color-white);
  color: var(--color-dark);
  font-weight: 400;
}

._footer1-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

._footer1-content>div {
  flex: 1;
}

/* 
._footer1-content>div:nth-child(1) {
  flex: 1.5;
}
 */

@media(min-width:820px) {
  ._footer1-content {
    flex-direction: row;
  }

  ._footer1-content>div:nth-child(1) {
    padding-right: 2rem;
  }
}

._footer1-widget {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

._footer1-widget__title {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}

._footer1-menu {
  display: flex;
  flex-direction: column;
}

._footer1-menu a {
  font-size: 1.6rem;
  color: var(--color-light-default);
  color: var(--color-dark);
  padding: 1rem 0;
  transition: .2s all ease-in-out;
}

._footer1-widget__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.6rem;
  height: 1px;
  background: var(--color-secondary);
  transition: .2s all ease-in-out;
  opacity: .5;
}

._footer1-widget:hover ._footer1-widget__title::after {
  width: 3.2rem;
  opacity: 1;
}

._footer1-menu a:hover {
  color: var(--color-secondary);
}

._footer1-infos {
  display: flex;
  flex-direction: column;
}

._footer1-infos__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  align-items: center;
}

._footer1-infos__item>div:nth-child(1){
  align-self: start;
}

._footer1-infos__item i {
  font-size: 2.6rem;
  color: var(--color-secondary);
}

._footer1-social {
  display: flex;
  gap: .8rem;
}

._footer1-social a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  border-radius: 50px;
  font-size: 2.6rem;
  transition: .2s all ease-in-out;
}

._footer1-social i {
  transition: .2s all ease-in-out;
}

._footer1-social a:hover {
  background-color: var(--color-secondary);
  color: var(--color-darker);
}

._footer1-social a:hover i {
  scale: 1.35;
  color: #fff;
}

._footer1-widget img {
  align-self: start;
  max-height: 90px;
}

@media(max-width:767.98px) {

  ._footer1-infos__item>div:nth-child(1){
    align-self: center;
  }

  ._footer1-widget {
    margin-bottom: 8rem;
    text-align: center;
    align-items: center;
  }

  ._footer1-widget img {
    align-self: center;
    max-height: 90px;
  }

  ._footer1-widget__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  ._footer1-infos__item {
    justify-content: center;
  }
}

@media(max-width:497.98px) {
  ._footer1-infos__item {
    flex-direction: column;
  }

  ._footer1-infos__item i {
    font-size: 4rem;
  }
}

/* footer1 component >>>*/