

/* ==========================================================================
  01. GENERAL & BASIC STYLES
  =========================================================================== */

  html {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
  } 
  
  body {
    font-family: 'Jost', sans-serif;
    color: #6f6f6f;
    line-height: 1.6666;
    font-weight: 400;
  }
  
  
  
  /*------------------------------------------*/
  /*  PAGE CONTENT
  /*------------------------------------------*/
  
  #page,
  .hidd { 
    overflow: hidden; 
  }
  
  .rel,
  section,
  .container { 
    position: relative!important; 
    z-index: 3; 
  }
  
  .section-overlay {
    width: 100%;
    height: 100%;
  }
  
  /*------------------------------------------*/
  /*  SPACING & INDENTS
  /*------------------------------------------*/
  
  .m-6 { margin: 4rem!important; }
  .m-7 { margin: 5rem!important; }
  .m-8 { margin: 6rem!important; }
  .m-9 { margin: 7rem!important; }
  .m-10 { margin: 8rem!important; }
  
  .mx-6 { margin-right: 4rem!important; margin-left: 4rem!important; }
  .mx-7 { margin-right: 5rem!important; margin-left: 5rem!important; }
  .mx-8 { margin-right: 6rem!important; margin-left: 6rem!important; }
  .mx-9 { margin-right: 7rem!important; margin-left: 7rem!important; }
  .mx-10 { margin-right: 8rem!important; margin-left: 8rem!important; }
  
  .my-6 { margin-top: 4rem!important; margin-bottom: 4rem!important; }
  .my-7 { margin-top: 5rem!important; margin-bottom: 5rem!important; }
  .my-8 { margin-top: 6rem!important; margin-bottom: 6rem!important; }
  .my-9 { margin-top: 7rem!important; margin-bottom: 7rem!important; }
  .my-10 { margin-top: 8rem!important; margin-bottom: 8rem!important; }
  
  .mt-6 { margin-top: 4rem!important; }
  .mt-7 { margin-top: 5rem!important; }
  .mt-8 { margin-top: 6rem!important; }
  .mt-9 { margin-top: 7rem!important; }
  .mt-10 { margin-top: 8rem!important; }
  
  .me-6 { margin-right: 4rem!important; }
  .me-7 { margin-right: 5rem!important; }
  .me-8 { margin-right: 6rem!important; }
  .me-9 { margin-right: 7rem!important; }
  .me-10 { margin-right: 8rem!important; }
  
  .mb-6 { margin-bottom: 4rem!important; }
  .mb-7 { margin-bottom: 5rem!important; }
  .mb-8 { margin-bottom: 6rem!important; }
  .mb-9 { margin-bottom: 7rem!important; }
  .mb-10 { margin-bottom: 8rem!important; }
  
  .ms-6 { margin-left: 4rem!important; }
  .ms-7 { margin-left: 5rem!important; }
  .ms-8 { margin-left: 6rem!important; }
  .ms-9 { margin-left: 7rem!important; }
  .ms-10 { margin-left: 8rem!important; }
  
  .p-6 { padding: 4rem!important; }
  .p-7 { padding: 5rem!important; }
  .p-8 { padding: 6rem!important; }
  .p-9 { padding: 7rem!important; }
  .p-10 { padding: 8rem!important; }
  
  .px-6 { padding-right: 4rem!important; padding-left: 4rem!important; }
  .px-7 { padding-right: 5rem!important; padding-left: 5rem!important; }
  .px-8 { padding-right: 6rem!important; padding-left: 6rem!important; }
  .px-9 { padding-right: 7rem!important; padding-left: 7rem!important; }
  .px-10 { padding-right: 8rem!important; padding-left: 8rem!important; }
  
  .py-6 { padding-top: 4rem!important; padding-bottom: 4rem!important; }
  .py-7 { padding-top: 5rem!important; padding-bottom: 5rem!important; }
  .py-8 {padding-top: 5rem!important;padding-bottom: 5rem!important;}
  .py-9 { padding-top: 7rem!important; padding-bottom: 7rem!important; }
  .py-10 { padding-top: 8rem!important; padding-bottom: 8rem!important; }
  
  .pt-6 { padding-top: 4rem!important; }
  .pt-7 { padding-top: 5rem!important; }
  .pt-8 { padding-top: 6rem!important; }
  .pt-9 { padding-top: 7rem!important; }
  .pt-10 { padding-top: 8rem!important; }
  
  .pe-6 { padding-right: 4rem!important; }
  .pe-7 { padding-right: 5rem!important; }
  .pe-8 { padding-right: 6rem!important; }
  .pe-9 { padding-right: 7rem!important; }
  .pe-10 { padding-right: 8rem!important; }
  
  .pb-6 { padding-bottom: 4rem!important; }
  .pb-7 { padding-bottom: 5rem!important; }
  .pb-8 { padding-bottom: 6rem!important; }
  .pb-9 { padding-bottom: 7rem!important; }
  .pb-10 { padding-bottom: 8rem!important; }
  
  .ps-6 { padding-left: 4rem!important; }
  .ps-7 { padding-left: 5rem!important; }
  .ps-8 { padding-left: 6rem!important; }
  .ps-9 { padding-left: 7rem!important; }
  .ps-10 { padding-left: 8rem!important; }
  
  /*------------------------------------------*/
  /*  BACKGROUND SETTINGS
  /*------------------------------------------*/
  
  .bg--fixed,
  .bg--scroll {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;   
    background-size: cover;
  }
  
  .bg--fixed {
    background-attachment: scroll!important;
  }
  
  .bg--scroll {
    background-attachment: fixed!important;
  }
  
  /*------------------------------------------*/
  /*  BLOCK SHADOW
  /*------------------------------------------*/
  
  .block-shadow { 
    -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
    -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
  }
  
  /*------------------------------------------*/
  /*  BACKGROUND COLORS
  /*------------------------------------------*/
  
  .bg--black { background-color: #212223; }
  .bg--white { background-color: #fff; }
  .bg--blush { background-color: #faf3f7; }
  .bg--ivory { background-color: #f8f5f2; }
  .bg--magenta { background-color: #b25996; }
  .bg--peanut { background-color: #c1baac; }
  .bg--poudre { background-color: #f9efed; }
  .bg--red { background-color: #e55d42; }
  .bg--salmon { background-color: rgba(247, 221, 217, .68); }
  .bg--smoke { background-color: #f2f2f0; }
  .bg--stone { background-color: #f5f5f5; }
  .bg-color1 { background-color: #fdf4f5 !important;}
  
  
  
  /*------------------------------------------*/
  /*  BACKGROUND SHAPE
  /*------------------------------------------*/
  
  .shape--01:after,
  .shape--02:after {
    position: absolute;
    width: 42%;
    height: 100%;
    top: 0;
    content: '';
    z-index: -1;
  }
  
  .shape--01:after {
    right: 0;
  }
  
  .shape--02:after {
    left: 0;
  }
  
  .white--shape:after { 
    background-color: #fff; 
    -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
    -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .06);
  }
  
  
  
  .black--shape:after { background-color: #212223; }
  .blush--shape:after{ background-color: #faf3f7; }
  .ivory--shape:after { background-color: #f8f5f2; } 
  .poudre--shape:after { background-color: #f9efed; }
  .smoke--shape:after {background-color: #fdf4f5;}
  .stone--shape:after { background-color: #f5f5f5; }
  .process-section{ background-color: #fdf4f5 }
  
  /*------------------------------------------*/
  /*  BACKGROUND IMAGE
  /*------------------------------------------*/
  
  .bg--01, .bg--02, .bg--03, .bg--04, .bg--05, .bg--06 {
    background-repeat: no-repeat;
    background-position: center center;   
    background-size: cover;
  }
  
  .bg--01 { background-image: url(../images/bg-01.jpg); }
  .bg--02 { background-image: url(../images/bg-02.jpg); }
  .bg--03 { background-image: url(../images/bg-03.jpg); }
  .bg--04 {background-image: url(https://static.wixstatic.com/media/d9876f_cebc3bbda9f44e1db37d829e4eb2092b~mv2.jpg/v1/fill/w_1665,h_614,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/d9876f_cebc3bbda9f44e1db37d829e4eb2092b~mv2.jpg);}
  .bg--05 { background-image: url(../images/bg-05.jpg); }
  .bg--06 { background-image: url(../images/bg-06.jpg); }
  
  
  
  
  /* ==========================================================================
    02. TYPOGRAPHY
    =========================================================================== */
  
  /*------------------------------------------*/
  /*  HEADERS
  /*------------------------------------------*/
  
  h1, h2, h3, h4, h5, h6 {
    color: #4d4d4d;
    /* font-family: 'Vollkorn', serif; */
    letter-spacing: 0;
    letter-spacing: -0.75px;
    font-weight: 400;
    margin-bottom: 0;
  }
  /*------------------------------------------*/
  /*  HEADER SIZE
  /*------------------------------------------*/
  
  h6 { font-size: 1rem; }              /* 16px */
  h6.h6-md { font-size: 1.125rem; }    /* 18px */
  h6.h6-lg { font-size: 1.25rem; }     /* 20px */
  
  h5 { font-size: 1.375rem; }          /* 22px */
  h5.h5-md { font-size: 1.5rem; }      /* 24px */
  h5.h5-lg { font-size: 1.625rem; }    /* 26px */
  
  h4 { font-size: 1.75rem; }           /* 28px */
  h4.h4-md { font-size: 1.875rem; }    /* 30px */
  h4.h4-lg { font-size: 2rem; }        /* 32px */
  
  h3 { font-size: 2.125rem; }          /* 34px */
  h3.h3-md { font-size: 2.25rem; }     /* 36px */
  h3.h3-lg { font-size: 2.375rem; }    /* 38px */
  
  h2 { font-size: 2.75rem; }           /* 44px */
  h2.h2-md {font-size: 2.6rem;}    /* 46px */
  h2.h2-lg { font-size: 3rem; }        /* 48px */
  h2.h2-title { font-size: 3.25rem; }  /* 52px */
  
  /*------------------------------------------*/
  /*  HANDWRITING TEXT
  /*------------------------------------------*/
  
  .tra-title {
    position: relative;
    font-family: 'Alex Brush', cursive;
    line-height: 0.9;
    font-size: 4.25rem;
    opacity: .1;
    margin-bottom: -45px!important;
  }
  
  /*------------------------------------------*/
  /*  PARAGRAPHS
  /*------------------------------------------*/
  
  p {font-size: 1.0625rem;}  /* 17px */
  
  /*------------------------------------------*/
  /*  FONT WEIGHT
  /*------------------------------------------*/
  
  .w-400 { font-weight: 400; }
  .w-500 { font-weight: 500; }
  .w-600 { font-weight: 600; }
  .w-700 { font-weight: 700; }
  .w-800 { font-weight: 800; }
  
  /*------------------------------------------*/
  /*  LINK SETTINGS
  /*------------------------------------------*/
  
  a {
    color: #6f6f6f;
    text-decoration: none;
    /*-webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; */
  }
  
  a:hover {
    color: #363636;
    text-decoration: none;
  }
  
  a:focus {
    outline: none;
    text-decoration: none;
  }
  
  /*------------------------------------------*/
  /*  LISTS
  /*------------------------------------------*/
  
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  } 
  
  /*------------------------------------------*/
  /*  TEXT LIST
  /*------------------------------------------*/
  
  ul.simple-list {
    list-style: disc;
    margin-left: 15px;
  }
  
  ul.simple-list.long-list p {
    margin-bottom: 8px;
  }
  
  /*------------------------------------------*/
  /*  BUTTON SETTINGS
  /*------------------------------------------*/
  
  .btn {
    background-color: transparent;
    font-size: 0.725rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 1.8rem;
    border: 1.5px solid transparent;
    -webkit-border-radius: 0; 
    -moz-border-radius: 0; 
    -o-border-radius: 0; 
    border-radius: 0;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; 
  }
  
  /*------------------------------------------*/
  /*  BLACK BUTTON
  /*------------------------------------------*/
  
  .btn--black,
  .hover--black:hover,
  .scroll .hover--black:hover {
    color: #fff!important;
    background-color: #262b2f!important;
    border-color: #262b2f!important;
  }
  
  .btn--tra-black,
  .hover--tra-black:hover,
  .scroll .hover--tra-black:hover, 
  .white-scroll .scroll .hover--tra-black:hover,
  .black-scroll .scroll .hover--tra-black:hover {
    color: #262b2f!important;
    background-color:transparent!important;
    border-color: #262b2f!important;
  }
  
  
  /*------------------------------------------*/
  /*  THEME BUTTON
  /*------------------------------------------*/
  
  .btn-theme {
    color: #fff!important;
    background-color: #4d4d4d;
/*    border-color: #4d4d4d !important;*/
  }
  
  /*------------------------------------------*/
  /*  BUTTON FOCUS
  /*------------------------------------------*/
  
  .btn:focus,
  .btn.btn--black:focus {
    color: #fff; 
    -webkit-box-shadow: none;
    box-shadow: none; 
  }
  
  .btn--tra-black:focus {
    color: #363636; 
    -webkit-box-shadow: none;
    box-shadow: none; 
  }
  
  /*------------------------------------------*/
  /*  GRAYSCALE IMAGE
  /*------------------------------------------*/ 
  
  .grey-img img {
    filter: grayscale(100%);
  }
  
  /*------------------------------------------*/
  /*  IMAGE HOVER OVERLAY
  /*------------------------------------------*/
  
  .hover-overlay {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative; 
  }
  
  .hover-overlay img {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    overflow: hidden;
    -webkit-transition: transform 400ms;
    -moz-transition: transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
  }
  
  /*------------------------------------------*/
  /*  Overlay Background 
  /*------------------------------------------*/ 
  
  .item-overlay {
    opacity: 0;
    -moz-opacity: 0; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, .5);
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
  }
  .item-overlay-static {
    -moz-opacity: 0; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, .5);
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
  }
  
  /*------------------------------------------*/
  /*  SECTION ID
  /*------------------------------------------*/
  
  .section-id {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
  
  
  
  /* ==========================================================================
    03. PRELOAD ANIMATION
    ========================================================================== */
  
  #loading {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 999999;
  }
  
  #loading { 
    background-color: #f5f4f2;
  }
  
  #loading.loading-magenta {
    background-color: #f2e3ed;
  }
  
  #loading.loading-poudre {
    background-color: #f7efec;
  }
  
  #loading.loading-red {
    background-color: #f9efed;
  }
  
  
  #loading-center {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    height: 100px;
    width: 100px;
    -webkit-animation: loading-center-absolute 1s infinite;
    animation: loading-center-absolute 1s infinite;
  }
  
  .loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #cc9889 #cc9889 transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  .loading-black .loader {
    border-color: #262b2f #262b2f transparent;
  }
  
  .loading-magenta .loader {
    border-color: #b25996 #b25996 transparent;
  }
  
  .loading-poudre .loader {
    border-color: #d896a9 #d896a9 transparent;
  }
  
  .loading-red .loader {
    border-color: #f29180 #f29180 transparent;
  }
  
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #cc9889 #cc9889;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  
  .loading-black .loader::after {
    border-color: transparent #262b2f #262b2f;
  }
  
  .loading-magenta .loader::after {
    border-color: transparent #b25996 #b25996;
  }
  
  .loading-poudre .loader::after {
    border-color: transparent #d896a9 #d896a9;
  }
  
  .loading-red .loader::after {
    border-color: transparent #f29180 #f29180;
  }
  
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
      
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
      
      
  
  
  /* ==========================================================================
    04. HEADER & NAVIGATION
    =========================================================================== */
  
  #header {
    width: 100%;
    display: block;
    padding-top: 0px;
  }
  
  .header-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  .headerwp {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  
  .posrlt {
    position: relative;
  }
  
  /*------------------------------------------*/
  /*  HEADER LOGO
  /*------------------------------------------*/
  .logo{
    width: 190px;
    filter: brightness(0%);
  }
  .navbar.scroll .logo{
    filter: none;
  }
  .navbar.scroll a.nav-link{
    color: #fff4e0;
  }
  
  /*------------------------------------------*/
  /*  NAVIGATION MENU
  /*------------------------------------------*/
  .navbar{
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
    padding: 15px 0;
  }
  .navbar.scroll {
    padding: 10px 0;
    background-color: #b46060!important;
    -webkit-box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
    -moz-box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
    box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
}
 
  a.nav-link {
    padding: 0.5rem 1rem !important;
  }

  .mobilenavbar{
    background-color: #b46060;
  }
  
  
  /*------------------------------------------*/
  /*  WHITE SCROLL BUTTONS
  /*------------------------------------------*/
  
  .white-scroll .scroll .btn--tra-white {
    color: #353f4f!important;
    border-color: #353f4f!important;
  }
  
  
  /*------------------------------------------*/
  /*  BLACK SCROLL BUTTONS
  /*------------------------------------------*/
  
  .black-scroll .scroll .btn--tra-black {
    color: #fff!important;
    border-color: #fff!important;
  }
  
  
  /* ==========================================================================
    05. HERO
    ========================================================================== */
    @media (min-width: 992px) {
  .slider, .slide {
    height: 675px;
  }
}

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translateY(-50%); */
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}
.slide .slide__content--headings .title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1b1b1b;
  background: rgb(177 177 177 / 35%);
  padding: 15px;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}



  
  .hero-section,
  .hero-section .container {
    position: relative;
    z-index: 3;
  }
  
  .slide__img{
    background-size: cover;
    background-position: center;
  }
  
  @media (max-width: 600px){
    p{
      /* font-size: 90%; */
      /* padding: 10px; */
    }
  }
  
  .banner-btn{
    background: #4d4d4d;
    border: solid 2px #4d4d4d;
    color: #fff;
    /* width: 160px; */
    padding: 15px 20px;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 500;
  }
  .banner-btn:hover,.btn-theme:hover{
    background-color: #b56060;
    color: #fff;
  }
  
  
  /*------------------------------------------*/
  /*  HERO SLIDER
  /*------------------------------------------*/
  
  .slider {
    position: relative;
    max-width: 100%;
    /* height: 550px; */
  }
  
  .slider .slides {
    margin: 0;
    height: 550px;
  }
  
  .slider .slides li {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: inherit;
    overflow: hidden;
  }
  
  .slider .slides li img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .slider .slides li .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  
  .slider .slides li.active {
    z-index: 2;
  }
  
  /*------------------------------------------*/
  /*  Slider Animation
  /*------------------------------------------*/
  
  .center-align {
    text-align: center;
  }
  
  /*------------------------------------------*/
  /*  Slider Indicators
  /*------------------------------------------*/
  
  .slider .indicators {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0; 
    z-index: 98;
  }
  
  .slider .indicators .indicator-item {
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    margin: 0 7px;
    opacity: .5;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    border-radius: 50%;
  }
  
  .slider .indicators .indicator-item.active {
    background-color: #fff;
    opacity: .65;
  }
  
  /*------------------------------------------*/
  /*  HERO SLIDESHOW
  /*------------------------------------------*/
  
  .slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 650px;
    z-index: 1;
  }
  
  .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    z-index: 1;
  }
  
  .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .slideshow .slide.is-active {
    display: block;
  }
  
  .slideshow .slide.is-loaded {
    opacity: 1;
  }
  
  .slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .slideshow .slide .image {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  
  .slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /*------------------------------------------*/
  /*  HERO-1
  /*------------------------------------------*/
  
  #hero-1 .caption {
    margin-top: 60px;
  }
  
  #hero-1 .caption h2 {
    font-size: 5.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  
  #hero-1 .caption h5 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
  }
  
  #hero-1 .caption .btn {
    margin-top: 40px;
  }
  
  /*------------------------------------------*/
  /*  HERO-2
  /*------------------------------------------*/
  
  #hero-2 {
    padding-top: 140px;
  }
  
  /*------------------------------------------*/
  /*  HERO-3
  /*------------------------------------------*/
  
  #hero-3 {
    margin-top: 75px;
    padding-top: 120px;
  }
  
  #hero-3:after {
    background-color: #f2f2f0;
    position: absolute;
    width: 100%;
    height: 86%;
    top: 0;
    content: '';
    z-index: -1;
  }
  
  .hero-3-txt {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 14%;
  }
  
  .hero-3-txt h2 {
    font-size: 3.85rem;
    margin-bottom: 30px;
  }
  
  /*------------------------------------------*/
  /*  HERO-5
  /*------------------------------------------*/
  
  #hero-5 {
    text-align: center;
    padding-top: 80px;
  }
  
  .hero-logo {
    margin-bottom: 40px;
  }
  
  .hero-logo img {
    width: auto;
    max-width: inherit;
    max-height: 92px;
  }
  
  .hero-logo img.hero-logo-w {
    display: none;
  }
  
  .hero-5-txt h2 {
    font-size: 4rem;
    margin-bottom: 18px;
  }
  
  .hero-5-txt p {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
  
  .hero-5-img {
    margin-top: 70px;
  }
  
  .hero-5-img .col {
    padding: 0 5px;
  }
  
  #hero-5-1, #hero-5-3 {
    margin-top: 30px;
  }
  
  
  /*------------------------------------------*/
  /*  HERO-6
  /*------------------------------------------*/
  
  #hero-6 .caption {
    margin-top: 50px;
  }
  
  #hero-6 .caption h2 {
    font-family: 'Jost', sans-serif;
    font-size: 8.5rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  #hero-6 .caption p {
    font-size: 1.35rem;
    padding: 0 10%;
    margin-bottom: 35px;
  }
  
  /*------------------------------------------*/
  /*  HERO-8
  /*------------------------------------------*/
  
  #hero-7 {
    padding-top: 200px;
  }
  
  .hero-7-txt {
    padding-right: 5%;
  }
  
  .hero-7-txt h2 {
    font-size: 4.35rem;
    margin-bottom: 15px;
  }
  
  .hero-7-txt p {
    font-size: 1.325rem;
    margin-bottom: 0;
  }
  
  .hero-7-btn {
    position: relative;
    z-index: 2;
  }
  
  #hero-7 .col-md-5, #hero-8 .col-md-7 {
    margin: 0;
    padding: 0;
  }
  
  .hero-7-img {
    margin-top: 70px;
  }
  
  .hero-7-img img {
    width: auto;
    max-width: inherit;
    max-height: 480px;
  }
  
  #hero-7 .tra-header {
    top: 22%;
    opacity: .06;
    z-index: -1;
  }
  
  #hero-7 .tra-header h2 {
    font-size: 11rem;
  }
  
  /*------------------------------------------*/
  /*  HERO-8
  /*------------------------------------------*/
  
  #hero-8 .slider {
    margin-top: 80px;
  }
  
  /*------------------------------------------*/
  /*  HERO-9
  /*------------------------------------------*/
  
  #hero-9 {
    text-align: center;
    position: relative;
    background-image: url(../images/hero-9.jpg);
    padding-top: 220px;
    padding-bottom: 150px;
  }
  
  #hero-91 .container {
    position: relative;
  }
  
  .hero-9-txt h2 {
    font-size: 4.65rem;
    margin-bottom: 35px;
  }
  
  .tra-header {
    width: 100%;
    position: absolute;
    top: 23%;
    left: 0;
    text-align: center;
    opacity: .15;
  }
  
  .tra-header h2 {
    font-family: 'Alex Brush', cursive;
    font-size: 12rem;
  }
  
  /*------------------------------------------*/
  /*  HERO-10
  /*------------------------------------------*/
  
  #hero-10 {
    position: relative;
    background-image: url(../images/hero-10.jpg);
    padding-top: 200px;
    padding-bottom: 100px;
  }
  
  .hero-10-txt h2 {
    font-size: 5rem;
    letter-spacing: -2px;
    margin-bottom: 14px;
  }
  
  .hero-10-txt p {
    font-size: 1.25rem;
    padding-right: 20%;
    margin-bottom: 35px;
  }
  
  .hero-10-schedule {
    margin-right: 10px;
  }
  
  .hero-10-schedule h5 {
    margin-bottom: 20px;
  }
  
  .hero-10-schedule p {
    line-height: 1;
    margin-bottom: 12px;
  }
  
  .hero-10-schedule p span {
    font-weight: 600;
    margin-left: 15px;
  }
  
  /*------------------------------------------*/
  /*  HERO-11
  /*------------------------------------------*/
  
  #hero-11 {
    position: relative;
    background-image: url(../images/hero-11.jpg);
    padding-top: 210px;
    padding-bottom: 120px;
  }
  
  .hero-11-txt h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
  
  .hero-11-txt h2 {
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  
  .hero-11-txt p {
    font-size: 1.3rem;
    padding-right: 10%;
    margin-bottom: 35px;
  }
  
  /*------------------------------------------*/
  /*  HERO-12
  /*------------------------------------------*/
  
  #hero-12 {
    margin-top: 75px;
  }
  
  #hero-12 .caption {
    margin-top: 15px;
  }
  
  #hero-12 .caption span {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 50px;
  }
  
  #hero-12 .caption h2 {
    font-size: 5rem;
    margin-bottom: 35px;
  }
  
  
  
  /* ==========================================================================
    06. ABOUT
    ========================================================================== */ 
    .about-section1{
/*      background-image: url(https://static.wixstatic.com/media/d9876f_68ba91cd444a4d3181a9ec8325a6cee6~mv2.png/v1/fill/w_1665,h_856,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/d9876f_68ba91cd444a4d3181a9ec8325a6cee6~mv2.png);*/
      background-color: #dfdad6;
    }
  
  .box-video {
    width: fit-content;
    margin: 0 auto;
  }
  .box-video video{
    height: 500px;
    display: block;
    border: 5px solid #b46060;
  }
  
  /*------------------------------------------*/
  /*  ABOUT TYPOGRAPHY
  /*------------------------------------------*/
  
  .about-1 .txt-block p,
  .about-2 .txt-block p {
    padding: 0 3%;
  }
  
  .about-6-txt h4 {
    line-height: 1.35;
    margin-bottom: 8px;
  }
  
  .about-6-txt p {
    margin-bottom: 3px;
  }
  
  .about-6-txt p a {
    font-size: 1.1875rem;
    font-weight: 500;
    margin-bottom: 3px;
  }
  
  .about-6-txt p.mb-0 {
    margin-bottom: 0;
  }
  
  .about-5 .txt-block .btn {
    margin-top: 15px;
  }
  
  .about-8-txt h4,
  .about-8-txt h3 {
    margin-bottom: 14px;
  }
  
  .about-8-txt p {
    margin-bottom: 25px;
  }
  
  /*------------------------------------------*/
  /*  ABOUT IMAGES
  /*------------------------------------------*/
  
  #ab-4-1 {
    position: relative;
    margin: 100px -70px 0 0;
    z-index: 4;
  }
  
  #ab-4-2 {
    position: relative;
    margin: 60px 0 0 -70px;
    z-index: 4;
  }
  
  #ab-5-1 {
    position: relative;
    margin: 80px 30px 0 -150px;
    z-index: 4;
  }
  
  #ab-5-2 {
    position: relative;
    margin: 80px 20% 0 30%;
    z-index: 4;
  }
  
  #ab-5-3 {
    position: relative;
    margin: 140px -100px 0 20px;
    z-index: 4;
  }
  
  .about-8-img.left-column {
    padding-right: 50px;
  }
  
  .about-8-img.right-column {
    padding-left: 50px;
  }
  
  
  
  
  /* ==========================================================================
    07. SERVICES
    ========================================================================== */ 
  .services-section {
      background: #fdf4f5;
  }
  
  .service-img img{
    height: 275px;
    object-fit: cover;
    width: 100%;
  }
  .service-title h4{
    font-size: 1.5rem;
  }
  .servicelist{
    column-count: 2;
    margin-bottom: 20px;
  }
  .servicelist li{
    margin-bottom: 8px;
  }
  .servicelist li a:hover{
    font-weight: 600;
  }
  
  /*------------------------------------------*/
  /*  SERVICE BOX ICON
  /*------------------------------------------*/ 
  
  .sbox-txt p {
    margin-bottom: 0;
  }
  
  .services-section .more-btn {
    margin-top: 60px;
  }
  .tbrow .col:first-child{
    border-top: 1px solid #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
  }
  .tbrow .col + .col{
    border-left: 1px solid #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
    border-top: 1px solid #b0b0b0;
  }
  
  
  /* ==========================================================================
    08. CONTENT
    ========================================================================== */ 
  section.ct-05 {
    background: #fdf5f5;
}
  .ct-05 .container:after,
  .ct-06 .container:after {
    position: absolute;
    content: '';
    height: 100%;
    top: 0;
  }
  
  .ct-05 .container:after {
    width: 85%;
    left: 0;
    z-index: -1;
  }
  
  .ct-06 .container:after {
    width: 85%;
    left: 15%;
    z-index: -1;
  }
  
  .ct-11-wrapper {
    width: 100%;
    height: 480px;
  }
  
  .ct-12 {
    width: 100%;
    height: 550px;
  }
  
  /*------------------------------------------*/
  /*  TEXT BLOCK
  /*------------------------------------------*/ 
  
  .ct-01 .txt-block {
    padding-right: 60px;
  }
  
  .ct-02 .txt-block {
    padding-left: 60px;
  }
  
  .ct-03 .left-column {
    padding-right: 15px;
  }
  
  .ct-03 .left-column .ct-03-txt {
    padding-right: 45px;
  }
  
  .ct-03 .right-column {
    padding-left: 15px;
  }
  
  .ct-05 .txt-block {
    padding: 0 25px 0 20px;
  }
  
  .ct-06 .txt-block {
    padding: 130px 45px 130px 40px;
  }
  
  .ct-07 .txt-block {
    padding: 0 40px 0 80px;
  }
  
  .ct-08 .txt-block {
    padding: 0 70px 0 50px;
  }
  
  .ct-table .left-column {
    padding-right: 25px;
  }
  
  .ct-table .right-column {
    padding-left: 25px;
  }
  
  .ct-13 .txt-block {
    padding: 30px 40px;
    margin-left: 20px;
    margin-right: 30px;
  }
  
  /*------------------------------------------*/
  /*  TEXT BLOCK TYPOGRAPHY
  /*------------------------------------------*/ 
  
  .ct-table h3,
  .ct-table h2,
  .txt-block h2 {
    margin-bottom: 20px;
  }
  
  .ct-09-txt h3,
  .ct-09-txt h2 {
    margin-top: 50px;
    margin-bottom: 0;
  }
  
  .ct-13 .txt-block h4 {
    margin-bottom: 20px;
  }
  
  p.ct-09-address {
    color: #363636;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  
  .txt-block .btn {
    margin-top: 30px;
  }
  
  /*------------------------------------------*/
  /*  ADVANTAGES LIST
  /*------------------------------------------*/
  
  .advantages li {
    width: auto!important;
    display: inline-block!important;
    vertical-align: top;
    clear: none !important;
  }
  
  .advantages-links-divider {
    position: relative;
    top: 6px;
  }
  
  .advantages li p {
    display: inline-block;
    float: left;
    margin-bottom: 0;
  }
  
  .advantages li p.mr-20 {
    position: relative;
    top: 1px;
  }
  
  .advantages.ico-30 li p span {
    position: relative;
    right: 1px;
  }
  
  .advantages.ico-30 [class*="flaticon-"]:before, 
  .advantages.ico-30 [class*="flaticon-"]:after { font-size: 1.4rem; }
  
  .advantages li p a {
    font-weight: 400;
    text-decoration: underline;
  }
  
  .ct-09-txt .advantages p a {
    color: #363636;
    font-weight: 500;
  }
  
  .advantages li p a:hover {
    text-decoration: underline;
  }
  
  
  
  
  /*------------------------------------------*/
  /*  IMG BLOCK IMAGE
  /*------------------------------------------*/ 
  
  .ct-04 .img-block.left-column {
    padding-right: 50px;
  }
  
  .ct-04 .img-block.right-column {
    padding-left: 50px;
  }
  
  .ct-09 .left-column:hover img,
  .ct-09 .right-column:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
  }
  
  
  
  
  
  /* ==========================================================================
    10. TESTIMONIALS
    =========================================================================== */
  
  .reviews-3-wrapper:after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 86%;
    height: 80%;
    top: 13%;
    left: 7%;
  }
  
  
  /* ==========================================================================
    16. BANNER
    ========================================================================== */
  
  .banner-1-wrapper {
    background-image: url(../images/banner-1.jpg);
    padding: 90px 80px;
  }
  
  .banner-1-wrapper.banner-1-hair {
    background-image: url(../images/banner-1-hair.jpg);
  }

  .banner__slider .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
}
  .banner-mob{
    display: none;
  }
  
  @media screen and (max-width: 767px){
    .banner-desk{
      display: none;
    }
    .banner-mob{
      display: block;
    }
  }
  /*------------------------------------------*/
  /*  BANNER TYPOGRAPHY
  /*------------------------------------------*/ 
  
  .banner-1-txt .section-id {
    margin-bottom: 35px;
  }
  
  .banner-2-txt .section-id {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .banner-1-txt h2 {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
  }
  
  .banner-1-txt h2 span,
  .banner-2-txt h2 span {
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    font-weight: 700;
  }
  
  .banner-1-txt h3{
    font-size: 3.35rem;
    letter-spacing: 1px;
    margin-bottom: 35px;
  }
  
  
  
  /* ==========================================================================
    21. BOOKING
    ========================================================================== */
  
  .booking-form .col-lg-6,
  .booking-form .col-md-12 {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  /*------------------------------------------*/
  /*  BOOKING FORM
  /*------------------------------------------*/
  
  .booking-form .form-control,
  .booking-form .form-select {
    height: 52px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #6f6f6f;
    box-shadow: 0 0 0 0;
    color: #363636;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0 5px;
    margin-bottom: 25px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  
  .booking-form .form-select {
    color: #6f6f6f;
  }
  
  .booking-form .form-select.valid {
    color: #363636!important;
  }
  
  
  /*------------------------------------------*/
  /*  Booking Form Placeholder
  /*------------------------------------------*/
  
  .booking-form .form-control::-moz-placeholder { color: #6f6f6f; } 
  .booking-form .form-control:-ms-input-placeholder { color: #6f6f6f; }
  .booking-form .form-control::-webkit-input-placeholder { color: #6f6f6f; }
  
  /*------------------------------------------*/
  /*  Booking Form Input Focus
  /*------------------------------------------*/
  
  .booking-form .form-control:focus {
    border-color: #262b2f;
    outline: 0px none;
    box-shadow: none;
  }
  
  /*------------------------------------------*/
  /*  Booking Form Button
  /*------------------------------------------*/
  
  .booking-form .btn {
    margin-top: 20px;
  }
  
  /*------------------------------------------*/
  /*  Booking Form Message
  /*------------------------------------------*/
  
  .booking-form-msg {
    text-align: center;
    width: 100%!important;
    display: block;
    margin-top: 20px;
    padding-left: 0;
  }
  
  .booking-form .loading {
    color: #363636;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 400;
  }
  
  
  .booking-form .error {
    color: #e74c3c;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  
  
  
  
  /* ==========================================================================
    22. CONTACTS
    ========================================================================== */
  
  .cbox-2.mb-5 {
    margin-bottom: 40px!important;
  }
  
  #contacts-3 .cbox-2.mb-5 {
    margin-bottom: 50px!important;
  }
  
  .cbox-2-contacts {
    margin-top: 30px;
  }
  
  /*------------------------------------------*/
  /*  CONTACT BOX TYPOGRAPHY
  /*------------------------------------------*/
  
  .cbox-2 h4 {
    line-height: 1;
    margin-bottom: 30px;
  }
  
  .contact-form-wrapper h4 {
    line-height: 1;
    margin-bottom: 40px;
  }
  
  .cbox-1 p,
  .cbox-2 p {
    line-height: 1;
    margin-bottom: 14px;
  }
  
  .cbox-1 p.cbox-1-title {
    color: #363636;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .cbox-1 p a,
  .cbox-2 p a {
    color: #363636;
    font-weight: 500;
  }
  
  .cbox-1 p span,
  .cbox-2 p span {
    color: #363636;
    font-size: 0.975rem;
    margin-left: 5px;
  }
  
  .cbox-1 .btn {
    margin-top: 8px;
  }
  
  .bg--black .cbox-1 p a,
  .bg--black .cbox-2 p a, 
  .bg--black .cbox-1 p span,
  .bg--black .cbox-2 p span,
  .bg--black .cbox-1 p.cbox-1-title {
    color: #fff;
  }
  
  
  .bg--black .cbox-2-contacts p a:hover {
    color: #ccc!important;
  }
  
  /*------------------------------------------*/
  /*  CONTACT FORM
  /*------------------------------------------*/
  
  .contact-form .form-control {
    height: 52px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #6f6f6f;
    box-shadow: 0 0 0 0;
    color: #363636;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0 5px;
    margin-bottom: 25px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  
  .contact-form .form-control.message {
    line-height: 1.6;
  }
  
  /*------------------------------------------*/
  /*  Contact Form Textarea
  /*------------------------------------------*/
  
  .contact-form textarea { min-height: 190px; }
  .contact-form textarea.form-control { 
    padding: 10px 5px 0;
  }
  
  /*------------------------------------------*/
  /*  Contact Form Placeholder
  /*------------------------------------------*/
  
  .contact-form .form-control::-moz-placeholder { color: #999; } 
  .contact-form .form-control:-ms-input-placeholder { color: #999; }
  .contact-form .form-control::-webkit-input-placeholder { color: #999; }
  
  /*------------------------------------------*/
  /*  Contact Form Input Focus
  /*------------------------------------------*/
  
  .contact-form .form-control:focus {
    border-color: 1px solid #262b2f;
    outline: 0px none;
    box-shadow: none;
  }
  
  
  input:-webkit-autofill,
  input:-webkit-autofill:hover, 
  input:-webkit-autofill:focus,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    border: 1px solid green;
    -webkit-text-fill-color: #555;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
  }
  
  /*------------------------------------------*/
  /*  Contact Form Button
  /*------------------------------------------*/
  
  .contact-form .btn {
    margin-top: 20px;
  }
  
  /*------------------------------------------*/
  /*  Contact Form Message
  /*------------------------------------------*/
  
  .contact-form-msg {
    width: 100%!important;
    display: block;
    margin-top: 20px;
    padding-left: 0;
  }
  
  .contact-form .loading {
    color: #363636;
    font-size: 1.0625rem;
    line-height: 1;
    font-weight: 500;
    padding-left: 15px;
  }
  
  
  .contact-form  .error {
    color: #e74c3c;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  
  
  
  
  /* ==========================================================================
    23. GOOGLE MAP
    =========================================================================== */
  
  .google-map {
    position: relative;
    height: 0;
    overflow: hidden;
  }
  
  #contacts-1 .google-map {
    padding: 0px 0px 40%;
  }
  
  #contacts-2 .google-map {
    padding: 0px 0px 65%;
  }
  
  .google-map iframe, 
  .google-map object, 
  .google-map embed {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border:0;
  }
  
  
  
  
  /* ==========================================================================
    24. FOOTER
    ========================================================================== */
  
  .footer {
    padding-bottom: 50px;
    background: #fff4e0;
  }
  
  .footer-info,
  .footer-form,
  .footer-links,
  .footer-contacts,
  .footer .google-map {
    margin-bottom: 40px;
  }
  
  #footer-1 .footer-info {
    padding-left: 12%;
  }
  
  #footer-1 .footer-form {
    padding-left: 5%;
  }
  
  #footer-2 .footer-links {
    margin-top: 35px;
    margin-bottom: 30px;
  }
  
  #footer-4 .footer-contacts {
    padding-right: 4%;
  }
  
  #footer-5 .footer-contacts {
    padding-right: 8%;
  }
  
  /*------------------------------------------*/
  /*  FOOTER LOGO
  /*------------------------------------------*/
  
  .footer-logo-img {
    text-align: center;
    position: relative;
  }
  
  .footer-logo-img img {
    width: auto;
    max-width: inherit;
    max-height: 70px;
  }
  
  #footer-5 .footer-logo-img img {
    max-height: 60px;
  }
  
  .footer-logo-img img.footer-logo-w {
    display: none;
  }
  
  
  /*------------------------------------------*/
  /*  FOOTER TYPOGRAPHY
  /*------------------------------------------*/
  
  .footer h5 {
    line-height: 1;
    margin-bottom: 20px;
  }
  
  .footer-info p,
  .footer-contacts p {
    margin-bottom: 4px;
  }
  
  .footer-info p.footer-phone,
  .footer-info p.footer-email,
  .footer-contacts p.footer-phone,
  .footer-contacts p.footer-email {
    margin-bottom: 0;
  }
  
  .footer-info p a,
  .footer-contacts p a {
    color: #606060;
  }
  
  
  #footer-1 .footer-info p span,
  #footer-3 .footer-info p span,
  #footer-4 .footer-info p span {
    font-size: 0.935rem;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .footer-booking-link {
    margin-top: 12px;
    margin-bottom: 0;
  }
  
  .footer-booking-link a {
    position: relative;
    color: #363636!important;
    font-size: 1.175rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    text-decoration: none;
  }
  
  .footer-booking-link a:after {
    content: '';
    background-color: #363636;
    width: 20%;
    height: 2.5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: .3s all ease-in;
    -moz-transition: .3s all ease-in;
    -o-transition: .3s all ease-in;
    transition: .3s all ease-in;
  }
  
  
  .footer-booking-link a:hover:after {
    width: 100%;
    opacity: 1;
  }
  
  #footer-1 .footer-phone,
  #footer-4 .footer-phone {
    margin-top: 15px;
  }
  
  
  /*------------------------------------------*/
  /*  FOOTER LINKS
  /*------------------------------------------*/
  
  .footer-links li {
    width: auto !important;
    display: block !important;
    vertical-align: top;
    clear: none !important;
    margin: 0;
    padding: 0;
  }
  
  #footer-2 .foo-links li {
    display: inline-block!important;
    padding: 0 10px;
  }
  
  .footer-links li p {
    margin-bottom: 5px;
  }
  
  #footer-2 .foo-links li p {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  /*------------------------------------------*/
  /*  FOOTER SOCIAL LINKS
  /*------------------------------------------*/
  
  .foo-socials {
    display: inline-block; 
    margin-top: 15px;
  }
  
  #footer-3 .foo-socials {
    margin-top: 20px;
  }
  
  .foo-socials li {
    width: auto !important;
    display: inline-block !important;
    vertical-align: top;
    clear: none !important;
    margin: 0 12px 0 0;
    padding: 0;
  }
  
  .foo-socials a {
    display: block;
    text-decoration: none;
  }
  
  .foo-socials.color--grey li a span {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; 
  }
  
  .foo-socials.color--grey li a:hover span {
    color: #353f4f!important;
  }
  
  
  .foo-socials.ico-20 [class*="flaticon-"]:before, 
  .foo-socials.ico-20 [class*="flaticon-"]:after { font-size: 1.375rem; }
  
  .foo-socials.ico-25 [class*="flaticon-"]:before, 
  .foo-socials.ico-25 [class*="flaticon-"]:after { font-size: 1.45rem; }
  
  .bottom-footer-socials.ico-30 [class*="flaticon-"]:before, 
  .bottom-footer-socials.ico-30 [class*="flaticon-"]:after { font-size: 1.5rem; }
  
  /*------------------------------------------*/
  /*  FOOTER NEWSLETTER FORM
  /*------------------------------------------*/
  
  .footer-form .form-control {
    height: 53px;
    color: #666;
    font-size: 1.0625rem;
    border: 1.5px solid #dee2e6;
    border-right: none;
    padding: 0 15px;
    box-shadow: none;
  }
  
  
  .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  /*------------------------------------------*/
  /*  Newsletter Form Input Focus
  /*------------------------------------------*/
  
  .footer-form .form-control:focus {
    border-color: #373b4d;
    border-right: none;
    outline: 0;
    box-shadow: none;
  }
  
  
  /*------------------------------------------*/
  /*  Footer Form Placeholder
  /*------------------------------------------*/
  
  .footer-form .form-control::-moz-placeholder { color: #6c757d; } 
  .footer-form .form-control:-ms-input-placeholder { color: #6c757d; } 
  .footer-form .form-control::-webkit-input-placeholder { color: #6c757d; } 
  
  /*------------------------------------------*/
  /*  Newsletter Form Button
  /*------------------------------------------*/
  
  .footer-form .btn {
    font-size: 0.75rem;
    letter-spacing: 2px;
    height: 53px;
  }
  
  
  /*------------------------------------------*/
  /*  Footer Form Notification
  /*------------------------------------------*/
  
  .footer-form .form-notification {
    color: #e03a3e;
    font-size: 0.95rem;
    line-height: 1.25;
    font-weight: 400;
    margin-top: 12px;
    margin-left: 5px;
  }
  
  /*------------------------------------------*/
  /*  BOTTOM FOOTER
  /*------------------------------------------*/
  
  .footer hr {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  
  /*------------------------------------------*/
  /*  BOTTOM FOOTER LINKS
  /*------------------------------------------*/
  
  .bottom-footer-list li,
  .bottom-footer-socials li {
    width: auto!important;
    display: inline-block!important;
    vertical-align: top;
    clear: none !important;
  }
  
  .bottom-footer-socials li {
    padding-left: 14px; 
  }
  
  #footer-2 .bottom-footer-socials li {
    padding: 0 18px; 
  }
  
  .footer-list-divider {
    position: relative;
    top: 4px;
    margin-left: 2px;
  }
  
  .bottom-footer-list.ico-15 [class*="flaticon-"]:before, 
  .bottom-footer-list.ico-15 [class*="flaticon-"]:after { font-size: 0.8rem; }
  
  .bottom-footer-list li p {
    display: inline-block;
    float: left;
    margin-bottom: 0;
  }
  
  .bottom-footer-socials li span { 
    position: relative;
    top: 4px; 
    opacity: .8;
  }
  
  .bottom-footer-socials.ico-20 [class*="flaticon-"]:before, 
  .bottom-footer-socials.ico-20 [class*="flaticon-"]:after { font-size: 1.115rem; }
  
  .bottom-footer-socials.ico-25 [class*="flaticon-"]:before, 
  .bottom-footer-socials.ico-25 [class*="flaticon-"]:after { font-size: 1.25rem; }
  
  
  /*------------------------------------------*/
  /*  BOTTOM FOOTER COPYRIGHT
  /*------------------------------------------*/
  
  .footer-copyright p {
    margin-bottom: 0;
  }
  
  /* ==========================================================================
    25. INNER PAGE HERO
    =========================================================================== */
  
  .inner-page-hero {
    text-align: center;
    background: no-repeat center center;
    background-size: cover;
    background-attachment: scroll!important;
    padding: 60px;
    /*padding-top: 200px;
    padding-bottom: 170px;*/
  }
  .inner-page-hero .page-hero-txt h2 {
    display: none;
}
  
  .inner-page-title {
    text-align: center;
    padding-top: 180px;
  }
  
  #about-page.inner-page-hero {
    background-color: #cdc1a5;
  }
  
  
  /*------------------------------------------*/
  /*  INNER PAGE HERO TYPOGRAPHY
  /*------------------------------------------*/
  
  .page-hero-txt h2,
  .page-title-txt h2 {
    font-size: 3.95rem;
    margin-bottom: 0;
  }
  
  .page-hero-txt p,
  .page-title-txt p {
    font-size: 1.2125rem;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  #booking-page .page-title-txt p {
    padding: 0 20%;
    margin-top: 16px;
  }
  
  
  
  
  /* ==========================================================================
    26. PAGE PAGINATION
    =========================================================================== */
  
  .page-link {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 2px 14px;
    margin: 0 8px;
    background-color: transparent;
    border: 2px solid transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; 
  }
  .pagination.ico-20 [class*="flaticon-"]:before, 
  .pagination.ico-20 [class*="flaticon-"]:after { font-size: 0.9rem; } 
  
  .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .page-item.active .page-link {
    color: #fff!important;
    background-color: #262b2f;
    border: 2px solid #262b2f;
  }
  
  .page-item.disabled .page-link {
    color: #6f6f6f;
    background-color: transparent;
    border: 2px solid transparent;
  }
  
  
  .page-link:hover {
    color: #6f6f6f;
    background-color: transparent;
    border: 2px solid #6f6f6f;
  }
  
  .page-link:focus {
    color: #6f6f6f;
    background-color: transparent;
    border: 2px solid transparent;
    box-shadow: 0 0;
  }
  
  
  
  /* ==========================================================================
    27. MODAL
    ========================================================================== */ 
  
  .modal-body {
    padding: 0!important;
  }  
  
  #modal-1 .modal-dialog {
    max-width: 700px;
  }
  
  #modal-2 .modal-dialog.modal-xl {
    width: 820px;
  }
  
  #modal-2.modal .modal-content {
    overflow: hidden;
  }
  
  #modal-2.modal .bg-img {
    background: url(../images/modal.jpg);
    background-position: left center;  
  }
  
  #modal-2.modal_barber .bg-img {
    background: url(../images/modal_barber.jpg); 
  }
  
  #modal-2.modal_hair .bg-img {
    background: url(../images/modal_hair.jpg); 
  }
  
  #modal-2.modal_nail .bg-img {
    background: url(../images/modal_nail.jpg); 
  }
  
  #modal-2 .modal-body-content {
    text-align: center;
    padding: 60px 35px 40px;
  }
  
  /*------------------------------------------*/
  /*  MODAL WINDOW CLOSE BUTTON
  /*------------------------------------------*/ 
  
  .modal .modal-close {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    border: none;
    box-shadow: none;
    right: 15px!important;
    top: 15px!important;
    z-index: 9999;
  }
  
  .modal .modal-close.ico-20 [class^="flaticon-"]:before, 
  .modal .modal-close.ico-10 [class^="flaticon-"]:after {
    font-size: 1.5rem;
  }
  
  
  .modal-close:focus {
    outline: none!important;
    text-decoration: none!important;
  }
  
  /*------------------------------------------*/
  /*  MODAL WINDOW REQUEST FORM
  /*------------------------------------------*/ 
  
  #modal-2 .request-form {
    margin: 0;
  }
  
  #modal-2 .request-form .col-md-12 {
    padding: 0;
  }
  
  #modal-2 .request-form-title h4,
  #modal-2 .request-form-title h3 {
    color: #363636!important;
    font-weight: 500;
    letter-spacing: 0;
  }
  
  #modal-2 .request-form-title h3 span {
    font-family: 'Jost', sans-serif;
    font-size: 2.65rem;
    font-weight: 700;
    letter-spacing: -2px;
  }
  
  #modal-2 .request-form-title p {
    color: #363636!important;
    margin-top: 16px;
    margin-bottom: 25px;
  }
  
  #modal-2 .request-form .form-control { 
    text-align: center;
    height: 52px;
    background-color: #fff;
    border: none;
    border-bottom: 1.5px solid #6f6f6f;
    box-shadow: 0 0 0 0;
    color: #363636;
    font-size: 1.0625rem;
    line-height: 1;
    padding: 0 15px;
    margin-bottom: 18px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  
  /*------------------------------------------*/
  /*  Request Form Placeholder
  /*------------------------------------------*/
  
  #modal-2 .request-form .form-control::-moz-placeholder { color: #6f6f6f; } 
  #modal-2 .request-form .form-control:-ms-input-placeholder { color: #6f6f6f; }
  #modal-2 .request-form .form-control::-webkit-input-placeholder { color: #6f6f6f; }
  
  /*------------------------------------------*/
  /*  Request Form Input Focus
  /*------------------------------------------*/
  
  #modal-2 .request-form .form-control:focus {
    border-color: #262b2f;
    outline: 0px none;
    box-shadow: none;
  }
  
  /*------------------------------------------*/
  /*  Request Form Button
  /*------------------------------------------*/
  
  #modal-2 .request-form .btn {
    display: block; 
    width: 100%!important;
    height: 56px;
    margin: 0;
  }
  
  .theme--dark #modal-2 .request-form .btn.btn--black {
    color: #fff!important;
    background-color: #363636!important;
    border-color: #363636!important;
  }
  
  .theme--dark #modal-2 .request-form .btn.hover--tra-black:hover {
    color: #363636!important;
    background-color: transparent!important;
    border-color: #363636!important;
  }
  
  /*------------------------------------------*/
  /*  Comment Form Message
  /*------------------------------------------*/
  
  #modal-2 .request-form-msg {
    text-align: center;
    width: 100%!important;
    display: block;
    margin-top: 12px;
    padding-left: 0;
  }
  
  #modal-2 .request-form .loading {
    color: #363636;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
  }
  
  #modal-2 .request-form .error {
    color: #e74c3c;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  
  
  
  
  /* ==========================================================================
    28. SCROLL TO TOP
    ========================================================================== */  
   
  #scrollUp {
    display: none;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 15px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-image: url(../images/back-to-top.png);
    background-repeat: no-repeat;
    background-position: 50% 48%;
    background-color: rgba(10, 10, 10, .25);
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; 
  }
  
  #scrollUp:hover {
    background-color: rgba(54, 54, 54, .85);
  }
  
  nav a#pull {  
    display: none;  
  }
  
  
  
  
  /*Process*/
  .formula-steps-img{
    max-width: 80%;
  }

  

  .heading-decorate span.kindatxt{
    font-family: 'Vollkorn', serif;
    font-style: italic;
  }


.marquee-box{
  position: relative;
  display: flex;
}
.marquee-box .marquee-list{
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #6f6f6f;
  border-bottom: 1px solid #6f6f6f;
  padding-top: 15px;
  padding-bottom: 15px;
}
.marquee-box .marquee-list li{
  display: flex;
  padding: 0 30px;
  white-space: nowrap;
  position: relative;
}
.marquee-box .marquee-list li::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background-color: dimgrey;
    position: absolute;
    right: 0;
    top: 38%;
  }
