/* 

0 - 600px:     Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[[1200 -- 1800] is where our normal styles apply

$breakpoint argument choices:
-phone
- tab-port
- tab-land
-big-desktop

ORDER: Base + typography > general laytou + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

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

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

body {
  font-family: 'Esteban', serif;
  font-weight: 100;
  font-size: 3.6rem;
  line-height: 1.7;
  color: #1d2425;
  scroll-behavior: smooth; }

.heading-primary {
  color: #fff8e2;
  backface-visibility: hidden;
  margin-bottom: 2rem; }
  .heading-primary--main {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 100;
    margin-bottom: .3rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-family: 6rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 2.4rem;
    font-weight: 300;
    color: #ec5f77;
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out; }

.heading-secondary {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3.5rem;
      line-height: 1.3; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 3;
      line-height: 1.3; } }

.heading-tertiary {
  font-size: 4.3rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  padding-bottom: 5rem; }
  @media only screen and (max-width: 56.25em) {
    .heading-tertiary {
      font-size: 3.5rem;
      padding-bottom: 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-tertiary {
      font-size: 3rem;
      padding-bottom: 2rem; } }

.btn {
  font-family: 'Poppins', sans-serif; }

.paragraph {
  font-size: 1.8rem;
  line-height: 3.5rem;
  display: block; }
  @media only screen and (max-width: 56.25em) {
    .paragraph {
      font-size: 1.6rem;
      line-height: 3rem; } }

.paragraph2 {
  font-size: 1.8rem;
  line-height: 3.5rem;
  display: inline-block; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  background-color: #fff8e2; }

::selection {
  background-color: #a195fb;
  color: #fff8e2; }

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

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

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

.u-margin-bottom-medium {
  margin-bottom: 6rem; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 4rem; } }

.u-margin-top-small {
  margin-top: 2rem; }

.u-margin-top-big {
  margin-top: 12rem; }

.u-margin-left-big {
  margin-left: 12rem; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 3rem;
  display: inline-block;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  outline-style: solid;
  outline-color: #ec5f77;
  color: #ec5f77;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-color: #ec5f77;
  color: #fff8e2; }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

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

.btn--white {
  background-color: transparent;
  color: #fff8e2; }
  .btn--white::after {
    background-color: transparent; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: .7rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 2.6rem;
  color: #fff8e2;
  display: inline-block;
  text-decoration: none; }

.btn-text:hover {
  text-decoration: underline; }

.btn2 {
  text-transform: uppercase;
  text-decoration: none;
  padding: 2rem 3rem;
  display: inline-block;
  border-radius: .7rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  color: #ec5f77;
  border: none;
  cursor: pointer; }

.btn2:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-color: #a195fb;
  color: #fff8e2; }
  .btn2:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn2:active, .btn2:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn2--pink {
  background-color: #a195fb;
  color: #fff8e2; }
  .btn2--pink::after {
    background-color: #a195fb; }

.btn2::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: .7rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn2--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn2-text:link, .btn2-text:visited {
  font-size: 2.6rem;
  color: #fff8e2;
  display: inline-block;
  text-decoration: none; }

.btn2-text:hover {
  text-decoration: underline; }

.demo a {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s; }

.demo a:hover {
  opacity: .5; }

#section07 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box; }

#section07 a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

#section07 a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s; }

#section07 a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s; }

@-webkit-keyframes sdb07 {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes sdb07 {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.service-box {
  color: #fff8e2;
  height: 40rem;
  font-size: 2.5rem;
  text-align: center;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  background-size: cover;
  position: relative; }
  @media only screen and (max-width: 56.25em) {
    .service-box {
      height: 30rem;
      font-size: 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .service-box {
      height: 25rem;
      font-size: 1.5rem; } }
  .service-box .btn-text {
    display: none; }
  .service-box:hover .btn-text {
    display: block; }
  .service-box__text {
    padding-top: 10rem; }
    @media only screen and (max-width: 37.5em) {
      .service-box__text {
        padding-top: 8rem; } }
  .service-box--0 {
    background-image: linear-gradient(to right bottom, rgba(29, 36, 37, 0.7), rgba(29, 36, 37, 0.5)), url(../img/sunny1.jpg); }
  .service-box--1 {
    background-image: linear-gradient(to right bottom, rgba(29, 36, 37, 0.7), rgba(29, 36, 37, 0.5)), url(../img/icl.jpg); }
  .service-box--2 {
    background-image: linear-gradient(to right bottom, rgba(29, 36, 37, 0.7), rgba(29, 36, 37, 0.5)), url(../img/flowers.png); }
  .service-box--3 {
    background-image: linear-gradient(to right bottom, rgba(29, 36, 37, 0.7), rgba(29, 36, 37, 0.5)), url(../img/icl2.jpg); }
  .service-box:hover {
    background-image: linear-gradient(to right bottom, #a195fb, #a195fb), url(../img/sunny1.jpg); }

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(29, 36, 37, 0.1);
  background-color: rgba(236, 95, 119, 0.6);
  padding: 6rem;
  padding-left: 9rem;
  color: #fff8e2;
  font-size: 1.8rem; }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem);
    position: relative; }
  .story__img {
    height: 100%;
    transform: translateX(-4rem) scale(1.4);
    backface-visibility: hidden;
    transition: all .5s; }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    color: #fff8e2;
    font-size: 1.7rem;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translateX(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .15;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.form__group:not(:lastchild) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  background-color: #fff3c1;
  border: none;
  border-bottom: 3px solid transparent;
  width: 50%;
  display: block;
  transition: all .3s; }
  @media only screen and (max-width: 75em) {
    .form__input {
      width: 80%; } }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #a195fb; }
  .form__input:focus:invalid {
    border-bottom: 3px solid #fd576d; }
  .form__input::-webkit-input-placeholder {
    color: #1d2425; }

.form__label {
  font-size: 1.2rem;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  transition: all .3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.row {
  max-width: 173rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 70rem;
      padding: 0 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 4rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 *  ((100% - 3 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2* ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3* ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.header {
  height: 100vh;
  /* 100% of the viewport height */
  background-image: linear-gradient(to right bottom, #1d2425, rgba(29, 36, 37, 0.5)), url(../img/hero.png);
  /* background-image: linear-gradient(to right bottom,   rgb(133, 166, 216)    , rgb(133, 166, 216)), url(../img/11.png); */
  /* background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(../img/hero.jpg); */
  /* background-image: url(../img/10.png); */
  background-size: cover;
  background-position: right;
  position: relative; }
  .header__logo-box {
    position: absolute;
    top: 8rem;
    left: 8rem; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-box {
        top: 4.8rem;
        left: 4.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__logo-box {
        top: 3.8rem;
        right: 3.5rem; } }
  .header__logo {
    height: 5.5rem; }
  .header__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.footer {
  background-color: #1d2425;
  padding: 10rem 10rem;
  padding-top: 20rem;
  font-size: 1.6rem;
  color: #fff8e2; }
  @media only screen and (max-width: 56.25em) {
    .footer {
      padding: 8rem 0;
      padding-top: 15rem; } }
  .footer__logo-box {
    text-align: center; }
  .footer__logo {
    width: 10rem;
    height: auto;
    margin-bottom: 8rem; }
  .footer__navigation {
    border-top: 1px solid rgba(255, 248, 221, 0.5);
    padding-top: 2rem;
    padding-left: 2rem;
    display: inline-block; }
    @media only screen and (max-width: 56.25em) {
      .footer__navigation {
        width: 100%;
        text-align: center; } }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #fff8e2;
    text-decoration: none;
    display: inline-block; }
  .footer__link:hover, .footer__link:active {
    color: #ec5f77; }
  .footer__copyright {
    border-top: 1px solid rgba(255, 248, 221, 0.5);
    padding-top: 2rem;
    width: 80%;
    float: right; }
    @media only screen and (max-width: 56.25em) {
      .footer__copyright {
        width: 100%;
        float: none;
        text-align: center; } }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #fff8e2;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center; }
  @media only screen and (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#ec5f77, #fd576d);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  @media only screen and (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 4.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__background {
      top: 3.5rem;
      right: 3.5rem; } }

.navigation__nav {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all .8s; }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff8e2;
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff8e2 50%);
  background-size: 230%;
  transition: all .4s; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #ec5f77;
  transform: translateX(1rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #1d2425;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.section-about {
  background-image: linear-gradient(105deg, #ec5f77 0%, #ec5f77 80%, #a195fb 80%), url(../img/nat-10.jpg);
  background: cover;
  padding-top: 10rem;
  padding-right: 30rem;
  padding-left: 10rem;
  padding-bottom: 5rem;
  color: #fff8e2; }
  @media only screen and (max-width: 56.25em) {
    .section-about {
      padding-top: 10rem;
      padding-right: 10rem;
      padding-left: 0rem;
      padding-bottom: 0rem; } }
  @media only screen and (max-width: 37.5em) {
    .section-about {
      padding-top: 10rem;
      padding-right: 10rem;
      padding-left: 2rem;
      padding-bottom: 0rem; } }

.section-services-heading {
  background-color: #fff8e2;
  padding-top: 10rem;
  padding-right: 30rem;
  padding-left: 10rem;
  color: #1d2425; }
  @media only screen and (max-width: 56.25em) {
    .section-services-heading {
      padding-top: 5rem;
      padding-right: 10rem;
      padding-left: 5rem;
      padding-bottom: 0rem; } }

.section-services {
  padding-left: 7rem;
  padding-right: 7rem;
  padding-bottom: 15rem;
  background-color: #fff8e2; }

.section-book {
  background-color: #ec5f77;
  padding-bottom: 15rem; }
  .section-book__heading {
    padding-top: 15rem;
    padding-right: 30rem;
    padding-left: 10rem;
    color: #fff8e2; }
    @media only screen and (max-width: 56.25em) {
      .section-book__heading {
        padding-top: 5rem;
        padding-right: 10rem;
        padding-left: 5rem;
        padding-bottom: 0rem; } }

.book {
  background-image: linear-gradient(105deg, #fff8e2 0%, #fff8e2 60%, #a195fb 60%), url(../img/nat-10.jpg);
  background-size: 100%;
  height: 55rem;
  width: 120rem;
  margin: 0 auto;
  padding-top: 5rem;
  padding-left: 4rem; }
  @media only screen and (max-width: 75em) {
    .book {
      background-image: linear-gradient(105deg, #fff8e2 0%, #fff8e2 82%, #a195fb 82%), url(../img/nat-10.jpg);
      background-size: cover; } }
  .book__form {
    width: 50%;
    padding: 4rem; }
  @media only screen and (max-width: 75em) {
    .book {
      width: 80%; } }

/* written in SCSS, transpiled to CSS */
