/* --- 1.GLOBAL --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  /*font-family: 'Italianno', cursive;*/
  /*font-family: 'Forum', cursive;*/
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  /* using rems becomes much easier*/ }

body {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh; }

a {
  text-decoration: none;
  /* all the links aren't underlined*/ }

ul {
  list-style: none;
  /* all lists don't have any decoration*/ }

.dotted-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem; }
  .dotted-container .dotted {
    list-style-type: disc;
    font-size: 1.5rem; }
    .dotted-container .dotted li {
      margin: .5rem 0; }

p {
  font-size: 1.6rem; }

img {
  width: 100%;
  max-width: 100%;
  /* It doesn't overflow the parent container*/
  height: auto; }

.gallery img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

section {
  /*every section has this set of general rules */
  padding: 1.5rem; }

h1 {
  text-transform: uppercase;
  font-size: 3rem;
  margin: 3rem;
  letter-spacing: 1rem;
  font-weight: 100;
  text-align: center; }

#btnToScrollToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: black;
  background: rgba(0, 0, 0, 0.7);
  width: 3.5rem;
  height: 3.5rem;
  display: block;
  color: #fff;
  text-decoration: none;
  border: none;
  display: none;
  cursor: pointer; }

#btnToScrollToTop i {
  -webkit-animation: scroll .6s ease-in infinite alternate;
          animation: scroll .6s ease-in infinite alternate; }

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); } }

@keyframes scroll {
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); } }

#btnToScrollToTop:hover {
  background: rgba(0, 0, 0, 0.9); }

#btnToScrollToTop:hover i {
  color: #fff;
  /*top: 5px;*/ }

.map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

iframe {
  display: block;
  width: 90vw;
  height: calc(1.33 * 90vw);
  /* max-width /  max-height */
  max-width: 600px;
  max-height: 450px; }

/* --- 2.HEADER (the area for navigation, logo menu and "open", "close" icons) --- */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999; }

.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  padding: 0 1.5rem;
  margin: 0 auto;
  background: #fff3f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem;
  position: fixed;
  top: 0;
  left: 0; }

.logo img {
  /* styling for logo */
  width: 25rem; }

.menu-icons {
  position: fixed;
  top: 2rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 999;
  display: none; }

