/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/*=============== VARIABLES CSS ===============*/
footer {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'DM Sans', sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .875rem;
  --smaller-font-size: .813rem;
  /*========== Font weight ==========*/
  --font-thin: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  /*========== width & height ==========*/
  --main-navbar-width: 100rem;
}

@media screen and (max-width: 1024px) {
  footer {
    --normal-font-size: .9rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  }
}

footer {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.footer {
  margin-top: auto;
  width: 100%;
  background: #333232;
}

.footer .footer_row {
  max-width: var(--main-navbar-width);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 3rem;
  padding-top: 3.7rem;
  padding-bottom: 1rem;
}

.footer_row .footer_col .footer_col_heading {
  color: #fff;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
}

.footer_col .footer_col_list_parent {
  margin-top: 20px;
}

.footer_col .footer_col_list_parent .footer_col_lists {
  list-style: none;
  margin-bottom: 10px;
}

.footer_col .footer_col_list_parent .footer_col_lists .footer_col_links {
  text-decoration: none;
  font-size: var(--small-font-size);
  color: #bfbfbf;
}

.footer_col .footer_col_list_parent .footer_col_lists .footer_col_links:hover {
  color: #fff;
}

.footer_col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer_col form {
  display: flex;
  gap: 5px;
}

.footer_col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489C6 ;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}

.footer_col input::placeholder {
  color: #ccc;
}

 .footer_col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer_col form button:hover {
  background: #cecccc;
}

.footer_col .icons {
  font-size: large;
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer_col .icons i {
  color: #afb6c7;
}

.footer_col .icons i:hover  {
  color: #fff;
}

.footer_social_links{
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
 
  .footer .footer_row {
    padding: 2rem 1.5rem;
  }

  .footer_col form {
    display: block;
  }

  .footer_col form :where(input, button) {
    width: 100%;
  }

  .footer_col form button {
    margin: 10px 0 0 0;
  }
}

.footer hr{
  color:  #bfbfbf;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #999, transparent);
  margin: 2px auto;
  padding: 0;
}
.copyright{
  width:fit-content;
  margin: 1px auto;
  color:  #bfbfbf;

}