/* Import Place */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Variables */

:root {
  /* Colors */
  --p-color: #ff7a00;
  --s-color: #1c1c1c;
  --a-color: #f5f5f5;
  --text-white: #ffffff;
  --text-dark: #222222;
  --h-color: #007bff;
  /* --h-color: cyan; */
  /* --h-color: #0077b6; */

  /* Transition */
  --transition: all 0.3s ease;

  /* Animation */
  --appear-right: appearRight 0.6s ease forwards;
  --appear-left: appearLeft 0.6s ease forwards;
  --appear-top: appearTop 0.6s ease forwards;
  --appear-bottom: appearBottom 0.6s ease forwards;
  --line: line 0.6s ease forwards;
  --slide-up: slideUp 0.6s ease forwards;

  --show: show linear;
}

/* General Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: var(--text-white);
}

h1 {
  font-size: 4rem;
  letter-spacing: -2px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

a {
  font-size: 1.5rem;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  height: 100dvh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(Images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  background-position: center;
  animation: zoom 10s ease-in-out infinite alternate;
  z-index: -1;
  overflow-x: hidden;
}

nav {
  width: 100%;
  display: flex;
  height: 7rem;
  padding: 0 5%;
  align-items: center;
  justify-content: space-between;
  background: rgba(60, 59, 59, 0.196);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: fixed;
  top: env(safe-area-inset-top);
  z-index: 999;
  animation: var(--appear-bottom);
  animation-duration: 0.6s;
}

nav .logo img {
  height: 70px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul a {
  color: var(--text-white);
  transition: var(--transition);
}

nav ul a:hover {
  color: var(--p-color);
  transition: var(--transition);
}

.hamburger {
  position: absolute;
  height: fit-content;
  padding: 30px 0;
  left: 0;
  top: 7rem;
  width: 100%;
  background: rgb(22, 22, 22);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  overflow-x: hidden;
}

.menu {
  color: white;
  font-size: 4rem;
  animation: var(--appear-bottom);
  cursor: pointer;
  white-space: nowrap;
}

.menu-links {
  padding: 15px 0;
  text-align: center;
  width: 100%;
  transition: var(--transition);
  color: var(--text-white);
}

.menu-links:hover {
  background-color: rgb(33, 33, 33);
  transition: var(--transition);
}

.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.button-container {
  display: flex;
  gap: 30px;
}

/* Reusables */

.hide {
  display: none;
}

.btn {
  padding: 15px 30px;
  border-radius: 10px;
  transition: var(--transition);
}

.btn:hover {
  transition: var(--transition);
}

.p-btn {
  background-color: var(--p-color);
  color: white;
  transition: var(--transition);
}

.p-btn:hover {
  background-color: #c66001;
  transition: var(--transition);
}

.s-btn {
  background-color: var(--s-color);
  color: var(--text-white);
  transition: var(--transition);
}

.s-btn:hover {
  background-color: #353333;
  transition: var(--transition);
}

.line {
  width: 0px;
  height: 5px;
  background-color: var(--p-color);
  margin-bottom: 0.5rem;
  opacity: 0;
}

.line.show {
  animation: var(--line);
}

/* SECTIONS */

/* Hero Section */

.hero {
  height: 100svh;
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text-white);
  font-size: 4rem;
  animation: var(--slide-up);
  animation-duration: 0.6s;
}

.line-break-2 {
  display: block;
}

.hero p {
  margin-bottom: 3rem;
  color: var(--text-white);
  font-size: 1.8rem;
  animation: var(--slide-up);
  animation-duration: 0.7s;
}

.hero-btn {
  animation: var(--slide-up);
  animation-duration: 0.8s;
}

/* About Section */

#about {
  padding: 200px 0;
  display: flex;
  gap: 5%;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.about-img {
  width: 50%;
}

#about h2 {
  color: var(--h-color);
  margin-bottom: 40px;
}

#about p {
  margin-bottom: 40px;
  font-size: 1.6rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features div {
  display: flex;
  gap: 20px;
  justify-content: left;
  align-items: center;
  font-size: 1.4rem;
}

.icon {
  height: 4rem;
  width: 4rem;
  border-radius: 5px;
}

/* Service Section */

#services {
  background-color: var(--s-color);
  padding: 200px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#services h2 {
  color: var(--h-color);
  margin-bottom: 30px;
}

