:root {
  --primary: #ffc704;
  --secondary: #0f0f0f;
  --grey: #e6e6e6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: max(81.5%, 0.845vw);
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
}

nav {
  padding: 35px 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav img {
  width: 120px;
  height: 120px;
}
nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-transform: capitalize;
  text-align: center;
  gap: 61px;
}
nav ul li {
  font-size: 24px;
  font-weight: 400;
  font-family: Plus Jakarta Sans;
}
nav button {
  padding: 16px 32px;
  border-radius: 50px;
  text-transform: capitalize;
  background-color: var(--primary);
  font-weight: bold;
  font-size: 20px;
  border: none;
}

@media (max-width: 1200px) {
  nav {
    padding: 25px 80px;
  }
  nav img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  nav ul {
    gap: 40px;
  }
  nav ul li {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  nav {
    flex-direction: column;
  }
  nav ul {
    margin-bottom: 15px;
  }
  nav button {
    padding: 13px 28px;
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  nav {
    padding: 25px 30px;
  }
  nav ul {
    gap: 30px;
  }
  nav ul li {
    font-size: 20px;
  }
  nav button {
    display: none;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 25px 15px;
  }
  nav ul {
    gap: 15px;
  }
  nav ul li {
    font-size: 15px;
    text-wrap: pretty;
  }
}

.hero {
  margin-bottom: 180px;
  padding: 35px 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.hero-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 99;
  align-items: flex-start;
}

.hero h1 {
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 60px;
  text-wrap: nowrap;
  line-height: 30px;
}
.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: left;
}

.hero button {
  font-size: 24px;
  font-weight: 500;
  line-height: 30.24px;
  text-align: left;
  padding: 16px 121px;
  background-color: var(--primary);
  border-radius: 50px;
  border: none;
}

.hero .hero-img {
  width: 50%;
}
.hero-img img {
  max-width: 100%;
}
@media (max-width: 1600px) {
  .hero {
    flex-direction: column;
  }
  .hero-info {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding: 25px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-info {
    width: 100%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    text-align: justify;
  }
  .hero .hero-img {
    width: 50%;
    align-self: flex-end;
  }
}
@media (max-width: 800px) {
  .hero {
    margin-top: 20px;
  }
  .hero-info {
    gap: 35px;
    align-items: center !important;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 12px;
  }
  .hero p {
    font-size: 20px;
  }
  .hero button {
    font-size: 20px;
    padding: 16px 80px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 25px 15px;
  }
  .hero-info {
    gap: 30px;
    align-items: center !important;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 18px;
    text-align: center;
  }
  .hero .hero-img {
    width: 80%;
    align-self: flex-end;
    margin-top: 10px;
  }
}
@media (max-width: 400px) {
  .hero-info {
    gap: 25px;
  }
  .hero h1 {
    font-size: 22px;
  }
}

.about {
  background-color: var(--primary);
  border-radius: 32px;
  margin-bottom: 180px;
  display: flex;
  flex-direction: row;
  margin: 0 120px 180px;
}

.about > div {
  padding: 130px 80px;
  width: 50%;
}
.about div img {
  max-width: 100%;
}
.about h1 {
  margin-bottom: 40px;
  font-family: Plus Jakarta Sans;
  font-size: 60px;
  font-weight: 800;
  line-height: 75.6px;
  text-align: left;
  text-transform: uppercase;
}
.about p {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: justify;
}

@media (max-width: 1600px) {
  .about {
    flex-direction: column;
  }
  .about > div {
    padding: 130px 80px;
    width: 100%;
  }
  .about h1 {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .about {
    flex-direction: column;
    margin: 0 25px 80px;
  }
  .about > div {
    padding: 70px 40px;
  }
  .about h1 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 800px) {
  .about h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .about p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .about h1 {
    font-size: 26px;
  }
  .about p {
    font-size: 15px;
    line-height: 25px;
    text-align: left;
  }
}

.values {
  margin-bottom: 180px;
}
.values h1 {
  font-family: Plus Jakarta Sans;
  font-size: 60px;
  font-weight: 800;
  line-height: 75.6px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 120px;
}
.values .values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  padding: 35px 120px;
  gap: 20px;
  position: relative;
}

.values .values-container .value {
  background-color: var(--grey);
  border-radius: 32px;
  padding: 50px 40px;
  z-index: 99;
  height: 260px;
}
.values .values-container .value h2 {
  font-family: Plus Jakarta Sans;
  font-size: 40px;
  font-weight: 700;
  line-height: 50.4px;
  text-align: left;
  color: var(--primary);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.values .values-container .value p {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: left;
}
.values .values-container .value-img {
  grid-column: 3;
  grid-row: span 2;
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  height: 100%;
}

.value-img img {
  height: 100%;
}
.value:nth-child(1) {
  width: 140%;
}
.value:nth-child(2) {
  width: 109%;
  margin-left: 200px;
}
.value:nth-child(3) {
  grid-column: span 2;
}
.value:nth-child(4) {
  width: 115%;
}
.value:nth-child(5) {
  width: 86%;
  margin-left: 80px;
}

@media (max-width: 1600px) {
  .values .values-container {
    padding: 35px 50px;
    grid-template-columns: repeat(2, 1fr);
  }
  .values .values-container .value {
    padding: 40px 40px;
    height: auto;
  }
  .values .values-container .value h2 {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .values .values-container .value-img {
    display: none;
  }
  .value:nth-child(1) {
    width: unset;
  }
  .value:nth-child(2) {
    width: unset;
    margin-left: unset;
  }

  .value:nth-child(4) {
    width: unset;
  }
  .value:nth-child(5) {
    width: unset;
    margin-left: unset;
  }
}
@media (max-width: 1200px) {
  .values {
    padding: 25px 40px;
  }
  .values h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .values .values-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .value {
    height: auto;
  }
}
@media (max-width: 800px) {
  .values .values-container h2 {
    font-size: 25px;
    line-height: 45px;
  }
  .values .values-container .value p {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .values {
    margin-bottom: 40px;
  }
  .values h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .values .values-container {
    padding: 35px 0;
  }
  .values .values-container .value {
    padding: 16px 15px;
    text-align: center;
  }
  .values .values-container .value h2 {
    font-size: 18px;
    line-height: 30.4px;
  }
  .values .values-container .value p {
    font-size: 15px;
  }
}

.services {
  padding: 35px 120px;
  margin-bottom: 180px;
}
.services .services-info {
  text-align: center;
  margin-bottom: 120px;
}
.services h1 {
  margin-bottom: 40px;
  font-family: Plus Jakarta Sans;
  font-size: 60px;
  font-weight: 800;
  line-height: 75.6px;
  text-align: center;
  text-transform: uppercase;
}
.services p {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: center;
  padding: 0 140px;
}
.services .services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  column-gap: 140px;
  row-gap: 60px;
  margin-top: 120px;
}
.services .service {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.service img {
  max-width: 100%;
}
.service h3 {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 700;
  line-height: 30.24px;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .services {
    padding: 25px 80px;
  }
  .services h1 {
    font-size: 40px;
  }
  .services p {
    text-align: center;
    padding: 0;
  }
  .services .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .services .services-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 25px 15px;
  }
  .services h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .services .services-info {
    margin-bottom: 20px;
  }
  .services p {
    text-align: center;
    padding: 0 10px;
    font-size: 15px;
  }
  .services .services-container {
    margin-top: 40px;
  }
  .service h3 {
    font-size: 20px;
    line-height: 30.24px;
  }
}

.assist {
  padding: 35px 120px;
  margin-bottom: 201px;
}
.assist h1 {
  font-family: Plus Jakarta Sans;
  font-size: 60px;
  font-weight: 800;
  line-height: 75.6px;
  text-align: center;
  margin-bottom: 120px;
}
.assist-container {
  display: flex;
  flex-direction: row;
}
.assist form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.assist form input,
.assist form textarea {
  display: block;
  border: 2px solid black;
  width: 100%;
  padding: 13px 16px 12px;
}
.assist form button {
  margin-left: 50%;
  padding: 16px 97px;
  border-radius: 50px;
  background-color: var(--primary);
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 500;
  line-height: 30.24px;
  text-transform: capitalize;
  border: none;
  text-align: center;
}

@media (max-width: 1600px) {
  .assist .assist-container img {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .assist {
    padding: 25px 80px;
  }
  .assist h1 {
    font-size: 40px;
    margin-bottom: 80px;
  }
  .assist-container {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .assist-container img {
    align-self: center;
    margin-top: 20px;
  }
  .assist form button {
    margin-left: 0%;
  }
}
@media (max-width: 800px) {
  .assist h1 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .assist-container img {
    display: none;
  }
}
@media (max-width: 600px) {
  .assist {
    padding: 25px 15px;
  }
  .assist h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

footer {
  background-color: var(--grey);
  border-radius: 32px 32px 0 0;
  padding: 120px 106px 54px;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
}
.footer-container .footer-logo {
  margin-right: 598px;
  width: 200px;
  height: 200px;
}
.footer-container .footer-logo img {
  max-width: 100%;
  margin: 0 auto;
}
footer .footer-logo p {
  text-wrap: nowrap;
  font-family: Plus Jakarta Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 173px;
}
footer h3 {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 800;
  line-height: 30.24px;
  text-align: left;
  margin-bottom: 40px;
  text-transform: uppercase;
}
footer ul li {
  text-transform: capitalize;
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: left;
  margin-bottom: 15px;
  text-wrap: nowrap;
}
footer .contact div {
  margin-bottom: 24px;
}
footer .contact p {
  font-family: Plus Jakarta Sans;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.24px;
  text-align: left;
}
footer:last-child {
  font-family: Plus Jakarta Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
  margin-top: 94px;
}

@media (max-width: 1600px) {
  .footer-container .footer-logo {
    margin-right: 150px;
  }
  .footer-links {
    display: flex;
    flex-direction: row;
    gap: 73px;
  }
}
@media (max-width: 1200px) {
  footer {
    padding: 100px 80px 30px;
  }
  footer .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  footer h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .footer-container .footer-logo img {
    margin-right: unset;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 20px;
  }
  footer h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  footer ul li {
    font-size: 18px;
    margin-bottom: 8px;
  }
  footer .contact p {
    font-size: 18px;
  }
  footer .contact div {
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 25px 15px;
  }
}
