@font-face {
  font-family: tenor;
  src: url(./fonts/ElMessiri-Regular.ttf);
}
@font-face {
  font-family: josefin;
  font-weight: bold;
  src: url(./fonts/PlayfairDisplay-Black.ttf);
}
@font-face {
  font-family: heebo;
  src: url(./fonts/Heebo-ExtraLight.ttf);
}
@font-face {
  font-family: heebo-reg;
  src: url(./fonts/Heebo-Regular.ttf);
}
@font-face {
  font-family: heebo-bold;
  src: url(./fonts/Heebo-Bold.ttf);
}
:root {
  --red: #ffffff;
}
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px; 
  background: #fafafa;
}
.font-heebo {
  font-family: 'heebo', sans-serif;
}
.font-heebo-reg {
  font-family: 'heebo-reg', sans-serif;
}
.font-heebo-bold {
  font-family: 'heebo-bold';
}
.font-tenor{
  font-family: 'tenor';
}
.font-josefin{
  font-family: 'Josefin Sans', sans-serif; 
}

/* Button */
.btn {
  width: 180px;
  height: 60px;
  border-radius: 500px;
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  font-family: 'tenor';
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 1);
  top: -5px;
  left: -5px;
  border-radius: 500px;
  /* border-color: #EFCB4A; */
  border-color: var(--red);
}
 .btn:hover {
  /* background-color: #EFCB4A; */
  background-color: #151515;
  color: #fff;
}
/* --------------------------------*/
          /* Header */
