:root {
  --background-color: #233d4d;
}

#footer {
  font-family: "inter", sans-serif;
  display: flex;
  justify-content: center;

  align-content: center;
  color: #fff;
}

.footer-icon{
  aspect-ratio: 1/1;

}

#footer-container {
  background-color: var(--background-color);
  max-width: var(--boundary);
  width: 100%;
}

/* ===================================== Links containers ===================================== */

/* Individual links css */
.links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  line-height: 2rem;
  font-weight: 300;
}

.links li a {

  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

/* links container  */
.policy-text-link{
text-decoration: none;
color: #fff;
}

.footer-logo{
aspect-ratio: 6/5;
height: auto;
width: auto;
}
#footer-links {
  
  background-color: var(--background-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 70px;
  padding-left: 2vw;
  padding-right: 2vw;
}

#footer-links > div {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin: 30px;
}

#city-links-container{
  display:flex;
  gap:50px
}

/* links titile h3  */

.links-title {
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 30px;
}

/* Categories container */
#categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  justify-content: space-between;
}

/* ===================================== Social media icons ===================================== */

#footer-options-contact {
  background-color: var(--background-color);
  display: flex;
  flex-wrap: wrap;
  max-width: var(--boundary);
  margin-top: 40px;
  justify-content: space-between;
  padding-left: 3.5vw;
  padding-right: 3.5vw;
}

#contact-options-col-1 {
  display: flex;
  gap: clamp(30px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 3vw;
  margin-bottom: 3vw;
}

#contact-email-link {
  color: white;
  text-decoration: none;
}

#contact-options-col-2 {
  display: flex;
  gap: 2vw;
  margin-bottom: 20px;
}

.contact-buttons {
  cursor: pointer;
  transition: all ease-in 0.3;
  padding: 0;
}

.contact-buttons:hover {
  scale: 1.1;
  transition: all ease-in 0.3;
}

.contact-options {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* screens below 1670px */
@media (max-width: 1670px) {
  #contact-options-col-2 {
    margin-top: 20px;
    width: 100%;
  }
  .contact-options {
    width: 100%;
  }
  #contact-options-col-1 {
    justify-content: start;
  }
  #contact-options-col-2 {
    justify-content: center;
  }

  .contact-buttons img {
    height: 40px;
  }
}

/* screens below 370px */
@media screen and (max-width: 370px) {
  #contact-options-col-2 {
    flex-wrap: wrap;
  }
}

/* ===================================== Trademark ===================================== */

#footer-trademark {
  margin-top: 40px;
  background-image: url("../home/footerWaves.svg");
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  background-size: cover;
  font-size: 0.8em;
  padding-top: 30px;
  padding-left: 60px;
  padding-right: 60px;
}


#trademark-logo {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  gap: clamp(30px, 2vw, 60px);
  padding-right: 40px;
  align-items: center;
}

#policy-text {
  display: flex;
  align-items: center;
  gap: clamp(30px, 2vw, 60px);
}

.policy-text a {
  color: white;
  font-size: 20px;
}

#trademark-policy-text {
  display: none;
}

@media screen and (max-width: 970px) {
  #footer-trademark {
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
  }

  #trademark-logo {
    margin-bottom: 20px;
    padding-right: 0px;
    gap: 50px;
    justify-content: center;
  }

  #trademark-policy-text {
    display: flex;
    gap: 30px;
  }

  #trademark-text {
    margin-top: -50px;
    color: #fff;
  }

  #policy-text {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  #trademark-logo-img {
    height: 80px;
  }
  #trademark-text {
    font-size: 16px;
    color: #fff;
  }
  .policy-text a {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  #footer-trademark {
    margin-top: 5px;
    height: 220px;
    padding: 5px;
  }
}
