@font-face {
  font-family: "Lemon";
  src: url("../fonts/LEMONMILK-Regular.otf");
  font-weight: normal;
}

body {
  font-family: "Lemon", serif;
}

/* .splide__slide {
  height: 100px;
} */
/* .splide__slide img {
	max-width : 100%;
	height: auto;
} */
.splide__slide__container {
  background-size: contain !important;
  background-color: black !important;
}

.hide-splide {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}

.hero {
  background: url("../images/hero-bg.jpg") no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero__logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 270px;
  margin: 3rem 0 2rem 0;
}

.hero__content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
}

@media only screen and (max-width: 600px) {
  .hero__content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero__content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 0 4rem;
  /* .container-splide {
        width: 790px;
        height: 400px;
      } */
}

@media only screen and (max-width: 600px) {
  .hero__content__left {
    padding: 0;
    width: 90%;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

.hero__content__left__container-text {
  background-color: #e14300;
  padding: 0.5rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.hero__content__left__container-text p {
  color: white;
  font-size: 1.5rem;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .hero__content__left__container-text p {
    font-size: 1rem;
  }
}

.hero__content__left #image-slider {
  margin: 0 auto;
}

.hero__content__left img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: black;
}

.hero__content__left .text {
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1.5em;
}

@media only screen and (max-width: 600px) {
  .hero__content__left .text {
    font-size: 0.9rem;
  }
}

.hero__content__left .price-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .hero__content__left .price-container {
    display: none;
  }
}

.hero__content__left .price-container p {
  color: white;
  text-transform: uppercase;
}

.hero__content__left .price-container p span {
  font-size: 1.25rem;
}

.hero__content__left .price-container .price {
  background-color: #678d0e;
  text-align: center;
  padding: 0.5rem 0;
}

.hero__content__left .price-container .price span {
  font-size: 2rem;
}

