.footer{
  background-color: rgb(1, 50, 47);
  height: 520px;
  margin-top: 50px;

}
.footer-wrapper{
  margin: auto;
  height: 520px;
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.logo-footer-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2vw;
}
.logo-footer{
  height: 200px;
}
.contact-footer-wrapper{
  display: flex;
  justify-content: center;
  padding: 2vw;
  color:rgb(210, 174, 86);
}

.contact-footer-title{
  font-size: 2.4rem;
  padding-bottom: 30px;
  font-weight: 700;
}

.contact-footer{
  font-size: 1.6rem;
}
.footer-text-white{
  text-decoration: none;
  display: inline;
  color: white;
}
.footer-text-white:hover{
  color:rgb(210, 174, 86);
  cursor: pointer;
}
.icon-links{
  margin-top: 1.2rem;
  margin-left: 1.2rem;
  text-decoration: none;
}
.linked-in,
.instagram{
  height: 3rem;
}
.link-linkedin,
.link-instagram{
  text-decoration: none;
}
.link-instagram{
  margin-left: 1rem;
}
@media(min-width:426px){
  .footer-wrapper{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    height: 280px;
  }
  .footer{
    height: 280px;
  }
  .logo-footer-wrapper{
    justify-content: flex-start;
  }
  .contact-footer-wrapper{
    justify-content: flex-end;
  }
}

@media(min-width: 1180px){
  .footer-wrapper{
    width: 1160px;
  }
}