/* start-navbar  */
.navbar {
  background-color: var(--primary);
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  transition: background-color 300ms ease-in-out;
  z-index: 5;
  backdrop-filter: blur(4px);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
}
.navbar__links_wrapper {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 991px) {
    position: fixed;
    top: 0;
    right: 0;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    z-index: 9;
    display: none;
    pointer-events: none;
  }
}
.navbar__links_wrapper.show {
  @media only screen and (max-width: 991px) {
    /* animation: SlideLeft 400ms ease-in-out 0s 1 normal forwards; */
    display: flex;
    pointer-events: fill;
  }
}
.navbar__links_wrapper .navbar__links {
  display: flex;
  gap: 0.25rem;
  @media only screen and (max-width: 991px) {
    background-color: var(--primary);
    width: 450px;
    flex-direction: column;
    padding: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
  }

  @media only screen and (max-width: 768px) {
    width: 260px;
  }
}
.navbar__links_wrapper.show .navbar__links {
  @media only screen and (max-width: 991px) {
    height: 100svh;
    animation: SlideLeft 200ms ease-in-out 0s 1 normal forwards;
  }
}

.navbar__links_wrapper .navbar__links li {
  box-sizing: border-box;
}
.navbar__links_wrapper .navbar__links li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background 200ms ease-in-out;
  text-transform: capitalize;
  font-size: 1rem;
  color:var(--primary-1);
  @media only screen and (max-width: 991px) {
    display: block;
    padding: 0.5rem;
  }
}
.navbar__links_wrapper .navbar__links li a:hover {
  background-color: var(--primary-10);
}
.navbar__links_wrapper button {
  display: none;
  @media only screen and (max-width: 991px) {
    display: flex;
    flex: 1;
    background-color: #00000080;
  }
}
.navbar .navbar__menu_icon {
  display: none;
  @media only screen and (max-width: 991px) {
    display: block;
  }
}
/* end-navbar  */
@keyframes SlideLeft {
  0% {
    rigth: -100%;
  }
  100% {
    right: 0%;
  }
}
/* end-navbar   */
/* start-hero  */
.hero {
  height: 100vh;
  height: 100svh;
  /* max-height: 700px; */
  /* background-color: var(--primary-6); */
  background: linear-gradient(#ffffff99, #ffffff99), url("../images/bg_2.webp");
  background-size: cover;
  background-position-y: 60%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero h1 > span {
  text-align: center;
  line-height: 1.7;
  font-size: 3rem;
  display: block;
  @media (max-width: 500px) {
    font-size: 2rem;
  }
  @media (max-width: 342px) {
    font-size: 1.5rem;
  }
}
.hero h1 > span:nth-of-type(2) {
  color: var(--primary-12);
}
/* end-hero  */
/* start-principles  */
.principles p {
  max-width: 80ch;
  text-align: center;
  margin: auto;
  line-height: 1.7;
}
/* end-principles */
/* start-products  */
.products .container > p {
  text-align: center;
  color: var(--primary-12);
  font-weight: bold;
}
.products__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.products__cards_card {
  width: 290px;
  border:1px solid var(--primary-8);
  box-shadow:1px 1px 3px 4px var(--gray-3);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom:30px;
}
.products__cards_card > div {
  position:absolute;
  bottom:-50px;
  background-color: var(--gray-a1);
  backdrop-filter: blur(5px);
  padding:.5rem;
  transition:300ms ease-in-out;
}
.products__cards_card:hover > div {
  bottom:0;
}
.products__cards_card > img{
  mix-blend-mode: multiply;
}
.products__cards_card > div h4 {
  margin-bottom:.5rem;
}
.products__cards_card > div p {
  font-size:14px;
  line-height: 1.5;
}
/* end-products  */
/* start-goals  */
.goals {
  background-color: var(--primary-2);
}
.goals__cards {
  display:flex;
  justify-content: center;
  /* align-items: center; */
  gap:1rem;
  flex-wrap: wrap;
}
.goals__cards_card {
  width:290px;
  padding:1rem;
  background-color: var(--primary-5);
  border-radius:8px;
  display: flex;
  flex-direction: column;
  gap:8px;
}
.goals__cards_card  p {
  font-size:12px;
  line-height: 1.5;
}
/* end-goals  */
/* start-contact  */
.contact .container {
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:1rem;

}
.contact__map,.contact__info {
  flex:1;
  min-width:300px;
} 
.contact__map {
  min-height: 350px;
}
.contact__info, .contact__info  li a  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact__info{
  gap:2rem;
}
.contact__info  li a {
  gap:.5rem;
}
.contact__info  li a img {
  background-color: var(--primary-6);
  padding:.5rem;
  box-sizing: content-box;
  border-radius:50%;

}
/* end-contact  */
/* start-footer  */
.footer{
  padding:100px 0;
  background-color: var(--primary);
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap:1rem;
  align-items: center;
  color:var(--primary-1)
}
.footer .container p {
  text-align:center;
  line-height: 1.7;
}

/* end-footer  */