*,
*::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;
  /* max-width: 100%; */
  /* overflow: auto; */
  /* -webkit-overflow-scrolling: touch; */
}

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;
  z-index: 2;
}

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

.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;
}

/* ------------------------- */
video {
  position: absolute;
  height: 83rem;
  min-width: 100%;
  z-index: -1;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Avatar__Product-content-container {
  width: clamp(21rem, 100%, 34rem);
  background-color: var(--goldish-clr);
  color: white;
  font-family: var(--content-ff);
  height: 12rem;
  padding: 1rem 0.5rem;
  border-radius: 0.2rem;
  font-size: 1.2rem;
}

.Avatar-section {
  display: flex;
  flex-direction: column;
  padding: 2rem 0.5rem;
  justify-content: center;
  align-items: center;
}

.Avatar__Product-cover {
  display: flex;
  align-items: center;
}

.Avatar__Product {
  width: 13rem;
  /* border: solid 2px #3b4050; */
  overflow: hidden;
}

.Avatar__Product-container__content img {
  width: 13rem;
  height: 33rem;
}

.Avatar__Product-container {
  display: flex;
  --slide-value: 0;
  transform: translateX(calc(var(--slide-value) * -13rem));
}

.arrow-btn {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.Content-container {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  margin-bottom: 0.5rem;
}

.Content-container span:nth-of-type(1) {
  margin-right: 0.5rem;
  color: var(--odd-bg);
}

.btn {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
}

.btn a {
  color: white;
  text-decoration: none;

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

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

.btn a:hover {
  background-color: rgb(9, 222, 30);
  color: var(--nav-color);
  transform: scale(1.2);
}

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

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

footer {
  background-color: var(--odd-bg);
  bottom: 0;
  position: relative;
  
}

.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  --------------  */

/* ------------------------------------- */
@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;
  }

  .Avatar-section {
    flex-direction: row-reverse;
  }

  .Avatar {
    margin-left: 9rem;
  }
}

@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;
  }
}
