.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 100dvh;
  position: relative;
  padding: 0 2rem;
  overflow-x: hidden;
}

.headerNavbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.2rem 2rem;
}
.headerNavbarscrollCss {
  position: fixed;
}
.headerNavbar .burgerBtn {
  font-size: 1rem;
  cursor: pointer;
  display: none;
}
.headerNavbar .burgerBtn i {
  margin-left: 0.2rem;
  border: 1px solid white;
  padding: 0.3rem;
  border-radius: 5px;
  text-align: center;
}
.headerNavbar span {
  margin-right: auto;
  font-size: 1.5rem;
}
.headerNavbar ul {
  margin-left: auto;
  display: flex;
}
.headerNavbar ul li {
  list-style: none;
  cursor: pointer;
  position: relative;
}
.headerNavbar ul li a {
  text-decoration: none;
  color: white;
  padding: 0 0.6rem;
}
.headerNavbar ul li::after {
  content: "";
  position: absolute;
  background-color: white;
  height: 0.15rem;
  bottom: 0;
  width: 0%;
  transform: translate(-50%, 0rem);
  left: 50%;
  transition: 0.15s ease-in all;
  transform-origin: center;
}
.headerNavbar ul li:hover::after {
  width: 100%;
}

.headerTextContentContainer h3 {
  font-size: 2.2rem;
}
.headerTextContentContainer .helloText span,
.headerTextContentContainer .helloText i {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.headerTextContentContainer .profetionHolder {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}
.headerTextContentContainer .profetionHolder span {
  width: 3rem;
  height: 2px;
  background-color: white;
  border-radius: 5px;
  margin-right: 0.7rem;
}
.headerTextContentContainer .Paragraph {
  max-width: 35rem;
  margin-right: 2rem;
  margin-top: 1rem;
}
.headerTextContentContainer .buttonsHolder {
  margin-top: 1rem;
}
.headerTextContentContainer .buttonsHolder button {
  background-color: white;
  color: black;
  padding: 0.5rem 1.5rem;
  font-family: "Poppins", sans-serif;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: ease-in 0.1s all;
}
.headerTextContentContainer .buttonsHolder button i {
  padding-left: 0.3rem;
  font-weight: 400;
}
.headerTextContentContainer .buttonsHolder button:hover {
  transform: translate(0, -0.3rem);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.headerTextContentContainer .buttonsHolder button:active {
  transform: translate(0, 0rem);
}

.headerImgContainer {
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  max-width: 22rem;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.192) 0px 5px 15px;
  background-image: url(../Imagies/0-02-05-aa2d5d91bf5d3f147b673e40c32c02681ef76cf08349717977acbe1698eb63dc_7f4d9e387e153a89.jpg);
  background-size: cover;
  background-position: center;
  width: 25rem;
  height: 25rem;
}

.socialsContainers {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 0;
}
.socialsContainers i {
  font-size: 1.5rem;
  padding: 1rem;
  color: white;
  transition: ease-in 0.1s all;
}
.socialsContainers i:hover {
  transform: translate(0, -0.3rem);
  text-shadow: rgba(255, 255, 255, 0.09) 0px 2px 1px, rgba(255, 255, 255, 0.09) 0px 4px 2px, rgba(255, 255, 255, 0.09) 0px 8px 4px, rgba(255, 255, 255, 0.09) 0px 16px 8px, rgba(255, 255, 255, 0.09) 0px 32px 16px;
}
.socialsContainers i:active {
  transform: translate(0, 0rem);
}

@media screen and (max-width: 850px) {
  .headerNavbar {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "logo nav nav nav burger" "buttons buttons buttons buttons buttons";
    grid-column-gap: 0;
    grid-row-gap: 0;
    overflow-y: hidden;
    background-color: black;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }
  .headerNavbar .navBarShow {
    max-height: 500px;
    opacity: 1;
  }
  .headerNavbar ul {
    margin: 0;
    flex-direction: column;
    grid-area: buttons;
    align-self: center;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, opacity 0.4s ease;
  }
  .headerNavbar .burgerBtn {
    grid-column: 5/6;
    grid-row: 1/2;
    justify-self: end;
    margin: 0;
    display: flex;
  }
  .headerNavbar .burgerBtn i {
    margin-left: 0.3rem;
  }
  .header {
    flex-direction: column-reverse;
    padding: 1rem;
    padding-top: 4rem;
    max-height: 100dvh;
  }
  .headerTextContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60%;
  }
  .headerTextContentContainer .Paragraph {
    margin: 0;
    margin-top: 0.5rem;
    text-align: left;
    word-wrap: break-word;
  }
  .headerImgContainer {
    max-width: 18rem;
    max-height: 18rem;
  }
  .socialsContainers {
    position: static;
    align-self: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .headerNavbar {
    padding: 0.2rem 1rem;
  }
  .header {
    flex-direction: column-reverse;
    padding: 1rem;
    padding-top: 4rem;
    max-height: 100dvh;
  }
  .headerTextContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60%;
  }
  .headerTextContentContainer .profetionHolder {
    margin-right: auto;
  }
  .headerTextContentContainer .Paragraph {
    margin: 0;
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
    word-wrap: break-word;
  }
  .headerImgContainer {
    max-width: 18rem;
    max-height: 25rem;
  }
  .socialsContainers {
    position: static;
    align-self: flex-end;
  }
}
@media screen and (max-width: 377px) {
  .header {
    flex-direction: column-reverse;
    padding: 1rem;
    padding-top: 4rem;
    max-height: 100dvh;
  }
  .headerTextContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60%;
  }
  .headerTextContentContainer .helloText {
    font-size: 1.5rem;
  }
  .headerTextContentContainer .helloText i {
    display: none;
  }
  .headerTextContentContainer .profetionHolder {
    margin-right: auto;
  }
  .headerTextContentContainer .Paragraph {
    margin: 0;
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
    word-wrap: break-word;
  }
  .headerImgContainer {
    max-width: 18rem;
    max-height: 25rem;
  }
  .socialsContainers {
    position: static;
    align-self: flex-end;
  }
}
@media screen and (max-width: 377px) {
  .buttonsHolder {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .buttonsHolder button {
    width: 100%;
    margin: 0.3rem 0;
  }
}/*# sourceMappingURL=header.css.map */