.nav-list {
  /* styling the menu list */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .nav-list li {
    line-height: 8rem;
    position: relative; }
  .nav-list a {
    display: block;
    color: black;
    padding: 0;
    font-size: 2rem;
    -webkit-transition: color 550ms;
    transition: color 550ms; }
    .nav-list a:hover {
      color: #eb3007; }
  .nav-list .disabled {
    font-size: 2rem;
    padding-left: 0; }
  .nav-list .active {
    visibility: hidden;
    opacity: 0; }

/* --- 3.HERO SECTION --- */
.hero {
  width: 100%;
  height: 100vh;
  background: url("/img/child8.jpg") center no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; }

.sub-menu {
  width: 22rem;
  display: block;
  position: absolute;
  top: 6rem;
  opacity: 0;
  visibility: hidden;
  background-color: #fafafa;
  /*border-top: 3px solid #5f5f52;*/
  -webkit-transition: all 650ms ease;
  transition: all 650ms ease;
  z-index: 2; }

.sub-menu li {
  line-height: 4rem;
  padding: 0 1rem; }

.nav-list li:hover > .sub-menu {
  top: 8rem;
  opacity: 3;
  visibility: visible; }

/* --- FOOTER --- */
footer {
  margin-top: 100vh;
  width: 100%;
  padding: .1rem 0;
  background: #fff3f0;
  color: rgba(0, 0, 0, 0.7);
  text-align: center; }
  footer p {
    font-size: 1.2rem; }
  footer i {
    font-size: 2rem;
    margin: 1rem;
    color: black;
    opacity: .7;
    z-index: 2; }
  footer .credit {
    color: rgba(0, 0, 0, 0.7); }

/*-- MOBILE VIEW --*/
@media screen and (max-width: 1024px) {
  h1 {
    text-transform: uppercase;
    font-size: 2rem;
    margin: 1rem;
    letter-spacing: 1rem;
    font-weight: 100;
    text-align: center; }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 25rem;
    display: none;
    padding-left: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #e4e4e4;
    z-index: 1000;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 2rem;
    padding-left: 2rem; }
  .nav-list > li {
    line-height: 4rem; }
  li.disabled {
    padding-left: 0;
    font-size: 2rem; }
  li.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    li.contact a {
      margin-right: 3rem;
      font-size: 2rem; }
  .sub-menu {
    position: initial;
    background: #e4e4e4;
    border: 3px solid transparent;
    border-left-color: #5f5f52;
    margin-left: 1rem;
    max-height: 0; }
  .sub-menu::before {
    display: none; }
  .nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: initial; }
  .menu-icons {
    display: block;
    color: black;
    z-index: 1500; }
  .fa-times {
    display: none; }
  nav.active .fa-times {
    display: block; }
  nav.active .fa-bars {
    display: none; }
  nav.active .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .aboutme {
    padding: 0;
    /*flex-grow: 1;*/ }
    .aboutme .aboutme-post {
      /*background-color: green;*/
      width: 100%;
      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;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .aboutme .aboutme-post img {
        max-width: 40rem;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        padding: 1rem; }
      .aboutme .aboutme-post .aboutme__text {
        /*background: #fff3f0;*/
        /*background-color: blue;*/
        margin-top: 1rem;
        max-width: 50rem;
        padding: 1rem; }
        .aboutme .aboutme-post .aboutme__text p {
          font-size: 1.5rem;
          text-align: justify; }
        .aboutme .aboutme-post .aboutme__text i {
          font-size: 1.6rem;
          margin-right: 1rem;
          color: #000; }
        .aboutme .aboutme-post .aboutme__text span {
          color: #000; }
        .aboutme .aboutme-post .aboutme__text .phone {
          letter-spacing: .1rem;
          font-size: 1.5rem; }
        .aboutme .aboutme-post .aboutme__text .heading {
          text-align: center;
          font-weight: bold;
          font-size: 1.5rem; }
        .aboutme .aboutme-post .aboutme__text .center {
          text-align: center;
          font-weight: bold;
          font-size: 2.5rem; }
        .aboutme .aboutme-post .aboutme__text .nonrefundable {
          display: block;
          padding-top: 2rem;
          font-weight: bold; }
    .aboutme .pricelist {
      /*background-color: green;*/
      max-width: 80rem;
      margin: 0 auto; }
      .aboutme .pricelist .pricelist__text {
        max-width: 40rem;
        width: 100%; }
    .aboutme span.space {
      display: inline-block;
      /*background-color: red;*/
      margin-left: 2rem; }
      .aboutme span.space:hover {
        color: initial; }
  ul.social-media {
    margin-bottom: 2rem; }
    ul.social-media li {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
      ul.social-media li a span {
        color: rgba(196, 26, 26, 0.3); }
  .form {
    margin-top: 2rem;
    /*background-color: green;*/
    padding: 1rem;
    /* form styles */ }
    .form h3 {
      font-size: 1.6rem;
      font-weight: normal;
      margin-bottom: 2rem; }
    .form form {
      margin-bottom: 2rem;
      -webkit-box-shadow: 0 0 1rem 0 rgba(72, 94, 116, 0.7);
              box-shadow: 0 0 1rem 0 rgba(72, 94, 116, 0.7);
      background-color: #fff3f0;
      padding: 1rem;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-gap: 2rem; }
      .form form label {
        display: block;
        font-size: 1.5rem; }
      .form form p {
        margin: 0; }
      .form form .full {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3; }
      .form form button, .form form input, .form form textarea {
        width: 100%;
        padding: 1rem; }
      .form form button {
        background-color: black;
        color: white;
        border: 0;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-transition: 2s ease-out;
        transition: 2s ease-out; }
        .form form button:hover {
          background-color: #353030;
          outline: 0;
          -webkit-transition: background-color .3s ease-out;
          transition: background-color .3s ease-out; }
        .form form button:focus {
          background-color: #353030;
          outline: 0;
          -webkit-transition: background-color 2s ease-out;
          transition: background-color 2s ease-out; } }

/* --- MEDIA QUERRIES --- */
@media screen and (min-width: 1025px) {
  /* In this media querry we make the menu visible on desktop view */
  .container {
    height: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .container nav {
      width: 100%;
      height: 12rem;
      margin: 0 auto;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      /* to have some space between the elements */
      padding: 1rem 0;
      /* border-bottom: 1px solid rgba(255,255,255,.2);*/
      /* thin line for decoration */ }
      .container nav img {
        margin-top: 20px;
        width: 60rem;
        height: auto;
        padding-left: 1.5rem; }
  .nav-list {
    /* nav-list is reset */
    width: 100%;
    max-width: 100rem;
    margin: 0 2%;
    height: initial;
    background: initial;
    position: initial;
    top: initial;
    right: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transition: initial;
    transition: initial;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .logo img {
    /* styling for logo */
    width: 70rem;
    height: auto; }
  .nav-list a {
    margin: 0 .1rem;
    font-size: 2rem;
    padding: 0; }
  li.contact-info {
    display: none; }
  li.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    li.contact a {
      margin-right: 1.5rem;
      font-size: 2rem; }
  .sub-menu li {
    margin: .6rem 0; }
  /*header ul li{
        position: relative;
        transition: .5s;
    }*/
  .sub-menu-link:hover {
    color: #e29878;
    opacity: .8;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
  .sub-menu {
    position: absolute;
    left: -6rem;
    background: #faf0e5;
    display: block;
    width: 20rem;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden; }
  header ul li:hover ul {
    opacity: 1;
    visibility: visible; }
  .nav-link,
  .current {
    font-size: 2rem;
    position: relative;
    /*opacity: .6;*/ }
  .current::before {
    /* line underlining a menu link*/
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000; }
  li.disabled {
    font-size: 2rem;
    padding-left: 0;
    /*opacity: .7;*/ }
  footer i:hover {
    color: #353030;
    opacity: .6; }
  .aboutme {
    /*background-color:red;*/
    padding: 1rem;
    width: 100%;
    min-width: 98rem;
    max-width: 160rem;
    margin: 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .aboutme .aboutme-post {
      background-color: green;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      background: #fff3f0;
      /*box-shadow: 0 1.4rem 8rem rgba(0,0,0,.2);*/ }
      .aboutme .aboutme-post .aboutme__img {
        /*background-color: blue;*/
        min-width: 50rem;
        max-width: 80rem;
        padding: 2rem 0 2rem 0; }
        .aboutme .aboutme-post .aboutme__img img {
          width: 50rem;
          height: 50rem;
          -o-object-fit: cover;
             object-fit: cover;
          display: block;
          padding: 0;
          padding-left: 2rem; }
        .aboutme .aboutme-post .aboutme__img .pricelist-img {
          padding: 2rem;
          width: 80rem;
          height: auto; }
      .aboutme .aboutme-post .aboutme__text {
        padding: 0 2rem;
        margin-left: 20rem; }
        .aboutme .aboutme-post .aboutme__text p {
          font-size: 2rem;
          margin-top: 2rem;
          margin-bottom: 2rem;
          text-align: justify; }
        .aboutme .aboutme-post .aboutme__text i {
          font-size: 2rem;
          margin-right: 1rem;
          color: #000; }
        .aboutme .aboutme-post .aboutme__text span {
          color: #000;
          -webkit-transition: 550ms;
          transition: 550ms; }
          .aboutme .aboutme-post .aboutme__text span:hover {
            color: #eb3007; }
        .aboutme .aboutme-post .aboutme__text .phone {
          letter-spacing: .1rem; }
        .aboutme .aboutme-post .aboutme__text .heading {
          margin-top: 2rem;
          text-align: center;
          font-weight: bold;
          font-size: 2rem; }
        .aboutme .aboutme-post .aboutme__text .center {
          text-align: center;
          font-weight: bold;
          font-size: 2.5rem; }
        .aboutme .aboutme-post .aboutme__text span.space {
          display: inline-block;
          /*background-color: red;*/
          margin-left: 2rem; }
          .aboutme .aboutme-post .aboutme__text span.space:hover {
            color: initial; }
        .aboutme .aboutme-post .aboutme__text .nonrefundable {
          display: block;
          padding-top: 2rem;
          font-weight: bold;
          text-align: center; }
          .aboutme .aboutme-post .aboutme__text .nonrefundable:hover {
            color: initial; }
      .aboutme .aboutme-post .margin-left {
        margin-left: 0; }
    .aboutme .pricelist {
      margin: 2rem 0 2rem 0;
      font-size: 1.6rem; }
    .aboutme .dotted {
      font-size: 2rem; }
  ul.social-media {
    margin-bottom: 2rem;
    padding-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    ul.social-media li {
      font-size: 2rem;
      margin-right: 2rem; }
  .form {
    margin-top: 2rem;
    /*background-color: green;*/
    padding: 1rem;
    /* form styles */ }
    .form h3 {
      font-size: 1.6rem;
      font-weight: normal;
      margin-bottom: 2rem; }
    .form form {
      margin-bottom: 2rem;
      -webkit-box-shadow: 0 0 1rem 0 rgba(72, 94, 116, 0.7);
              box-shadow: 0 0 1rem 0 rgba(72, 94, 116, 0.7);
      background-color: #fff3f0;
      padding: 1rem;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-gap: 2rem; }
      .form form label {
        display: block;
        font-size: 2rem; }
      .form form p {
        margin: 0; }
      .form form .full {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3; }
      .form form button, .form form input, .form form textarea {
        width: 100%;
        padding: 1rem; }
      .form form button {
        background-color: black;
        color: white;
        border: 0;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-transition: 2s ease-out;
        transition: 2s ease-out; }
        .form form button:hover {
          background-color: #353030;
          outline: 0;
          -webkit-transition: background-color .3s ease-out;
          transition: background-color .3s ease-out; }
        .form form button:focus {
          background-color: #353030;
          outline: 0;
          -webkit-transition: background-color 2s ease-out;
          transition: background-color 2s ease-out; } }

@media screen and (min-width: 1200px) {
  .container {
    height: 13rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .container nav {
      width: 100%; }
      .container nav .logo img {
        margin-top: 20px;
        width: 60rem;
        height: auto; }
  .nav-list {
    /* nav-list is reset */
    width: 100%;
    max-width: 66rem;
    margin: 0 10% 0 3%;
    height: initial;
    background: initial;
    position: initial;
    top: initial;
    right: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transition: initial;
    transition: initial;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .logo img {
    /* styling for logo */
    width: 40rem;
    height: auto; }
  .nav-list a {
    margin: 0 .1rem;
    font-size: 2rem;
    padding: 0;
    /*margin: 0 1.5rem;*/ }
  li.contact a {
    margin-right: 1.8rem;
    font-size: 1.9rem; }
  .sub-menu li {
    margin: .6rem 0; }
  /*header ul li{
        position: relative;
        transition: .5s;
    }*/
  .sub-menu-link:hover {
    color: #e29878;
    opacity: .8;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
  .sub-menu {
    position: absolute;
    left: -5rem;
    background: #faf0e5;
    display: block;
    width: 20rem;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden; }
  header ul li:hover ul {
    opacity: 1;
    visibility: visible; }
  .nav-link,
  .current {
    font-size: 2rem;
    position: relative;
    /*opacity: .6;*/ }
  .current::before {
    /* line underlining a menu link*/
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000; }
  footer i:hover {
    color: #353030;
    opacity: .6; } }
/*# sourceMappingURL=style.css.map */