.footer {
  color: #fff;
  padding: 35px 0;
  background: #10B0E1;
  background: linear-gradient(#57C3BB, #2EB7D0, #10B0E1);
  text-align: center;
}

.footer .container {
  max-width: initial;
}

.footer .logo {
  height: 28px;
  margin-bottom: 10px;
}

.footer__contacts {
  margin-bottom: 20px;
  font-size: 12px;
}

.footer a {
  color: #fff;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #FF8948;
}

.footer__menu ul {
  text-align: center;
  list-style: none;
  position: relative;
}

.footer__menu ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer__menu ul li a {
  font-size: 21px;
}

.footer__menu ul li:first-child a{
  font-weight: 700;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 20px;
}

.footer__socials img {
  height: 28px;
}

.footer__privacy {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 10px;
}

.footer__rights {
  font-size: 12px;
}

a.footer__ctc {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ff8948;
  font-size: 20px;
  z-index: 10;
  padding: 16px;
  font-weight: 700;
  color: #fff;
}

a.footer__ctc:hover {
  background-color: #10b0e1;
  color: #fff;
}

@media(min-width: 768px) {
  .footer {
    text-align: initial;
  }

  a.footer__ctc {
    display: none;
  }

  .footer .container {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .footer__contacts {
    margin-bottom: 0;
  }

  .footer__menu {
    width: 70%;
  }

  .footer__menu ul {
    text-align: initial;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 130px;
  }

  .footer__menu ul li {
    margin-bottom: 10px;
  }

  .footer__menu ul li:first-child {
    position: absolute;
    top: -40px;
  }

  .footer__socials {
    margin-bottom: 0;
  }

  .footer__copy {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }

  .footer__privacy {
    margin-bottom: 0;
  }
}

@media(min-width: 965px) {
  .footer__menu {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .footer__copy {
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  .footer__copy {
    gap: 50px;
  }
  
  .footer .container {
    gap: 60px;
  }
}