/* @fonts
_________*/
@font-face {
  font-family: 'Rembank';
  src: url('../fonts/Rembank.otf');
  font-weight: 400;
}


/* @reset
_________*/
*, *::before, *::after {
  padding: 0;
  margin: 0;
  border: 0;
} article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section {
  display: block;
} audio,
  iframe,
  img,
  svg,
  video {
  max-width: 100%;
  vertical-align: middle;
} table {
  border-collapse: collapse;
  border-spacing: 0;
} hr {
  display: block;
  height: 1px;
  background: #ccc;
  margin: 1em 0;
} ul {
  list-style: none;
}


/* @basics
__________*/
html {
  height: 100%; 
  font-size: 100%;
  overflow-x: hidden;
} body {
  background: #fafafa;
}


/* @typography
______________*/
body, button, input, select, textarea {
  font: 16px/1.4 'Open Sans', sans-serif;
  color: #013332;
} @media screen and (min-width: 769px) {
  body, button, input, select, textarea {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: 'Rock Salt', cursive; */
  font-family: 'Cinzel Decorative', cursive;
  font-weight: 700 !important;
  line-height: 1;
  margin: 0 0 .5em 0;
} p {
  margin: 0 0 1.5rem;
} a {
  color: ;
  text-decoration: none;
  outline: none;
} a.link {
  border-bottom: 1px solid;
} a:hover {

} b, strong {
  font-weight: 900
} em, i {
  font-family: 'Georgia', serif;
}

sup {
  font-size: 20%;
}


/* @typeSystem
______________*/
.h1 { /* Heading 01 */
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: -1.5px;
} .h2 { /* Heading 02 */
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -1.5px;
} .h3 { /* Heading 03 */
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
} .h4 { /* Heading 04 */
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: 0.25px;
} .h5 { /* Heading 05 */
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0px;
} .h6 { /* Heading 06 */
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15px;
}

.subtitle {
}

.caption { /* Caption */
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  display: block;
} .overline { /* OVERLINE */
  display: block;
  margin: 0 0 1.5rem 0;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3.5px;
} .mark {
  color: #C4969E;
} .cursive {
  font-family: 'Rock Salt', serif;
}

.big {
  font-size: 150%;
}


.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.section_head {
  text-align: center;
} .section_head::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 6px;
  margin: 1.5rem auto;
  background: #C4969E;
} .section_head .title {
  margin: 0;
}

/* @clearfix
____________*/
.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
} .clearfix::after {
  clear: both;
}


/* @selection
_____________*/
::-moz-selection {
  color: #fafafa;
  background: #090909;
  text-shadow: none;
} ::selection {
  color: #fafafa;
  background: #090909;
  text-shadow: none;
}


/* @root
________*/
.root {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  /* position: relative; */
  /* border: 1px dashed; */
}


/* @wrapper
___________*/
.wrapper {
  width: 90%;
  /* max-width: 1180px; */
  margin: 0 auto;
  height: inherit;
  position: relative;
  /* border: 1px solid red; */
}


/* Clearfix */

.clearfix::after,
.clearfix::before {
  content: '';
  display: block;
}

.clearfix::after {
  clear: both
}


/* @preloader */
.preloader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #fafafa;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.preloader img {
  width: 156px;
  -webkit-animation: beat .5s infinite alternate;
  -moz-animation: beat .5s infinite alternate;
  -ms-animation: beat .5s infinite alternate;
  -o-animation: beat .5s infinite alternate;
  animation: beat .5s infinite alternate;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