#services > p {
  color: var(--a-color);
  margin-bottom: 100px;
  font-size: 1.6rem;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 40px;
  grid-template-rows: auto auto;
}

.card {
  background: radial-gradient(circle, #a1a1a1, #2d2d2d);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px 5%;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  color: var(--text-dark);
  transition: var(--transition);
}

.cardBlock:hover > .card,
.cardBlock:active > .card {
  box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, 0.089);
  translate: 0px -20px;
}

.card img {
  width: 7rem;
  height: 7rem;
  border-radius: 30px;

  transition: var(--transition);
}

.card:hover img {
  border-radius: 0;
  transform: scale(102%);
  transition: var(--transition);
}

.card h3 {
  color: var(--s-color);
  font-weight: 600;
}

.card p {
  color: var(--s-color);
  font-size: 1.5rem;
}

#noResults {
  display: none;
  margin-top: 5rem;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  text-align: center;
  color: var(--text-dark);
  grid-column: 1 / 3;
}

/* HSE Sections */

#hse {
  padding: 200px 5%;
  display: flex;
  gap: 50px;
  background-color: #f5f5f5;
  align-items: center;
  border-top: 15px solid var(--p-color);
}

.hse-contents {
  color: var(--text-dark);
  font-size: 1.6rem;
}

.hse-contents h2 {
  margin-bottom: 80px;
  font-size: 2rem;
  color: var(--h-color);
}

.hse-contents > p {
  margin-bottom: 80px;
}

.hse-contents .records {
  width: 100%;
  display: flex;
  font-size: 1.5rem;
  justify-content: space-around;
}

.orange {
  color: var(--p-color);
  text-align: center;
  margin-bottom: 20px;
}

.hse-img {
  width: 50%;
}

/* Careers Section */

#careers {
  padding: 200px 5%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.career-img {
  width: 50%;
}

.career-contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.career-contents h2 {
  color: var(--text-dark);
  color: var(--h-color);
}

.career-contents p {
  font-size: 1.6rem;
}

.arrow-btn {
  align-self: flex-start;
  transition: var(--transition);
}

.arrow {
  display: inline-block;
}

.arrow-btn:hover .arrow {
  transform: translateX(15px);
  transition: var(--transition);
}

/* Contact Section */

#contact {
  padding: 100px 5%;
  background: linear-gradient(to bottom right, #ff7a00, #653101);
  border-top: 15px solid var(--s-color);
}

.white-line {
  background-color: white;
  margin: 20px auto;
}

#contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

#contact > p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 80px;
  text-decoration: none;
  color: var(--text-white);
}

.contact-contents {
  display: flex;
  gap: 50px;
}

.contact-contents iframe {
  width: 50%;
  height: 35rem;
}

.info {
  width: 50%;
}

.info form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info form input,
.info form textarea,
#selectedWork {
  width: 100%;
  padding: 15px 25px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.6rem;
  color: var(--text-white);
  outline: none;
}

#selectedWork {
  background: #ffffff;
  color: var(--text-dark);
}

.info form input::placeholder,
.info form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#message {
  height: 200px;
  font-family: "Roboto", sans-serif;
  resize: none;
}

.submit {
  outline: none;
  border: none;
  font-size: 1.6rem;
  color: var(--p-color);
  text-align: left;
  transition: var(--transition);
  background-color: var(--text-white);
}

.submit:hover {
  background-color: #c5c4c4;
  transition: var(--transition);
}

.info div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.info p {
  font-size: 1.6rem;
  color: var(--text-white);
}

.info img {
  height: 30px;
  color: white;
}

.result-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c853;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 999;
}
.result-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------ OPENINGS PAGE ------------------ */

/* Openings Nav */

.openings {
  height: 80dvh;
  padding-top: 8rem;
}

.openings::before {
  background-image: url(Images/Openings.jpg);
}

.nav-normal {
  top: 0;
}

/* Opening Hero Section */

