.footer{
  padding: 83px 0 60px;
  background: #EFE7DA;
  position: relative;
  overflow: hidden;
}

.footer .container{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.footer-left{
  width: calc(100% - 353px);
  padding-right: 30px;
}

.footer-right{
  width: 352px;
  margin: 4px 0 0 0;
}


.footer::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../images/footer-bkg.png');
  background-size: cover;
  background-position: center bottom ;
  background-repeat: no-repeat;
}



.footer .footer_title {
    margin: 0 0 55px 0;
    padding: 0;
    border: 0;
    max-width: 900px;
}

.footer .footer_title span{
  font-style: italic;
}

.footer .contact_title {
    margin: 0  0  32px;
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
}
.contact-items{
  padding: 0 0 54px 0;
}

.contact-items a{
  font-weight: 400;
}
.contact-items .item{
  margin: 0 0 26px 0;
}
.contact-items .socials-links .item a{
  text-decoration: underline;
}

.footer-menu {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.footer-menu li {
    list-style: none;
}

.footer .socials-links {
    display: flex;
    gap: 40px;
}

.footer  .copyright, .footer-menu li  a {
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
}

@media (max-width: 991px) and (min-width: 768px){
  .footer-menu {
    gap: 20px;
}
}

@media (max-width: 767px){
  .footer-left {
    width: 100%;
    padding: 0 0 45px;
  }

  .footer-right {
      width: 100%;
  }

  .contact-items {
      padding: 0 0 21px 0;
  }

  .footer-menu {
      margin: 0 0 12px;
      gap: 3px;
      justify-content: space-between;
  }

  .footer-bottom  .footer-left {
      padding: 0;
  }

  .footer {
      padding: 72px 0;
  }

  .footer .footer_title {
      margin: 0 0 36px 0;
  }


  .footer .contact_title {
      margin: 0 0 29px;
  }
}