*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-color: #2e323f;
  --nav-content: #d3d6e1;
  --odd-bg: #3b4050;
  --even-bg: #ecebeb;
  --content-clr_1: #6f737f;
  --goldish-clr: #a59678;
  --content-ff: "Montserrat", sans-serif;
  --heading-ff: "Oswald", sans-serif;
}

body {
  overflow-x: hidden;
}

nav {
  background-color: var(--nav-color);
}

.navbar {
  display: flex;
  padding: 1em 0.1em;
  justify-content: space-between;
  align-items: center;
}

.navbar__img img {
  cursor: pointer;
}

/* -----------------Mobile View ----------------- */

.navbar__options--mobile {
  position: absolute;
  width: 100vw;
  top: 8em;
  /* padding: 0 42%; */
  background: var(--nav-color);
  left: 0;
  display: none;
}

/* ---------------------------------- */

.navbar__opt-1 ul li {
  list-style: none;
  font-family: var(--heading-ff);
  text-align: center;
}

.navbar__opt-1 ul li a {
  display: inline-block;
  text-decoration: none;
  color: var(--nav-content);
  text-transform: uppercase;
  padding: 1em;
  cursor: pointer;
  width: 100vw;
}

.navbar__opt-1 ul li a:hover {
  background-color: var(--odd-bg);
}

.navbar__options-2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 10rem;
  width: 100%;
}

.navbar__opt-2 {
  border: 4px solid white;
  border-radius: 9rem;
  height: 5rem;
  background: var(--odd-bg);
}
.navbar__opt-2 img {
  width: 4.3rem;
  cursor: pointer;
}

.hamburger-icon {
  color: var(--nav-content);
  cursor: pointer;
  font-size: 1.5rem;
  background-color: var(--odd-bg);
  padding: 0.1em;
}

/* Start:Hero-section */
.Sec-1 {
  background-color: var(--odd-bg);
  height: 40rem;
  display: flow-root;
}

/* .Hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: clamp(18rem,20%,82rem);
} */

.Hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: clamp(18rem, 99%, 98rem);
  /* padding: 10rem 14rem; */
  /* padding: 2rem 4rem; */
  padding: 1em 2rem;
  align-items: center;
}

.Hero-section__slogan {
  font-family: var(--heading-ff);
  color: white;
  font-size: 2rem;
}

.Hero-section__slogan h1 span {
  color: var(--goldish-clr);
}

.Hero-section__mission {
  color: var(--nav-content);
  font-family: var(--content-ff);
  font-size: 1.2rem;
  line-height: 1.5;
}
/* End:Hero-section */

/*-------------------  Start: Features section  --------------  */
.Sec-2 {
  background-color: var(--even-bg);
  height: 65rem;
  display: flow-root;
}

.Features-section-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.Feature-section {
  background-color: var(--goldish-clr);
  width: clamp(20rem, 73%, 33rem);
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 1em;
  margin-inline: auto;
}

.Feature-section__content img {
  width: 70%;
}

.Feature-section-2 .Feature-section__content img {
  width: 40%;
}

.Feature-section h1 {
  font-size: 3rem;
  color: var(--even-bg);
  font-family: var(--heading-ff);
}

.Feature-section__content {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Feature-section__content p {
  margin-bottom: 0.5rem;
  font-family: var(--content-ff);
}

.btn {
  text-align: center;
  margin-top: 2em;
}
.btn a {
  color: black;
  text-decoration: none;

  font-family: var(--content-ff);
  background: var(--even-bg);
  display: inline-block;
  padding: 1rem 2rem;

  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/*-------------------  End: Features section  --------------  */
/*-------------------  Start: Share Your work section  --------------  */
.Sec-3 {
  background-color: white;
}

.Work-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 0.5em;
}

.Work-section-container img {
  width: clamp(13rem, 45%, 55rem);
}
.Work-section-container__content {
  text-align: center;
}
.Work-section-container__content h1 {
  font-family: var(--heading-ff);
  font-size: clamp(2.5rem, 2vw, 3.5rem);
}

.Work-section-container__content h1 span {
  color: #91846a;
}

.Work-section-container__content p {
  font-size: 1.5rem;
  margin-top: 1rem;
  font-family: var(--content-ff);
}

/*-------------------  End: Share Your work section  --------------  */

/*-------------------  Start: Footer section  --------------  */

footer {
  background-color: var(--odd-bg);
}

.Footer-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 0.5em;
}
.Footer-section-container span {
  font-size: clamp(1.5rem, 3vw, 6rem);
  font-family: var(--heading-ff);
  color: var(--goldish-clr);
}

.Footer-section-1 {
  /* height: 20rem; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.Footer-section-1 img {
  margin-bottom: 1rem;
  width: 8rem;
}

.Footer-section-1 span {
  color: var(--goldish-clr);
  font-family: var(--content-ff);
  font-size: 1rem;
}

.Footer-section-2 {
  margin-right: 1em;
}

.Footer-section-2 i {
  font-size: 1.5rem;
  color: var(--content-clr_1);
  cursor: pointer;
}

/*-------------------  End: Footer section  --------------  */

/*-------------------  Start: Media Query  --------------  */

@media (min-width: 1104px) {
  .Sec-2 {
    height: 35rem;
  }

  .Features-section-container {
    flex-direction: row;

    align-items: center;
  }
  .Work-section-container {
    flex-direction: row;
    padding: 9em 13.5em;
  }
}

@media (min-width: 820px) {
  .navbar__options-1 {
    position: relative;
  }
  .navbar__opt-1 ul {
    display: flex;
  }
  .navbar__options--mobile {
    display: block;
    width: auto;
    top: 0;
  }

  .navbar__opt-1 ul li a {
    width: auto;
  }

  .hamburger-icon {
    display: none;
  }
  .navbar {
    display: flex;
    padding: 1em 3em;
  }
  .navbar__opt-1 ul li a {
 
    font-size: 1.5rem;
  }
}

@media (min-width: 880px) {
  .Hero-section {
    flex-direction: row;
  }

  
}

@media (max-width: 702px) {
  .Footer-trademark {
    display: none;
  }
}

@media (max-width: 696px) {
  .Footer-section-2 {
    margin-right: 0;
    margin-left: 2em;
  }
  .Footer-section-2 i {
    font-size: 2.5rem;
    width: 6rem;
  }
}

@media (min-width: 560px) {
  .Hero-section {
    height: 38rem;
    /* padding: 9em 17rem; */
  }

  .Hero-section__mission {
    margin-left: 3rem;
  }
}

@media (min-width: 471px) {
  .Hero-section {
    padding: 9em 2rem;
  }

  .Hero-section__mission {
    line-height: 2.5;
  }
}

/*-------------------  End: Media Query  --------------  */
