.footerSection {
  background-image: radial-gradient(#FAFBFF, #FEFCFF);
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
}

.firstFooter {
  /* border: 1px solid black; */
  padding: 50px 0;
  width: 90%;
  max-width: var(--max-width);
  height: auto;
  margin: auto;
  display: grid;
  grid-template-columns: 60% minmax(300px, 40%);
  gap: 30px;
}

.footerOutro {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px;
}

.footerOutro img {
  width: 150px;
  height: auto;
}

.footerOutro p {
  font-size: 90%;
  color: #121212;
  font-family: var(--font-two);
  font-weight: 500;
  margin-right: 15%;
}

.footerAddress {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footerAddress h1 {
  color: #202020;
  font-size: 100%;
  font-family: var(--font-two);
}

.footerAddress h1 span {
  color: #121212;
  font-size: 100%;
  font-family: var(--font-two);
  font-weight: 400;
}

.oneAddress {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.oneAddress h1 {
  color: #202020;
  font-size: 100%;
  font-family: var(--font-two);
}

.oneAddress p {
  color: #121212;
  font-size: 90%;
  font-family: var(--font-two);
  font-weight: 400;
}

.socialMediaButtons {
  width: 100%;
  height: auto;
  display: flex;
  gap: 3%;
  margin-top: 10px;
}

.socialMediaButtons a {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FAFBFF;
  border-radius: 0.2em;
  color: black;
  font-size: 90%;
  font-weight: 500;
  font-family: var(--font-two);
  border: 1px solid #666;
  position: relative;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 7px 0;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.socialMediaButtons a::before {
  transition: 0.5s all ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  content: '';
  background-color: #121212;
  z-index: -1;
}

.socialMediaButtons a:hover::before {
  transition: 250ms all ease;
  top: 0;
  opacity: 1;
}

.socialMediaButtons a:hover {
  color: white;
}

.socialMediaButtons a:active {
  box-shadow: none;
  transform: translateY(1px);
}


.secondFooter {
  width: fit-content;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0 50px 0;
  border-top: 1px solid #666;
}

.secondFooter h1 {
  font-size: 11vw;
  color: #121212;
  font-family: var(--font-one);
  text-transform: uppercase;
  /* background-color: #666; */
}

.copyrightSection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyrightSection p {
  color: #202020;
  font-family: var(--font-three);
  font-size: 100%;
}

.copyrightSection a {
  text-decoration: none;
  color: #202020;
}

.copyrightSection p span {
  position: relative;
}

.copyrightSection p span::after {
  position: absolute;
  left: 0;
  bottom: -5%;
  width: 100%;
  height: 1%;
  background-color: #666;
  content: '';
}



































@media only screen and (max-width: 992px) {
  
  .firstFooter {
    grid-template-columns: 50% minmax(300px, 50%);
    gap: 30px;
  }
  
  .footerOutro p {
    margin-right: 10%;
  }

  .socialMediaButtons a {
    font-size: 80%;
  }

}


@media only screen and (max-width: 768px) {
  
  .firstFooter {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 100px;
  }

}


@media only screen and (max-width: 576px) {
  
  .copyrightSection {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

}