@import url("https://use.typekit.net/wby3aqm.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
}

/* hero container starts */
.hero_container {
  width: 100%;
  /* height: 100vh; */
  background: url();
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 3.125rem 3.125rem;
}

.hero_container .navbar {
  /* border: 1px solid black; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero_container .navbar .logo img {
  width: 23.125rem;
  height: 5.875rem;
}

.hero_container .navbar .navbar-links {
  display: flex;
  align-items: center;
  gap: 3.35rem;
}

.hero_container .navbar ul li a {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #1e1e1e;
  position: relative;
}

.hero_container .navbar ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #004e89;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.5s;
}

.hero_container .navbar ul li a:hover::after {
  width: 40%;
}

.hero_container .navbar ul li a:hover {
  color: #ff3f4a;
}

.hero_container .navbar ul li .active {
  color: #004e89;
}

/* Toggle-button */
.toggle-button {
  position: absolute;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1rem;
  margin: 15px 30px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

/* Hero Banner */
.hero_banner {
  width: 100%;
  display: flex;
  gap: 3rem;
}

.left_content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.top_desc {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.top_desc h1 {
  font-size: 1.25rem;
}

.top_desc p {
  width: 80%;
  font-size: 1rem;
  line-height: 1.2rem;
}

/* job_openings */
.job_openings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job1 {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.job1:hover {
  background: #f9f6f6;
  border-left: 3px solid #000000;
}

.job1 h4 {
  font-size: 1rem;
  line-height: 1.25rem;
}

.job1 p {
  font-size: 1rem;
  line-height: 1.25rem;
}

.job1 p .line {
  color: #c6c2c2;
  font-size: 1.35rem;
}

.job1 a {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.25rem;
}

.job1 a:hover {
  text-decoration: underline;
}

.right_table {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: #f9f6f6;
  border: 1px solid #000000;
  border-radius: 0.625rem;
  gap: 2rem;
}

.right_table .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #000000;
}

.right_table .title h6 {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.04rem;
}

.right_table form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

.right_table form input {
  width: 100%;
  height: 40px;
  background: #fff;
  outline: none;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
}

.right_table form .policy {
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
  gap: 0.625rem;
}

.right_table form .policy #checkbox {
  width: 18px;
  height: 18px;
  outline: none;
  border: 1px solid #000000;
  background: #fff;
}

.right_table form .policy span {
  font-size: 0.925rem;
}

.right_table form #submit {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  background: #000000;
  cursor: pointer;
  outline: none;
  border: none;
}

.right_table form #submit:hover {
  background: rgb(244, 182, 67);
}

/* hero container ends */
