@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-family: "Lato", sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  background-color: #f8fcf9;
  background: #d3cc73;
  background: #91aa94;
  background-color: #cbd4c2;
  background-color: #d6dbd2;
  background-color: #bbc7a4;
}
.section-center {
  max-width: 1200px;
  width: 90vw;
  margin: 0 auto;
  // padding-left: 4rem;
  // padding-right: 4rem;
}
/* navigation section starts */

.nav {
  background-color: #040404;
  /* padding: 1.5rem 0; */
  height: 10rem;
  height: 7rem;
  transition: all 0.4s ease-in-out;
}
.nav-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav__logo {
  width: 60px;
  height: 60px;
  transition: all 0.4s ease-in-out;
}
.nav__logo img {
  height: 100%;
  width: 100%;
}
.burger {
  position: fixed;
  right: 4rem;
  top: 3rem;
  z-index: 10;
  cursor: pointer;
}
.burger div {
  width: 35px;
  height: 3px;
  background-color: rgb(226, 226, 226);
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}
.burger div:last-child {
  margin-bottom: 0;
}
.burger.toggle_nav .line1 {
  transform: rotate(-45deg) translateX(-11px);
}
.burger.toggle_nav .line2 {
  opacity: 0;
  visibility: none;
}
.burger.toggle_nav .line3 {
  transform: rotate(45deg) translateX(-10px);
}
.nav__aside {
  background: #110114;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 0;
  left: -100%;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 3rem;
  transition: all 0.3s ease-in;
}
.nav__aside.show__nav {
  left: 0;
  width: 100%;
}
@media screen and (min-width: 399px) {
  .nav__aside.show__nav {
    left: 0;
    width: 50%;
  }
}
.nav__aside__logo {
  margin-top: 2rem;
  margin-left: 2rem;
}
.nav__aside__logo.nav__logo {
  height: 70px;
  width: 70px;
}
.nav__links__link {
  transition: all 0.3s ease-in;
}
.nav__links__link:hover {
  background-color: #f1d0ed;
}
.nav__links__link:hover a,
.nav__links__link a:hover,
.nav__links__link a:active {
  color: #010101;
  padding-left: 4rem;
}
.nav__links__link a {
  display: block;
  font-size: 2rem;
  text-transform: capitalize;
  padding: 2.5rem;
  color: #fcfcfc;
  transition: all 0.5s ease;
}
@media screen and (min-width: 772px) {
  .burger,
  .nav__aside__logo {
    display: none;
  }
  .nav__aside {
    background: none;
    position: unset;
    height: 100%;
    width: auto;
    display: block;
    transform: translateY(-10%);
  }
  .nav__links {
    display: flex;
    margin-top: 3%;
    transition: all 0.4s ease-in-out;
  }
  .nav__links__link:hover {
    background: none;
  }
  .nav__links__link:hover a,
  .nav__links__link a:hover,
  .nav__links__link a:active {
    color: #dbf323;
    padding-left: 2.5rem;
  }
  .nav__links__link a.on_page {
    color: #dbf323;
  }
}
/* sticky navbar starts */

.nav.stick {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 2;
  height: 5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.9);
}
.nav.stick .nav__logo {
  height: 40px;
  width: 40px;
}
.nav.stick .burger {
  top: 1.5rem;
}
.nav.stick .nav__links {
  margin-top: 0;
}
.nav.stick .nav__links__link a {
  padding: 1.6rem;
  font-size: 1.8rem;
}
/* sticky navbar ends */

/* navigation section ends */

/* page hero section starts */

