* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 10px; }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #777;
  padding: 30px; }

.u-center-text {
  text-align: center; }

.u-margin-bottom-small {
  margin-bottom: 2.5rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2);
    float: left;
    /* background-color: orangered; */ }
    .row .col-1-of-2:not(:last-child) {
      margin-right: 6rem; }

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, #7ed56fb9, #28b485c0), url(../../img/mainpage/hero.jpg);
  background-size: cover;
  background-position: top;
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  position: relative; }
  .header__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
  .header__logo-box {
    position: absolute;
    top: 40px;
    left: 40px; }
  .header__logo {
    height: 35px; }

.heading-primary {
  color: #ffffff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 60px; }
  .heading-primary--main {
    display: block;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 25px;
    animation: moveInLeft 1s ease-out;
    /*
    animation-iteration-count: 3;
    animation-delay: 3s;
     */ }
  .heading-primary--sub {
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 17.4px;
    animation: moveInRight 1s ease-out;
    color: #415968; }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.section-about {
  background-color: #f7f7f7;
  padding: 20rem;
  margin-top: -20vh;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.package {
  width: 20%;
  height: 65vh;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #28b485c0;
  margin-top: 10vh; }
  .package:hover {
    background-color: #28b485c0;
    color: #ffffff; }
  .package-header {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007D88;
    font-size: 3rem;
    font-weight: bold;
    height: 10vh; }
  .package-content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #415968;
    height: 40vh; }
    .package-content:hover {
      color: #ffffff; }
  .package-cost {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    height: 15vh;
    background-color: #007D88;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: linear-gradient(to right, #7ed56fb9, #28b485c0);
  display: inline-block;
  -webkit-background-clip: text;
  color: transparent;
  transition: all .2s;
  letter-spacing: 2px; }
  .heading-secondary:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.btn {
  font-size: 1.5rem;
  margin-right: 0.5rem; }
  .btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    position: relative; }
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
  .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .btn--white {
    background-color: #fff;
    color: #777; }
  .btn--green {
    background-color: #7ed56fb9;
    color: #777; }
  .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s; }
  .btn--white::after {
    background-color: #fff; }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }
  .btn--animated {
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  color: #7ed56fb9;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #7ed56fb9;
  padding: 3px;
  font-size: 1.6rem;
  transition: all .2s; }

.btn-text:hover {
  background-color: #7ed56fb9;
  color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.section-contact {
  background-color: #f7f7f7;
  padding: 2rem;
  margin-top: 0vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 5vh; }
  .contact-content {
    width: 40%;
    height: 100%;
    min-height: 50rem;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #333333;
    padding: 6rem 2rem; }
    .contact-content input {
      width: 100%;
      height: 35px;
      margin-bottom: 2rem;
      border-radius: 0.5rem;
      font-size: 1.5rem;
      padding: 1rem; }
    .contact-content select {
      width: 100%;
      height: 35px;
      margin-bottom: 2rem;
      border-radius: 0.5rem;
      font-size: 1.5rem;
      padding: 0.3rem; }
      .contact-content select option {
        font-size: 1.5rem; }
    .contact-content a {
      left: 40%; }
    .contact-content img {
      position: absolute;
      left: 40%; }

.section-video {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 50vh;
  background-color: #f7f7f7; }


.section-property{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 30.5rem 0;
}

.section-property-img{
    width: 70%;
    height: auto;
    display: inline-block;
}

.section-property-img img{
  width: 100%;
  height: auto;
}

.section-property-content{
    width: 30%;
    height: auto;
  display: inline-block;
  padding: 2rem;
}


.section-property-content-header{
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
}

.section-property-content-header strong{
  font-size: 2.5rem;
}

.section-property-content-body{
  font-size: 2rem;
  text-align: left;
}

.section-property-content-body u{
  font-size: 2rem;
}

.price-header{
  text-align: center;
  width: 100% !important;
  border-top: 2px solid #999999;
  margin-top: 3rem
}

.price-header strong{
  font-size: 5rem;
}

@media (max-width: 568px) {

  body {
    width: 100%;
    padding: 5px; }
  .header {
    height: 120vh;
    padding: 3rem; }
  .header__text-box {
    top: 40%; }
  .header__logo-box {
    top: 10px; }
  .section-contact {
    margin-top: 2rem; }
  .section-video {
    margin-top: 5vh; }
  .contact-content {
    width: 100%;
    min-height: 25rem; }
  .contact-content a {
    left: 0; }
  .contact-content img {
    left: 0; }
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center; }
  .heading-primary--main {
    font-size: 2rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .heading-primary--sub {
    font-size: 2rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .header {
    clip-path: none; }
  .section-about {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 0; }
  .package {
    width: 100%;
    margin-top: 2rem;
  }

  .section-property{
    flex-direction: column;
    justify-content: center;
  }
  .section-property-content{
    width: 100%!important;
  }

  .section-property-img{
    width: 100%!important;
  }

  .section-property-content-header{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .section-property-content-header strong{
    font-size: 1.5rem;
  }

  .section-property-content-body{
    font-size: 1.4rem;
    text-align: justify;
  }

  .section-property-content-body u{
    font-size: 1.4rem;
  }

  .price-header strong{
    font-size: 3rem;
  }

}
@media (min-width: 569px) and (max-width: 768px) {
  body {
    width: 100%;
    padding: 5px; }
  .header {
    height: 120vh;
    padding: 3rem; }
    .header__text-box {
      top: 40%; }
    .header__logo-box {
      top: 10px; }
  .section-contact {
    margin-top: 2rem; }
  .section-video {
    margin-top: 5vh; }
  .contact-content {
    width: 100%;
    min-height: 25rem; }
    .contact-content a {
      left: 0; }
    .contact-content img {
      left: 0; }
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center; }
  .heading-primary--main {
    font-size: 3rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .heading-primary--sub {
    font-size: 2rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .header {
    clip-path: none; }
  .section-about {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 0; }
  .package {
    width: 46%;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem; }

  .section-property{
    flex-direction: column;
    justify-content: center;
  }
  .section-property-content{
    width: 100%!important;
  }

  .section-property-img{
    width: 100%!important;
  }

  .section-property-content-header{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
  }

  .section-property-content-header strong{
    font-size: 2rem;
  }

  .section-property-content-body{
    font-size: 1.8rem;
    text-align: justify;
  }

  .section-property-content-body u{
    font-size: 1.8rem;
  }

  .price-header strong{
    font-size: 3rem;
  }


}

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    width: 100%;
    padding: 5px; }
  .header {
    height: 120vh;
    padding: 3rem; }
  .header__text-box {
    top: 40%; }
  .header__logo-box {
    top: 10px; }
  .section-contact {
    margin-top: 2rem; }
  .section-video {
    margin-top: 5vh; }
  .contact-content {
    width: 100%;
    min-height: 25rem; }
  .contact-content a {
    left: 0; }
  .contact-content img {
    left: 0; }
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center; }
  .heading-primary--main {
    font-size: 5rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .heading-primary--sub {
    font-size: 2rem;
    font-weight: inherit;
    letter-spacing: 0; }
  .header {
    clip-path: none; }
  .section-about {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 0; }
  .package {
    width: 46%;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem; }

  .price-header strong{
    font-size: 4rem;
  }
}

@media (min-width: 1025px) {
  .package {
    width: 25%;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .section-about {
    flex-wrap: unset;
    justify-content: center;
    padding-right: 5rem;
    padding-left: 5rem;}
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) rotate(0deg); }
  80% {
    transform: translateX(10px) rotate(0deg); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px); }
  80% {
    transform: translateX(-10px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translate(0); } }