.hero__content__right {
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.hero__content__right .building {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hero__content__right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  cursor: pointer;
}

.hero__content__right .item .circle {
  width: 25px;
  height: 25px;
  background: rgba(223, 75, 9, 0.8);
  border-radius: 100%;
  position: relative;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.hero__content__right .item .circle::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: rgba(223, 75, 9, 0.6);
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero__content__right .item .label {
  color: white;
  background: rgba(101, 139, 25, 0.8);
  padding: 0.15rem 0.5rem;
  margin-left: -1rem;
  z-index: 2;
  display: none;
}

.hero__content__right .item--1 {
  top: 15%;
  left: 50%;
}

.hero__content__right .item--2 {
  top: 32.5%;
  left: 50%;
}

.hero__content__right .item--3 {
  top: 47.5%;
  left: 50%;
}

.hero__content__right .item--4 {
  top: 60%;
  left: 50%;
}

.hero__content__right .item--5 {
  top: 75%;
  left: 50%;
}

.hero__content__right .item--6 {
  top: 87%;
  left: 50%;
}

.hero__content__right .item.active .circle {
  background: rgba(101, 139, 25, 0.8);
}

.hero__content__right .item.active .circle::before {
  background: rgba(101, 139, 25, 0.6);
}

.hero__content__right .item.active .label {
  display: block;
}

.hero__content__mobile {
  display: none;
}

@media only screen and (max-width: 600px) {
  .hero__content__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__content__mobile p {
    color: white;
    text-transform: uppercase;
    text-align: center;
  }
  .hero__content__mobile .price {
    background-color: #678d0e;
    text-align: center;
    padding: 0.5rem 0;
    margin: 0;
    margin-top: 1rem;
  }
  .hero__content__mobile .price span {
    font-size: 2rem;
  }
}

.main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
}

@media only screen and (max-width: 600px) {
  .main {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.main__right {
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .main__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.main__right__bg {
  position: absolute;
  width: 100%;
  left: 0;
}

.main__right__bg--1 {
  top: 0;
  height: 32.9%;
  background: #e14300;
}

.main__right__bg--2 {
  top: 32.9%;
  height: 67%;
  background: #eaebe9;
}

.main__right .form-container {
  width: 100%;
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

@media only screen and (max-width: 600px) {
  .main__right .form-container {
    position: relative;
    top: 0;
    background-color: #e14300;
    padding-top: 4rem;
  }
}

.main__right .logo {
  width: 120px;
  position: absolute;
  top: -50px;
  left: 20%;
  z-index: 2;
}

@media only screen and (max-width: 600px) {
  .main__right .logo {
    top: 10px;
    left: 10%;
  }
}

.main__right form {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #e14300;
  border: 1px solid #0e0e0e;
  border-radius: 15px;
  padding: 4rem 2rem 1.5rem 2rem;
}

.main__right form label {
  color: white;
  margin-bottom: 0.5rem;
}

.main__right form input {
  padding: 0.35rem 1rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.main__right form button {
  background: #3d571d;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-family: inherit;
  color: white;
  border: none;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .main__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.main__left .section-1 {
  position: relative;
  padding: 2rem;
  background: #e14300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .main__left .section-1 {
    padding: 2rem 2rem 0 2rem;
  }
}

.main__left .section-1 .text {
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .main__left .section-1 .text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
}

.main__left .section-1 .text--2 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: -8rem;
}

@media only screen and (max-width: 600px) {
  .main__left .section-1 .text--2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
}

.main__left .section-1 img {
  width: 400px;
}

@media only screen and (max-width: 600px) {
  .main__left .section-1 img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 300px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.main__left .section-1::after {
  position: absolute;
  width: 66.666%;
  height: 100%;
  content: "";
  top: 0;
  right: -66.666%;
  background: #e14300;
}

@media only screen and (max-width: 600px) {
  .main__left .section-1::after {
    display: none;
  }
}

.main__left .section-2 {
  position: relative;
  background: #eaebe9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .main__left .section-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main__left .section-2 img {
  width: 90%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (max-width: 600px) {
  .main__left .section-2 img {
    width: 100%;
  }
}

.main__left .section-2 p {
  color: #2c2c2c;
  margin-top: 4rem;
  text-align: center;
}

.main__left .section-2::after {
  position: absolute;
  width: 66.666%;
  height: 100%;
  content: "";
  top: 0;
  right: -66.666%;
  background: #eaebe9;
}

@media only screen and (max-width: 600px) {
  .main__left .section-2::after {
    display: none;
  }
}

.main__left .section-3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url("../images/section-3.jpg") no-repeat;
  background-size: cover;
  padding: 2rem 2rem 0rem 2rem;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 {
    padding: 1rem 1rem 0rem 1rem;
  }
}

.main__left .section-3 .items-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
  grid-auto-flow: column;
  row-gap: 2rem;
  padding: 4rem 4rem 0 4rem;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .items-container {
    padding: 0;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.main__left .section-3 .items-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__left .section-3 .items-container .item img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.5rem;
}

.main__left .section-3 .items-container .item p {
  color: white;
}

.main__left .section-3 .rate {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: white;
  font-size: 1.75rem;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .rate {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.main__left .section-3 .rate--1 {
  margin-top: 4rem;
  background: #3d571d;
  padding: 0.25rem 1rem;
}

.main__left .section-3 .rate--2 {
  background: #c03911;
  padding: 0.25rem 1rem;
}

.main__left .section-3 .desc {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0;
  color: white;
  font-size: 1.25rem;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .desc {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.main__left .section-3 .desc--1 {
  margin: 0.25rem 0 4rem 0;
}

.main__left .section-3 .sub {
  color: white;
  font-size: 0.55rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0.25rem 0 3rem 0;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .sub {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.main__left .section-3 .info-box {
  max-width: 40%;
  text-align: center;
  color: white;
  padding: 0.5rem 2rem;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .info-box {
    max-width: 90%;
  }
}

.main__left .section-3 .info-box--1 {
  background: #678d0e;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .info-box--1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 80%;
  }
}

.main__left .section-3 .info-box--1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 337%;
  background: url("../images/arrow-green.png") no-repeat;
  background-size: contain;
  bottom: -335%;
  left: 50%;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .info-box--1::after {
    background: url("../images/arrow-green-mb.png") no-repeat;
    background-size: contain;
    z-index: 3;
    left: 15%;
  }
}

.main__left .section-3 .info-box--2 {
  background: #e14300;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .info-box--2 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.main__left .section-3 .info-box--2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 230%;
  background: url("../images/arrow-red.png") no-repeat;
  background-size: contain;
  bottom: -230%;
  left: 18%;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .info-box--2::after {
    background: url("../images/arrow-red-mb.png") no-repeat;
    background-size: contain;
    left: 80%;
    bottom: -280%;
    height: 290%;
    z-index: 3;
  }
}

.main__left .section-3 .building {
  width: 60%;
  margin-left: 4rem;
  z-index: 2;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .building {
    margin-left: 0;
    width: 90%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 7rem;
  }
}

.main__left .section-3 .green-bg {
  position: absolute;
  width: 166.66%;
  height: 340px;
  background: #736e18;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3 .green-bg {
    width: 100%;
    height: 250px;
  }
}

.main__left .section-3::after {
  position: absolute;
  width: 66.666%;
  height: 100%;
  content: "";
  top: 0;
  right: -66.666%;
  background: url("../images/section-3.jpg") no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  .main__left .section-3::after {
    display: none;
  }
}

footer {
  padding: 4rem 4rem 18rem 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 60%;
      grid-template-columns: 40% 60%;
  background: url("../images/footer.jpg") 50% 100% no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  footer {
    padding: 5rem 1rem 12rem 1rem;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .content .logo {
  width: 300px;
}

footer .content .social-container {
  margin-top: 4rem;
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .content .social-container img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-button {
  color: #e14300;
  background: white;
  border: none;
  padding: 0.5rem 2rem;
}
/*# sourceMappingURL=main.css.map */