.container {
  max-width: 1100px;
  padding: 0 2rem;
  margin: auto;
  overflow: hidden;
}

.btn-main {
  display: inline-block;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-main {
  background: #dba57e;
  color: #fff;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  background: #e8b38d;
  color: #fff;
  outline: none;
}

.btn-light {
  background: #fff;
  color: #3e3e3e;
}

.read-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}
.read-more-btn a {
  font-weight: bold;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.read-more-btn i {
  margin-left: 10px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.read-more-btn:hover i {
  -webkit-transform: translateX(7px);
  -ms-transform: translateX(7px);
  transform: translateX(7px);
}

.bg-dark {
  background: #3e3e3e;
  color: #fff;
}

.bg-light {
  background: #f4f4f4;
  color: #3e3e3e;
  -webkit-box-shadow: 0 6px 16px #eeeded;
  box-shadow: 0 6px 16px #eeeded;
}

.type {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 50px;
}
.type .fix-text-height {
  color: transparent;
}

.section-title {
  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;
}
.section-title .box {
  margin-bottom: 25px;
  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;
}
.section-title .box .lead {
  display: inline-block;
  font-size: 34px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #3e3e3e;
}
.section-title .box .bottom-line {
  text-align: start;
  background: #dba57e;
  height: 3px;
  width: 100px;
}

.visible-in-mobile {
  display: none;
}

.highlighted {
  font-weight: 400;
}

.ahead {
  font-weight: 700;
}

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

.current {
  padding-bottom: 5px;
  color: #dba57e;
}

#logo:active,
#logo:focus,
#logoC:active,
#logoC:focus {
  outline: none;
}

.py-5 {
  padding: 5px 0;
}

.py-10 {
  padding: 10px 0;
}

.py-20 {
  padding: 20px 0;
}

.py-30 {
  padding: 30px 0;
}

.parallax,
.parallax-2 {
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  height: 90vh;
  color: #fff;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.parallax .showcase-content,
.parallax-2 .showcase-content {
  opacity: 1;
  background: transparent;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.parallax .showcase-content h1,
.parallax-2 .showcase-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 36px;
}
.parallax .showcase-content p,
.parallax-2 .showcase-content p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.parallax .showcase-content h1,
.parallax-2 .showcase-content h1 {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  -webkit-animation: all 0.5s forwards ease-in 1.2s;
  animation: all 0.5s forwards ease-in 1.2s;
}
.parallax .showcase-content p,
.parallax-2 .showcase-content p {
  opacity: 0;
  -webkit-animation: opacity 0.5s forwards ease-in 1.8s;
  animation: opacity 0.5s forwards ease-in 1.8s;
}

@-webkit-keyframes all {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes all {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes opacity {
  to {
    opacity: 1;
  }
}

@keyframes opacity {
  to {
    opacity: 1;
  }
}

/* Testimonials container */
.testimonials-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  /* Testimonials */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* Buttons hover */
}
.testimonials-container .testimonial {
  display: none;
  padding: 30px 80px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-align: left;
  position: relative;
}
.testimonials-container .testimonial p {
  line-height: 1.8;
  font-size: 18px;
  width: 80%;
  margin: auto;
  height: 180px;
}
.testimonials-container .testimonial p .quotes-end,
.testimonials-container .testimonial p .quotes-start {
  font-size: 50px;
  line-height: 0;
  font-family: "IM Fell Double Pica", serif;
  position: relative;
  color: #dba57e;
  top: 17px;
}
.testimonials-container .testimonial .author {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-align: end;
  padding-right: 15%;
  font-size: 20px;
  padding-top: 20px;
  color: #3e3e3e;
}
.testimonials-container .prev,
.testimonials-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #3e3e3e;
  opacity: 1;
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.testimonials-container .next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}
.testimonials-container .prev:hover,
.testimonials-container .next:hover {
  opacity: 0.6;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 7px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  -o-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active,
.dot:hover {
  background-color: #717171;
}

.section-prices {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}
.section-prices.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.section-prices:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#ffcdaa)
  );
  background: -o-linear-gradient(left, #ffffff, #ffcdaa);
  background: linear-gradient(to right, #ffffff, #ffcdaa);
  opacity: 0.4;
  z-index: -3;
}
.section-prices .section-title {
  position: relative;
  top: 45px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 15%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-out 0.3s;
  -o-transition: all 0.5s ease-out 0.3s;
  transition: all 0.5s ease-out 0.3s;
}
.section-prices .section-title.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.section-prices .section-image {
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-out 0.3s;
  -o-transition: all 0.5s ease-out 0.3s;
  transition: all 0.5s ease-out 0.3s;
}
.section-prices .section-image.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.section-prices .section-image img {
  display: block;
  width: 100%;
  height: auto;
}
.section-prices .section-table {
  position: relative;
  top: -300px;
  margin-left: 40%;
  background: #fff;
  -webkit-box-shadow: 0 3px 16px #3e3e3e29;
  box-shadow: 0 3px 16px #3e3e3e29;
  min-width: 350px;
  padding: 20px 30px 10px 30px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.section-prices .section-table.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.section-prices .section-table h3 {
  margin-bottom: 15px;
}
.section-prices .section-table p {
  line-height: 1.4;
}
.section-prices .section-table .row {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.section-prices .section-table .row .service {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 18px;
}
.section-prices .section-table .row .dots {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  letter-spacing: 10px;
}
.section-prices .section-table .row .price {
  margin-left: 5px;
}

.follow-me {
  position: relative;
  margin-top: 70px;
  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;
  padding: 30px 0 40px 0;
}
.follow-me:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#ffcdaa)
  );
  background: -o-linear-gradient(left, #ffffff, #ffcdaa);
  background: linear-gradient(to right, #ffffff, #ffcdaa);
  opacity: 0.4;
  z-index: -3;
}
.follow-me-text {
  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;
}
.follow-me-text p {
  width: 70%;
  margin-bottom: 20px;
}
.follow-me a {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #3e3e3e;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.follow-me a:hover i {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background: #fff;
  scroll-behavior: smooth;
}

.lock-scroll {
  overflow: hidden;
}

h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3e3e3e;
  line-height: 1.6;
}

p {
  color: #575756;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: 18px;
}

ul,
li {
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #3e3e3e;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

#main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fbfcfc;
  opacity: 1;
  padding: 10px 0;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  z-index: 5;
}
#main-nav #logo {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  margin-top: 5px;
}
#main-nav .logo-circle {
  display: none;
}
#main-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#main-nav .page-s-links {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#main-nav .page-s-links #modalBtn {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
#main-nav .page-s-links #modalBtn:hover {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
#main-nav .page-s-links #modalBtn .bell {
  margin-left: 20px;
}
#main-nav .page-s-links .modal {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
#main-nav .page-s-links .modal .modal-content {
  background-color: rgba(244, 244, 244, 0.95);
  margin: 18% auto;
  padding: 60px 20px 60px 6%;
  width: 70%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-animation: modalopen 1s;
  animation: modalopen 1s;
  position: relative;
}
#main-nav .page-s-links .modal .modal-content:after {
  content: "";
  position: absolute;
  top: 25%;
  left: 5%;
  height: 50%;
  width: 4px;
  background-color: #dba57e;
}
#main-nav .page-s-links .modal .modal-content .modal-header h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #dba57e;
}
#main-nav .page-s-links .modal .modal-content .modal-header .closeBtn {
  color: #ccc;
  float: right;
  font-size: 30px;
  position: absolute;
  right: 40px;
  top: 20px;
}
#main-nav .page-s-links .modal .modal-content .modal-header .closeBtn:hover,
#main-nav .page-s-links .modal .modal-content .modal-header .closeBtn:focus {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
#main-nav .page-s-links .modal .modal-content p {
  line-height: 1.7;
}