.opening-hero {
  height: calc(80dvh - 8rem);
  width: 40%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hero h1 {
  color: var(--p-color);
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.opening-hero h2 {
  margin-bottom: 15px;
}

.opening-hero p {
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: var(--text-white);
}

/* Job Openings */

#job-openings {
  width: 100%;
  background-color: rgb(238, 237, 237);
}

.filter-container {
  width: 100%;
  padding: 20px 5%;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 7rem;
  z-index: 998;
}

.filters {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.search {
  width: 70%;
  display: flex;
  align-items: center;
  border: 1px solid #99a1afc9;
  padding: 2px;
  padding-right: 1rem;
}

.search label {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search img {
  height: 2.5rem;
  background-color: #fff;
  padding: 3px;
}

.search input {
  height: 3rem;
  padding: 3px;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.5rem;
  background-color: inherit;
}

.search::placeholder {
  color: #99a1afc9;
  font-size: 1.5rem;
}

.types {
  font-family: "Roboto", sans-serif;
  width: 27%;
}

.native-select {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.custom-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.6rem 1rem;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
}

.select-value {
  font-size: 1.5rem;
  color: #222;
}
.select-arrow {
  margin-left: 8px;
  font-size: 2rem;
  color: #666;
}

.options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 275px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 50;
  padding: 6px 0;
  margin: 0;
  list-style: none;
}

.options li {
  padding: 10px 14px;
  font-size: 1.5rem;
  color: #222;
  cursor: pointer;
}

.options li:hover,
.options li[aria-selected="true"],
.options li.focused {
  background: #f6f6f6;
}

.custom-select:focus {
  outline-offset: 2px;
}

.clearFilter {
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--p-color);
  align-self: flex-start;
}

.clearFilter:hover {
  color: #c66001;
}

.job-card-container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 50px 5%;
}

.job-cards {
  background-color: #fff;
  display: flex;
  align-items: space-between;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem 1rem;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.job-cards:hover {
  translate: 0 -10px;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.3);
}

.job-cards:hover > img {
  transform: scale(105%);
}

.job-cards > img {
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  transition: var(--transition);
}

.job-cards h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 600;
}

.type-text {
  height: 1.4rem;
  color: #666;
  display: flex;
  align-items: flex-end;
}

.type-text span {
  font-size: 1.4rem;
  padding-left: 0.5rem;
  display: inline-block;
  cursor: default;
}

.job-cards p {
  font-size: 1.4rem;
}

.tags {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.tags span {
  padding: 5px 10px;
  border: 1px solid #666666cd;
  font-size: 1rem;
  display: inline-block;
}

.job-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  width: 100%;
}

.apply {
  padding: 10px 30px;
  cursor: default;
  display: inline-block;
}

.job-details {
  color: var(--p-color);
  cursor: default;
}

.job-details:hover {
  color: #c66001;
}

/* Feature Section */

#feature-section {
  display: flex;
  margin: 20rem 5%;
  justify-items: flex-start;
  gap: 2rem;
  font-size: 1.5rem;
}

#feature-section h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

#feature-section p {
  margin-bottom: 1.5rem;
}

.features-list {
  width: 50%;
}

.feature {
  display: flex;
}

.tick {
  font-weight: 700;
  color: var(--p-color);
  margin-right: 1rem;
}

.faq {
  width: 50%;
}

.faq h3 {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

/* Job Detail Window */

.popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Job Apply PopUp */

.apply-job {
  width: 30%;
  background-color: #fff;
  padding: 0 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}

.apply-job h2 {
  color: var(--text-dark);
  font-size: 1.7rem;
  font-weight: 500;
}

.apply-job h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.apply-job .job-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
}

#job-contact {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}

#job-contact > input {
  padding: 0.5rem;
  font-size: 1.2rem;
  width: 100%;
  display: inline-block;
  margin: 0.5rem 0;
}

#job-contact input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #f5821f;
  vertical-align: middle;
  margin-right: 10px;
  padding: 1px;
}

#job-contact input[type="checkbox"] ~ span {
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  user-select: none;
  margin: 0.5rem 0;
}

#job-contact #cv {
  display: none;
}

#job-contact #cv-label {
  margin: 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px dashed black;
  text-align: center;
}

#job-contact .upload-box {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.2s;
}

#job-contact .upload-box:hover {
  border-color: var(--p-color);
  background-color: #fff7ed;
  color: black;
}

.upload-box.dragging {
  border-color: var(--p-color);
  background-color: #fff7ed;
  background-color: #ff7a00;
  color: black;
}

#job-contact .upload-box.active {
  border-color: var(--p-color);
  background-color: #fff7ed;
  color: #000;
}

.upload-box #fileName,
.upload-box #fileSize {
  font-size: 1rem;
  margin: 5px;
  display: inline-block;
  color: #4b5563;
}

