
footer #section-contact {
  background-color: #F2F2F2;
  padding: 29px 0 0 112px;

  display: grid;
  grid-template-rows: repeat(1, auto);
  grid-template-columns: 1fr 1.2fr;
}

footer #section-contact .contact-logo {
  align-self: center;
}

footer #section-contact .contact-logo h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;

  color: #696984;

  margin: 20px 0;
}

footer #section-contact img.logo-img{
  height: 107.87px;
}


footer #section-contact nav {
  border: 1px solid #FE673E;
  border-bottom-width: 0;
  border-right-width: 0;
  
  border-radius: 108px 0px 0px 0px;
  padding: 64px 112px 64px 64px;

  display: flex;
  justify-content: space-between;
}

footer #section-contact nav h4{
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  
  color: #3E4095;
  
  margin-bottom: 20px;
}

footer #section-contact nav ul li {
  list-style: none;
  margin: 4px;
}

footer #section-contact nav ul li a,
footer #section-contact nav ul li button {
  font-weight: 600;
  font-size: 14px;
  line-height: 36px;
  
  color: #3E4095;
  text-decoration: none;
  cursor: pointer;
}

footer #section-contact nav div:first-child ul li:nth-child(even) a {
  color: #FE673E;
}

footer #section-contact nav div:last-child ul li:first-child a,
footer #section-contact nav div:last-child ul li:first-child button {
  color: #FE673E;
}

footer #section-contact nav div:last-child ul li:last-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer #section-contact nav div:last-child ul li:last-child a img {
  height: 48px;
  border-radius: 100%;
  padding: 8px;
}

footer #section-contact nav div:last-child ul li:last-child a:first-child img {
  background-color: rgba(254, 103, 62, 0.2);

}

footer #section-contact nav div:last-child ul li:last-child a:last-child img {
  background-color: rgba(62, 64, 149, 0.25);
}

@media (max-width: 1350px) {

  footer #section-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 20px;
    
  }

  footer #section-contact .contact-image {
    border: 1px solid #FE673E;
    border-radius: 128px;
    padding: 15px;

    align-self: center;
  }
  
  
  footer #section-contact .contact-logo{
    margin: 40px 0;
  }

  footer #section-contact nav {
    border: 1px solid #FE673E;
    
    border-radius: 108px 108px 0px 0px;
    padding: 64px 112px 64px 64px;
  }
  
  footer #section-contact nav h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    
    color: #3E4095;
    
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {

  footer #section-contact {
    padding-top: 0;
  }

  footer #section-contact .contact-image img{
    height: 80vw;
    border-radius: 100px;
  }

  footer #section-contact .contact-logo h3 {
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    margin-top: 0;
  }

  footer #section-contact nav {
    flex-direction: column;
  }

  footer #section-contact img.logo-img{
    display: none;
  }

  footer #section-contact nav {
    border: 0;
    
    border-radius: 0;
    padding: 24px 16px 69px 0;
  }
}


@media (max-width: 500px) {


  footer #section-contact .contact-logo h3 {
    font-size: 20px;
  }

  footer #section-contact nav h4{
    font-size: 20px;
  }

  footer #section-contact nav ul li a,
  footer #section-contact nav ul li button {
    font-size: 12px;
  }
  
}