@-webkit-keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#main-nav .page-s-links .link {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  /* Nested dropdown show */
}
#main-nav .page-s-links .link:hover {
  cursor: pointer;
  border-bottom: 2px solid #dba57e;
  color: #dba57e;
}
#main-nav .page-s-links .link:hover .link-a {
  color: #dba57e;
}
#main-nav .page-s-links .link ul {
  display: none;
  opacity: 0;
  -webkit-transition: 0.05s ease;
  -o-transition: 0.05s ease;
  transition: 0.05s ease;
}
#main-nav .page-s-links .link ul li {
  -webkit-transition: background 0.05s ease;
  -o-transition: background 0.05s ease;
  transition: background 0.05s ease;
}
#main-nav .page-s-links .link ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 10px;
}
#main-nav .page-s-links .link ul div {
  opacity: 0;
  height: 20px;
  width: 2px;
  background: #dba57e;
  margin-right: 10px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
#main-nav .page-s-links .link:hover ul {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  width: 135px;
  margin-top: 3px;
  z-index: 20;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 6px 12px rgba(103, 63, 35, 0.32);
  box-shadow: 0 6px 12px rgba(103, 63, 35, 0.32);
}
#main-nav .page-s-links .link:hover ul li:hover {
  background: #f8eee7;
}
#main-nav .page-s-links .link:hover ul li:hover div {
  opacity: 1;
}
#main-nav .btn-main {
  padding: 5px 70px;
}

#main-nav-2 {
  display: none;
  z-index: 20;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  opacity: 1;
  z-index: 20;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
#navbar .logo-nav {
  width: 60%;
}
#navbar #modalBtn2 {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
#navbar #modalBtn2:hover {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
#navbar .modal2 {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
#navbar .modal2 .modal-content {
  background-color: rgba(244, 244, 244, 0.95);
  margin: 18% auto;
  padding: 60px 25px 60px 8%;
  width: 85%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-animation: modalopen 1s;
  animation: modalopen 1s;
  position: relative;
}
#navbar .modal2 .modal-content:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 5%;
  height: 60%;
  width: 4px;
  background-color: #dba57e;
}
#navbar .modal2 .modal-content .modal-header h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #dba57e;
}
#navbar .modal2 .modal-content .modal-header .closeBtn2 {
  color: #ccc;
  float: right;
  font-size: 30px;
  position: absolute;
  right: 40px;
  top: 20px;
}
#navbar .modal2 .modal-content .modal-header .closeBtn2:hover,
#navbar .modal2 .modal-content .modal-header .closeBtn2:focus {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
#navbar .modal2 .modal-content p {
  line-height: 1.7;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#logo {
  -webkit-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
  margin-top: 5px;
}

.menu-wrap {
  position: relative;
  top: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 45px;
  opacity: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 2;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 45px;
  height: 60px;
  width: 60px;
  background: transparent;
  padding: 1rem;
  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;
  z-index: 1;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

/* Hamburger line */
.menu-wrap .hamburger > div {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #dba57e;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  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;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* Hamburger top & bottom line */
.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  background: inherit;
  height: 2px;
  width: 100%;
  z-index: 1;
}

.menu-wrap .hamburger > div:after {
  top: -10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Rotate on hover when checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.menu {
  position: fixed;
  top: 80px;
  right: 0;
  background: rgba(62, 62, 62, 0.7);
  height: 100vh;
  width: 0;
  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;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.only-mobile {
  display: none;
}

.menu > div {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  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;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.menu .btn-main {
  padding: 5px 70px;
  margin-top: 120px;
}
.menu .btn-main:hover,
.menu .btn-main:focus,
.menu .btn-main:active {
  background: #e8b38d;
  color: #fff;
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 1rem 0;
}

.menu > div a {
  text-decoration: none;
  color: #fafafa;
  font-size: 1.5rem;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  border-left: none;
}

.menu a:hover {
  color: #dba57e;
  -webkit-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  opacity: 1;
  visibility: visible;
  width: 60vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.menu-wrap .toggler:checked ~ .menu > div {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in;
  -o-transition: opacity 0.6s ease-in;
  transition: opacity 0.6s ease-in;
}

.menu-wrap .toggler:checked ~ .menu > div a {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in;
  -o-transition: opacity 0.6s ease-in;
  transition: opacity 0.6s ease-in;
}

.parallax {
  background: url("/img/home-page/showcase.jpg") no-repeat bottom left/cover;
  padding-left: 50vw;
  padding-right: 70px;
}
.parallax .showcase-content {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.parallax .showcase-content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.parallax .showcase-content .buttons .btn-left,
.parallax .showcase-content .buttons .btn-right {
  width: 120px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 18px;
}
.parallax .showcase-content .buttons .btn-left {
  border-right: 1px solid #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.parallax .showcase-content .buttons .btn-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.parallax .showcase-content .btn-left,
.parallax .showcase-content .btn-right {
  color: none;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  opacity: 0;
  -webkit-animation: button 0.6s forwards ease-out 2.4s;
  animation: button 0.6s forwards ease-out 2.4s;
  position: relative;
}

@-webkit-keyframes button {
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
    color: #fff;
  }
}

@keyframes button {
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
    color: #fff;
  }
}

#home-a {
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
}
#home-a .intro-text {
  height: 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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 65%;
}
#home-a .intro-text h3 {
  margin-bottom: 15px;
}

#home-b {
  margin-top: 100px;
  background: #fff;
}
#home-b .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 15px;
}
#home-b .items .item-image {
  height: auto;
  position: relative;
}
#home-b .items .item-image img {
  height: 100%;
  width: 100%;
  display: block;
}
#home-b .items .item-text {
  padding: 20px 0;
}
#home-b .items .item-text h2 {
  padding-bottom: 5px;
}
#home-b .items .item-text p {
  font-size: 16px;
}

#home-c {
  margin-top: 100px;
  width: 100vw;
  height: 500px;
}
#home-c .card {
  height: 100%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -o-linear-gradient(135deg, #fff, #edc1a2, #fff, #edc1a2);
  background: linear-gradient(-45deg, #fff, #edc1a2, #fff, #edc1a2);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  position: relative;
  z-index: -1;
}
#home-c .card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/img/home-page/friends.jpg) no-repeat center center/cover;
  opacity: 0.5;
  z-index: 1;
}
#home-c .card .card-text {
  z-index: 2;
  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;
  text-align: left;
  margin-left: 50px;
}
#home-c .card .card-text .bold {
  font-weight: 400;
}
#home-c .card .card-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
#home-c .card .card-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  z-index: 2;
  width: 35%;
  margin-left: 25px;
  color: #3e3e3e;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

#home-d {
  position: relative;
  margin-top: 100px;
  margin-bottom: -100px;
}
#home-d .section-title {
  margin-bottom: 15px;
}

