/* --- 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: 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;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39);
          box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39); }

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

.logo img {
  /* styling for logo */
  width: 25rem;
  -webkit-transition: .1s;
  transition: .1s; }

.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 500ms ease-in-out;
  transition: all 500ms 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; }

.masonry {
  padding: 1rem;
  margin-top: 6rem; }
  .masonry h1 {
    margin: 2rem;
    padding: 1rem 0 0; }

.backstage {
  padding: 1rem 0;
  margin-top: 0; }

/*.gallery {
    margin: 0 auto;
    column-count: 3;
    column-gap: .6em;
}

.item {
    display: inline-block;
    margin: 0 0 .3em;
    width: 100%;
}*/
.item:hover {
  opacity: .7; }

.margin-top {
  margin-top: 6rem; }

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; }

body.hidden-scroll {
  overflow: hidden; }

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  opacity: 0.7;
  display: none;
  z-index: 1035; }

.sl-wrapper {
  z-index: 1040; }
  .sl-wrapper button {
    border: 0 none;
    background: transparent;
    font-size: 28px;
    padding: 0;
    cursor: pointer; }
    .sl-wrapper button:hover {
      opacity: 0.7; }
  .sl-wrapper .sl-close {
    display: none;
    position: fixed;
    right: 30px;
    top: 60px;
    z-index: 10060;
    margin-top: -14px;
    margin-right: -14px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-family: Arial, Baskerville, monospace;
    color: #000;
    font-size: 3rem; }
    .sl-wrapper .sl-close:focus {
      outline: none; }
  .sl-wrapper .sl-counter {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1060;
    color: #000;
    font-size: 1rem; }
  .sl-wrapper .sl-navigation {
    width: 100%;
    display: none; }
    .sl-wrapper .sl-navigation button {
      position: fixed;
      top: 50%;
      margin-top: -22px;
      height: 44px;
      width: 22px;
      line-height: 44px;
      text-align: center;
      display: block;
      z-index: 10060;
      font-family: Arial, Baskerville, monospace;
      color: #000; }
      .sl-wrapper .sl-navigation button.sl-next {
        right: 5px;
        font-size: 2rem; }
      .sl-wrapper .sl-navigation button.sl-prev {
        left: 5px;
        font-size: 2rem; }
      .sl-wrapper .sl-navigation button:focus {
        outline: none; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 10px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 10px;
            font-size: 3rem; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 20px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 20px;
            font-size: 3rem; } }
  .sl-wrapper .sl-image {
    position: fixed;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 10000; }
    .sl-wrapper .sl-image img {
      margin: 0;
      padding: 0;
      display: block;
      border: 0 none;
      width: 100%;
      height: auto; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
    .sl-wrapper .sl-image iframe {
      background: #000;
      border: 0 none; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
    .sl-wrapper .sl-image .sl-caption {
      display: none;
      padding: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.8);
      font-size: 1rem;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-top {
        bottom: auto;
        top: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-outside {
        bottom: auto; }
    .sl-wrapper .sl-image .sl-download {
      display: none;
      position: absolute;
      bottom: 5px;
      right: 5px;
      color: #000;
      z-index: 1060; }

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite; }

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.sl-transition {
  transition: -webkit-transform ease 200ms;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms; }

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

/* -- 6. MEDIA -- */
@media screen and (min-width: 801px) {
  .section h1 {
    margin: 2rem;
    font-size: 2.5rem; }
  .section .section-post {
    padding: 1rem;
    background: #fff3f0;
    /*background-color: green;*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .section .section-post .section__img {
      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;
      width: 80rem;
      /*max-height: 80rem;*/
      /*background-color:blue;*/ }
      .section .section-post .section__img img {
        max-width: 80rem; }
    .section .section-post .section__text {
      /*background-color: blue;*/
      margin: 0;
      padding: 0;
      max-width: 100rem; }
    .section .section-post .cakesmash__text {
      min-width: 39.5rem; }
  .cakesmash__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .cakesmash__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .aboutme {
    /*background-color:red;*/
    padding: 1rem;
    width: 100%;
    /*min-width: 76rem;
        max-width: 160rem;*/
    margin: 0 auto; }
    .aboutme h1 {
      margin-top: 7rem; }
    .aboutme .aboutme-post {
      max-width: 160rem;
      background-color: #fff3f0;
      /*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;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      /*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: 0; }
        .aboutme .aboutme-post .aboutme__img img {
          min-width: 50rem;
          max-width: 80rem;
          height: auto;
          -o-object-fit: cover;
             object-fit: cover;
          display: block;
          padding: 1rem; }
      .aboutme .aboutme-post .aboutme__text {
        padding: 0 2rem;
        width: 100%;
        /*background-color:red;*/
        /*margin-left: 20rem;*/ }
        .aboutme .aboutme-post .aboutme__text p {
          font-size: 1.6rem;
          /*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: 1rem;
          font-weight: bold;
          text-align: center; }
          .aboutme .aboutme-post .aboutme__text .nonrefundable:hover {
            color: initial; }
      .aboutme .aboutme-post .margin-left {
        margin-left: 0; }
    .aboutme .dotted {
      font-size: 1.4rem; }
  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; } }

@media screen and (min-width: 1025px) {
  .container {
    -webkit-box-shadow: initial;
            box-shadow: initial; }
  .scrolling-active {
    height: 8rem; }
    .scrolling-active nav {
      height: 8rem;
      -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39);
              box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39); }
  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 {
    /*background-color: red;*/ }
    .section h1 {
      font-size: 3rem;
      margin: 3rem; }
    .section .section-post {
      width: 100%;
      min-width: 98rem;
      /*max-width: 180rem;*/
      /*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;
      padding: 0;
      /*box-shadow: 0 1.4rem 8rem rgba(0,0,0,.2);*/ }
      .section .section-post .section__img {
        /*background-color: blue;*/
        min-width: 60rem;
        max-width: 70rem;
        padding: 0; }
        .section .section-post .section__img img {
          min-width: 60rem;
          /*height: 50rem;*/
          -o-object-fit: cover;
             object-fit: cover;
          display: block; }
        .section .section-post .section__img .kasia__img {
          width: 50rem; }
          .section .section-post .section__img .kasia__img img {
            width: 50rem;
            -o-object-fit: contain;
               object-fit: contain;
            display: block; }
      .section .section-post .section__text {
        padding: 0 2rem;
        /*margin-left: 20rem;*/ }
        .section .section-post .section__text p {
          font-size: 1.6rem;
          margin-top: 2rem;
          margin-bottom: 2rem;
          text-align: justify; }
        .section .section-post .section__text i {
          font-size: 2rem;
          margin-right: 1rem;
          color: #000; }
        .section .section-post .section__text span {
          color: #000;
          -webkit-transition: 550ms;
          transition: 550ms; }
          .section .section-post .section__text span:hover {
            color: #eb3007; }
        .section .section-post .section__text .phone {
          letter-spacing: .1rem; }
        .section .section-post .section__text .heading {
          margin-top: 2rem;
          text-align: center;
          font-weight: bold;
          font-size: 2rem; }
        .section .section-post .section__text .center {
          text-align: center;
          font-weight: bold;
          font-size: 2.5rem; }
        .section .section-post .section__text span.space {
          display: inline-block;
          /*background-color: red;*/
          margin-left: 2rem; }
          .section .section-post .section__text span.space:hover {
            color: initial; }
        .section .section-post .section__text .nonrefundable {
          display: block;
          padding-top: 2rem;
          font-weight: bold;
          text-align: center; }
          .section .section-post .section__text .nonrefundable:hover {
            color: initial; }
    .section .pricelist {
      margin: 2rem 0 2rem 0; }
    .section .dotted {
      font-size: 2rem; }
  .aboutme h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-top: 8rem; }
  .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 h2.heading {
        font-size: 1.8rem;
        padding: 3rem 0 0; }
      .aboutme .pricelist .pricelist__text p {
        font-size: 1.6rem;
        padding: 1rem;
        text-align: left; }
      .aboutme .pricelist .pricelist__text .nonrefundable {
        display: block;
        padding: 1rem;
        font-weight: bold;
        text-align: center;
        font-size: 1.8rem; }
  .dotted li {
    font-size: 1.6rem; }
  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; }
  .masonry h1 {
    font-size: 3rem;
    margin: 2rem;
    padding-top: 1rem; }
  .session__text {
    line-height: 3rem; }
  .session__text, h2, h3 {
    font-size: 1.6rem; } }

@media screen and (min-width: 1400px) {
  .container {
    height: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*background-color: blue;*/ }
    .container nav {
      /*background-color: blue;*/
      width: 100%;
      height: 12rem; }
      .container nav img {
        margin-top: 2rem;
        width: 60rem; }
  .scrolling-active nav {
    height: 8rem;
    -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39);
            box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.39); }
    .scrolling-active nav img {
      width: 35rem; }
  .section {
    margin: 12rem auto 0 auto;
    padding: 0;
    /*background-color: red;*/
    /*background-color: red;*/ }
    .section h1 {
      margin: 2.9rem; }
    .section .section-post {
      /*background-color: red;*/
      margin: 1rem; }
      .section .section-post .section__img {
        width: 50rem;
        padding: 0;
        margin: 0; }
        .section .section-post .section__img img {
          padding: 1rem; }
      .section .section-post .section__text {
        /*background-color: yellow;*/
        margin: 0 2rem; }
        .section .section-post .section__text p {
          font-size: 1.6rem; }
  .session {
    /*background-color: red;*/
    width: 100%; }
    .session .session-post {
      /*background-color: green;*/
      margin: 0 auto; }
      .session .session-post .session__img {
        /*background-color: yellow;*/
        width: 70rem;
        height: auto; }
        .session .session-post .session__img img {
          width: 70rem;
          height: auto; }
      .session .session-post .session__text {
        /*background-color: blue;*/
        max-width: 110rem;
        line-height: 3.5rem;
        margin: 0 auto; }
        .session .session-post .session__text h2 {
          font-size: 1.8rem; }
  .dotted li {
    font-size: 2rem;
    /*background-color:yellow;*/ }
  .aboutme h1 {
    margin-top: 12rem;
    font-size: 3rem; }
  .aboutme .aboutme-post {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .aboutme .aboutme-post .aboutme__text {
      margin: 0 auto; }
  /* about me section - photos under the text */
  .masonry {
    margin-top: 11rem; }
    .masonry h1 {
      padding: 0; }
  .backstage {
    margin: 1rem; } }
/*# sourceMappingURL=style2.css.map */