body {
  margin: 0;
  padding: 0;
  background-color: #fffff1;
  width: 100%;
  overflow-x: hidden;
}
body p {
  margin: 0;
  padding: 0;
}
body h1,
body h2,
body i {
  margin: 0;
  padding: 0;
}
body h4 {
  margin: 0;
}
body i {
  font-size: 48px;
  color: #0a6846;
}

.section1 {
  margin-top: 200px;
}
.section1 img {
  width: 100%;
}

.section2 {
  margin-top: 80px;
}
.section2 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section2 .container h4 {
  text-transform: uppercase;
  font-size: 20px;
}
.section2 .container h3 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 20px;
}
.section2 .container-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section2 .container-bottom .content h5 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 0;
  color: #11322b;
}
.section2 .container-bottom .content p {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  color: #11322b;
}

.section3 {
  padding: 20px 200px;
}
.section3 .content-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
}
.section3 .content-top .content .container {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}
.section3 .content-top .content .container p {
  font-size: 180px;
  font-weight: 600;
}
.section3 .content-top .content .container img {
  width: 30px;
  height: 30px;
}
.section3 .content-top .content h3 {
  font-size: 30px;
}
.section3 .content-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}
.section3 .content-bottom .content-bottom-left,
.section3 .content-bottom .content-bottom-right {
  line-height: 1.5;
}
.section3 .content-bottom .content-bottom-left h4,
.section3 .content-bottom .content-bottom-right h4 {
  color: #0a6846;
  text-transform: uppercase;
}
.section3 .content-bottom .content-bottom-left p,
.section3 .content-bottom .content-bottom-right p {
  color: #11322b;
}
.section3 .content-bottom .content-bottom-right img {
  width: 100%;
}
.section3 .content-bottom .content-bottom-right .item {
  margin-bottom: 20px;
}
.section3 .content-bottom .content-bottom-left img {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  border-radius: 40px;
}

.section4 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  margin: 80px 100px;
}
.section4 .container-left {
  line-height: 1.5;
  width: 45%;
}
.section4 .container-right img {
  width: 100%;
}