@-moz-keyframes beat {
  to {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes "beat" {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-ms-keyframes "beat" {
  to {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-o-keyframes "beat" {
  to {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes "beat" {
  to {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}


.top_bar {
  height: 2.75rem;
  text-align: right;
  background: #222;
  display: none;
} .top_bar .link {
  font-size: 13px;
  color: #aaa;
  line-height: 2.75rem;
  display: inline-block;
  margin: 0 0 0 1.5rem;
}


.site_header {
  width: 100%;
  height: 5rem;
  background: #013332;
  /* border: 1px solid #aaa; */
}

.header__inner {
  display: grid;
  grid-template-columns: 256px 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .site_header {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 425px) {
  .header__inner {
    grid-template-columns: 196px 1fr;
  }
}

/* @branding */
.branding .logo {
  max-width: 172px;
}

/* @primaryNav */
.primary-nav {
  height: 3rem;
  line-height: 3rem;
  text-align: right;
}

.primary-nav ul li {
  display: inline-block;
  margin: 0 0 0 1.5rem;
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #C4969E;
} .nav-item.active {
  opacity: 0.5;
} .nav-item:hover,
  .nav-item.active {
  border-bottom: 1px solid;
}

.primary-nav .extras {
  display: none;
}


@media screen and (max-width: 768px) {
  .primary-nav {
    display: none;
    position: fixed;
    z-index: 9;
    top: 5rem;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    background: #013332;
    overflow: scroll-y;
  }

  .primary-nav .menu {
    max-width: 320px;
    padding: 1.5rem;
  }

  .primary-nav .menu > li {
    padding: 0;
    display: block;
    line-height: 1;
    margin: 0 0 1rem 0;
  }

  .nav-item {
    padding: 0;
    color: #C4969E;
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 700;
    font-size: 2.5rem;
  }
 
  .primary-nav .extras {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    padding: 1.5rem;
  }
  .primary-nav .extras a {
    display: block;
    line-height: 1;
    color: #C4969E;
    margin: 0.75rem 0;
    text-decoration: underline;
  }

  .primary-nav ul li:last-of-type {
    float: none;
    margin: 1.5rem 0 0 0;
  }

  .primary-nav .follow::before {
    content: "Get in touch";
    display: block;
    margin: 0 0 .5rem 0;
  }

  .primary-nav .follow .icon {
    display: inline-block;
    margin: 0 1.5rem 0 0;
  }
}

/* @nav-trigger */
#navicon {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem;
  cursor: pointer;
} @media screen and (max-width: 768px) {
  #navicon {
    display: block;
  }
}

.navicon {
  width: 2rem;
  margin: 1.125rem auto 0;
} .navicon::after {
  color: #C4969E;
  content: "MENU";
  font-size: 10px;
  margin-left: -1px;
  letter-spacing: 1.125px;
}

.bar {
  width: 2rem;
  height: 2px;
  margin-bottom: 8px;
  background: #C4969E;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
} .bar1 {
  width: 1.875rem;
} .bar2 {
  width: 2.25rem;
} .bar3 {
  width: 1.5rem;
  margin-bottom: 0;
}

.navicon:hover > *,
.change .navicon > * {
  width: 2rem;
}

/* @closeNavIcon */
.change .bar1 {
  transform: rotate(-45deg) translate(-0.5rem,0.4rem);
} .change .bar3 {
  transform: rotate(45deg) translate(-0.5rem,-0.4rem);
} .change .bar2 {
  opacity: 0;
}

#main {
  margin-top: 5rem;
} @media screen and (min-width: 769px) {
  #main {
    margin: 0;
  }
}


/* @cover
_________*/
.cover {
  width: 100%;
  background: #013332;
  background-size: cover;
  position: relative;
} @media screen and (min-width: 769px) {
  .cover {
    height: 60vh;
    min-height: 520px;
  }
}

.cover.featured {
  background: url(../images/slide04.jpg) center center;
  background-size: cover;
}

.coverSwiper {
  height: 100%;
} .coverSwiper .swiper-pagination {
  bottom: 2rem !important;
} .coverSwiper .swiper-pagination-bullet {
  background: #fafafa;
  padding: .3rem;
} .coverSwiper .slide {
  padding: 3.5%;
  display: flex;
  align-items: center;
  /* border: 1px solid #aaa; */
}

.cover__inner {
  display: grid;
  grid-gap: 1.5rem;
  color: #C4969E;
  /* border: 1px solid #aaa; */
} @media screen and (min-width: 769px) {
  .cover__inner {
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }
}

.cover__inner .media {
  text-align: center;
} .cover__inner img {
  width: 100%;
  max-width: 420px;
} .cover__inner .title {
  font-size: 2.5rem;
  margin: 0;
} @media screen and (min-width: 768px) {
  .cover__inner .title {
    font-size: 4.25rem;
  }
}


/* @recommendedServices */
.recommended_services {
  padding: 5rem 0 7.5rem;
} @media screen and (min-width: 769px) {
  .recommended_services {
    padding: 5rem 0;
  }
}
.recommended_services .item figure img {
  border: 4px solid;
}
.recommended_services .item figcaption {
  padding-top: 0.5rem;
  text-align: center;
  color: #C4969E;
}

.servicesSwiper {
  height: 100%;
} .servicesSwiper .swiper-pagination {
  bottom: 0 !important;
} .servicesSwiper .swiper-pagination-bullet {
  background: #C4969E;
  padding: .3rem;
}

/* @bridalMakeup */
.bridal_makup {
  padding: 7.5rem 0 1.5rem;
  background: #013332 url(../images/bridal-bg.jpeg) center center;
  background-size: cover;
  position: relative;
} @media screen and (min-width: 769px) {
  .bridal_makup {
    padding: 3.5rem 0;
  }
}
.bridal_makup .overlay {
  background: linear-gradient(to top, #090909, transparent);
  z-index: 2;
} @media screen and (min-width: 769px) {
  .bridal_makup .overlay {
    background: linear-gradient(to right, #013332, rgba(0,0,0,0.3));
    z-index: 1;
  }
}
.bridal_makup .copy {
  max-width: 580px;
  padding-left: 1.5rem;
  border-left: 4px solid #C4969E;
  position: relative;
  z-index: 2;
  color: #C4969E;
} @media screen and (min-width: 768px) {
  .bridal_makup .copy {
    width: 80%;
    padding-left: 3rem;
  }
}
.bridal_makup .copy .h1 {
  margin: 0 0 1.25rem 0;
} @media screen and (max-width: 768px) {
  .bridal_makup .copy .h1 {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
  }
}
.featured_bride {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
} @media screen and (max-width: 768px) {
  .featured_bride {
    /* max-width: 90%; */
  }
}


/* @experts */
.experts {
  padding: 5rem 0;
} .experts .expert {
  display: grid;
  grid-gap: 1.5rem;
} @media screen and (min-width: 768px) {
  .experts .expert {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .expert .h1 {
    font-size: 3.5rem;
  }
}


/* @services page*/
.cover.services_cover {
  position: relative;
} @media screen and (max-width: 768px) {
  .cover.services_cover  {
    height: 60vh;
    min-height: 520px;
    padding: 2.5rem 0 0 !important;
    overflow: hidden;
  }
}

.services {
  padding: 5rem 0;
}

.services_cover .hero {
  display: block;
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 100%;
  max-width: 580px;
} @media screen and (max-width: 768px) {
  .services_cover .hero {
    right: 0;
  }
}

.services_main {
  display: grid;
  margin: 0 auto;
  /* border: 1px solid; */
} @media screen and (min-width: 769px) {
  .services_main {
    width: 80%;
    align-items: center;
    grid-template-columns: repeat(2,1fr);
    /* grid-gap: 1.5rem; */
  }
}

.all_services {
  padding-right: 1.5rem;
  /* border: 1px solid; */
} .all_services .item {
  display: grid;
  grid-template-columns: 99px 1fr;
  align-items: center;
  grid-gap: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1;
} @media screen and (min-width: 769px) {
  .all_services .item {
    grid-template-columns: 124px 1fr;
  }
}

.all_services .item img {
  border: 4px solid;
}

.all_services .item .h4 {
  margin: 0;
} @media screen and (max-width: 768px) {
  .all_services .item .h4 {
    font-size: 1.75rem;
  }
}

.book {
  padding-left: 1.5rem;
  border-left: 4px solid #C4969E;
} .book .h1 {
  font-size: 5rem;
} @media screen and (max-width: 768px) {
  .book .h1 {
    font-size: 3.75rem;
  }
}


/* @gallery page */
.gallery {
  padding: 5rem 0;
  position: relative;
}

.gallery::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: #013332;
}

.gallery .section_head {
  color: #C4969E;
}

.gallery .items {
  columns: 2;
  column-gap: 0.25rem;;
} .gallery .items .item {
  width: 100%;
  margin: 0 0 0.25rem 0;
  display: inline-block;
} @media screen and (min-width: 768px) {
  .gallery .items {
    columns: 3;
    column-gap: 0.75rem;;
  } .gallery .items .item {
    margin: 0 0 0.75rem 0;
  }
}

.gallery .items img {
  width: 100% !important;
}


/* @contact page */
.contact_us {
  padding: 5rem 0;
}

.contact__inner {
  display: grid;
  align-items: center;
  grid-gap: 3rem;
} @media screen and (min-width: 769px) {
  .contact__inner {
    grid-template-columns: repeat(2,1fr);
  }
}

.contact_details ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.5rem;
  margin: 0 0 0.75rem 0;
}

.thanks {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #013332;
}

.thanks__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 640px;
  text-align: center;
  color: #C4969E;
  transform: translate(-50%,-50%);
}


.appointment {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  line-height: 1;
  background: rgba(1,51,50,0.95);
  opacity: 0.98;
}

.appointment-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 480px;
  padding: 3.5rem;
  background: #C4969E;
  transform: translate(-50%,-50%);
} @media screen and (max-width: 768px) {
  .appointment-inner {
    padding: 3rem 1.5rem;
    transform: translate(-50%,-50%);
  }
  .appointment .h2 {
    font-size: 2.125rem;
  }
}

.appointment-form input[type="text"],
.appointment-form input[type="tel"] {
  font-size: 1.25rem;
  font-weight: 700;
}

.appointment-form fieldset {
  background: #C4969E;
} .appointment-form .primary_btn {
  background: #013332 !important;
  color: #C4969E !important;
}

.appointment-inner .close-it {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem;
}


/* @newsletter */
.newsletter {
  text-align: center;
  background: #013332;
  color: #C4969E;
} .newsletter .wrapper {
  padding: 5rem 0;
  border-bottom: 1px solid;
} .newsletter_form {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
} .newsletter_form fieldset {
  margin: 0 0 0.75rem 0;
  background: #013332;
} .newsletter_form input[type="email"] {
  padding: 1.5rem 199px 1.5rem 1.25rem;
  font-size: 1.5rem;
  color: #C4969E;
  border-color: #C4969E;
  border-radius: 56px;
} .newsletter_form input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 172px;
  padding: 1.5rem;
  color: #013332;
  transform: translate(-6%,-50%);
  background: #C4969E;
  border-color: #C4969E !important;
  border-radius: 56px;
}


/* @footer */
.site_footer {
  padding: 3.5rem 0;
  text-align: center;
  font-size: 14px;
  background: #013332;
}

.site_footer,
.site_footer a {
  color: #C4969E;
}

.site_footer .follow {
  margin: 1.5rem 0 0;
} .site_footer .follow a {
  display: inline-block;
  margin: 0 0.5rem;
}

.copyright {
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

#footer span {
    display: none !important;
}

.copyright img.webtik {
    display: block;
    max-width: 108px;
    margin: 0 auto;
}


/* @button */
.button {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  /* font-family: 'Gothic A1', sans-serif; */
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 3px;
  border: 1px solid;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  /* transition: all 0.3s; */
}

.button.primary_btn {
  color: #013332;
  background: #C4969E;
  border-color: #C4969E;
}

.button.primary_btn:hover {
  color: #C4969E;
  background: #013332;
}

.button.secondary_btn {
  color: #C4969E;
  background: transparent;
  border-color: #C4969E;
}

.button.secondary_btn:hover {
  color: #013332;
  background: #C4969E;
}


/* @forms */
fieldset {
  position: relative;
  margin-bottom: 1rem;
  padding: 0 !important;
}

input,
select,
textarea {
  width: 100%;
  line-height: 1;
  padding: 1.25rem;
  appearance: none;
  background: inherit;
  border: 1px solid rgba(0,0,0,0.3)
}

input[type="submit"] {
  font-weight: 700;
}

input:hover,
input:focus,
input:valid,
select:hover,
select:focus,
select:valid,
textarea:hover,
textarea:focus,
textarea:valid {
  border-color: #013332;
}

/* Remove unneccessary outline and shadows */
input,
input:invalid,
select,
select:invalid,
select option,
textarea,
textarea:invalid {
  outline: 0;
  box-shadow: none
}

textarea {
  min-height: 3.5em
}

textarea:focus,
textarea[data-empty="false"] {
  height: auto
}

label {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transform: translate(1.25rem,-50%);
  transition: all 0.2s ease-in;
  opacity: 0.8;
}

input[data-empty="false"],
input:valid, input:focus,
textarea[data-empty="false"],
textarea:valid, textarea:focus {
  /*padding: 1.5rem 1rem 0.5rem;*/
}

input[data-empty="false"] + label,
input:valid + label,
input:focus + label,
textarea[data-empty="false"] + label,
textarea:valid + label,
textarea:focus + label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 .5rem;
  background: inherit;
  top: 0;
  /* transform: translate(-.5rem,-1.5rem); */
  opacity: 1;
}


/* @onScrollAnimations */

.fade-in-bottom {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 5vh, 0);
}

.featured div:nth-of-type(1) {transition-duration: 800ms}
.featured div:nth-of-type(2) {transition-duration: 1000ms}
.featured div:nth-of-type(3) {transition-duration: 1200ms}

.fade-in-bottom.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.zoom-out {
  transform: scale(1.3);
  transition: all 1000ms ease-out;
}

.zoom-out.in-view {
  transform: scale(1);
}


/* @boxmodel */
*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing:border-box;
}

 /* @colorPalette
  * @primaryColor (maroon): #C4969E
  * @secondaryColor (black): #013332
  */