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

html {
  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: 0; }

h1 {
  text-transform: uppercase;
  font-size: 2rem;
  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 -- */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.container {
  position: absolute;
  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: absolute;
  top: 0;
  left: 0; }

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

/* header manipulation 

.scrolling-active{
    background-color: #40474E;
    /*box-shadow: rgba(255, 255, 255, 0.9);
}

 end of header manipulation */
.menu-icons {
  position: fixed;
  top: 2rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border-radius: .4rem;
  cursor: pointer;
  z-index: 9999; }

.menu-icons i {
  font-size: 3rem;
  margin: auto;
  color: #000; }

.nav-list {
  width: 25rem;
  height: 100vh;
  padding-left: 2rem;
  background: #fff3f0;
  position: fixed;
  top: 0;
  right: -25rem;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  overflow-y: scroll;
  -webkit-transition: all 650ms ease-in-out;
  transition: all 650ms ease-in-out; }
  .nav-list li {
    position: relative; }
  .nav-list a {
    display: block;
    color: black;
    padding: 0;
    font-size: 1.6rem;
    -webkit-transition: color 550ms;
    transition: color 550ms; }
    .nav-list a:hover {
      color: #eb3007; }

.sub-menu li {
  padding: .5rem; }

.nav-list.active {
  right: 0; }

.close {
  position: absolute;
  top: 2rem;
  right: 1rem; }

.nav-item {
  /*background-color:red;*/
  margin: 1rem;
  display: block;
  /*visibility: visible;*/ }

.sub-menu {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1rem;
  opacity: 0;
  height: 0;
  visibility: hidden;
  border: 2px solid transparent;
  border-left-color: #655a5a;
  /*background-color: blue;*/ }

.sub-menu-item {
  display: block;
  padding: 0 1rem; }

.sub-menu-link {
  padding: 1rem 0; }

.sub-menu.active {
  display: block;
  visibility: visible;
  opacity: 1;
  height: initial;
  margin-top: .5rem; }

footer {
  width: 100%;
  padding: .1rem 0;
  background: #fff3f0;
  color: rgba(0, 0, 0, 0.7);
  text-align: center; }
  footer p {
    font-size: 1.2rem;
    line-height: initial; }
  footer i {
    font-size: 2rem;
    margin: 1rem;
    color: black;
    opacity: .7; }
  footer i:hover {
    color: #494343; }
  footer .credit {
    color: rgba(0, 0, 0, 0.7); }

.section {
  margin: 8rem 1rem 2rem 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*background-color: red;*/ }
  .section h1 {
    margin: 1rem;
    /*padding: 1rem 0 0;*/ }
  .section .section-post {
    background: #fff3f0;
    /*background-color: green;*/
    width: 100%;
    margin: 0 auto;
    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;
    /*margin-bottom: 2rem;*/ }
    .section .section-post img {
      max-width: 40rem;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      padding: 1rem; }
  .section .section__text {
    /*background: #fff3f0;*/
    /*background-color: blue;*/
    /*margin-top: 1rem;*/
    max-width: 50rem;
    padding: 1rem; }
    .section .section__text p {
      font-size: 1.4rem;
      text-align: justify;
      /*line-height: 3rem;*/ }
    .section .section__text i {
      font-size: 1.4rem;
      margin-right: 1rem;
      color: #000; }
    .section .section__text span {
      color: #000;
      font-size: 1.4rem; }
    .section .section__text .phone {
      letter-spacing: .1rem;
      font-size: 1.4rem; }

.aboutme {
  padding: 0;
  margin: 3rem 1rem 0; }
  .aboutme h1 {
    margin: 5rem 0 1rem;
    padding: 1rem 0 0; }
  .aboutme .aboutme-post {
    margin-top: 0;
    background-color: #fff3f0;
    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: 50rem;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      padding: 1rem; }
    .aboutme .aboutme-post .aboutme__text {
      /*background: #fff3f0*/
      /*background-color: blue;*/
      max-width: 50rem;
      /*padding: 1rem;*/ }
      .aboutme .aboutme-post .aboutme__text p {
        font-size: 1.4rem;
        text-align: justify;
        line-height: 3rem; }
      .aboutme .aboutme-post .aboutme__text i {
        font-size: 1.4rem;
        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.4rem; }
      .aboutme .aboutme-post .aboutme__text .center {
        text-align: center;
        font-weight: bold;
        font-size: 2.5rem; }
  .aboutme .pricelist {
    background-color: #fff3f0;
    /*background-color: green;*/
    max-width: 150rem;
    margin: 0 auto;
    margin-bottom: 2rem; }
    .aboutme .pricelist .pricelist__text {
      max-width: 150rem;
      width: 100%;
      text-align: center; }
      .aboutme .pricelist .pricelist__text p {
        font-size: 1.4rem;
        line-height: 3rem; }
      .aboutme .pricelist .pricelist__text .heading {
        text-align: center;
        font-weight: bold;
        font-size: 1.4rem;
        padding-top: 1rem; }
      .aboutme .pricelist .pricelist__text .nonrefundable {
        display: block;
        padding: 1rem;
        font-weight: bold;
        text-align: center;
        font-size: 1.4rem; }
  .aboutme span.space {
    display: inline-block;
    /*background-color: yellow;*/
    margin-left: 2rem; }
    .aboutme span.space:hover {
      color: initial; }

.dotted li {
  font-size: 1.4rem; }

ul.social-media {
  margin-bottom: 2rem; }
  ul.social-media li {
    font-size: 1.2rem;
    margin-bottom: 1rem; }
    ul.social-media li a span {
      color: rgba(196, 26, 26, 0.3); }

.session__text, h2, h3 {
  font-size: 1.4rem;
  text-align: justify; }
  .session__text h3, h2 h3, h3 h3 {
    text-align: left;
    font-weight: normal; }
  .session__text h2, h2 h2, h3 h2 {
    text-align: left;
    margin: 2rem 0;
    text-transform: uppercase; }

/* form styles */
form {
  margin-top: 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 label {
    display: block;
    font-size: 1.4rem; }
  form p {
    margin: 0; }
  form .full {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3; }
  form button, form input, form textarea {
    width: 100%;
    padding: 1rem; }
  form button {
    background-color: black;
    color: white;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 2s ease-out;
    transition: 2s ease-out; }
    form button:hover {
      background-color: #353030;
      outline: 0;
      -webkit-transition: background-color .3s ease-out;
      transition: background-color .3s ease-out; }
    form button:focus {
      background-color: #353030;
      outline: 0;
      -webkit-transition: background-color 2s ease-out;
      transition: background-color 2s ease-out; }

/* -- 6. MEDIA -- */
@media screen and (min-width: 1025px) {
  nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 8rem;
    /*position: fixed;
        top: 0;
        left: 0;*/ }
  .menu-icons, .menu-icons i {
    display: none; }
  .nav-list {
    width: 100%;
    max-width: 80rem;
    height: initial;
    padding-left: initial;
    background: transparent;
    position: initial;
    top: initial;
    right: initial;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    z-index: 9999;
    overflow-y: initial; }
    .nav-list .nav-item {
      line-height: 8rem;
      /*background-color: blue;*/
      position: relative; }
    .nav-list .disabled {
      pointer-events: none; }
    .nav-list .nav-link {
      display: block;
      font-size: 1.8rem;
      /*text-transform: uppercase;*/
      color: #000;
      letter-spacing: 1px;
      -webkit-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out; }
      .nav-list .nav-link:hover {
        color: #eb3007; }
  .sub-menu {
    width: 21rem;
    display: block;
    position: absolute;
    top: 3rem;
    right: -5rem;
    background: #faf0e5;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: initial;
    opacity: 0;
    height: initial;
    visibility: hidden;
    border: none;
    border-left-color: none;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out; }
    .sub-menu .sub-menu-item {
      padding: .5rem; }
    .sub-menu .sub-menu-link {
      font-size: 1.8rem;
      letter-spacing: 1px;
      /*text-transform: uppercase;*/
      line-height: initial;
      text-align: center;
      margin: .6rem 0;
      -webkit-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out; }
      .sub-menu .sub-menu-link:hover {
        color: #eb3007; }
  .nav-list li:hover > .sub-menu {
    top: 6rem;
    opacity: 1;
    visibility: visible; }
  .section {
    margin-top: 7.5rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    /*background-color: red;*/ }
    .section h1 {
      font-size: 3rem;
      margin: 3rem; }
    .section .section-post {
      /*background-color: green;*/
      max-width: 150rem;
      width: 100%;
      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: center;
          -ms-flex-pack: center;
              justify-content: center;
      /*margin-bottom: 2rem;*/ }
      .section .section-post img {
        max-width: 40rem;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        padding: 1rem; }
    .section .section__text {
      /*background: #fff3f0;*/
      /*background-color: blue;*/
      margin-top: 1rem;
      max-width: 50rem;
      padding: 1rem; }
      .section .section__text p {
        font-size: 1.5rem;
        text-align: justify; }
      .section .section__text i {
        font-size: 1.6rem;
        margin-right: 1rem;
        color: #000; }
      .section .section__text span {
        color: #000; }
      .section .section__text .phone {
        letter-spacing: .1rem;
        font-size: 1.5rem; }
  .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; }
  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-left: 5rem; } }

@media screen and (min-width: 1400px) {
  .container {
    height: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*background-color: red;*/ }
    .container nav {
      /*background-color: blue;*/
      width: 100%;
      height: 12rem; }
      .container nav img {
        margin-top: 2rem;
        width: 60rem; }
  .section h1 {
    margin-top: 7rem;
    padding-top: 0; } }
/*# sourceMappingURL=style3.css.map */