#main-footer {
  position: relative;
  top: 115px;
  margin-top: 70px;
  height: 80px;
  background: #3e3e3e;
}
#main-footer .footer-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  padding: 20px;
}
#main-footer .footer-content .email-link {
  border-bottom: 1px solid #fff;
  font-weight: 300;
}
#main-footer .footer-content a {
  color: #fff;
}
#main-footer .footer-content p {
  color: #fff;
}
#main-footer .footer-content .social a {
  color: #fff;
  margin-right: 15px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.2 ease;
  -o-transition: 0.2 ease;
  transition: 0.2 ease;
}
#main-footer .footer-content .social a:hover i {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

#main-nav .current {
  padding: 0;
}

.parallax-2 {
  background: url("/img/men-showcase.jpg") no-repeat top center/cover;
  padding-right: 57vw;
  padding-left: 5vw;
}
.parallax-2 .showcase-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.parallax-2 .showcase-content h1 {
  color: #3e3e3e;
}
.parallax-2 .showcase-content p {
  color: #575756;
  font-weight: 300;
  font-size: 18px;
}
.parallax-2 .showcase-content .circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
.parallax-2 .showcase-content .circles .circle {
  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;
  height: 120px;
  width: 120px;
  background: transparent;
  border: 1px solid #3e3e3e;
  border-radius: 50%;
}
.parallax-2 .showcase-content .circles .circle h3 {
  color: #3e3e3e;
  border-top: 1px solid #3e3e3e;
  border-bottom: 1px solid #3e3e3e;
  margin: 5px 0 12px 0;
  font-size: 16px;
  padding-bottom: 0;
}
.parallax-2 .showcase-content .circles .circle-1 img,
.parallax-2 .showcase-content .circles .circle-2 img {
  -webkit-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
}
.parallax-2 .showcase-content .circles .circle-1 {
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-animation: circles 0.6s forwards ease-in-out 2.4s;
  animation: circles 0.6s forwards ease-in-out 2.4s;
}
.parallax-2 .showcase-content .circles .circle-2 {
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-animation: circles 0.6s forwards ease-in-out 2.6s;
  animation: circles 0.6s forwards ease-in-out 2.6s;
}
.parallax-2 .showcase-content .circles .circle-3 {
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-animation: circles 0.6s forwards ease-in-out 2.8s;
  animation: circles 0.6s forwards ease-in-out 2.8s;
}
.parallax-2 .showcase-content .circles .circle-3 img {
  -webkit-transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
}

@-webkit-keyframes circles {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes circles {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

#men-section {
  position: relative;
  top: 115px;
  margin-top: 70px;
}
#men-section p {
  font-size: 18px;
}
#men-section h3 {
  font-size: 20px;
}
#men-section .subtitle,
#men-section .subtitle-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
  margin-top: 70px;
}
#men-section .subtitle img,
#men-section .subtitle-2 img {
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
  margin-right: 10px;
}
#men-section .subtitle .brush,
#men-section .subtitle-2 .brush {
  -webkit-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  transform: scale(0.6, 0.6);
}
#men-section .subtitle h2,
#men-section .subtitle-2 h2 {
  font-weight: 400;
  font-size: 20px;
  color: #3e3e3e;
}
#men-section h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
#men-section .row {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
#men-section .row .service {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 18px;
}
#men-section .row .dots {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  letter-spacing: 10px;
}
#men-section .row .price {
  margin-left: 5px;
  font-size: 18px;
  color: #3e3e3e;
}
#men-section .subtitle-2 {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}
#men-section .subtitle-2 h3 {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  transform: translateX(-8px);
}

.navigation-btn {
  height: 280px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 10px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.navigation-btn .nav-btn {
  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;
  height: 90px;
  width: 140px;
  -webkit-box-shadow: 0 0.5px 10px #3e3e3e29;
  box-shadow: 0 0.5px 10px #3e3e3e29;
  border-radius: 5px;
  margin: 0 50px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0;
  -webkit-transform: translateZ(50px);
  transform: translateZ(50px);
  -webkit-animation: all 2s forwards ease 0.3s;
  animation: all 2s forwards ease 0.3s;
  background: #fff;
  padding-bottom: 10px;
}
.navigation-btn .nav-btn:hover {
  -webkit-box-shadow: 0 3px 18px #3e3e3e29;
  box-shadow: 0 3px 18px #3e3e3e29;
}

@keyframes all {
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.navigation-btn .nav-btn h3 {
  color: #3e3e3e;
  border-top: 1px solid #3e3e3e;
  border-bottom: 1px solid #3e3e3e;
  font-size: 16px;
}
.navigation-btn .nav-btn-1 img,
.navigation-btn .nav-btn-2 img {
  -webkit-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  transform: scale(0.6, 0.6);
}
.navigation-btn .nav-btn-3 img {
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

#hairstyling,
#colouring,
#haircutting {
  width: 5px;
  height: 80px;
}

#hair-section-a {
  margin-bottom: -200px;
  -webkit-transition: all 0.5s ease-out 1s;
  -o-transition: all 0.5s ease-out 1s;
  transition: all 0.5s ease-out 1s;
}

#hair-section-b {
  margin-bottom: -200px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#hair-section-b .section-image {
  margin-left: 45%;
}
#hair-section-b .section-table {
  margin-left: 0;
  margin-right: 40%;
}
#hair-section-b .section-table p {
  font-size: 18px;
}
#hair-section-b .section-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 15%;
}

#hair-section-c {
  margin-bottom: -240px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#wedding-section-a .section-title {
  height: 210px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 50px;
  opacity: 0;
  -webkit-animation: all 0.5s forwards ease-in 0.3s;
  animation: all 0.5s forwards ease-in 0.3s;
}

@keyframes all {
  to {
    opacity: 1;
  }
}

#wedding-section-a .grid-elements {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.3fr 1fr;
  grid-template-columns: 1.3fr 1fr;
  -ms-grid-rows: (1fr) [3];
  grid-template-rows: repeat(3, 1fr);
  visibility: hidden;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.5s ease-out 0.8s;
  -o-transition: all 0.5s ease-out 0.8s;
  transition: all 0.5s ease-out 0.8s;
  grid-template-areas: "showcase text-right" "showcase image" "text-left image";
}
#wedding-section-a .grid-elements.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#wedding-section-a .grid-elements .element-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: showcase;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-out 0.8s;
  -o-transition: all 0.5s ease-out 0.8s;
  transition: all 0.5s ease-out 0.8s;
}
#wedding-section-a .grid-elements .element-1.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#wedding-section-a .grid-elements .element-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: text-right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: hidden;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.5s ease-out 0.8s;
  -o-transition: all 0.5s ease-out 0.8s;
  transition: all 0.5s ease-out 0.8s;
}
#wedding-section-a .grid-elements .element-2.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#wedding-section-a .grid-elements .element-2.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#wedding-section-a .grid-elements .element-2 h3 {
  width: 75%;
}
#wedding-section-a .grid-elements .element-3 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: text-left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 0;
  grid-column-end: 1;
  padding-top: 35%;
}
#wedding-section-a .grid-elements .element-3 p {
  width: 70%;
  line-height: 1.7;
  font-size: 18px;
}
#wedding-section-a .grid-elements .element-3 p .quotes-end,
#wedding-section-a .grid-elements .element-3 p .quotes-start {
  font-size: 50px;
  line-height: 0;
  font-family: "IM Fell Double Pica", serif;
  position: relative;
  color: #dba57e;
  top: 17px;
}
#wedding-section-a .grid-elements .element-3 .author {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  color: #3e3e3e;
}
#wedding-section-a .grid-elements .element-4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: image;
}
#wedding-section-a .grid-elements .element-4 img {
  width: 80%;
  height: auto;
}
#wedding-section-a .grid-elements .wedding-showcase img {
  width: 100%;
  height: auto;
}

