* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}


.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Hero Section */
#hero {
  background-image: url(./imagesIsrael/jerusalem-1712855.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: .5;
  z-index: -1;
}

#hero .hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  justify-content: flex-start;
}


#hero h1 {
  display: block;
  width: fit-content;
  font: 4rem;
  position: relative;
  color: transparent;
  animation: text_reveal .5s ease forwards;
  animation-delay: 1s;
  }

#hero h1:nth-child(1){
  animation-delay: 1s;
  }

#hero h1:nth-child(2){
  animation: text_reveal_name .5s ease forwards;
  animation-delay: 2s;
  }

#hero h1:nth-child(3){
  animation-delay: 3s;
  }


#hero h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: crimson;
  animation: text_reveal_box 1s ease;
  animation-delay: .3s;
}

#hero h1:nth-child(1) span {
  animation-delay: .5s;
}

#hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}

#hero .cta {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  background-color: transparent;
  border: 2px solid crimson;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1rem;
  margin-top: 30px;
  transition: .3s ease;
  transition-property: background-color, color;
  }

#hero .cta:hover {
  color: white;
  background-color: crimson;
}
/* End Hero Section */


/* About Us Section */
#about .about {
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

#about .col-left {
  width: 100%;
  height: 100%;
}

#about .col-right {
  width: 100%;
}

#about .col-right h1 {
  font-size: 1.6rem;
}

#about .col-right h2 span {
  color: crimson;
  font-weight: bold;
}
#about .col-right h2 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1rem;
  margin-bottom: 10px;
}

#about .col-right p {
  margin-bottom: 20px;
}

#about .col-left .about-img img {
  position: relative;
  width: 35%;
  border-radius: 10px;
}
/* End About Us Section */


/* Contact Section */
#contact .contact {
  min-height: 200px;
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200p
  margin: 0 auto;
  padding: 20px 20px;
}

#contact .info-left {
  width: 100%;
  height: 100%;
}

#about .info-left .map {
  position: relative;
  width: 45%;
  border-radius: 10px;
}

#contact .info-right {
  width: 100%;
}

#contact .info-right h1 {
  font-size: 2.2rem;
}

#about .info-right p {
  margin-bottom: 20px;
}

#about .info-right a {
  position: relative;
  width: 35%;
  border-radius: 10px;
}
/* End Contact Section */


/* Footer Section */
#footer {
  background-image: linear-gradient(80deg, #29323c 0%, #485563 100%);
}

#footer .footer {
  min-height: 120px;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
}

#footer .footer {
  color: white;
}


#footer .footer h2 {
  color: white;
  font-weight: bold;
  font-size: 26px;
}

#footer .social-icon .logo {
  margin: auto;
  align-items: center;
}

#footer .social-item {
  display: inline-block;
  padding: 5%;
}

/* End Footer Section */



/* Keyframes */
@keyframes text_reveal_box {
  50% {
   width: 100%;
   left: 0;
   }

  100% {
   width: 0;
   left: 100%;
  }  
}

@keyframes text_reveal {
  100% {
    color: white;
  }
}

@keyframes text_reveal_name {
  100% {
    color: crimson;
    font-weight: 500px;
  }
}
/* End Keyframes */
