/* footer */

footer{
  padding: 64px 0 16px;
  background: var(--coffe);
  color: var(--linen);
}

footer a{
  color: var(--linen);
}

footer a:hover{
  color: var(--linen);
}

.footer-cont{
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-top-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-menu-cont{
  display: flex;
  align-items: center;
  gap: 180px;
}

.footer-menu-block{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-menu-block:last-child{
  width: 415px;
}

.footer-logo{
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-hr{
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--linen);
  margin: 4px 0;
}

.footer-hr:before, .footer-hr:after{
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--linen);
  rotate: -45deg;
  top: 0;
  transform: translateY(-50%);
}

.footer-hr:before{
  left: 2px;
}

.footer-hr:after{
  right: 2px;
  rotate: 45deg;
}

.footer-copy-cont{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy, .footer-copy a, .footer-copy-save{
  font-size: 12px;
  font-weight: 400;
}

.footer-logo-mob{
  display: none;
}

@media(max-width: 1320px){
  footer{
    padding: 32px 0 16px;
  }

  .footer-cont{
    gap: 24px;
  }

  .footer-menu-cont{
    gap: 117px;
  }

  .footer-menu-block:last-child{
    width: 296px;
  }

  .footer-top-block{
    gap: 120px;
  }

  .footer-logo-mob{
    display: inline-block;
  }

  .footer-logo-desc{
    display: none;
  }

}

@media(max-width: 960px){
  .footer-menu-block:last-child{
    width: auto;
  }

  .footer-menu-cont{
    gap: 75px;
  }

  .footer-top-block{
    gap: 96px;
  }

  .footer-logo-icon{
    max-width: 96px;
  }

}

@media(max-width: 768px){
  .footer-cont{
    gap: 36px;
  }

  .footer-top-block{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer-logo-mob{
    display: none;
  }

  .footer-logo-desc{
    display: inline-block;
  }

  .footer-menu-cont{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer-menu-block{
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .footer-logo-icon{
    max-width: 125px;
  }
}