/* Footer.css */
.footer {
  /* background-color:#1A3A4A; */
  background-color: #0097B2;
  color: #fff;
  background-size: cover;
  /* padding-left:25px;
  padding-right: 25px; */
  padding-left:  60px;
  padding-right: 60px;
  padding-top: 40px;
} 


.footer-content {
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

}
  
.footer-section h2 {
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-section h3{
  font-size: 20px;
  font-weight: 600;
}
.footer-section p {
  margin-bottom: 10px;
  /* font-weight: 600; */
  font-size: 15px;
}

.footer-section .author .author-main{
  max-width: 600px;
}
.footer-section .author .author-main .social-media{
  display: flex;
  gap: 10px;
  font-size: 23px;
  font-weight: 600;
}
.footer-section .author .author-main .social-media .fa-brands:hover{
  font-size: 25px;
  font-weight: bolder;
}
.menu p{
  display: flex;
  flex-direction: column;
}
.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
  font-weight: 500;
}
.resources-menu{

  display: flex;
  gap: 5rem;
  width: 50%;
  justify-content: space-around;
}
.resources{
  margin-left: 100px;
}
.resources p {
  line-height: .8rem;
  cursor: pointer;
  font-weight: 500;
  
}
.resources p:hover{
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .7);
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-bottom p{
  font-size: 15px;
  font-weight: 500;
}
.footer-bottom ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  
}
.footer-bottom ul li a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}



@media screen and (max-width:1015px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  
  }
  
  .footer-section .author{
    align-items: center;
    flex-direction: column;
    gap: .2rem;
    justify-content: center;
    text-align: center;
  }
  .resources-menu{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    padding-right: 3rem;
  }
  .resources{
  margin-left: 0;
  }
  .resources p {
    line-height: 1rem;
    
  }
  .footer-section .author .author-main .social-media {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width:835px) {
  .footer-section{
  text-align: center;
  }
  .resources-menu{
    flex-direction: column;
    gap: 1rem;
    padding: 0;

  }
  
  
}
@media (max-width: 768px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section .author {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .footer-section .author .author-main,
  .footer-section .author .statement {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom ul {
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-bottom ul li a {
    font-size: .8rem;
  } 
}
@media (max-width: 480px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  .footer-section .author {
    gap: 1rem;
  }

  .footer-bottom ul li a {
    font-size: .8rem;
  }
}
