.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 0;
  background: var(--secondaryColor);
  background-position: center;
  background-size: cover;
}

.footer-logo-info-container {
  width: 30%;
  height: max-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo-container{
  width: 100%;
  height: 9vw;
}

.footer-logo-container .link {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.logo-footer {
  width: 100%;
  height: 100%;
}

.footer-navigation-container {
  width: 100%;
  height: auto;
  padding: 3vw calc(4vw + 5%);
  padding-top: 6vw;
  padding-bottom: 0;
  box-sizing: border-box;
}

.footer-nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-resources-container {
  width: max-content;
  height: auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.footer-resources-container .footer-list{
  align-items: flex-start;
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0 1vw;
  box-sizing: border-box;
  margin: 0;
}

.footer-logo-subtitle {
  color: var(--tertiaryHeadingColor);
  font-family: var(--headingFont);
  font-size: var(--headingFontSize);
  font-weight: 900;
  margin: 1vw auto;
  text-align: center;
  font-size: 2.3vw;
  text-transform: uppercase;
}

.footer-list-title {
  color: rgba(var(--tertiaryColorRgb), 0.75);
  font-family: var(--headingFont);
  font-size: var(--headingFontSize);
  font-weight: 900;
  margin: 0;
  margin-bottom: 1vw;
}

.footer-resources-container .footer-item {
  font-weight: 400;
}

.footer-item {
  color: rgba(var(--primaryColorRgb), 0.8);
  font-family: var(--specialTextFont);
  font-size: var(--paragraphFontSize);
  margin: 0;
  margin-bottom: 0.3vw;
  text-shadow: 0 0 0.5vw #000000;
  transition: 0.2s ease-in-out color;
}

.footer-item:hover {
  color: rgba(var(--primaryColorRgb), 1);
  transition: 0.2s ease-in-out color;
}

.copyright-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1vw;
  margin-top: 4vw;
  background-color: var(--primaryColor);
}

.copyright-message {
  color: var(--primaryParagraphColor);
  font-size: var(--paragraphFontSize);
  font-family: var(--specialTextFont);
  font-weight: 700;
  width: max-content;
  margin: 0 auto;
}

.footer-social-networks-container {
  width: max-content;
  height: auto;
}

.footer-networks-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-networks-list .link {
  margin: 0.5vw 0;
  text-decoration: none;
  border-radius: 2vw;
  width: 2.4vw;
  height: 2.4vw;
  border: 0.12vw solid var(--primaryColor);
  transition: border-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-networks-list .link:hover{
  transition: border-color 0.2s ease-in-out;
  border-color: var(--tertiaryColor);
}

.network-element {
  color: rgba(var(--primaryColorRgb), 0.75);
  transition: color 0.2s ease-in-out;
  font-size: 1.4vw;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-networks-list .link:hover .network-element {
  transition: color 0.2s ease-in-out;
  color: rgba(var(--primaryColorRgb), 1);
}

.vertical-divisor{
  width: 0.15vw;
  height: 8vw;
  background-color: rgba(var(--primaryColorRgb), 0.1);
}

.footer-contact-info{
  font-family: var(--specialTextFont);
  font-size: var(--subheadingFontSize);
  font-weight: 400;
  position: relative;
  top: -0.6vw;
  color: rgba(var(--primaryColorRgb), 0.3);
}

@media(max-width: 672px){
  .footer-logo-info-container {
    width: 100%;
    height: max-content;
  }
  
  .footer-logo-container{
    width: 100%;
    height: 26vw;
  }
  
  .footer-logo-container .link {
    width: 100%;
  }
  
  .logo-footer {
    width: 100%;
    height: 100%;
  }
  
  .footer-navigation-container {
    width: 100%;
    height: 180vw;
    padding: 6vw calc(8vw + 5%);
    padding-top: 12vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-nav {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  
  .footer-resources-container {
    width: max-content;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-list:nth-last-of-type(1){
    padding-bottom: 0;
  }

  .footer-list:nth-last-of-type(3){
    padding-top: 0;
  }

  .footer-list {
    padding: 4vw 0;
    align-items: center !important;
  }
  
  .footer-logo-subtitle {
    font-size: var(--headingFontSize);
    margin: 2vw auto;
    font-size: 4.6vw;
  }
  
  .footer-list-title {
    font-size: var(--headingFontSize);
    margin-bottom: 2vw;
  }
  
  .footer-item {
    font-size: var(--paragraphFontSize);
    margin-bottom: 0.6vw;
    text-shadow: 0 0 1vw #000000;
  }
  
  .copyright-container {
    width: 100%;
    height: fit-content;
    padding: 4vw 2vw;
    margin-top: 8vw;
  }
  
  .copyright-message {
    font-size: 3.3vw;
    width: max-content;
    margin: 0 auto;
  }
  
  .footer-social-networks-container {
    width: max-content;
    height: auto;
  }
  
  .footer-networks-list {
    width: 100%;
    flex-direction: row;
  }
  
  .footer-networks-list .link {
    margin: 0 4vw;
    border-radius: 8vw;
    width: 10vw;
    height: 10vw;
    border: 0.5vw solid var(--primaryColor);
  }
  
  .network-element {
    font-size: 5.6vw;
  }
  
  .vertical-divisor{
    width: 16vw;
    height: 0.3vw;
    margin: 6vw 0;
  }
  
  .footer-contact-info{
    font-size: var(--subheadingFontSize);
    top: -1.2vw;
  }
}