* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  font-family: 'NimbusSanL';
}

nav {
  padding: 3vw 8vw;

  display: flex;
  justify-content: space-between;
}

nav a {
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
}

.navLeft {
  display: flex;
  gap: 3vw;
}

#home {
  width: 100%;
}

#hero {
  padding: 0 8vw;
  width: 100%;
  margin-top: 25vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sustainability {
  width: 18vw;
}
.sustainability h2 {
  font-size: 14px;
  font-weight: 400;
}

.sustainability h2:nth-child(2) {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1px;
}
.sustainability p {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 4;
  line-height: 1.4;
  color: #9b9a9a;
  text-transform: capitalize;
}

.susimgWrapper {
  height: 15vw;
  width: 60%;
  overflow: hidden;
}

.susimgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ephemeral {
  width: 28vw;
}

.ephemeral .imgdiv {
  height: 80vh;
  width: 100%;
  position: relative;
}

.ephemeral .imgdiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ephemeral .imgdiv .headings {
  position: absolute;
  top: -16%;
  left: -15%;
}

.ephemeral .imgdiv .headings h1 {
  text-transform: capitalize;
  font-size: 5vw;
  line-height: 0.8;
  font-weight: 500;
}
.ephemeralpara p {
  width: 50%;
  text-transform: capitalize;
  font-size: 1.4vw;
  font-weight: 500;
  margin-top: 4vh;
}

.visit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit i {
  padding: 8px;
  border: 1px solid #9b9a9a;
  border-radius: 50%;
  font-size: 20px;
  color: #9b9a9a;
}

.visit p {
  color: #9b9a9a;
  font-size: 14px;
  letter-spacing: -1;
}

#motive {
  margin-top: 15vh;
  padding: 0 10vw;
  margin-bottom: 10vh;
}

#motive h2 {
  text-transform: uppercase;
  font-size: 1.3vw;
  color: #707070;
  font-weight: 400;
}
.motivepara {
  display: flex;
  justify-content: end;
}

.motivepara p {
  font-size: 2vw;
  width: 90%;
  text-align: right;
  font-weight: 600;
  line-height: 2;
}

.motivepara .span-one,
.motivepara .span-two,
.motivepara .span-three {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 4px;
  vertical-align: middle;
}

.span-one {
  background-position: 0 60%;
  border-radius: 40px;
  width: 110px;
  height: 60px;
  background-image: url('./images/bluegirl.jpg'); /* sustainability */
}

.span-two {
  background-position: 0 50%;
  border-radius: 40px;
  width: 130px;
  height: 70px;
  background-image: url('./images/shaljam.jpg'); /* eco-friendly */
}

.span-three {
  background-position: 0 50%;
  border-radius: 40px;
  width: 80px;
  height: 60px;
  background-image: url('./images/grass.jpg'); /* carbon */
}

#mission {
  width: 100%;
  gap: 10px;
  row-gap: 5vw;
  padding: 0 10vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100vh 80vh;
}

.text-container h3 {
  margin-top: 15px;
  font-size: 2vw;
  line-height: 1;
}
.text-container p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.2;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mission .first {
  flex-direction: column;
  align-items: center;
  display: flex;
}

#mission .first .img-container {
  height: 60%;
  width: 50%;
}
#mission .first .text-container {
  width: 50%;
}
#mission .second {
  display: flex;
  align-items: end;
  flex-direction: column;
  text-align: right;
}
#mission .second .img-container {
  height: 85%;
  width: 65%;
}
#mission .second .text-container {
  width: 40%;
}
#mission .third {
  display: flex;
  grid-column: 1/3;
  grid-row: 2;
  gap: 3vw;
  align-items: center;
}

#mission .third .img-container {
  height: 100%;
  width: 75%;
  background-color: red;
}
#mission .third .text-container {
  text-align: end;
  width: 25%;
}

#video {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}
video {
  opacity: 0;
}
#video .text h2 {
  font-size: 2vw;
  margin-bottom: 5px;
}
#video .text button {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(to bottom left, rgb(190, 189, 189), #555);
}

#video .text {
  background-color: #fff;
  padding: 15px 25px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