#wedding-section-b .section-title-top {
  margin: 100px 0 50px 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.5s;
  -o-transition: all 0.5s ease-out 0.5s;
  transition: all 0.5s ease-out 0.5s;
}
#wedding-section-b .section-title-top.show {
  opacity: 1;
}

#wedding-section-b .section-prices {
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin-bottom: -250px;
}
#wedding-section-b .section-prices .section-table p {
  font-size: 18px;
}

#make-up-section-a .launch-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  margin: 80px 0 50px 0;
  opacity: 0;
  -webkit-animation: opacity 0.5s ease-in forwards;
  animation: opacity 0.5s ease-in forwards;
}

@keyframes opacity {
  to {
    opacity: 1;
  }
}
#make-up-section-a .launch-section img {
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#make-up-section-a .launch-section .launch-text {
  padding-right: 60px;
  padding-bottom: 20px;
}
#make-up-section-a .launch-section .launch-text .section-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#make-up-section-a .launch-section .launch-text p {
  font-size: 18px;
}

#make-up-section-b {
  margin-bottom: -300px;
}
#make-up-section-b .section-table {
  padding-top: 30px;
  padding-bottom: 30px;
}
#make-up-section-b .section-table .intro-prices {
  margin-bottom: 20px;
}
#make-up-section-b .section-table p {
  font-size: 18px;
}
#make-up-section-b .section-table h3 {
  margin-top: 30px;
}
#make-up-section-b .section-title-top {
  height: 120px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 50px;
  opacity: 0;
  -webkit-animation: all 0.5s forwards ease-in 0.3s;
  animation: all 0.5s forwards ease-in 0.3s;
}

@keyframes all {
  to {
    opacity: 1;
  }
}

#make-up-section-c {
  margin-top: 130px;
  width: 100vw;
  height: 400px;
}
#make-up-section-c .card {
  height: 100%;
  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;
  position: relative;
  background: url(/img//make-up-page/make-up.jpg) no-repeat center center/cover;
  z-index: -1;
  background-size: 170% 170%;
  -webkit-transition: all 0.5s ease-out 0.7s;
  -o-transition: all 0.5s ease-out 0.7s;
  transition: all 0.5s ease-out 0.7s;
}
#make-up-section-c .card.show {
  background-size: 100% 100%;
}
#make-up-section-c .card .card-text {
  width: 70%;
  padding-bottom: 40px;
}
#make-up-section-c .card .card-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
#make-up-section-c .card .card-text .bold {
  font-weight: 400;
}
#make-up-section-c .card .card-text p {
  font-size: 18px;
  line-height: 1.5;
}

#contact-section-a {
  margin-top: 80px;
  background: url(/img/contact-img.jpg) no-repeat top center/cover;
  width: 100%;
  height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#contact-section-a .box-content {
  position: relative;
  width: 50%;
  margin-right: 7%;
  z-index: 2;
  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;
  padding: 20px 30px;
}
#contact-section-a .box-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #3e3e3e;
  opacity: 0.8;
  z-index: 1;
  border: 1px solid #fff;
}
#contact-section-a .box-content p {
  color: #fff;
  z-index: 2;
}

#contact-section-b .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#contact-section-b .container .form-wrap {
  width: 55%;
  background: #f4f4f4;
  padding: 20px 35px;
  margin-top: 20px;
}
#contact-section-b .container .form-wrap .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}
#contact-section-b .container .form-wrap .form-group input,
#contact-section-b .container .form-wrap .form-group textarea {
  border: none;
}
#contact-section-b .container .form-wrap .form-group label {
  margin-bottom: 5px;
  position: relative;
}
#contact-section-b .container .form-wrap .form-group label::after {
  content: "*";
  position: absolute;
}
#contact-section-b .container .form-wrap .form-group input {
  height: 35px;
  margin-bottom: 20px;
  outline: none;
  padding-left: 10px;
  font-family: "Montserrat", sans-serif;
  color: #3e3e3e;
  font-size: 16px;
  font-weight: 300;
}
#contact-section-b .container .form-wrap .form-group textarea {
  height: 150px;
  outline: none;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  color: #3e3e3e;
  font-size: 16px;
  font-weight: 300;
}
#contact-section-b .container .form-wrap .btn-main {
  padding: 10px 25px;
  font-size: 18px;
  margin-top: 25px;
}
#contact-section-b .container .contact-details {
  margin-top: 20px;
  width: 35%;
}
#contact-section-b .container .contact-details #logo {
  margin-bottom: 20px;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
#contact-section-b .container .contact-details p {
  margin-bottom: 40px;
}
#contact-section-b .container .contact-details h3 {
  font-size: 16px;
}
#contact-section-b .container .contact-details .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact-section-b .container .contact-details .contact i {
  margin: 5px 20px 0 0;
}

#contact-section-c #map {
  height: 400px;
  width: 100%;
  margin-top: 40px;
}

#contact-section-d {
  margin-top: 70px;
  margin-bottom: -100px;
}

.section-title-form {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 70px;
}

#success {
  margin-top: 200px;
  text-align: center;
}
#success h1 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 20px;
}
#success p {
  font-size: 20px;
  margin-bottom: 20px;
}
#success .btn-main {
  padding: 5px 30px;
  font-size: 20px;
}

#about-section-a .bg-parallax-1 {
  background: url(/img/about/about-showcase.jpg) no-repeat center center/cover;
  height: 100vh;
  background-attachment: fixed;
  background-position: 0 80px;
  background-size: 100%;
  position: relative;
  top: 80px;
}

#about-section-a .block {
  height: 45%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 55%;
  background: #fff;
  padding: 25px 20px;
}
#about-section-a .block p {
  width: 85%;
}

#about-section-b .bg-parallax-2 {
  height: 50vh;
  background: url(/img/about/about-showcase.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
  background-position: 0 80px;
  background-size: 100%;
}

#about-section-b .block-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 100px;
}
#about-section-b .block-2 .about-image {
  width: 45%;
  height: auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
#about-section-b .block-2 .about-image img {
  width: 100%;
  height: auto;
}
#about-section-b .block-2 .about-text {
  width: 45%;
}
#about-section-b .block-2 .about-text h2 {
  margin-bottom: 20px;
}
#about-section-b .block-2 .about-text p {
  font-size: 18px;
}

#about-section-c {
  margin-bottom: -100px;
  text-align: center;
}

@media (min-width: 1300px) {
  #home-c .card .card-text {
    margin-left: 100px;
  }
  #about-section-a .block {
    padding-top: 5%;
  }
  #about-section-a .block .section-title {
    margin-bottom: 10px;
  }
  #contact-section-a {
    margin-top: 110px;
    height: 400px;
  }
  #contact-section-a .box-content {
    width: 40%;
    margin-right: 15%;
  }
  #make-up-section-c {
    height: 450px;
  }
  #make-up-section-c .card .card-text {
    width: 50%;
  }
  #wedding-section-a .grid-elements .element-3 {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .parallax-2 {
    padding-right: 58vw;
    padding-left: 8vw;
  }
}