/* --------------------------------*/
header{
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.header-container{
  width: 90%;
  height: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.logo-container{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.logo-container a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo-container img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.top-nav{
  width: 450px;
  height: 100%;
  position: relative;
}
.top-nav ul{
  font-size: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.top-nav ul li a{
  color: rgb(29, 29, 29);
  text-decoration: none;
  position: relative;
  
}
.top-nav ul li a::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(28, 28, 28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.top-nav ul li a:hover::after{
  transform: scaleX(1);
}
.menu-current-page {
  position: relative;
}
.menu-current-page::before{
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  /* background-color: #efcb4ae7; */
  background-color: rgb(29, 29, 29);
}
.lang-div {
  color: rgb(31, 31, 31);
  position: absolute;
  top: 2em;
  right: 0;
  font-family: 'tenor';
  opacity: 0.8;
}
.lang-div a {
  color: rgb(31, 31, 31);
  text-decoration: none;
}
.lang-div a:visited {
  color: rgb(31, 31, 31);
}
.eng, .heb {
  margin-right: 0.5em;
}
.heb {
  position: relative;
}
.heb::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(31, 31, 31, 0.8);
}
/* --------------------------------*/
          /* Section Top */
/* --------------------------------*/
.sec-top {
  width: 100%;
  height: 500px;
  background: #fafafa;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-top-container{
  width: 90%;
  height: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  gap: 0.5em;
}
.sec-top-container h1 {
  width: 100%;
  font-size: 7em;
  font-family: 'Josefin';
  color: rgb(11, 11, 11);
  letter-spacing: 0px;
  line-height: 1.15em;
}
.h1-div {
  width: 50%;
  z-index: 10;
}
.h1-one {
  transform: translateX(-50%);
  opacity: 0;
  animation: slideIn 0.7s forwards ease-out;
}
.h1-two {
  transform: translateX(-50%);
  opacity: 0;
  animation: slideIn 0.7s forwards ease-out 0.3s;
}
.h1-three {
  transform: translateX(-50%);
  opacity: 0;
  animation: slideIn 0.7s forwards ease-out 0.6s;
}
@keyframes slideIn {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.about-img-container {
  width: 45vw;
  height: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  max-width: 650px;
  max-height: 650px;
  /* border: 7px solid #efcb4a74; */
  border: 7px solid #252525;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10em;
}
.about-img-container img{
  width: 95%;
  height: 95%;
  border-radius: 50%;
  object-fit: cover;
  
}
/* --------------------------------*/
          /* Section Text */
/* --------------------------------*/
.sec-text{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  background-color: #050505;
  color: #ffffff;
}
.sec-text-container{
  width: 90%;
  height: 80%;
  max-width: 1500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  margin-top: calc(7em + 2vw);
  margin-bottom: 7em;
  margin-left: 0.5em;
}
.sec-text-container h2 {
  font-size: 2.5em;
  text-align: left;
  margin-bottom: 0.5em;
  font-family: 'heebo-bold';
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.2em;
}
.sec-text-container p {
  width: 70%;
  font-size: 20px;
  font-family: 'heebo';
  color: #ffffff;
  text-align: right;
  line-height: 2em;
  margin-bottom: 2em;
}
/*-------------------*/
/* Footer */
/*-------------------*/
footer {
  width: 100%;
  height: 200px;
  background-color: #fafafa;
  color: #333;
  padding: 3em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  gap: 1em;
}
.footer-container {
  width: 90%;
  height: auto;
  display: flex;
  max-width: 1500px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  position: relative;
 
}
.social-container {
  width: 30%;
  max-width: 280px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.social-container img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
}
.logo-footer-div {
  width: 110px;
}
.logo-footer-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-footer-small {
  width: 40px;
  height: 40px;
  display: none;
  
}
.bottom-nav {
  width: 40%;
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 1.2em;
  
}
.bottom-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  
  
}
.bottom-nav ul a {
  color: #333;
  font-size: 18px;
  text-decoration: none;

}
.to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  min-width: 75px;
  font-family: tenor;
}
.to-top img {
  width: 25px;
  height: 25px;
  transform: rotate(-90deg);
}
.to-top-link {
  text-decoration: none;
  color: #333;
}
.site-credit {
  width: 90%;
  max-width: 1500px;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  font-family: 'tenor';
  color: rgba(51, 51, 51, 0.5);
  padding-top: 2em;
}
.site-credit a {
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
}
/* --------------------------------*/
          /* Media Query */
/* --------------------------------*/
@media screen and (max-width: 1000px) {
  /* Footer */
  .social-container img {
    width: 25px;
    height: 25px;
    margin-top: 7px;
  }
  .logo-footer-div {
    width: 100px;
  }
  .logo-footer-div img {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  .btn {
    width: 110px;
    height: 40px;
    font-size: 15px;
  }
  .btn::after {
    width: 120px;
    height: 50px;
    
  }
  header {
    height: 120px;
  }
  .logo-container {
    width: 70px;
    height: 70px;
  }
  .logo-container img {
    width: 70px;
    height: 70px;
  }
  .hero {
    min-height: 650px;
  }
  .header-container {
    width: 95%;
  }
  .top-nav {
    width: 70%;
  }
  .top-nav ul a {
    font-size: 18px;
  }
  .lang-div {
    top: 1em;
    font-size: 0.9em;
  }
  .sec-top {
    height: 300px;
  }
  .h1-div {
    padding-top: 1.5em;
  }
  .about-img-container {
    margin-top: 6em;
  }
  .sec-text-container {
    height: max-content;
    margin-top: 4em;
    margin-bottom: 4em;
  }
  .sec-top-container h1 {
    font-size: 4em;
    line-height: 1.2em;
  }
  .sec-text-container h2 {
    font-size: 2em;
    margin-bottom: 0.2em;
  }
  .sec-text-container p {
    width: 95%;
    font-size: 1.05em;
    line-height: 1.8em;
  }
   /*-------------------*/
  /* Footer  */
  /*-------------------*/
  footer {
    padding: 0em 0;
    justify-content: space-around;
    height: 150px;
    margin-top: 50px;
    margin-bottom: 1em;
  }
  .footer-container {
    gap: 0.5em;
  }
  .bottom-nav ul {
    align-items: center;
    flex-direction: column;
   
  }
  .bottom-nav ul a {
    font-size: 14px;
  }
  .social-container{
    width: auto;
    gap: 0.5em;
  }
  
  .to-top {
    font-size: 0.85em;
    min-width: 60px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 550px) {
  header {
    height: 120px;
  }
  .logo-container img {
    width: 50px;
    height: 50px;
  }
  .top-nav {
    margin-right: 0.5em;
  }
  .top-nav ul li a {
    font-size: 16px;
  }
  .sec-top-container h1 {
    font-size: 2.4em;
    line-height: 1.2em;
  }
  .sec-top {
    height: 200px;
  }
  .about-img-container {
    margin-top: 4.5em;
    border-width: 5px;
  }
  .sec-text-container {
    align-items: center;
    gap: 0.5em;
    margin-left: 0;
  }
  .sec-text-container p {
    text-align: center;
  }
  /* Footer */
  .footer-container {
    width: 85%;
  }
  .logo-footer {
    display: none;
  }
  .logo-footer-div {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
  }
  .logo-footer-div .logo-footer-small {
    display: block;
    width: 35px;
    height: 35px;
  }
  .bottom-nav {
    margin-right: 35px;
  }
  .site-credit p {
    width: 12ch;
    font-size: 0.85em;
  }
  .site-credit p:nth-child(2) {
    width: 10ch;
  }
  
}