.section5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 80px 100px;
}
.section5 .pink {
  background-color: #ffd2d2;
}
.section5 .green {
  background-color: #ebffe2;
}
.section5 .brow {
  background-color: #ffd5bf;
}
.section5 .yellow {
  background-color: #fff6d2;
}
.section5 .container-left,
.section5 .container-right {
  line-height: 1.5;
  width: 45%;
}
.section5 .container-left .item,
.section5 .container-right .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.section5 .container-left .item .item-left,
.section5 .container-right .item .item-left {
  border-radius: 30px;
  padding: 20px;
}
.section5 .container-left .item .item-left p:first-child,
.section5 .container-right .item .item-left p:first-child {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.section5 .container-right .item {
  flex-direction: row-reverse;
}

.section6 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section6 .button-scroll-top {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a6846;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  border: unset;
  cursor: pointer;
}

.section7 {
  margin-top: 80px;
}
.section7 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section7 .container h1 {
  font-size: 48px;
  text-transform: uppercase;
}
.section7 .container p {
  font-size: 20px;
  color: #63bd04;
}
.section7 .apple-container {
  position: relative;
  width: 100%;
}
.section7 .apple-container .animated-apple {
  width: 100%;
}
.section7 .apple-container .apple {
  position: absolute;
  top: 240px;
  right: 0;
  transition: transform 0.6s ease-in-out;
}
.section7 .apple-container:hover .apple {
  animation: orbit 3s ease-in-out alternate;
}
.section7 .apple-mobile {
  display: none;
}

@keyframes orbit {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    top: 155px;
    right: 380px;
    opacity: 1;
    transform: translate(-100px, -100px);
  }
  50% {
    top: 250px;
    right: 720px;
    opacity: 1;
    transform: translate(-200px, 0px);
  }
  75% {
    top: 30px;
    right: 1100px;
    opacity: 0.9;
    transform: translate(-300px, 30px);
  }
  100% {
    top: 240px;
    opacity: 0;
    transform: translate(0, 0);
  }
}
.section8 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.section8 .container-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section8 .container-left h1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #1d302c;
}
.section8 .container-left h2 {
  font-size: 44px;
  color: #aaaaaa;
}
.section8 .container-line {
  width: 150px;
  height: 2px;
  transform: rotate(90deg);
  background-color: #63bd04;
  margin-top: 20px;
}
.section8 .container-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.section8 .container-right p {
  color: #1d302c;
  font-size: 20px;
}
.section8 .container-right input {
  border: 2px solid #63bd04;
  border-radius: 50px;
  padding: 10px 20px;
  width: 100%;
  margin-top: 10px;
  background-color: unset;
}
.section8 .container-right input::placeholder {
  color: #0a6846;
}
.section8 .container-right input:focus {
  outline: none;
}
.section8 .container-right button {
  background-color: #0a6846;
  color: #d2ffea;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.section9 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 80px 200px;
}
.section9 .container h3 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.section9 .container p {
  font-size: 18px;
}
.section9 .container .greenSecond {
  color: #63bd04;
  font-size: 18px;
}
.section9 .container .center {
  text-align: center;
}
.section9 .container .container-top {
  margin-top: 20px;
}
.section9 .container .container-top img {
  width: 100%;
}
.section9 .container .container-bottom {
  line-height: 1.5;
}
.section9 .container-right {
  background-color: #ebffe2;
  border-radius: 40px;
  padding: 40px;
  width: 40%;
}
.section9 .container-right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section9 .container-right form input,
.section9 .container-right form textarea {
  border: 2px solid #0a6846;
  border-radius: 40px;
  padding: 10px;
  background-color: unset;
}
.section9 .container-right form input::placeholder,
.section9 .container-right form textarea::placeholder {
  color: #0a6846;
}
.section9 .container-right form textarea {
  border-radius: 20px;
}
.section9 .container-right form label {
  font-size: 18px;
  font-weight: 600;
  color: #0a6846;
}
.section9 .container-right form button {
  background-color: unset;
  color: #0a6846;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  width: max-content;
  margin: 0 auto;
  border: 2px solid #0a6846;
}

@media (max-width: 1024px) {
  .section1 {
    margin-top: 100px;
  }
  .section2 {
    margin: 50px 20px;
  }
  .section2 .container h3 {
    font-size: 22px;
  }
  .section2 .container p i {
    font-size: 22px;
  }
  .section3 {
    padding: 20px 0;
  }
  .section3 .content-top {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
  }
  .section3 .content-top .content .container p {
    font-size: 100px;
  }
  .section3 .content-bottom {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
  }
  .section4 {
    flex-direction: column;
    margin: 20px;
  }
  .section4 .container-left {
    width: 100%;
  }
  .section4 .container-left img {
    width: 100%;
  }
  .section4 .container-right {
    width: 100%;
  }
  .section5 {
    flex-direction: column;
    margin: 50px 20px;
  }
  .section5 .container-left,
  .section5 .container-right {
    width: 90%;
  }
  .section5 .container-center {
    width: 90%;
  }
  .section5 .container-center img {
    width: 100%;
  }
  .section7 .container h1 {
    font-size: 22px;
  }
  .section7 .apple-container {
    display: none;
  }
  .section7 .apple-container .apple {
    display: none;
  }
  .section7 .apple-mobile {
    display: block;
  }
  .section8 {
    flex-direction: column;
    padding: 20px;
  }
  .section8 .container-left {
    width: 100%;
  }
  .section8 .container-right {
    width: 100%;
  }
  .section8 .container-right input {
    width: 90%;
  }
  .section8 .container-line {
    transform: rotate(0deg);
    margin: 20px;
  }
  .section9 {
    flex-direction: column;
    margin: 50px 20px;
  }
  .section9 .container {
    width: 100%;
  }
  .section9 .container-right {
    width: 80%;
  }
  .section9 .container-right form {
    width: 100%;
  }
}

/*# sourceMappingURL=outstory.css.map */
