footer {
  background-color: #003049;
}

.footer-logo {
  width: 300px;
  overflow: hidden;
}

.footer-block {
  max-width: 90%;
  margin: auto;
  padding: 50px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-links-header {
  color: #30d5c8;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 2px solid #30d5c8;
  margin-bottom: 25px;
}

.footer-links-block {
  display: grid;
  margin-bottom: 50px;
}

.link-block-item {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding-bottom: 15px;
  margin-left: 25px;
}

.link-block-item:hover {
  text-decoration: none;
  color: #30d5c8;
}

.contact-info {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 15px;
  margin-left: 25px;
}

.contact-icons {
  margin-right: 15px;
}

.footer-button-block {
  justify-self: center;
  padding-top: 25px;
}

.button-block-title {
  color: #30d5c8;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-button {
  background-color: #30d5c8;
  overflow: hidden;
}

.contact-button:hover {
  background-color: #fff;
  transition: 0.5s;
}

.contact-button:hover a{
  color: #30d5c8;
  transition: 0.5s;
}

.footer-subtitle {
  display: flex;
  justify-content: space-between;
}

.footer-socials {
  color: #fff;
  font-size: 21px;
  margin: 5px;
  transition: 0.3s;
}

.footer-socials:hover {
  color: #30d5c8;
  transition: 0.3s;
}

.jymbe-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.jymbe-subtitle a {
  color: #fff;
}

.jymbe-subtitle a:hover {
  color: #30d5c8;
  text-decoration: none;
  transition: 0.3s;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                               */
/* * -------------------------------------------------------------------------- */

@media (max-width: 950px) {
  .footer-header {
    text-align: center;
  }
  .footer-logo {
    width: 400px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-subtitle {
    padding-top: 50px;
  }
  .footer-links-block {
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    width: 300px;
  }
  .footer-links-item {
    font-size: 14px;
  }
  .footer-contacts {
    margin-top: 20px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-subtitle {
    display: block;
    text-align: center;
  }
  .jymbe-subtitle {
    margin-top: 20px;
  }
}

@media (max-width: 400px) {
  .footer-logo {
    width: 250px;
  }
}