:root {
  --primary: #3b82f6;
  --bg: #010101;
  --box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.1);
  --border: 0.1rem solid rgba(255, 255, 255, 0.2);
  --white: #fff;
  --bg-card: rgba(255, 255, 255, 0.1);
  --gray: #808080;
  --header-height: 3.5rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* About */
.about {
  padding: 13rem 0 7%;
  overflow: hidden;
}

.about .container {
  display: flex;
}

.about .box {
  background-color: var(--primary);
  width: 100%;
  height: 40rem;
  margin-right: 2rem;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  /* border-radius: 1rem; */
}

.about .welcome {
  color: var(--primary);
  font-size: 1.6rem;
}

.about h2 {
  font-size: 2rem;
  text-align: justify;
}

.about .container .row {
  display: flex;
  gap: 2rem;
  /* background-color: aliceblue; */
}

.about .container .box {
  flex: 1 1 120rem;
  align-items: flex-start;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .container .row .about-img {
  position: relative;
  border-radius: 2rem;
  width: 100%;
  height: 40rem;
  background-image: url("../img/hihi.jfif");
  background-position: bottom;
  background-size: cover;
  box-shadow: 0px 50px 70px rgba(0, 0, 0, 0.3),
      0px 10px 10px rgba(0, 0, 0, 0.1);
}

#image {
  background-image: url("../img/aldeoz.jpg");

}

.about .container .row .about-img::after {
  content: "";
  background-image: inherit;
  width: inherit;
  height: 20%;
  position: absolute;
  bottom: -20.5%;
  border-radius: 2rem;
  transform: scaleY(-1);
  background-position: bottom;
  background-size: cover;
  opacity: 0.3;
}

.about .container .row .about-img::before {
  content: "";
  width: inherit;
  height: 22%;
  position: absolute;
  bottom: -22%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg));
  z-index: 1;
}

.about .container .row .content {
  flex: 1 1 45rem;
  padding: 0 12rem 0 3rem;
}

.about .container .row .content p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding: 1rem 0;
  text-align: justify;
}

.about .container .row .content .logo {
  /* background-color: aqua; */
  display: flex;
  align-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.about .container .row .content .logo .logo-img {
  position: relative;
  width: 100%;
  height: 6rem;
  /* background-image: url("../img/logo.png"); */
  background-color: #3b82f6;
  background-position: bottom;
  background-size: cover;
  border-radius: 0.4rem;
  box-shadow: 0px 50px 70px rgba(0, 0, 0, 0.3),
      0px 10px 10px rgba(0, 0, 0, 0.1);
}

.about .container .row .content .logo .logo-img::after {
  content: "";
  /* background-image: inherit; */
  background-color: inherit;
  width: inherit;
  height: 40%;
  position: absolute;
  bottom: -41%;
  border-radius: 0.4rem;
  transform: scaleY(-1);
  background-position: bottom;
  background-size: cover;
  opacity: 0.5;
}

.about .container .row .content .logo .logo-img::before {
  content: "";
  width: inherit;
  height: 42%;
  position: absolute;
  bottom: -42%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg));
  z-index: 1;
}

.about .container .row .content .logo p {
  font-size: 1.5rem;
  align-items: center;
  align-content: center;
  padding-bottom: 0;
}

/* End About */

/* Media Queries */
/* Laptop (max-width: 1366px) */
@media screen and (max-width: 1366px) {
  html {
      font-size: 75%;
  }

  /* about */
  .about .container .row .content {
      flex: 1 1 45rem;
      padding: 0 10rem 0 2rem;
  }

  .about .container .row .about-img {
      height: 40rem;
      position: relative;
      margin: 0 auto;
  }

  .about .container .row .about-img::after,
  .about .container .row .about-img::before {
      left: 0;
      right: 0;
      margin: 0 auto;
  }

  .job-details .details {
      width: 70%;
  }
}

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  html {
      font-size: 70%;
  }

  .about .row {
      flex-wrap: wrap;
  }

  .about .container .row .about-img {
      height: 40rem;
      position: relative;
      margin: 0 8rem 0 0;
  }

  .about .container .row .content {
      flex: 1 1 45rem;
      padding: 6rem 8rem 0 1.5rem;
  }
}

/* Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {
  html {
      font-size: 62.5%;
  }

  .about .container .row {
      display: flex;
      flex-wrap: wrap;
  }

  .about .container .box {
      height: 60rem;
      margin-top: 2rem;
  }

  .about .container .row .content {
      width: 100%;
      padding: 0;
      margin: 0;
  }

  .about .container .row .content p {
      font-size: 1.6rem;
      padding-right: 4rem;
  }

  .about .container .row .content .welcome {
      margin-top: 10rem;
      font-size: 1.6rem;
  }

  .about .container .row .about-img {
      height: 60rem;
      width: 100%;
      position: relative;
      margin: 2rem auto;
  }

  .about .container .row .about-img::after,
  .about .container .row .about-img::before {
      left: 0;
      right: 0;
      margin: 0 auto;
  }

  .about .container .row .about-img::after {
      height: 11%;
      bottom: -12%;
  }

  .about .container .row .about-img::before {
      height: 12%;
      bottom: -12%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg));
      z-index: 1;
  }

  .job-details .details {
      width: 80%;
  }
}

/* Mobile (max-width: 450px) */
@media screen and (max-width: 450px) {
  html {
      font-size: 55%;
  }

  /* About */
  .about .container .row {
      flex-wrap: wrap;
  }

  .about .container .box {
      display: none;
  }

  .about .container .row .content {
      padding: 2rem;
  }

  .about .container .row .content .welcome {
      font-size: 1.6rem;
      margin-top: 2rem;
  }

  .about .container .row .content p {
      font-size: 1.4rem;
      padding-right: 0;
  }

  .about .container .row .about-img {
      width: 100%;
      height: 45rem;
      position: relative;
      margin: 2rem auto;
  }

  .about .container .row .about-img::after,
  .about .container .row .about-img::before {
      left: 0;
      right: 0;
      margin: 0 auto;
  }

  .about .container .row .about-img::after {
      height: 15%;
      bottom: -16%;
      border-radius: 2rem;
  }

  .about .container .row .about-img::before {
      height: 17%;
      bottom: -17%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg));
      z-index: 1;
  }

  .job-details .details {
      width: 90%;
  }
}