@media (min-width: 1500px) {
  #contact-section-a {
    margin-top: 110px;
    height: 460px;
  }
}

@media (min-width: 1700px) {
  .container-large-screen {
    max-width: 1700px;
    margin: auto;
  }
  #main-nav {
    max-width: 1700px;
  }
  .parallax,
  .parallax-2 {
    height: 65vh;
    position: relative;
  }
  .parallax-2 .showcase-content {
    position: absolute;
    left: 150px;
    width: 35%;
  }
  .parallax .showcase-content {
    position: absolute;
    right: 200px;
    width: 35%;
  }
  #home-c {
    max-width: 1700px;
  }
  .section-prices:after {
    max-width: 1700px;
    right: 0;
    margin: auto;
  }
  #make-up-section-c {
    max-width: 1700px;
  }
}

@media (max-width: 1050px) {
  .container {
    max-width: 950px;
  }
  #main-nav .page-s-links {
    width: 70%;
  }
  .parallax,
  .parallax-2 {
    height: 550px;
    padding: 0;
    position: relative;
  }
  .parallax .showcase-content,
  .parallax-2 .showcase-content {
    position: absolute;
    right: 30px;
    width: 45%;
    padding: 30px 20px;
  }
  .parallax {
    background: url("/img/home-page/showcase.jpg") no-repeat 15% center/cover;
  }
  .parallax .showcase-content {
    color: #fff;
  }
  .parallax-2 {
    background: url("/img/men-showcase.jpg") no-repeat 60% center/cover;
  }
  .parallax-2 .showcase-content {
    position: absolute;
    left: 30px;
  }
  .parallax-2 .showcase-content p {
    color: #3e3e3e;
  }
  #men-section {
    top: 80px;
  }
  #home-a {
    height: 620px;
    padding-bottom: 50px;
  }
  #home-c .card:after {
    background: url(/img/home-page/friends.jpg) no-repeat right center/cover;
  }
  .testimonials-container {
    max-width: 950px;
  }
  .testimonials-container .author {
    margin-top: 30px;
  }
  #about-section-a .bg-parallax-1 {
    background-attachment: unset;
    height: 40vh;
    position: unset;
    margin-bottom: 20px;
  }
  #about-section-a .block {
    height: 40%;
    width: 100%;
    position: relative;
  }
  #about-section-b .bg-parallax-2 {
    display: none;
  }
  #about-section-b .block-2 {
    margin-top: 50px;
  }
  #hair-section-a .section-title {
    padding-right: 10%;
  }
  #hair-section-a .section-table {
    top: -320px;
  }
  #hair-section-b {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  #hair-section-b .section-image {
    margin-left: 40%;
  }
  #hair-section-b .section-table {
    top: -260px;
    margin-left: 0;
    margin-right: 40%;
  }
  #hair-section-b .section-title {
    padding-left: 10%;
  }
  #hair-section-c .section-title {
    padding-right: 7%;
  }
}

@media (min-width: 1300px) and (max-height: 1050px) {
  .parallax,
  .parallax-2 {
    height: 650px;
  }
}

@media (max-width: 830px) {
  .only-mobile {
    display: block;
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  #main-nav {
    display: none;
  }
  #main-nav-2 {
    display: block;
  }
  #navbar {
    background: #fbfcfc;
  }
  .menu ul {
    height: calc(100vh - 60px);
    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;
    padding-bottom: 10%;
  }
  .menu > div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .menu .btn-main {
    margin-top: 50px;
  }
  .parallax,
  .parallax-2 {
    height: 75vh;
    padding: 0;
    position: relative;
  }
  .parallax .showcase-content,
  .parallax-2 .showcase-content {
    right: 0;
    -webkit-transform: translateY(33vh);
    -ms-transform: translateY(33vh);
    transform: translateY(33vh);
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 30px 20px;
  }
  .parallax .showcase-content .buttons .btn-left,
  .parallax .showcase-content .buttons .btn-right,
  .parallax-2 .showcase-content .buttons .btn-left,
  .parallax-2 .showcase-content .buttons .btn-right {
    width: 140px;
    padding: 10px 0;
  }
  .parallax {
    background: url("/img/home-page/showcase.jpg") no-repeat 15% center/cover;
  }
  .parallax .showcase-content {
    left: 0;
    background: rgba(61, 61, 61, 0.6);
    color: #fff;
    border: 2px #fff solid;
  }
  .parallax .showcase-content .buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #home-a {
    height: 700px;
  }
  #home-a .intro-text {
    width: 80%;
  }
  #home-b {
    margin-top: 70px;
    background: #fff;
    padding: 0 10px;
  }
  #home-b .items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 15px;
  }
  #home-c {
    margin-top: 70px;
  }
  #home-c .card {
    background: #3e3e3e;
    -webkit-animation: none;
    animation: none;
    opacity: 0.9;
    height: 400px;
  }
  #home-c .card::after {
    opacity: 0.6;
  }
  #home-c .card .card-text h1 {
    width: 80%;
    margin-left: 7px;
    color: #fff;
  }
  #home-c .card .card-text p {
    width: 75%;
    margin-left: 30px;
    color: #fff;
    font-size: 16px;
  }
  #home-d {
    margin-top: 20px;
    margin-bottom: -100px;
  }
  /* Testimonials container */
  .testimonials-container {
    max-width: 700px;
    margin: 0 30px;
    /* Testimonials */
  }
  .testimonials-container .testimonial {
    padding: 30px 40px;
  }
  .testimonials-container .testimonial p {
    line-height: 1.8;
    font-size: 16px;
    width: 85%;
    height: 190px;
  }
  .testimonials-container .testimonial p .quotes-end,
  .testimonials-container .testimonial p .quotes-start {
    font-size: 40px;
  }
  .testimonials-container .testimonial .author {
    font-size: 18px;
  }
  #contact-section-a {
    background: url(/img/contact-img.jpg) no-repeat 35% center/cover;
  }
  #contact-section-b .container .contact-details {
    width: 40%;
  }
  #contact-section-b .container .contact-details #logo {
    text-align: left;
  }
  #about-section-a .block p {
    width: 100%;
  }
  #about-section-b .block-2 {
    margin: 40px 20px 0 20px;
  }
  #about-section-b .block-2 .about-image {
    width: 45%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 60px;
  }
  #about-section-b .block-2 .about-text {
    width: 50%;
  }
  #about-section-b .block-2 .about-text p {
    font-size: 16px;
  }
  .navigation-btn {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .navigation-btn .nav-btn {
    margin: 0;
  }
  #hair-section-a .section-title {
    padding-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  #hair-section-a .section-table {
    top: -220px;
    margin-right: 10px;
    margin-left: 35%;
  }
  #hair-section-b .section-image {
    margin-left: 20%;
    padding-right: 10px;
  }
  #hair-section-b .section-table {
    top: -180px;
    margin-right: 35%;
    margin-left: 10px;
    font-size: 16px;
  }
  #hair-section-b .section-title {
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #hair-section-c .section-image {
    margin-right: 20%;
    padding-left: 10px;
  }
  #hair-section-c .section-title {
    padding-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #hair-section-c .section-table {
    top: -190px;
    margin-right: 10px;
    margin-left: 35%;
  }
  #make-up-section-a .launch-section .launch-text p {
    font-size: 16px;
  }
  #make-up-section-b {
    margin-top: 40px;
  }
  #make-up-section-b .section-table {
    margin-right: 10px;
    margin-left: 35%;
    top: -220px;
  }
  #make-up-section-b .section-table p {
    font-size: 16px;
  }
  #make-up-section-b .section-title {
    height: 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
    padding-right: 0;
  }
  #make-up-section-c {
    margin-top: 160px;
    margin-bottom: -100px;
    width: 100vw;
    height: 320px;
  }
  #make-up-section-c .card .card-text {
    width: 65%;
    margin-top: 25px;
  }
  #make-up-section-c .card .card-text h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  #make-up-section-c .card .card-text p {
    font-size: 16px;
  }
  #wedding-section-a .grid-elements .element-2 h3 {
    font-size: 16px;
  }
  #wedding-section-a .grid-elements .element-3 {
    padding-top: 32%;
  }
  #wedding-section-a .grid-elements .element-3 p {
    font-size: 16px;
    line-height: 1.6;
  }
  #wedding-section-a .grid-elements .element-3 p .quotes-end,
  #wedding-section-a .grid-elements .element-3 p .quotes-start {
    font-size: 40px;
    top: 13px;
  }
  #wedding-section-a .grid-elements .element-3 .author {
    font-size: 18px;
  }
  #wedding-section-a .grid-elements .element-4 img {
    width: 85%;
  }
  #wedding-section-b .container {
    height: 1000px;
  }
  #wedding-section-b .section-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 40px;
  }
  #wedding-section-b .section-title-top {
    margin: 50px 0 0 0;
  }
  #wedding-section-b .section-prices {
    margin-bottom: -200px;
  }
  #wedding-section-b .section-prices .section-image {
    padding-left: 10px;
  }
  #wedding-section-b .section-prices .section-table {
    top: -140px;
  }
  #wedding-section-b .section-prices .section-table p {
    font-size: 16px;
  }
  .parallax-2 .showcase-content {
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: translateY(28vh);
    -ms-transform: translateY(28vh);
    transform: translateY(28vh);
    -webkit-box-shadow: 0 3px 16px #00000029;
    box-shadow: 0 3px 16px #00000029;
  }
  .parallax-2 .showcase-content .circles {
    padding: 0 30px;
  }
  #men-section {
    margin-top: 130px;
    margin-bottom: -100px;
  }
  #men-section .container {
    padding: 3rem;
  }
  #men-section p {
    font-size: 16px;
  }
  #men-section h3 {
    font-size: 18px;
  }
  #men-section .subtitle h2,
  #men-section .subtitle-2 h2 {
    font-size: 20px;
  }
  #men-section h3 {
    font-size: 16px;
  }
  #men-section .row {
    font-size: 16px;
  }
  #men-section .row .service {
    font-size: 16px;
  }
  #men-section .row .price {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  #navbar #modalBtn2 {
    margin-right: 60px;
  }
}

