/** MORE HELP **/

section.more-help {
  background: #f5f8fa;
  display: none;
  margin-top: 4rem;
}

.more-help .container {
  padding: 4rem 0;
  border-top: solid 1px #dfe2ea;
  border-bottom: solid 1px #dfe2ea;
}

.more-help-info {
  text-align: center;
  margin-bottom: 3rem;
}

.more-help-info h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #494949;
  margin-bottom: 0;
}

.more-help-info p {
  font-size: .9rem;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.07;
  letter-spacing: normal;
  text-align: center;
  color: #999999;
  margin: 0;
}

.more-help-contact-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.more-help-contact-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-help-contact-list li p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: rgba(73, 73, 73, 0.7);
}

.more-help-contact-list li p:first-of-type {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #292a2e;
  display: block;
  margin-top: 3px;
}

.more-help-contact-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more-help-contact-list li a:hover {
  text-decoration: none;
}

.more-help-contact-list li a img {
  width: 75px;
  height: 75px;
}

@media (max-width: 550px) {
  .more-help .container {
    padding: 4rem 2rem;
  }

  .more-help-info h2 {
    width: 90%;
    margin: 0 auto;
  }

  .more-help-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:450px) {
  .more-help .container{
    padding: 2rem 0;
  }

  .more-help-info {
    margin-bottom: 1rem;
  }
  .more-help-info p {
    width: 90%;
    margin: 0 auto;
  }

  .more-help-contact-list {
    display: block;
  }
  .more-help-contact-list li {
    margin-bottom: 1rem;
  }
}


/**  FOOTER **/

.footer {
  margin-top: 2rem;
  border-top: unset;
  border-bottom: 1px solid #dfe2ea;
}

.footer-about-us h4 {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #494949;
  margin-bottom: 4px;
}

.footer-about-us-links a {
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #494949;
  padding: 6px 0;
  display: inline-block;
}

.footer-about-us-links a:hover {
  text-decoration: none;

}

.footer-socials {
  display: flex;
  align-items: end;
  flex-direction: column;
}

.footer-social-list {
  display: flex;
  gap: .8rem;
}

.footer-social-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-item img {
  width: 20px;
}

.footer-social-item.social-fb {
  background-color: #3364A3;
}
.footer-social-item.social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.footer-social-item.social-linkedin {
  background-color: #1D76B3;
}
.footer-social-item.social-twitter {
  background-color: #33BDFD;
}
.footer-social-item.social-yt {
  background-color: #D00D0D;
}

.footer-copy {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.footer-copy p {
  font-size: .9rem;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #494949;
}

@media (max-width: 768px) {
  .footer-copy {
    padding-right: 1rem;
  }
}

@media (max-width: 450px){
  .footer-inner {
    display: block;
  }
  .footer-about-us {
    text-align: center;
  }

  .footer-about-us h4 {
    text-align: center;
  }

  .footer-socials {
    align-items: center;
    margin-top: 2rem;
  }

  .footer-copy {
    justify-content: center;
  }
}

