footer {
  background-color: rgb(57, 81, 155);
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 40px 40px 100px 40px;
  flex-shrink: 0;
}

.info {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 450px;

}

.adress {
  margin-bottom: 50px;
}

.adress-main-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.adress-sub-title {
  color: white;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

.contacts {
  margin-bottom: 30px;
}

.contacts-main-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contacts-sub-title {
  color: white;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

.footer-socio-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-socio-icon {
  width: 30px;
  margin-bottom: 45px;
  cursor: pointer;
}

.copyright {
  color: white;
}

@media (min-width: 750px) and (max-width: 1000px) {
  footer {
    background-color: rgb(57, 81, 155);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 40px 40px 100px 40px;
    flex-shrink: 0;
  }

  .info {
    display: flex;
    flex-direction: column;
    width: max-content;
    height: max-content;
  }
}

@media (min-width: 500px) and (max-width: 750px) {
  footer {
    background-color: rgb(57, 81, 155);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 40px 40px 40px 40px;
    flex-shrink: 0;
  }

  .info {
    display: flex;
    flex-direction: column;
    width: auto;
    height: max-content;
  }

  .googlemap {
    width: auto;
    margin-top: 40px;
  }
}

@media (min-width: 300px) and (max-width: 500px) {
  footer {
    background-color: rgb(57, 81, 155);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px 40px 20px;
    flex-shrink: 0;
  }

  .info {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: max-content;
  }

  .googlemap {
    width: 300px;
    margin-top: 40px;
  }
}