@media (max-width: 500px) {
  .highlighted,
  h2,
  h3 {
    font-weight: 500;
  }
  .hidden-in-mobile {
    display: none;
  }
  .section-title .box .lead {
    font-size: 26px;
  }
  .visible-in-mobile {
    display: block;
  }
  .bell {
    margin-top: 7px;
  }
  #navbar {
    top: 0;
    height: 60px;
    padding: 0;
  }
  #navbar .logo-nav {
    width: 45%;
  }
  #navbar #modalBtn2 {
    margin-right: 60px;
  }
  #logo {
    -webkit-transform: scale(0.6, 0.6);
    -ms-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
  }
  .menu {
    top: 60px;
    padding-top: 0;
  }
  .menu ul {
    height: calc(100vh - 60px);
    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;
    padding-top: 0;
    padding-bottom: 0;
  }
  .menu > div {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .menu > div a {
    font-size: 18px;
  }
  .menu li {
    padding: 17px 0;
  }
  .only-mobile {
    display: block;
    color: #fff;
    margin-bottom: 40px;
  }
  .menu .btn-main {
    padding: 5px 70px;
    margin: 20px 0 60px;
  }
  /* Show Menu */
  .menu-wrap .toggler:checked ~ .menu {
    width: 100vw;
  }
  .parallax,
  .parallax-2 {
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
    height: 50vh;
    padding: 0;
  }
  .parallax .showcase-content,
  .parallax-2 .showcase-content {
    width: 85%;
  }
  .parallax {
    background: url("/img/home-page/showcase.jpg") no-repeat 5% center/cover;
    padding-top: 55vh;
  }
  .parallax .showcase-content {
    -webkit-transform: translateY(8vh);
    -ms-transform: translateY(8vh);
    transform: translateY(8vh);
  }
  .parallax .showcase-content h1 {
    font-size: 24px;
  }
  .parallax .showcase-content p {
    font-size: 16px;
  }
  .parallax .showcase-content .buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .parallax-2 {
    background: url("/img/men-showcase.jpg") no-repeat 70% center/cover;
    padding-top: 15vh;
  }
  .parallax-2 .showcase-content {
    background: rgba(255, 255, 255, 0.8);
  }
  .parallax-2 .showcase-content .circles {
    padding: 0;
  }
  .parallax-2 .showcase-content .circles .circle {
    height: 82px;
    width: 82px;
  }
  .parallax-2 .showcase-content .circles .circle h3 {
    font-size: 12px;
    margin: 0 0 22px 0;
  }
  .parallax-2 .showcase-content .circles .circle-1 img,
  .parallax-2 .showcase-content .circles .circle-2 img {
    -webkit-transform: scale(0.5, 0.5) translateY(10px);
    -ms-transform: scale(0.5, 0.5) translateY(10px);
    transform: scale(0.5, 0.5) translateY(10px);
  }
  .parallax-2 .showcase-content .circles .circle-3 img {
    -webkit-transform: scale(0.7, 0.7) translateY(3px);
    -ms-transform: scale(0.7, 0.7) translateY(3px);
    transform: scale(0.7, 0.7) translateY(3px);
  }
  .parallax-2 .showcase-content h1 {
    font-size: 24px;
  }
  .parallax-2 .showcase-content p {
    font-size: 16px;
  }
  #home {
    /* Testimonials */
  }
  #home-a {
    height: 960px;
    padding: 30px 0 40px;
  }
  #home-a .intro-text {
    width: 90%;
  }
  #home-b .items {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #home-b .items .item-text h2 {
    font-size: 20px;
  }
  #home-b .items .item-text p {
    font-size: 16px;
  }
  #home-c .card {
    height: 470px;
  }
  #home-c .card .card-text {
    margin-left: 0;
  }
  #home-c .card .card-text h1 {
    width: 75%;
    margin-left: 30px;
    font-size: 30px;
  }
  #home-c .card .card-text p {
    width: 75%;
    margin-left: 0;
    margin: auto;
    color: #fff;
  }
  #home-c .card .card-text .bold {
    font-weight: bold;
  }
  #home-d {
    margin-top: 70px;
  }
  .testimonials-container {
    max-width: 700px;
    margin: 0 20px;
    /* Testimonials */
    /* Next & previous buttons */
  }
  .testimonials-container .testimonial {
    padding: 10px 20px 30px 30px;
  }
  .testimonials-container .testimonial p {
    width: 80%;
    height: 380px;
  }
  .testimonials-container .testimonial p .hidden-in-mobile {
    display: none;
  }
  .testimonials-container .testimonial .quotes-end,
  .testimonials-container .testimonial .quotes-start {
    font-size: 30px;
    top: 7px;
  }
  .testimonials-container .testimonial .author {
    margin-top: 10px;
    padding-top: 10px;
  }
  .testimonials-container .prev,
  .testimonials-container .next {
    font-size: 24px;
  }
  #about-section-a .bg-parallax-1 {
    top: 60px;
    background-position: 0 60px;
    background-size: 115%;
    margin-bottom: 0;
  }
  #about-section-a .block {
    padding-top: 10px;
  }
  #about-section-b .block-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #about-section-b .block-2 .about-image {
    width: 100%;
    margin-top: 0;
  }
  #about-section-b .block-2 .about-text {
    width: 100%;
    margin-top: 20px;
  }
  #about-section-b .block-2 .about-text p {
    font-size: 16px;
  }
  #about-section-c .follow-me .bottom-line {
    text-align: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .navigation-btn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr) [2];
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "colouring hairstyling" "haircutting haircutting";
    height: 250px;
    margin-top: 80px;
    margin-bottom: -50px;
    padding: 0 20px;
  }
  .navigation-btn h3 {
    font-weight: 400;
  }
  .navigation-btn .nav-btn-1 {
    grid-area: colouring;
    margin: auto;
  }
  .navigation-btn .nav-btn-2 {
    grid-area: hairstyling;
    margin: auto;
  }
  .navigation-btn .nav-btn-3 {
    grid-area: haircutting;
    margin: auto;
  }
  #hair-section-a {
    margin-bottom: 40px;
  }
  #hair-section-a .container {
    padding: 0 10px;
  }
  #hair-section-a .section-title {
    margin-bottom: 30px;
  }
  #hair-section-a .section-image {
    margin: 0 10px;
  }
  #hair-section-a .section-table {
    min-width: 300px;
    top: -20px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 0;
  }
  #hair-section-a .section-table h3,
  #hair-section-a .section-table p {
    font-size: 16px;
  }
  #hair-section-b {
    margin-bottom: 0;
  }
  #hair-section-b .container {
    padding: 0 10px;
  }
  #hair-section-b .section-image {
    margin-left: 0;
    padding-right: 0;
    margin: 0 10px;
  }
  #hair-section-b .section-table {
    min-width: 300px;
    top: -20px;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 0;
  }
  #hair-section-b .section-table h3,
  #hair-section-b .section-table p {
    font-size: 16px;
  }
  #hair-section-c {
    margin-bottom: -70px;
  }
  #hair-section-c .container {
    padding: 0 10px;
  }
  #hair-section-c .section-image {
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 0;
  }
  #hair-section-c .section-table {
    min-width: 300px;
    top: -20px;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 0;
  }
  #hair-section-c .section-table h3,
  #hair-section-c .section-table p {
    font-size: 16px;
  }
  #make-up-section-a .launch-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 50px 0;
  }
  #make-up-section-a .launch-section img {
    -webkit-transform: scale(0.6, 0.6);
    -ms-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
  }
  #make-up-section-a .launch-section .launch-text {
    padding-right: 0;
    margin: -20px auto 0 auto;
    width: 85%;
  }
  #make-up-section-a .launch-section .launch-text p {
    font-size: 16px;
  }
  #make-up-section-b {
    margin-top: 40px;
    margin-bottom: 0;
  }
  #make-up-section-b .container {
    padding: 0 10px;
  }
  #make-up-section-b .section-image {
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 0;
  }
  #make-up-section-b .section-table {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    top: -20px;
    min-width: 300px;
    border-radius: 0;
  }
  #make-up-section-b .section-table p {
    font-size: 16px;
    line-height: 1.5;
  }
  #make-up-section-b .section-title .box .bottom-line {
    width: 50px;
  }
  #make-up-section-c {
    margin-top: 60px;
    height: 600px;
  }
  #make-up-section-c .card {
    background: url(/img/make-up-page/makeup-mobile.jpg) no-repeat center
      center/cover;
    background-size: 170% 170%;
    -webkit-transition: all 0.5s ease-out 0.9s;
    -o-transition: all 0.5s ease-out 0.9s;
    transition: all 0.5s ease-out 0.9s;
  }
  #make-up-section-c .card.show {
    background-size: 100% 100%;
  }
  #make-up-section-c .card .card-text .bold {
    font-weight: 500;
  }
  #make-up-section-c .card .card-text h1 {
    padding-right: 20px;
  }
  #wedding-section-a .section-title {
    height: 170px;
    margin-bottom: 20px;
  }
  #wedding-section-a .section-title .box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #wedding-section-a .section-title .box .lead {
    text-align: center;
  }
  #wedding-section-a .grid-elements {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: 250px 200px 460px 350px;
    grid-template-rows: 250px 200px 460px 350px;
    grid-template-areas: "showcase" "text-right" "image" "text-left";
  }
  #wedding-section-a .grid-elements .element-1 {
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    position: relative;
  }
  #wedding-section-a .grid-elements .element-2 {
    margin: auto;
    width: 80%;
  }
  #wedding-section-a .grid-elements .element-2 h3 {
    font-size: 16px;
    width: 100%;
  }
  #wedding-section-a .grid-elements .element-3 {
    padding-top: 0;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }
  #wedding-section-a .grid-elements .element-3 p .quotes-end,
  #wedding-section-a .grid-elements .element-3 p .quotes-start {
    font-size: 30px;
    top: 7px;
  }
  #wedding-section-a .grid-elements .element-4 {
    width: 85%;
    margin: auto;
  }
  #wedding-section-a .grid-elements .element-4 img {
    width: 100%;
  }
  #wedding-section-b .container {
    padding: 0 10px;
  }
  #wedding-section-b .section-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 40px;
  }
  #wedding-section-b .section-title .box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #wedding-section-b .section-title .box .lead {
    text-align: center;
  }
  #wedding-section-b .section-title-top {
    margin: 50px 0 0 0;
  }
  #wedding-section-b .section-prices {
    margin-bottom: -250px;
  }
  #wedding-section-b .section-prices .section-title .box .bottom-line {
    width: 40px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  #wedding-section-b .section-prices .section-image {
    padding: 0 10px;
  }
  #wedding-section-b .section-prices .section-table {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    top: -20px;
    min-width: 300px;
    border-radius: 0;
  }
  .section-title-form {
    margin-top: 220px;
  }
  #contact-section-a {
    margin-top: 60px;
    background: url(/img/contact-img.jpg) no-repeat 10% center/cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 420px;
  }
  #contact-section-a .box-content {
    width: 90%;
    margin-right: 0;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
  }
  #contact-section-b .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #contact-section-b .container .form-wrap {
    width: 100%;
  }
  #contact-section-b .container .contact-details {
    width: 90%;
    margin-top: 70px;
  }
  #contact-section-b .container .contact-details #logo {
    text-align: left;
  }
  #success {
    margin-top: 0;
    padding-top: 22vh;
    height: calc(100vh - 380px);
  }
  #success h1 {
    font-size: 26px;
  }
  #men-section {
    margin-top: 170px;
  }
  #men-section h3 {
    font-weight: 500;
  }
  #men-section .subtitle h2 {
    font-weight: 500;
  }
  #men-section .container {
    padding: 40px 35px;
    overflow: hidden;
  }
  #men-section .container .row {
    display: block;
  }
  #men-section .container .row .dots {
    margin-left: -10px;
  }
  #men-section .subtitle h2,
  #men-section .subtitle-2 h2 {
    font-size: 18px;
  }
  #main-footer {
    height: 190px;
    padding: 10px 0;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #main-footer .footer-content p {
    width: 80%;
    margin-left: 20px;
    margin-top: 10px;
  }
  #main-footer .footer-content .social {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 80%;
    margin-left: 0;
  }
  #main-footer .footer-content .social a {
    margin: 0 20px;
  }
  #wedding-section-a .grid-elements .element-1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  #wedding-section-a .grid-elements .element-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #wedding-section-a .grid-elements .element-3 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #wedding-section-a .grid-elements .element-4 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}

