:root {
  overflow-x: hidden;
}
body, html {
    height: 100%;
}


.container-one {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 700px;
  margin: auto;
  margin-top: 100px;
}


.break-line {
  border-bottom: solid black 1px;
  width: 80%;
  margin: auto;
  animation: progress-bar;
  animation-timeline: view();
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.container-one-inner {
  display: inline;
  background-color: white;
  width: 50%;
  text-align: flex-start;
  font-family: Georgia, sans-serif;
  margin-left: 150px;
}

.container-one-img {
  width: 70%;
  height: auto;
  margin-left: 200px;
}

.container-one-text {
  letter-spacing: 0.1px;
  line-height: 25px;
}

.efficiency-div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  height: fit-content;
  padding-bottom: 50px;
  padding-top: 50px;
  background-color: whitesmoke;
  border-radius: 25px;
}

.efficiency-div-img {
  width: 40%;
  height: auto;
  margin-left: 50px;
  border-radius: 25px;
  animation: slide-in-left ease-in-out;
  animation-timeline: view();
  animation-range: 0% 50%;
}

.efficiency-div-why {
  display: inline;
  width: 40%;
  height:fit-content;
  text-align: flex-start;
  font-family: Georgia, sans-serif;
  margin-left: 50px;
  padding-bottom: 50px;
  border-radius: 10px;
}
.efficiency-div-why-content{
  display: flex;
  background-color: white;
  width: 80%;
  height: 150px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
}

.efficiency-div-why-img {
  height: 70%;
  width: 20%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
  object-fit: cover;
  border-radius: 15px;
}

.efficiency-div-why-txt {
  margin-left: 50px;
  display: inline;
  text-align: flex-start;
  padding-right: 100px;
}

.container-two {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: fit-content;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.container-two-inner {
  display: inline;
  background-color: white;
  width: 50%;
  text-align: flex-start;
  font-family: Georgia, sans-serif;
  margin-left: 150px;
  max-width: 50%;
}

.container-two-img {
  width: 95%;
  height: auto;
  margin-left: 100px;
}

.container-two-text {
  letter-spacing: 0.1px;
  line-height: 25px;
}


@keyframes progress-bar {
  from {width: 30%}
  to {width: 80%}
  }

@keyframes slide-in-left {
  from {opacity: 1; transform: translateX(-100px)}
  to {opacity: 1; transform: translateX(0px)}
}

@keyframes slide-in-right {
  from{transform: translateX(100px)}
  to {transform: translateX(0px)}
}

.animation-slide-right {
  animation: slide-in-right ease-in-out;
  animation-timeline: view();
  animation-range: 0 30%;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 100px;       /* smaller on phones */
    margin-top: 20px;
    left: 15%;
  }
  .container-one {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
  .container-one-inner {
    text-align: center;
    margin-left: auto;
    margin-right:auto;
    width: 90%;
  }
  .container-one-img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .efficiency-div {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .efficiency-div-img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .efficiency-div-why {
    display: inline;
    width: 100%;
    height:auto;
    text-align: flex-start;
    font-family: Georgia, sans-serif;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .efficiency-div-why-img {
    height: 30%;
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
    object-fit: cover;
    border-radius: 15px;
  }

  .efficiency-div-why-txt {
    margin-top: 20px;
    margin-left: 20px;
    display: inline;
    text-align: flex-start;
    padding-right: 0px;
    font-size: 12px;
  }
  .container-two {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  }
  .container-two-inner {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 80%;
  text-align: center;
  font-family: Georgia, sans-serif;
  margin-left:auto;
  margin-right: auto;
  max-width: 100%;
}

.container-two-img {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.container-two-text {
  letter-spacing: 0.1px;
  line-height: 25px;
}

}