#hero_section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-height: 70vh;
  padding: 0 5%;
  min-height: 500px;
  padding-top: 70px;
  overflow: hidden;
}

body.dark_theme #hero_section {
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #026b6b 0%, #330867 100%);
  background-size: 300% 300%;
  height: 100vh;
  animation: gradient 5s ease infinite;
  -webkit-animation: gradient 5s ease infinite;
}

#hero_section div {
  width: 48%;
}

.left_hero_section h1 {
  color: var(--dark-theme-color);
  font-size: var(--big-font-1);
}

body.dark_theme .left_hero_section h1 {
  color: var(--white);
}

.left_hero_section p {
  font-size: var(--small-font);
  color: var(--text-color-2);
  margin: 1em 0;
}

.right_hero_container {
  display: grid;
  place-items: center;
}

/* !<!-- !AVAILABLE JOBS --> */

.service_main_container {
  flex-direction: column;
  align-items: center;
}

.service_card {
  width: min(1000px, 100%);
  display: grid;
  justify-content: space-between;
  align-items: center;
}

.service_card:hover {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  box-shadow: var(--light-box-shadow);
}

.service_card p {
  line-height: 1.6;
}

/* !JOB APPLICATION FORM */

.job_form_section {
  position: fixed;
  z-index: 4;
  top: -100px;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(101, 99, 99, 0.6);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.job_form_section.active {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

body.dark_theme .job_form_section {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}

body.dark_theme #job_application_form,
body.dark_theme #job_application_form::before {
  border: 1px solid var(--text-color-2);
}

.job_app_header_container {
  display: flex;
  justify-content: space-between;
}

.close_btn {
  height: 40px;
  width: 40px;
  background-color: rgb(230, 226, 226);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

body.dark_theme .close_btn {
  background-color: rgb(72, 72, 72);
}

.close_btn i {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--theme-color);
  margin-top: 7px;
}

.close_btn i:first-child {
  transform: translateY(10px) rotate(45deg);
  -webkit-transform: translateY(10px) rotate(45deg);
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
}

.close_btn i:last-child {
  transform: translateY(0px) rotate(-45deg);
  -webkit-transform: translateY(0px) rotate(-45deg);
  -moz-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  -o-transform: translateY(0px) rotate(-45deg);
}

@media screen and (max-width: 800px) {
  .service_card {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #google-head {
    width: 95%;
  }
}

#google-head {
  position: fixed;
  width: 90%;
  height: 70px;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  margin: auto;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 0 2em;
  box-shadow: var(--dark-box-shadow);
}

#google-head form {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  width: 100%;
}

#google-head form figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

#google-head form figure img {
  height: 25px;
}

#google-head form input {
  width: 100%;
  padding: 2px 12px;
  border-radius: 10px;
  outline: none;
  border: 1px solid var(--theme-color);
  height: 30px;
}