@media (max-width: 500px) {
  .navigation-btn .nav-btn-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .navigation-btn .nav-btn-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .navigation-btn .nav-btn-3 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}

@media (max-width: 330px) and (min-width: 270px) {
  #about-section-a .block .section-title {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 5px;
  }
  #about-section-a .block p {
    padding: 5px;
  }
  #about-section-b .container {
    padding: 5px;
  }
  .navigation-btn {
    display: none;
  }
  #hair-section-a .section-table,
  #hair-section-b .section-table,
  #hair-section-c .section-table {
    min-width: 200px;
  }
  .section-prices .section-table {
    min-width: 200px;
  }
  .section-prices .section-table .row {
    width: 100%;
    -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;
  }
  .section-prices .section-table .row .dots {
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow: hidden;
    margin-left: -10px;
  }
  #make-up-section-c {
    height: 670px;
  }
  #make-up-section-b .section-table {
    min-width: 200px;
  }
  .parallax-2 .showcase-content .circles {
    display: none;
  }
  #wedding-section-a {
    margin-bottom: 60px;
  }
  #wedding-section-a .grid-elements .element-2 {
    height: 180px;
  }
  #wedding-section-a .grid-elements .element-3 {
    height: 420px;
  }
  #wedding-section-b .section-prices .container {
    height: 1400px;
  }
  #wedding-section-b .section-prices .section-table {
    min-width: 200px;
  }
}

