 /* footer */
footer{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: var(--bg-color);
  box-shadow: #57b1e4 0px 0px 10px;
  color: var(--text-color);
  padding: 20px 0;
  margin-top: 100px;
  }

.footer-box{
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 20px 0;
  box-sizing: border-box;
  flex-direction: row;
  }

.footer-box a{
  color: var(--text-color);
  font-size: 16px;
  margin: 0 5px;
  font-weight: 500;
  text-decoration: underline;
  font-style: normal;
  }

footer p{
  text-align: center;
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
  }

.footer-box a:hover{
  color: #57b1e4;
  transition: 0.3s;
  }


.footer-box-row-phone,
.footer-box-row-mail{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  box-sizing: border-box;
  }


  @media screen and  (max-width: 1024px){
      /* footer */
footer{
  margin-top: 50px;
}
.footer-box{
  padding: 0;
  margin-bottom: 10px;
  }

.footer-box a{
  font-size: 16px;
  margin:0 5px;
  }

.footer-box p{
  font-size: 16px;
  }

footer .material-symbols-outlined{
  font-size: 25px;
}
}
  @media  (max-width: 768px) {
  /* footer */
  footer{
    margin-bottom: 50px;
  }
.footer-box{
  gap: 5px;
  display: flex;
  flex-direction: column;
  }

}