@import url("colors.css");
@import url("fonts.css");
body {
  font-family: "Shabnam";
}

body footer {
  margin-top: 5rem;
  background-color: var(--color-main-green);
  padding: 3rem 6rem 1rem;
  border-radius: 70px 70px 0 0;
}

body footer .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body footer .top .logo img {
  width: 7rem;
}

body footer .top .search-box form {
  position: relative;
}

body footer .top .search-box form input {
  width: 25rem !important;
  border: none !important;
  padding: 0.5rem 2.5rem 0.5rem 1rem !important;
  border-radius: 5px !important;
  background-color: var(--color-white) !important;
}

body footer .top .search-box form button {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  background-color: transparent;
  border: none;
  color: var(--color-main-green);
  font-size: 1.3em;
}

body footer .top .search-box form button:hover {
  color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body footer .main {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body footer .main .right .social {
  margin-bottom: 1rem;
}

body footer .main .right .social ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

body footer .main .right .social ul li {
  margin-left: 1rem;
}

body footer .main .right .social ul li i {
  font-size: 1.2em;
  color: var(--color-main-green);
  background-color: var(--color-white);
  padding: 0.5rem;
  border-radius: 5px;
}

body footer .main .right .social ul li i:hover {
  background-color: var(--color-main-green-hover);
  color: var(--color-white);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body footer .main .right .address {
  margin-top: 2rem;
}

body footer .main .right .address ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body footer .main .right .address ul li {
  margin-bottom: 0.7rem;
}

body footer .main .right .address ul li a {
  color: var(--color-white);
  text-decoration: none;
}

body footer .main .right .address ul li a:hover {
  color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body footer .main .right .address ul li i {
  color: var(--color-main-green-hover);
  font-size: 1.2em;
  position: relative;
  top: 0.3rem;
  margin-left: 0.5rem;
}

body footer .main .right .address ul li address {
  color: var(--color-white);
  display: inline-block;
  margin: 0;
}

body footer .main .left {
  width: 25rem;
}

body footer .main .left ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body footer .main .left ul li {
  margin-bottom: 0.2rem;
}

body footer .main .left ul li a {
  color: var(--color-white);
  text-decoration: none;
}

body footer .main .left ul li a:hover {
  color: var(--color-main-green-hover);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body footer .main .left ul li::before {
  position: relative;
  top: 0.2rem;
  content: "\2022";
  font-size: 1.3em;
  color: var(--color-main-green-hover);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: -1em;
}

body footer .footer {
  color: var(--color-white);
  text-align: center;
  margin-top: 5rem;
  font-size: 0.9em;
}

@media only screen and (max-width: 768px) {
  body footer {
    padding: 3rem 2rem 1rem !important;
  }
  body footer .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body footer .top .logo {
    margin-bottom: 2rem;
  }
  body footer .top .search-box form {
    position: relative;
  }
  body footer .top .search-box form input {
    width: 100% !important;
    border: none;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 5px;
  }
  body footer .main {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  body footer .main .right {
    margin-bottom: 2rem;
  }
  body footer .main .left {
    width: 25rem;
    padding: 0 2rem;
  }
  body footer .footer {
    line-height: 2em;
  }
}
/*# sourceMappingURL=footer.css.map */