@media (max-width: 500px) and (max-height: 680px) {
  .menu li {
    padding: 12px 0;
  }
  .testimonials-container {
    max-width: 700px;
    margin: 0 20px;
    /* Testimonials */
    /* Next & previous buttons */
  }
  .testimonials-container .testimonial {
    padding: 10px 20px 30px 30px;
  }
  .testimonials-container .testimonial p {
    height: 440px;
  }
  .testimonials-container .prev,
  .testimonials-container .next {
    font-size: 20px;
    padding: 10px;
  }
}

@media (max-width: 290px) {
  .hidden {
    display: none;
  }
  #home-a {
    height: 1240px;
  }
  #home-c .card .card-text h1 {
    font-size: 26px;
  }
  .testimonials-container .testimonial p {
    height: 620px;
  }
  #contact-section-b .container .form-wrap {
    padding: 20px 10px;
  }
  #contact-section-b .container .contact-details .contact p {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    margin-top: 20px;
  }
}

@media (max-width: 500px) and (max-height: 600px) {
  .menu li {
    padding: 12px 0;
  }
  #home-a {
    height: 1060px;
  }
  .testimonials-container {
    max-width: 700px;
    margin: 0 20px;
    /* Testimonials */
  }
  .testimonials-container .testimonial p {
    height: 490px;
  }
  #contact-section-b .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #contact-section-b .container .form-wrap {
    width: 100%;
    padding: 20px;
  }
  #contact-section-b .container .contact-details {
    width: 100%;
  }
}

@media (max-width: 800px) and (max-height: 830px) and (min-height: 810px) {
  #about-section-a .bg-parallax-1 {
    height: 34vh;
  }
}

@media (max-height: 500px) and (min-width: 500px) {
  .section-title .box .lead {
    font-size: 26px;
  }
  .main-logo {
    display: none;
  }
  .hidden-in-mobile {
    display: none;
  }
  #main-nav {
    display: block;
    padding: 10px 0;
  }
  #main-nav .logo-circle {
    display: block;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #main-nav .page-s-links {
    width: 80%;
  }
  #main-nav .page-s-links .modal .modal-content {
    margin: 7% auto;
    padding: 40px 20px 40px 6%;
  }
  #main-nav .page-s-links .btn-main {
    padding: 5px 30px;
  }
  #main-nav-2 {
    display: none;
  }
  .parallax .showcase-content,
  .parallax-2 .showcase-content {
    width: 100%;
  }
  .parallax {
    background: url("/img/home-page/showcase.jpg") no-repeat 5% center/cover;
    padding-top: 0;
  }
  .parallax .showcase-content {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    background: none;
    border: none;
    margin: 0;
    right: 10px;
    width: 56%;
    left: 42%;
  }
  .parallax .showcase-content h1 {
    font-size: 22px;
  }
  .parallax .showcase-content p {
    font-size: 16px;
  }
  .parallax .showcase-content .buttons {
    display: none;
  }
  .parallax-2 {
    background: url("/img/men-showcase.jpg") no-repeat 50% center/cover;
    padding-top: 0;
  }
  .parallax-2 .showcase-content {
    background: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 53%;
    left: 0;
    right: 40%;
    margin: 0;
  }
  .parallax-2 .showcase-content .circles {
    display: none;
  }
  .parallax-2 .showcase-content h1 {
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .parallax-2 .showcase-content p {
    font-size: 16px;
  }
  #men-section {
    margin-top: 0;
    top: 60px;
  }
  #men-section .container {
    padding: 2.5rem;
  }
  #home-a {
    height: 650px;
  }
  #home-d {
    margin-top: 0;
    padding-top: 0;
  }
  #about-section-a .bg-parallax-1 {
    height: 100vh;
  }
  #about-section-a .block {
    padding-top: 20px;
  }
  .navigation-btn {
    height: 230px;
  }
  #hair-section-a .section-table h3,
  #hair-section-a .section-table p,
  #hair-section-b .section-table h3,
  #hair-section-b .section-table p,
  #hair-section-c .section-table h3,
  #hair-section-c .section-table p {
    font-size: 16px;
  }
  .container-form {
    margin-left: 25px;
  }
  #contact-section-a {
    background: url(/img/contact-img.jpg) no-repeat 25% center/cover;
    height: 100vh;
  }
  #contact-section-a .box-content {
    width: 50%;
    margin-right: 15px;
    padding: 15px;
  }
  #contact-section-b .container {
    -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;
    padding: 0 50px;
  }
  #contact-section-b .container .form-wrap {
    width: 80%;
  }
  #contact-section-b .container .contact-details {
    width: 80%;
    margin-top: 70px;
  }
  #contact-section-b .container .contact-details #logo {
    text-align: left;
  }
  #wedding-section-a .visible-in-mobile {
    display: none;
  }
  #wedding-section-a .hidden-in-mobile {
    display: block;
  }
  #wedding-section-b .section-table {
    margin-left: 35%;
  }
  #make-up-section-a .launch-section {
    width: 100%;
  }
  #make-up-section-a .launch-section img {
    width: 30%;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  #make-up-section-a .launch-section .launch-text {
    width: 70%;
    padding-right: 30px;
  }
}

@media (max-width: 830px) and (min-width: 810px) {
  #home-a {
    height: 600px;
  }
}
