:root {
  --white-color: #FEFEFE;
  --grey-color: #E5E5E5;
  --akcent-color: #FCC32B;
  --hover-color: #F0B825;
  --secondary-color: #FCDE96;
  --dark-color: #181B20;
}

/*----------------------------------------------------------------------------------------*/
/*------------ Footer style --------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.footer {
  color: var(--dark-color);
  background: var(--grey-color);
}
.footer a {
  color: var(--dark-color);
}
.footer a:hover {
  color: var(--akcent-color);
}

.footer__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 70px;
}

.footer-copyright {
  padding: 0 70px 40px;
  font-size: 14px;
}

.footer-logo a img {
  max-width: 150px;
  height: auto;
}

.footer-widget h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: var(--akcent-color);
}
.footer-widget ul {
  margin-top: 18px;
}
.footer-widget ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
}
.footer-widget ul li a:hover {
  color: var(--akcent-color);
}

.footer-contacts h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2s;
  text-align: left;
  color: var(--akcent-color);
}
.footer-contacts h4 ul {
  margin-top: 18px;
}
.footer-contacts h4 ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}
.footer-contacts h4 ul li:last-child {
  margin-top: 23px;
}

.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: transparent;
}

/*=========================================================================================*/
/*---------------------------- Media queries ----------------------------------------------*/
/*=========================================================================================*/
@media screen and (max-width: 768.98px) {
  .footer__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 440.98px) {
  .footer__body {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
  }
  .footer-logo {
    display: flex;
    justify-content: start;
    width: 100%;
  }
  .footer-logo .logo__link {
    max-width: 150px;
  }
  .footer-logo .logo__link img {
    width: 100%;
  }
  .footer-widget {
    padding: 0 10px;
  }
  .footer-copyright {
    padding: 0 50px 40px;
  }
} /*# sourceMappingURL=footer-style.css.map */