/** @format */
html, body {
  overflow-x: hidden;
}

section:nth-of-type(even) {
  background-color: #f7f7f7;
}

section#home {
  width: 100%;
  height: auto;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

section#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(165, 162, 162, 0.5),
      rgba(165, 162, 162, 0.5)
    ),
    url("../images/eva/eva-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

section#home .container {
  width: 100%;
  height: 100%;
  display: flex;

  gap: 120px;
}

#home .middle-content {
  flex-grow: 1;
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#home .middle-content h1.title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 60px;
}

#home .middle-content p {
  font-size: 1.25rem;
}

.inner-btn {
  width: fit-content;
  padding: 8px 32px;
  background: var(--inner-primary);
  color: var(--white-color);
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
}

#section2 {
  min-height: auto;
}

#section2 .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

#section2 .container .content {
  color: var(--dark-color);
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#section2 .container .content > div {
  align-items: justify;
  max-width: 550px;
}

#section2 .container .content p {
  margin-bottom: 16px;
}

#section2 .container .content ul {
  margin-left: 24px;
}
#section2 .container .content ul li,
#section2 .container .content .footer-content {
  font-size: 0.875rem;
  font-weight: 300;
}

#section2 .container .content .footer-content{
  color: var(--primary-color);
  font-weight: 600;
}

#section2 .content-img {
  width: 100%;
}

#section3 .left-content,
#section5 .left-content,
#section7 .right-content {
  align-self: flex-start;
}

#section5 .right-content,
#section7 .right-content {
  flex: none;
}

#section6 ul,
#section8 ul {
  color: var(--dark-color);
  margin-left: 24px;
  margin-top: 24px;
}

#section7 .right-content .content-img {
  width: 340px;
}

.footer-img {
  max-width: 100%;
  margin: auto;
}

#section9 .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

#section9 .content {
  width: 100%;
}

#section9 .main-content {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}

#section9 .container ul {
  color: var(--dark-color);
  padding-left: 24px;
}

#section9 .show-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#section9 img {
  width: 100%;
  height: 260px;
}

#section9 .show-images-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}

#section10 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#section10::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-image: url("../images/eva/eva-section10.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media (min-width: 61rem) {
  section#home {
    margin-top: 120px;
    height: calc(100vh - 120px);
  }

  #home .middle-content {
    margin-left: 140px;
    justify-content: center;
  }

  #section2 .content-img {
    width: 565px;
  }

  #section2 .container {
    flex-direction: row;
  }

  #section9 .content {
    width: auto;
  }

  #section9 .main-content,
  #section9 .show-images-bottom {
    flex-direction: row;
  }

  #section9 img {
    width: auto;
  }

  #section10::before {
    width: 50%;
  }
}