.hero {
  height: 80vh;
  background: rgba(190, 164, 75, 0.7);
  background: linear-gradient(rgba(13, 24, 13, 0.6), rgb(0, 0, 0, 0.6)),
    url("../images/img_5.jpg") center/cover no-repeat;
  color: #fcfcfc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__banner {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}
.hero__banner__content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero__header {
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.hero__msg {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero__header {
  color: #e0ffe0;
}
.hero__msg {
  color: #fffffe;
}
.hero__link {
  color: inherit;
  display: inline-block;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-right: 1rem;
  margin-bottom: 2rem;
  background: #21151e;
  background: #b5175f;
  color: #fcfcfc;
  font-size: 1.3rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.5s all ease;
  text-transform: uppercase;
}
.hero__link:hover {
  color: #21151e;
  background: #fcfcfc;
}
.contact__link {
  background: #7b400c;
  background: #47571a;
}
@media screen and (min-width: 400px) {
  .hero__banner__content {
    max-width: 50rem;
  }
  .hero__header {
    font-size: 2.5rem;
  }
  .hero__msg {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 767px) {
  .hero__banner__content {
    max-width: 60rem;
  }
  .hero__header {
    font-size: 3rem;
  }
  .hero__msg {
    font-size: 1.8rem;
  }
}
/* page hero section ends */

// brief section
.brief {
  background: #d3cc73;
  background: #d3c;
  display: flex;
  justify-content: center;
  height: 50vh;
  border: 2px solid red;
  width: 100%;
}
.brief {
  background: #d3cc73;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.brief__msg {
  position: relative;
  margin-bottom: 4rem;
}
.brief__image {
  border-radius: 10px;
  overflow: hidden;
}
.brief__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brief__job {
  color: #010101;
  background: #fcfcfc;
  padding: 0.8rem 1rem;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  position: absolute;
  bottom: -10px;
  left: 10%;
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: 400;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 779px) {
  .brief-overall {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .brief__msg {
    flex: 0 0 calc(33.33% - 2rem);
  }
}
@media screen and (min-width: 450px) {
  .about h2 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 672px) {
  .about h2 {
    font-size: 3.5rem;
  }
}
.about {
  background-color: #b6d462;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.about h2 {
  text-transform: capitalize;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.about__stmt {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.about__img {
  width: 100%;
  // height: 300px;
  overflow: hidden;
}
.about__img img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 672px) {
  .about__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about__details > div {
    flex: 0 0 calc(50% - 3rem);
  }
  .about__stmt {
    font-size: 1.6rem;
    margin-bottom: 0;
    letter-spacing: 0.08rem;
  }
  .about__stmt p:first-of-type {
    padding-bottom: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .about__stmt {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.services {
  padding-top: 4rem;
  padding-bottom: 4rem;
  // height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/img_11.jpg") no-repeat center/cover;
  color: #fcfcfc;
}
.services h2 {
  font-size: 3rem;
  text-align: center;
  padding-top: 4rem;
  margin-bottom: 5rem;
  color: #eceaea;
}
.service__article {
  background: rgb(65, 46, 46);
  margin-bottom: 3rem;
  line-height: 1.7;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  height: 25rem;
}
.service_img_holder {
  /* height: 100%;
  width: 250px; */
  height: 200px;
  height: auto;
  width: 950px;
  clip-path: polygon(0 0, 57% 0, 100% 99%, 0% 400%);
}
// @media screen and (min-width: 499px) {
//   .service_img_holder {
//     width: 950px;
//   }
// }
.service_img_holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service_brief {
  align-self: center;
  padding: 1.5rem 1rem;
}
.service_brief h3 {
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
  text-align: center;
}
.service_brief p {
  // margin-right: 2rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 672px) {
  .service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    // grid-template-rows: auto;
    column-gap: 2rem;
  }
  .service__article {
    height: 30rem;
    background: rgba(65, 46, 46, 0.7);
  }
  .service_img_holder {
    display: none;
  }
  .service_brief {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .service__article h3 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
  .service__article p {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
    padding: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .service__article p {
    font-size: 1.7rem;
  }
}
/* About Page */

.about__header {
  background: rgb(182, 212, 98);
  height: 60vh;
  /* background: linear-gradient(rgba(53, 55, 48, 0.5), rgba(53, 55, 48, 0.5)),
    url("../images/img_9.jpg") no-repeat center/cover; */
  background: linear-gradient(rgba(190, 164, 75, 0.6), rgb(0, 0, 0, 0.6)),
    url("../images/img_9.jpg") no-repeat center/cover;
  background: linear-gradient(rgba(13, 24, 13, 0.6), rgb(0, 0, 0, 0.6)),
    url("../images/img_9.jpg") no-repeat center/cover;
}
.about__hero {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__hero__display {
  display: none;
}
.about__hero__display img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.about__hero__header {
  text-align: center;
  text-transform: uppercase;
  padding: 3rem 0;
}
.about__hero__header h2 {
  font-size: 3rem;
  color: #fff;
}
.about__description {
  padding: 4rem 0;
}
.about__description__heading {
  text-align: center;
  text-transform: capitalize;
  font-size: 2rem;
  color: #341c38;
  margin-bottom: 2rem;
}
.about__description__bio p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.about__description__bio p:first-of-type {
  margin-top: 2rem;
}
@media screen and (min-width: 692px) {
  .about__hero__header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    transform: translate(0, 0);
  }
  .about__hero__header h2 {
    font-size: 4rem;
  }
  .about__hero__display {
    -webkit-clip-path: polygon(25% 0%, 100% 0, 100% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 100% 0, 100% 100%, 25% 100%, 0% 50%);
  }
  .about__description__bio {
    width: 60%;
  }
  .about__description__bio p {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .about__hero__header h2 {
    font-size: 6rem;
  }
}
.about__displays__display {
  background: linear-gradient(
      rgba(211, 204, 115, 0.1),
      rgba(211, 204, 115, 0.1)
    ),
    url("../images/img_17.jpg") no-repeat center/cover;
  height: 60vh;
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.about__displays__display:nth-of-type(2) {
  background: linear-gradient(
      rgba(211, 204, 115, 0.1),
      rgba(211, 204, 115, 0.1)
    ),
    url("../images/img_14.jpg") no-repeat center/cover;
}
.about__displays__display__desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fcfcfc;
  padding: 1.8rem 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  background: rgb(44, 43, 26);
}
.about__displays__display__desc h3 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.about__displays__display__desc p {
  font-size: 1.4rem;
}
.about__displays__display__img {
  display: none;
}
@media screen and (min-width: 692px) {
  .about__displays__display {
    display: flex;
    // justify-content: space-between;
    align-items: center;
    background: transparent;
    gap: 3rem;
  }
  .about__displays__display:nth-of-type(2) {
    background: none;
  }
  .about__displays__display__desc {
    position: static;
    color: #341c38;
    background-color: transparent;
    flex-basis: calc(50% - 1.2rem);
  }
  .about__displays__display__desc h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: capitalize;
  }
  .about__displays__display__desc p {
    font-size: 1.6rem;
  }
  .about__displays__display__img {
    display: block;
    height: 300px;
  }
  .about__displays__display__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about__order--front {
    order: -1;
  }
}
/* Services Page */

.services__header {
  height: 60vh;
  background-color: #34774e;
  /* background: linear-gradient(rgba(38, 38, 34, 0.8), rgba(38, 38, 34, 0.8)),
    url("../images/img_13.jpg") no-repeat center/cover; */
  background: linear-gradient(rgba(190, 164, 75, 0.7), rgb(0, 0, 0, 0.7)),
    url("../images/img_13.jpg") no-repeat center/cover;
  background: linear-gradient(rgba(13, 24, 13, 0.6), rgb(0, 0, 0, 0.6)),
    url("../images/img_13.jpg") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services__header h1 {
  color: #fcfcfc;
  font-size: 3rem;
  text-transform: capitalize;
}
.services__outro {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}
.services__outro h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  width: 80%;
  line-height: 1.4;
}
@media screen and (min-width: 445px) {
  .services__outro h3 {
    margin-block: 2.5rem;
    font-size: 2rem;
    width: 70%;
    line-height: 1.5;
  }
}
.service_actions {
  margin-top: 3rem;
  margin-bottom: 8rem;
}
.service_action {
  // background-color: #b6d462;
  padding: 1.5rem 1.3rem;
  border: 1px solid #a3b482;
  border: 1px solid #341c38;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.service_action__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 1.5rem;
}
@media screen and (max-width: 400px) {
  .service_action__heading {
    column-gap: 3rem;
  }
}
// .service_action__heading::before {
//   content: "";
//   width: 100%;
//   height: 0.2rem;
//   background: linear-gradient(
//     to right,
//     rgba(23, 38, 23, 0.7) 80%,
//     rgba(14, 36, 26, 0.6) 20%
//   );
//   position: absolute;
//   top: -0.8rem;
//   left: 0;
// }
.service_action__heading p {
  font-size: 3rem;
  font-size: 2rem;
  font-weight: 500;
}
.service_action__btn {
  font-size: 3rem;
  background: transparent;
  outline: transparent;
  border: none;
  cursor: pointer;
}
.service_action__btn i {
  font-size: 2.3rem;
  color: rgb(40, 47, 35);
}
.minus-icon {
  display: none;
}
.show__service .minus-icon {
  display: block;
}
.show__service .plus-icon {
  display: none;
}
.service__desc {
  font-size: 1.7rem;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in;
  display: flex;
  padding-top: 0.5rem;
}
/* @keyframes comeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.show__service .service__desc {
  animation: comeIn 0.3s ease-in 0.1s;
} */

.service__desc__stmt {
  flex-basis: 70%;
  flex-basis: 65%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (min-width: 576px) {
  .service__desc {
    column-gap: 4rem;
  }
  .service__desc__stmt {
    font-size: 1.3rem;
  }
}
.service__desc__image {
  flex-basis: 45%;
  height: 180px;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (min-width: 400px) {
  .service__desc__image {
    height: 150px;
  }
}
.show__service .service__desc__stmt,
.show__service .service__desc__image {
  opacity: 1;
  transform: translateX(0);
}
.service__desc__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 692px) {
  .services__header h1 {
    font-size: 4.3rem;
    font-weight: 500;
  }
  .services__outro h3 {
    font-size: 1.7rem;
    /* width: 60%; */
    line-height: 1.6;
  }
}
@media screen and (min-width: 772px) {
  .services__outro h3 {
    font-size: 1.9rem;
    /* width: 50%; */
    line-height: 1.7;
  }
  .service_action__heading p {
    font-size: 3rem;
  }
  .service_action__btn i {
    font-size: 3rem;
  }
  .service__desc__stmt {
    flex-basis: 70%;
    font-size: 1.8rem;
  }
}
/* Contact Page */

.contact__header__desc h1,
.contact__header__desc h2 {
  color: #fcfcfc;
  text-align: center;
}
.contact__header__desc h2 {
  margin-top: 0.8rem;
  font-weight: 400;
}
@media screen and (min-width: 776px) {
  .contact__header__desc h2 {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
.contact__stmt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.contact__map {
  display: block;
  width: 100%;
  padding: 3rem 0;
}
.contact__map__detail {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
.contact__map h3 {
  margin-bottom: 0.8rem;
  margin-right: 2rem;
}
.contact__map h3 i {
  font-size: 5rem;
}
.contact__map p {
  font-size: 1.8rem;
}
@media screen and (min-width: 776px) {
  .contact__map {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 8rem 0;
  }
  .contact__map > div {
    flex-basis: 30%;
  }
  .contact__map__detail {
    display: block;
  }
  .contact__map h3 {
    margin-bottom: 2.5rem;
  }
}
.info_div {
  width: 100%;
}
.contact__map__frame {
  height: 300px;
  margin: 2rem 0;
}
.contact__map__frame iframe {
  height: 100%;
  width: 100%;
}
.contact__form {
  width: 100%;
}
/* Form fields submission */

.form__field {
  width: 100%;
  margin-bottom: 1rem;
}
label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #aeaebb;
}
.form__field textarea {
  font-size: 1.7rem;
}
.form__field.success input,
.form__field.success textarea {
  border-color: #2ecc71;
}
.form__field.error input,
.form__field.error textarea {
  border-color: #e74c3c;
}
.form__field small {
  color: #e74c3c;
  /* position: absolute;
  bottom: 0;
  left: 0; */
  font-size: 1.3rem;
  visibility: hidden;
}
.form__field.error small {
  visibility: visible;
}
/* Form fields submission */

.contact__form button {
  padding: 1.5rem 2.5rem;
  border: 1px solid #341c38;
  background: #341c38;
  font-size: 1.6rem;
  cursor: pointer;
  color: #fff;
  outline: none;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contact__map__info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact__map__info > .info_div {
    flex-basis: calc(50% - 1.2rem);
  }
  .contact__map__frame {
    height: auto;
    margin: 0;
  }
  .info_div iframe,
  .info_div .form {
    width: 100%;
  }
}
/* Message display on form submission */

.success__message {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 7rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  justify-content: center;
  align-items: center;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
}
.message {
  background: #c3f3c0;
  color: #010101;
  padding: 5rem;
  width: 45vw;
  transform: scale(0);
  transition: transform 0.5s ease-in 0.3s;
}
.message h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: lighter;
  text-align: center;
}
.message .envelope {
  font-size: 10rem;
  text-align: center;
  display: block;
  color: #161117;
}
.message p {
  font-size: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}
.message__close {
  color: #fcfcfc;
  font-size: 3rem;
  position: absolute;
  top: 2rem;
  right: 5rem;
  border: 1px solid #010101;
  cursor: pointer;
  padding: 0.8rem;
}
.success__message.cancel {
  visibility: hidden;
  opacity: 0;
  // display: none;
}
.success__message.sent {
  visibility: visible;
  opacity: 1;
  display: flex;
}
.success__message.sent .message {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
body.sent {
  overflow: hidden;
}
body.cancel {
  overflow: auto;
}
/* footer section */

#footer {
  background: #272727;
  padding-top: 4rem;
}
.footer h3 {
  color: #97db4f;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer__logo {
  width: 50%;
}
.footer__logo p {
  margin-top: 1.3rem;
  font-size: 1.2rem;
  color: #eceaea;
}
.footer__logo .reg__num {
  color: #c1edcc;
}
.footer__logo__img {
  width: 70px;
  height: 70px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__address {
  color: #eceaea;
  margin: 3rem 0;
}
.footer__address article {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  width: 180px;
}
.footer__address i {
  font-size: 1.3rem;
  // margin-right: 2rem;
}
.footer__address span {
  font-size: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  margin: 2rem 0;
}
.footer__links li {
  list-style: none;
}
.footer__links li a {
  color: #fcfcfc;
  font-size: 1.4rem;
  text-transform: capitalize;
  transition: all 0.5s linear;
}
.footer__links li a:hover,
.footer__links li a:active {
  color: #97db4f;
}
.footer__info {
  padding: 1.5rem 0;
}
.footer__info p {
  color: #fcfcfc;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.5;
  width: 300px;
}
.footer__info .care_insp a {
  display: inline-block;
  color: #c1edcc;
}
.footer__close {
  text-align: center;
  font-size: 1.8rem;
  color: #eceaea;
  padding: 1.5rem 0;
  font-size: 1.4rem;
  background-color: #010101;
}
@media screen and (min-width: 779px) {
  .footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
  }
  .footer__logo {
    width: 20%;
  }
  .footer__address {
    margin: 0;
  }
  .footer__address i {
    font-size: 1.5rem;
  }
  .footer__links {
    margin: 0;
  }
  .footer__info {
    padding: 0;
  }
}
/* footer section ends */

/* Not Found Page */

.not-found {
  min-height: 80vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #91aa94;
}
.not-found__body {
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  max-width: 520px;
}
/* .not-found__body__header {
  min-height: 240px;
} */

.not-found__body__header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #262626;
  letter-spacing: 3px;
  padding-left: 0.6rem;
  margin-top: 1.5rem;
}
.not-found__body__header h1 {
  margin-left: -2rem;
  margin-top: -1.5rem;
  font-size: 17.2rem;
  font-weight: 900;
  letter-spacing: -40px;
  color: #0a1f03;
}
@media screen and (min-width: 576px) {
  .not-found__body__header h1 {
    font-size: 25.2rem;
  }
}
.not-found__body__header span {
  font-family: sans-serif;
  text-shadow: -8px 0 0 rgba(10, 31, 3, 0.457);
}
.not-found__body a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #0a1f03;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #fcfcfc;
  transition: 0.5s all linear;
}
.not-found__body a:hover {
  color: #0a1f03;
  background: #fcfcfc;
}
.not-found h1 {
  margin-top: -3.5rem;
}