#job-contact #removeFile {
  margin-top: 5px;

  color: #9ca3af;
  text-decoration: underline;
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s;
}

#job-contact #removeFile:hover {
  cursor: pointer;
  color: #ef4444;
  text-decoration: none;
}

#job-contact .upload-box:active {
  background-color: #fff7ed;
  color: black;
}

.cover-note {
  resize: none;
  outline: none;
  padding: 0.5rem;
  font-size: 1.2rem;
  height: 5rem;
  font-family: "Roboto", sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkbox-line {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkbox-line input {
  width: 1rem;
}

#send-btn {
  padding: 0.7rem;
  font-size: 1.3rem;
  background-color: var(--p-color);
  color: var(--text-white);
  outline: none;
  border: none;
}

#send-btn:hover {
  background-color: #c66001;
}

/* Job Detail PopUp */

.job-detail {
  width: 60%;
  height: 80%;
  position: relative;
  background-color: white;
  overflow: scroll;
  padding: 0 2rem 2rem 2rem;
  font-size: 1.5rem;
}

.job-detail h2 {
  color: var(--text-dark);

  font-size: 2rem;
  font-weight: 600;
}

.job-detail .type-text {
  border-bottom: 1px solid #666;
  padding-bottom: 2rem;
}

.summary {
  margin: 2rem 0;
}

.job-detail h3 {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.job-contents {
  margin-bottom: 3rem;
}

.job-detail div ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
}

.point {
  color: var(--p-color);
  display: inline-block;
  left: 0;
  top: 0;
  height: 100%;
  padding: 2px 5px;
  margin-right: 0.5rem;
}

.tick-points div {
  display: flex;
}

.tick-points .tick {
  padding-left: 1.5rem;
}

.tick-points div p {
  margin-bottom: 1rem;
}

.job-footer {
  padding: 2rem;
  background-color: rgb(238, 237, 237);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.job-detail .apply {
  width: 100%;
  text-align: center;
}

.job-detail .job-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 2rem;
}

.job-detail .job-head {
  position: sticky;
  background-color: #fff;
  padding-top: 2rem;
  top: 0;
  left: 0;
  z-index: 997;
}

.cancel {
  font-size: 3rem;
  cursor: pointer;
  color: #666666cd;
  transition: var(--transition);
}

.cancel:hover {
  color: #000;
}

/* GO TO TOP */

.go-to-top {
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
}

/* Footer Section */

footer {
  padding: 100px 5% 50px 5%;
  background-color: var(--s-color);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  color: var(--text-white);
  gap: 5%;
  margin-bottom: 100px;
}

.footer > div {
  width: 30%;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 1.5rem;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-links a {
  color: white;
  margin-bottom: 10px;
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--p-color);
  transition: var(--transition);
}

.footer-contact h3 {
  margin-bottom: 20px;
  font-weight: normal;
}

.social-media-icons {
  display: flex;
  gap: 10px;
}

.techtps-info a {
  color: var(--text-white);
  text-decoration: none;
}

.social-media-icons img {
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  transition: var(--transition);
}

.social-media-icons img:hover {
  opacity: 0.7;
  transform: scale(105%);
  transition: var(--transition);
}

.copyright {
  color: var(--text-white);
  font-size: 1.5rem;
  text-align: center;
  margin-top: 50px;
}

/* OVERFLOW fixing */

#home,
#about,
#services,
#hse,
#careers,
#contact,
#opening-home,
#job-card-container,
#feature-section {
  overflow-x: hidden;
}

/* Animations */

.right {
  opacity: 0;
  transform: translateX(100px);
}

.left {
  opacity: 0;
  transform: translateX(-100px);
}

.top {
  opacity: 0;
  transform: translateY(100px);
}

.appear-top {
  opacity: 0;
  transform: translateY(100px);
}

.appear-left {
  animation: var(--appear-left);
}

.appear-right {
  animation: var(--appear-right);
}

.slide-up {
  animation: var(--slide-up);
}

.appear-top {
  animation: var(--appear-top);
}

/* Animation Workplace */

@keyframes zoom {
  from {
    background-size: 110%;
  }
  to {
    background-size: 120%;
  }
}
@keyframes appearRight {
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes appearLeft {
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes appearTop {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes appearBottom {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes line {
  to {
    opacity: 1;
    width: 100px;
  }
}
