

html,
body {
  height: 100%;
  font-family: "EB Garamond", serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #939598;
  font-family: "EB Garamond", serif;
}

h1 {
  font-size: 70px;
  font-family: "EB Garamond", serif;
}

h2 {
  font-size: 36px;
  font-family: "EB Garamond", serif;
}

h3 {
  font-size: 30px;
  font-family: "EB Garamond", serif;
}

h4 {
  font-size: 24px;
  font-family: "EB Garamond", serif;
}

h5 {
  font-size: 18px;
  font-family: "EB Garamond", serif;
}

h6 {
  font-size: 16px;
  font-family: "EB Garamond", serif;
}

p {
  font-size: 16px;
  font-family: "EB Garamond", serif;
  color: #939598;
 
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

a{
  font-family: "EB Garamond", serif;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
 
}

ul,
ol {
  padding: 0;
  margin: 0;
  font-family: "EB Garamond", serif;
}

/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  margin-bottom: 50px;
}
.section-title.center-title {
  text-align: center;
}
.section-title.center-title h2:after {
  right: 0;
  margin: 0 auto;
}
.section-title span {
  color: #939598;
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title h2 {
  color: #939598;
  
  text-transform: uppercase;
  position: relative;
  padding-bottom: 25px;
}
.section-title h2:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: #a88944;
  content: "";
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #939598;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 15px;
  font-family: "EB Garamond", serif;
 
  padding: 14px 32px 12px;
  color: #a88944;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.primary-btn :hover{
  color: #939598;
}

.primary-btn:hover:before {
  height: 100%;
  width: 100%;
}
.primary-btn:hover:after {
  height: 100%;
  width: 100%;
}
.primary-btn:hover a{
  color:#939598 ;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-left: 2px solid #a88944;
  border-top: 2px solid #a88944;
  content: "";
  z-index: -1;
  -webkit-transition: all, 0.7s;
  -o-transition: all, 0.7s;
  transition: all, 0.7s;
}
.primary-btn:after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-right: 2px solid #a88944;
  border-bottom: 2px solid #a88944;
  content: "";
  z-index: -1;
  -webkit-transition: all, 0.7s;
  -o-transition: all, 0.7s;
  transition: all, 0.7s;
}

.site-btn  {
  font-size: 15px;
  color: #a88944;
 outline: 1px solid #a88944;
  font-family: "EB Garamond", serif;
 
  border: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 34px 12px;
  width: 100%;
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
/*---------------------
  Header
-----------------------*/
.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9;
  height: 150px;
}

.header__logo {
  height: 100px;
}
.header__logo a {
  display: inline-block;
  margin-top: 10px;
}

.header__nav__option {
  text-align: right;
  padding: 28px 0px;
}

.header__nav__menu {
  display: inline-block;
  margin-right: 45px;
}
.header__nav__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 45px;
  position: relative;
}
.header__nav__menu ul li.active a:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.header__nav__menu ul li:hover a:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.header__nav__menu ul li:hover .dropdown {
  top: 34px;
  opacity: 1;
  visibility: visible;
}
.header__nav__menu ul li:last-child {
  margin-right: 0;
}
.header__nav__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 60px;
  width: 140px;
  background: #ffffff;
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}
.header__nav__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}
.header__nav__menu ul li .dropdown li a {
  font-size: 14px;
  color: #111111;
  padding: 8px 20px;
  text-transform: capitalize;
}
.header__nav__menu ul li .dropdown li a:after {
  display: none;
}
.header__nav__menu ul li a {
  font-size: 15px;
  font-family: "EB Garamond", serif;
  color: #939598;
  display: block;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.header__nav__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a88944;
  content: "";
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__nav__social {
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.header__nav__social a {
  color: #939598;
  font-size: 15px;
  margin-right: 18px;
}
.header__nav__social a :hover{
  color: white;
}
.header__nav__social a:last-child {
  margin-right: 0;
}

.slicknav_menu {
  display: none;
}

.slicknav_menutxt {
  display: none;
  line-height: 1.188em;
  float: left;
  color: white;
 
 
}
.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: .875em;
  margin: .188em 0 0 .438em;
  color: white;
}
.slicknav_btn {
  background: none;
}
/*---------------------
   Hero banner
  -----------------------*/

/* .banner{
 height: 80vh;
 background-image: url("../img/hero/Euvo\ -\ home\ banner.jpg");
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  
} */

.banner{
 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner .imgbanner{
  width: 100%;
 
}
.banner .imgbanner img{
  width: 100%;
  object-fit: cover;
  max-height: 100%;
  height: 100%;
  background-color: black;

}
.banner h1{
 top: 400px;
  font-size: 70px;
  position: absolute;
  color: rgb(205, 197, 197);
 
 
}
 @media(min-width:1200px){
  
  .banner h1{
    top: 150px;
  }

}
@media(max-width:1180px){
  .banner h1{
    top: 60px;
    font-size: 45px;
    line-height: 55px;
  }


}
@media(max-width:880px){
  .banner h1{
    top: 40px;
    font-size: 40px;
    line-height: 40px;
  }


}

@media(max-width:490px){
  .banner h1{
    top: 30px;
    font-size: 25px;
    line-height: 25px;
  }


} 
@media(max-width:320px){
  .banner h1{
    top: 20px;
    font-size: 20px;
    line-height: 20px;
  }


} 

/*---------------------
  styles
-----------------------*/


*,
*::before,
*::after {
  box-sizing: border-box;
}
.styles .container  h2{
  color:#939598 ;
}

.gallery img {
  display: block;
}

.gallery {
  position: relative;
  z-index: 2;
  padding: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  transition: all .5s ease-in-out;
  transform: translateZ(0);

  &.pop {
    filter: blur(10px);
  }

  figure {
    flex-basis: 33.333%;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;

    img {
      width: 100%;
      transition: all .3s ease-in-out;
    }
    
    figcaption {
      display: none;
    }
    
  }
}

.popup {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  opacity: 0;
  transition: opacity .5s ease-in-out .2s;


  &.pop {
    opacity: 1;
    transition: opacity .2s ease-in-out 0s;

    figure {
      margin-top: 0;
      opacity: 1;
    }
  }

  figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    margin-top: 30px;
    opacity: 0;
    animation: poppy 500ms linear both;

    img {
      position: relative;
      z-index: 2;
      box-shadow: 0 1px 5px rgba(0, 0, 0, .2), 0 6px 30px rgba(0, 0, 0, .4);
    }
    
    figcaption {
      position: absolute;
      bottom: 50px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78));
      z-index: 2;
      width: 100%;
      padding: 100px 20px 20px 20px;
      color: #939598;
      font-family: 'Open Sans', sans-serif;
      font-size: 32px;
      
      small {
        font-size: 11px;
        display: block;
        text-transform: uppercase;
        margin-top: 12px;
        text-indent: 3px;
        opacity: .7;
        letter-spacing: 1px;
      }
    }

    .shadow {
      position: relative;
      z-index: 1;
      top: -56px;
      margin: 0 auto;
      background-position: center bottom;
      background-repeat: no-repeat;
      width: 98%;
      height: 50px;
      opacity: .9;
      filter: blur(16px) contrast(1.5);
      transform: scale(0.95, -0.7);
      transform-origin: center bottom;
    }
  }

  .close {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: url(#close);
    border-radius: 25px;
    background: rgba(0, 0, 0, .1);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);

    svg {
      width: 100%;
      height: 100%;
    }
  }
}

@keyframes poppy { 
  0% { transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1); }
  4.3% { transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1); }
  4.7% { transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1); }
  6.81% { transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1); }
  8.61% { transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1); }
  9.41% { transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, -265.038, -262.804, 0, 1); }
  10.21% { transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1); }
  12.91% { transform: matrix3d(1.094, 0, 0, 0, 0, 1.328, 0, 0, 0, 0, 1, 0, -328.332, -298.813, 0, 1); }
  13.61% { transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, -336.934, -299.783, 0, 1); }
  14.11% { transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1); }
  17.22% { transform: matrix3d(1.205, 0, 0, 0, 0, 1.252, 0, 0, 0, 0, 1, 0, -361.606, -281.592, 0, 1); }
  17.52% { transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1); }
  18.72% { transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, -363.633, -267.15, 0, 1); }
  21.32% { transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1); }
  24.32% { transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, -345.164, -216.073, 0, 1); }
  25.23% { transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, -340.193, -210.948, 0, 1); }
  28.33% { transform: matrix3d(1.075, 0, 0, 0, 0, 0.898, 0, 0, 0, 0, 1, 0, -322.647, -202.048, 0, 1); }
  29.03% { transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, -318.884, -201.771, 0, 1); }
  29.93% { transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1); }
  35.54% { transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, -293.828, -216.499, 0, 1); }
  36.74% { transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, -291.489, -220.242, 0, 1); }
  39.44% { transform: matrix3d(0.962, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -288.62, -227.228, 0, 1); }
  41.04% { transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, -288.247, -229.999, 0, 1); }
  44.44% { transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1); }
  52.15% { transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, -297.363, -226.449, 0, 1); }
  59.86% { transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, -301.813, -222.759, 0, 1); }
  61.66% { transform: matrix3d(1.007, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, -302.102, -222.926, 0, 1); }
  63.26% { transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, -302.171, -223.276, 0, 1); }
  75.28% { transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1); }
  83.98% { transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.61, -225.049, 0, 1); }
  85.49% { transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.599, -224.94, 0, 1); }
  90.69% { transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, -299.705, -224.784, 0, 1); }
  100% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1); } 
}
.styles{
 padding-top: 50px;
 padding-bottom: 50px;
  background-color: black;
}

.styles .container h2{
  font-size: 40px;
  padding: 15px;
  text-align: center;
  color: #939598;
  margin-bottom: 20px;
}
.styles .container .img-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-gap:30px;
  margin-bottom: 50px;
  
}

.styles .img-container  img{
 
  height: 100%;
  object-fit: cover;
  transition: .2s linear;
}


  /*---------------------
  contact
-----------------------*/


  
  
 
  
/*---------------------
  Team
-----------------------*/
.team {
  padding-bottom: 90px;
  background-color: black;
}

.section-title.team__title {
  margin-bottom: 90px;
}

.team__item {
  height: 390px;
  position: relative;
  overflow: hidden;
}
.team__item:hover .team__item__text {
  bottom: 0;
}
.team__item.team__item--second {
  margin-top: -60px;
}
.team__item.team__item--third {
  margin-top: -120px;
}
.team__item.team__item--four {
  margin-top: -180px;
}

.team__item__text {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -500px;
  width: 100%;
  padding: 50px 0 30px;
  z-index: 1;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}
.team__item__text:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team/team-hover.png);
  content: "";
  z-index: -1;
}
.team__item__text h4 {
  font-size: 22px;
  color: #939598;
 
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team__item__text p {
  color: #939598;
  
  margin-bottom: 12px;
}
.team__item__text .team__item__social a {
  color: #939598;
  display: inline-block;
  font-size: 15px;
  margin-right: 18px;
}
.team__item__text .team__item__social a:last-child {
  margin-right: 0;
}

.team__btn {
  position: absolute;
  right: 0;
  bottom: 0;
}



/*---------------------
  Call To Active
-----------------------*/
.callto {
  padding-top: 50px;
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 
}
.callto.sp__callto {
  padding-top: 0;
  background: black;
}

.callto__text h2 {
  color: #939598;
  font-size: 50px;
  line-height: 75px;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: "cinzel";
  
}
.callto__text p {
  font-size: 15px;
  color: #939598;
  opacity: 0.7;
  text-transform: uppercase;

  font-family: "EB Garamond", serif;
}
.callto__text a {
  color: #a88944 ;
 outline: 1px solid   #a88944 ;
  font-size: 15px;
  margin-bottom: 50px;
  font-family: "EB Garamond", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 32px 12px;
}

/*---------------------
  Footer
-----------------------*/
footer{
  background-color: black;
}
.footer {
  background: black;
  height: 500px;
}

.footer__top {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top__logo {
  line-height: 40px;
}
.footer__top__logo a {
  display: inline-block;
}

.footer__top__social {
  text-align: right;
}
.footer__top__social a {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  margin-right: 6px;
}
.footer__top__social a:last-child {
  margin-right: 0;
}

.footer__option {
  padding-bottom: 35px;
  padding-top: 75px;
}

.footer__option__item {
  margin-bottom: 35px;
}
.footer__option__item h5 {
  color: #939598;
 
  margin-bottom: 35px;
}
.footer__option__item p {
 
  margin-bottom: 20px;
}
.footer__option__item .read__more {
  font-size: 16px;
  color: #939598;
}
.footer__option__item .read__more span {
  font-size: 16px;
  color: #939598;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}
.footer__option__item ul li {
  list-style: none;
}
.footer__option__item ul li a {
  color: #939598;
  font-size: 16px;
  
  line-height: 32px;
}
.footer__option__item form {
  position: relative;
}
.footer__option__item form input {
  height: 50px;
  width: 100%;
  padding-left: 20px;
  border: 1px solid #544E5E;
  background: transparent;
  font-size: 16px;
  color: #939598;
}
.footer__option__item form input::-webkit-input-placeholder {
  color: #939598;
}
.footer__option__item form input::-moz-placeholder {
  color: #939598;
}
.footer__option__item form input:-ms-input-placeholder {
  color: #939598;
}
.footer__option__item form input::-ms-input-placeholder {
  color: #939598;
}
.footer__option__item form input::placeholder {
  color: #939598;
}
.footer__option__item form button {
  font-size: 20px;
  color: #939598;
  border: none;
  height: 50px;
  width: 50px;
  background: #00bfe7;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer__copyright__text {
  margin-bottom: 0;
 
}
.footer__copyright__text i {
  color: #00bfe7;
}
.footer__copyright__text a {
  color: #00bfe7;
}
.footer .footer-content{
  flex-direction: column;
  
}
.footer.service_btn{
  display: block;
  margin: 0 auto;
}
.footer_left_links, .footer_right_links, .footer_center_links {
  font-family: "EB Garamond", serif;
  text-align: center;
  text-transform: uppercase;
}
.kit_form_wrapper button .btn{
  font-size: 20px;
  color: #939598;
  border: none;
  height: 50px;
  width: 50px;
  background: #a88944;
  line-height: 50px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}


.footer_center .tamras_gin_image {
  max-width: 40%;
  margin: auto auto;
}

.footer_social_links_wrapper {
  margin: 20px 0 50px 0;
}
.footer_left_links, .footer_right_links, .footer_center_links {
  font-family: "EB Garamond", serif;
  text-align: center;
  text-transform: uppercase;
}

.footer_social_links_wrapper .footer_social_links {
  margin: 0 10px !important;
  text-decoration: none;
  display: inline-block;
}

.footer_left_links a, .footer_right_links a, .footer_center_links a {
  color: #86CAD9;
}
.footer_left_links, .footer_right_links, .footer_center_links {
  font-family: "EB Garamond", serif;
  text-align: center;
  text-transform: uppercase;
}



.kit_form_wrapper {
 
  font-family: "EB Garamond", serif;
  text-align: center;
}
.kit_headline {
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1;
}

.kit_body{
  font-family: "EB Garamond", serif;
  color: #939598;
}
.kit_copy {
  font-family: "EB Garamond", serif;
  color: #939598;
  line-height: 1.5;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.kit_body p {
  font-family: "EB Garamond", serif;
  margin-bottom: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  word-spacing: 5px;
  letter-spacing: 5px;
  color: #939598;
  font-size: 15px;
  text-align: center;
}

.footer_social_links_wrapper {
  margin: 20px 0 50px 0;
}
.footer_center_links .footer_links {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 1px;
  -webkit-text-decoration-color: #86CAD9;
  text-decoration-color: #86CAD9;
}

.footer_left_links a, .footer_right_links a, .footer_center_links a {
  color: #939598;
  margin: 15px;
  margin-right: 0px;
  margin-left: 0px;
  text-decoration: none;
}
.footer_links_left {
  text-align: left;
  font-size: 0.85rem;
}
.flex-even {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer_adv_copyright {
  font-size: 0.5rem;
  color: #939598;
  text-transform: none;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}
.footer_adv_copyright a{
color: #a88944;
cursor: pointer;
}
.footer_adv_copyright  a:hover{
  color: white;
}
.footer_right_illustration {
  text-align: right;
}
footer  .footer_social_links_wrapper a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #939598;
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50px;
}

.kit_form_wrapper .service-btn {
  color: #939598;
  background: #a88944;
  font-size: 15px;
 
  font-family: "EB Garamond", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 32px 12px;
}
.service-btn a{
  color: #939598;
}

.footer  .footer_social_links_wrapper a:hover {
  background-color: #38618e;
}

/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-option {
  padding-top: 50px;
  background-color: black;
}

.breadcrumb__text h2 {
  color: #939598;
  font-size: 50px;
 
  margin-bottom: 12px;
}

.breadcrumb__links a {
  font-size: 16px;
  color: #a88944;
 
  display: inline-block;
  margin-right: 32px;
  position: relative;
}
.breadcrumb__links a:after {
  position: absolute;
  right: -22px;
  top: -3px;
  content: "/";
  color: #939598;
  font-size: 20px;
}
.breadcrumb__links span {
  font-size: 16px;
  color: #939598;
 
  display: inline-block;
}

/*---------------------
  About
-----------------------*/
.about {
  background: black;
  padding-bottom: 50px;
  padding-top: 50px;
  overflow: hidden;
}
.about p{
  color:#666666 ;
  font-size: 21px;
}

.about__pic__item {
  height: 235px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.about__pic__item.about__pic__item--large {
  height: 490px;
}

.about__text {
  padding-left: 30px;
}
.about__text .services__item .services__item__icon:after {
  border-color: #281A3E;
}

.about__text__desc {
  margin-top: -10px;
}
.about h3{
  color: #939598;
  margin-left: 14px;
}

/*---------------------
  Services
-----------------------*/
.services {
  background: black;
  padding-bottom: 60px;
  padding-top: 110px;
}
.services-page h2{
  color: #939598;
  text-align: center;
  margin-bottom: 50px;
 

}
.services_btn{
  position: absolute;
  right: 0;
  bottom: 0;
}

.services__title p {
  margin-bottom: 45px;
}

.services__item {
  margin-bottom: 45px;
}
.services__item:hover .services__item__icon:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.services__item h4 {
  color: #939598;
  font-size: 22px;
 
  margin-top: 26px;
  margin-bottom: 18px;
}
.services__item p {
  margin-bottom: 0;
}

.services__item__icon {
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
}
.services__item__icon:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid ;
  content: "";
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.services-page {
  background: black;
  
  background-image: url(img/calltos-bg.jpg);
  position: relative;
 
}
.services-page .hair{
  height: 150px;
  object-fit: cover;
max-width: 1100px;
 margin-bottom: 50px;
 margin-top: 50px;
 
  
  
}
.services-page .hair h2{
  position: absolute;
top: 50%;
  left: 15%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-top: 28px;
 font-size: 70px;
 color: #939598;
}

.services-page .beard{
  height: 150px;
  object-fit: cover;
  background-position: center;
  margin-top: 50px;
  max-width: 1100px;
  margin-bottom: 50px;
  
}

.services-page .beard h2{
  position: absolute;
 top: 50%;
  left: 15%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-top: 28px;
 font-size: 70px;
 color: #939598;
 
}
.services-page .face{
  height: 150px;
 margin-top: 50px;
  object-fit: cover;
  max-width: 1100px;
  margin-bottom: 50px;
  
  
}
.services-page .face h2{
  position: absolute;
 top: 50%;
  left: 15%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-top: 28px;
 font-size: 70px;
 color: #939598;
}
.services-page .special{
  height: 150px;
  object-fit: cover;
  background-position: center;
  margin-bottom: 50px;
  max-width: 1100px; 
  margin-top: 50px;
}

.services-page .special h2{
  position: absolute;
 top: 50%;
  left: 15%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-top: 28px;
 font-size: 70px;
 color: #939598;

}

.services-page h3{
  color: #939598;
}
.services-page  h3 a{
  color: #7d4900;
 border: 1px solid #7d4900;
  font-size: 30px;
  font-family: "EB Garamond", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
 margin-left: 100px;
 padding: 5px 40px;
 background:none;
}
.services-page  h3  span{
  font-size: 15px;
}

.services-page .land-img1{
  margin-bottom: 60px;
  margin-top: 60px;
}


/*---------------------
 card
-----------------------*/



.card{
  background-color: black;
  border: 1px solid rgb(168, 137, 68);
  margin-bottom: 20px;
  height: 280px;
}
.card h5{
  color: rgb(168, 137, 68);
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px !important;
 
}
.card p{
  color: rgb(168, 137, 68);
  text-align: center;
  margin-bottom: 20px;
}

.card a{

 color:rgb(168, 137, 68);
 font-size: 25px !important;
 
 text-align: center;
 display: block;


 
}



 @media(max-width:1200px){
  .card a{
   text-align: center;
 
  
   }
   .card {
    height: 340px;
   }
  
 }

 @media(max-width:550px){
  .card{
      height: 190px;
  }
 }

 @media(max-width:450px){
  .card{
      height: 220px;
  }
 }
 @media(max-width:350px){
  .card{
      height: 350px;
  }
 }
 @media(max-width:280px){
  .card{
      height: 380px;
  }
 }






/*---------------------
  Logo
-----------------------*/
.logo {
  background: black;
  padding: 100px 20px;
}



/*---------------------
  Contact Widget
-----------------------*/
.contact-widget {
  background: black;
  padding-bottom: 70px;
}

.contact__widget__item {
  margin-bottom: 30px;
}

.contact__widget__item__icon {
  height: 70px;
  width: 70px;
  border: 1px solid #939598;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 30px;
}
.contact__widget__item__icon i {
  font-size: 30px;
  color: #939598;
}

.contact__widget__item__text {
  overflow: hidden;
  padding-top: 7px;
}
.contact__widget__item__text h4 {
  font-size: 22px;
  color: #939598;

  margin-bottom: 10px;
}
.contact__widget__item__text p {
  margin-bottom: 0;
}

/*---------------------
  Contact
-----------------------*/
.contact {
  background: black;
  padding-top: 0;
  overflow: hidden;
}

.contact__map {
  height: 450px;
}
.contact__map iframe {
  width: 100%;
}

.contact__form h3 {
  color: #939598;
 
  text-transform: uppercase;
  margin-bottom: 35px;
}
.contact__form form input {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-left: 20px;
 
  margin-right: 20px;
  margin-bottom: 20px;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}
.contact__form form input:placeholder {
  color: #adadad;
}
.contact__form form input:focus {
  border-color: #e1e1e1;
}
.contact__form form textarea {
  height: 110px;
  width: 100%;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-top: 12px;
  padding-left: 20px;

  margin-bottom: 14px;
  resize: none;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}
.contact__form form textarea:placeholder {
  color: #adadad;
}
.contact__form form textarea:focus {
  border-color: #e1e1e1;
}




/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slicknav_menu .slicknav_icon {
   display: none;
    
  }
  .slicknav_btn .slicknav_collapsed {
    display: none;
  }
  .about h3{
    margin-top: 80px;
   
  }
  .about p{
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }
  .about .service-btn{
 
    padding-left: 30px;
    
  }
  .about .col-lg-6 {
    order: 1;
  }
  .about .col-lg-6 img{
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
    object-fit: cover;
    
  
  }
.services-page h2 {
    color: #939598;
    text-align: center;
    margin-bottom: 30px;
}

  .services__title {
    margin-bottom: 50px;
  }

 

  .team__item.team__item--second {
    margin-top: 0;
  }

  .team__item.team__item--third {
    margin-top: 0;
  }

  .team__item.team__item--four {
    margin-top: 0;
  }

  .team__btn {
    position: relative;
    padding-top: 50px;
  }

  .about__pic {
    margin-bottom: 50px;
  }

  .about__text {
    padding-left: 0;
  }

  .portfolio__filter li {
    padding: 6px 15px;
  }

  .slicknav_menu {
    background: #4c4c4c;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

  .slicknav_nav .slicknav_row
 {
    padding: 7px 0;
    margin: 0;
    color: rgb(102, 102, 102);
   
  }
  .slicknav_nav a{
    color: white;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
   
  }
  .slicknav_menutxt  .slicknav_menu{
    display: none;
    line-height: 1.188em;
    float: left;
    color: rgb(102, 102, 102);
   
    text-shadow: 0 1px 3px #000;
  }
  .slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
}
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
   
  }

  .slicknav_nav {
    background: #4c4c4c ;
  }

  .slicknav_btn {
    position: absolute;
    right: 30px;
    top: 26px;
    
  }

  .header .container {
    position: relative;
  }

 

  .services-page .row .col-lg-12 h3{
    text-align: center;
    margin-bottom: 10px;
}
.services-page{
  overflow: hidden;
}
.hero{
  max-width: 100%;
 object-fit: cover;
}
.hero__text h1 {
  font-size: 40px;
  line-height: 60px;
}
.callto__text h2{
  font-size: 40px;
    line-height: 55px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }
  .callto{
    overflow: hidden;
  }
}
/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .services-page .special h2 {
    position: absolute;
    top: 80%;
    left: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 40px;
    color: #939598;
}
.services-page .hair h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .face h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .beard h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
  
  .services__title {
    margin-bottom: 50px;
  }

  .team__item.team__item--second {
    margin-top: 0;
  }

  .team__item.team__item--third {
    margin-top: 0;
  }

  .team__item.team__item--four {
    margin-top: 0;
  }

  .team__btn {
    position: relative;
    padding-top: 50px;
  }

  .about__pic {
    margin-bottom: 50px;
  }

  .about__text {
    padding-left: 0;
  }
  .about h3{
    margin-top: 50px;
    text-align: center;
  }
  .about p{
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  .about .service-btn{
 
    padding-left: 30px;
   margin: 0 auto;
    
  }
  .about .col-lg-6 img{
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    object-fit: cover;
    padding-top: 30px;
  }

  .hero__slider.owl-carousel .owl-dots {
    max-width: auto;
    padding: 0 15px;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

   .slicknav_row,
.slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #ffffff;
   
  }
  .slicknav_nav {
    color:#4c4c4c ;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
   
    
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav {
    background: #4c4c4c;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top: 26px;
    
  }

  .header .container {
    position: relative;
  }

  .header__nav__option {
    display: none;
  }

 
  .hero{
    max-width: 100%;
   object-fit: cover;
  }
  .hero__text h1 {
   
    font-size: 30px;
   
  }
  .header__logo a {
    display: inline-block;
    margin-top: 0px;
  }

  .grid-sizer {
    width: calc(50% - 10px);
  }

  .work__item.wide__item {
    width: calc(50% - 10px);
  }

  .work__item {
    width: calc(50% - 10px);
  }

  .work__item.large__item {
    width: calc(50% - 10px);
  }

  .footer__top__social {
    text-align: left;
    padding-top: 30px;
  }

  .portfolio__filter li {
    margin-bottom: 10px;
  }

  .input__list {
    margin-right: 0;
  }

  .input__list input {
    width: 100%;
    margin-right: 0;
  }

  .contact__map {
    margin-bottom: 40px;
  }

  .team__item {
    margin-bottom: 20px;
  }

  .team .p-0 {
    padding: 0 15px !important;
  }

  .about__pic__item {
    margin-right: 0;
  }

  .blog__details__quote {
    padding: 30px 45px 35px 35px;
  }

  .services-page h3{
    font-size: 18PX;
    margin-bottom: 20px;
    
  }
  .services-page  h3 button {
    margin-left: 50px;
    text-align: right;
 
  }
  .services-page  h3 button span{
    margin-left: 0;
    text-align: right;
    
   
  }
  .services-page .row .col-lg-12 h3{
    text-align: center;
    margin-bottom: 10px;
}
.services-page{
  overflow: hidden;
}

.services-page  h3{
  font-size:14px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.services-page .row .col-lg-12 h3{
    text-align: center;
    margin-bottom: 10px;
}

.services-page  h3{
  margin-left: 0;
}

.services-page h3 button {
  margin-left: 15px;
  padding: 5px 10px;

}
.services-page h3 button span{
  margin-left: 5px;
 
}

.services-page .hair{
  background-position: center;
} 
.services-page .face{
  background-position: center;
} 

.services-page .beard{
  background-position: center;
} 

.services-page .special{
  background-position: center;
} 
.hero__text h1 {
  font-size: 40px;
  line-height: 60px;
}
.callto__text h2{
  font-size: 40px;
    line-height: 55px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }
  .callto{
    overflow: hidden;
  }
}

@media(max-width:650px){
  .services-page{
    overflow: hidden;
  }
  .services-page .special h2 {
    position: absolute;
    top: 80%;
    left: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 40px;
    color: #939598;
}
.services-page .face h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .hair h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .beard h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
  .services-page  h3{
    font-size:14px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .services-page .row .col-lg-12 h3{
      text-align: center;
      margin-bottom: 10px;
  }
  
  .services-page  h3{
    margin-left: 0;
  }
 
  .services-page h3 button {
    margin-left: 5px;
    padding: 5px 10px;
  
  }
  .services-page h3 button span{
    margin-left: 5px;
   
  }

  .services-page .hair{
    background-position: center;
  } 
  .services-page .face{
    background-position: center;
  } 

  .services-page .beard{
    background-position: center;
  } 

  .services-page .special{
    background-position: center;
  } 

  .hero__item {
    height: 684px;
    padding-top: 255px;

} .hero{
  max-width: 100%;
}
.hero__slider.owl-carousel .owl-dots {
  max-width: 650px;
}
.header__logo a {
  display: inline-block;
  margin-top: 0px;
}


.callto__text h2{
  font-size: 40px;
    line-height: 55px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }
}
.hero__text h1 {
  font-size: 70px;
  line-height: 75px;
  left: 0%;
}
.kit_body p{
  text-align: center;
  max-width: 100%;
  
}
.about h3{
  margin-top: 30px;
  text-align: center;
}
.about p{
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.about .service-btn{

  padding-left: 20px;
 margin: 0 auto;
  
}

.about .col-lg-6 img{
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  object-fit: cover;
  padding-top: 30px;
}
.callto{
  overflow: hidden;
}

  


/* Small Device = 479px */

@media(min-width:1366px){
  .header__nav__option {
    text-align: right;
    padding: 28px 0px;
  }
  .header__nav__social{
    margin-left: 25px;
  }

  .container {
    max-width: 1170px;
  }
  .hero{
    max-width: 100%;
   object-fit: cover;
  }
  .hero__text h1{
    font-size: 75px;
    line-height: 65px;
  }
  .callto__text h2 {
    color: #939598;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 50px;
    text-transform: uppercase;
    word-spacing: 10px;
    font-family: "cinzel";
    
  }
  
}


@media only screen and (min-width: 1024) and (max-width: 1366px) {
 .container{
  max-width: 1200px;
 }
 .header__nav__option {
  margin-left: 50px;
  padding: 28px 0px;
  text-align: left;
}


 .header__logo a {
  display: inline-block;
  margin-top: 35px;
  margin-left: 50px;
}
.header__nav__menu {
  margin-right: 25px;
}


.hero__text h1 {
  font-size: 65px;
  line-height: 65px;
}

.header__nav__menu ul li {
  margin-right: 25px;
}

.header__nav__social {
  padding-left: 25px;
}

.counter__item::before {
  display: none;
}

.counter__content {
  padding: 0px 145px 0 50px;
}

.counter__item.second__item {
  margin-top: -210px;
}

.counter__item.four__item {
  margin-top: -210px;
}

.hero__slider.owl-carousel .owl-dots {
  max-width: 930px !important;
}

.slicknav_menutxt .slicknav_menu {
  display: none;
  line-height: 1.188em;
  float: left;
  color: rgb(102, 102, 102);
 
  text-shadow: 0 1px 3px #000;
}
.slicknav_menu .slicknav_icon-bar {
  background-color: rgb(102, 102, 102);
}
.services-page .row .col-lg-12 h3{
text-align: center;
margin-bottom: 10px;
}
.services-page{
overflow: hidden;
}

.hero{
max-width: 100%;
object-fit: cover;
}
.callto__text h2{
font-size: 45px;
  line-height: 55px;
  margin-bottom: 50px;
  font-family: "cinzel";
}
 .services-page .hair{
  margin-top: 50px;
  margin-bottom: 50px;
 }
 .services-page .beard{
  padding-top: 50px;
  margin-bottom: 50px;
 }
 .services-page .face{
  margin-top: 50px;
  margin-bottom: 50px;
 }
 .services-page .special{
  margin-top: 50px;
  margin-bottom: 50px;
 }
 .callto{
  overflow: hidden;
}
}


@media only screen and (min-width: 768px) and (max-width: 1024px){

 
  .container{
    max-width: 1200px;
   }
   .header__nav__option {
    margin-left: 50px;
    padding: 28px 0px;
    text-align: left;
  }
  
  
   .header__logo a {
    display: inline-block;
    margin-top: 35px;
    margin-left: 50px;
  }
  .header__nav__menu {
    margin-right: 25px;
  }
  .hero__text h1 {
    font-size: 65px;
    line-height: 65px;
  }
  
  .header__nav__menu ul li {
    margin-right: 25px;
  }
  
  .header__nav__social {
    padding-left: 25px;
  }
 
   
   .slicknav_icon {
    display: none;
   }
  
   
  
  .slicknav_btn {
    position: absolute;
    right: 70px;
    top: 26px;
}

  
  .about h3{
    margin-top: 80px;
   
  }
  .about p{
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }
  .about .service-btn{
 
    padding-left: 30px;
    
  }
  .about .col-lg-6 {
    order: 1;
  }
  .about .col-lg-6 img{
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
    object-fit: cover;
    
  
  }
.services-page h2 {
    color: #939598;
    text-align: center;
    margin-bottom: 30px;
}

  .services__title {
    margin-bottom: 50px;
  }

 

  .team__item.team__item--second {
    margin-top: 0;
  }

  .team__item.team__item--third {
    margin-top: 0;
  }

  .team__item.team__item--four {
    margin-top: 0;
  }

  .team__btn {
    position: relative;
    padding-top: 50px;
  }

  .about__pic {
    margin-bottom: 50px;
  }

  .about__text {
    padding-left: 0;
  }

  .portfolio__filter li {
    padding: 6px 15px;
  }

  .slicknav_menu {
    background: #4c4c4c;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

  .slicknav_nav .slicknav_row
 {
    padding: 7px 0;
    margin: 0;
    color: rgb(102, 102, 102);
   
  }
  .slicknav_nav a{
    color: white;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
   
  }
  .slicknav_menutxt  .slicknav_menu{
    display: none;
    line-height: 1.188em;
    float: left;
    color: rgb(102, 102, 102);
   
    text-shadow: 0 1px 3px #000;
  }
  .slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
}
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
   
  }

  .slicknav_nav {
    background: #4c4c4c ;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top: 26px;
    
  }

  .header .container {
    position: relative;
  }

  

  .services-page .row .col-lg-12 h3{
    text-align: center;
    margin-bottom: 10px;
}
.services-page{
  overflow: hidden;
}
.hero{
  max-width: 100%;
 object-fit: cover;
}
.hero__text h1 {
  font-size: 40px;
  line-height: 60px;
}
.callto__text h2{
  font-size: 40px;
    line-height: 55px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }



  /* contact */

    .contact {
      background-position: center 50px;
    }

  }
  .contact .info-item+.info-item {
    margin-top: 40px;
  }
  
  .contact .info-item i {
    font-size: 20px;
    background:rgb(47, 49, 146)  ;
    color: #939598;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }
  
  .contact .info-item h4 {
    padding: 0;
    font-size: 20px;
   
    margin-bottom: 5px;
    color: rgb(47, 49, 146) ;
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
  }
  .contact .contact__map {
    height: 450px;
    
  }
  .contact.contact__map iframe {
    width: 75%;
  }
  .callto{
    overflow: hidden;
  }






@media(max-width:480px){

  .slicknav_menu .slicknav_icon {
    float: left;
    width: 5px;
    margin-right: 25px;
    font-size: 27px;
    display: block;
    
  }
  .services-page .special h2 {
    position: absolute;
    top: 80%;
    left: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 40px;
    color: #939598;
}
.services-page .face h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .hair h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .beard h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
  
  .hero{
    overflow: hidden;
  }
  .hero__text h1 {
    font-size: 35px;
    line-height: 40px;
    text-align: center;
   
  }
  .header__logo a {
    display: inline-block;
    margin-top: 0px;
  }
  .services-page{
    overflow: hidden;
  }
  .services-page  h3{
    margin-left: 0;
  }
 
  .services-page h3 button {
    margin-left: 10px;
    padding: 5px 20px;
  
  }
  .services-page h3 button span{
    margin-left: 5px;
   
  }

  .services-page .hair{
    background-position: center;
  } 
  .services-page .face{
    background-position: center;
  } 

  .services-page .beard{
    background-position: center;
  } 

  .services-page .special{
    background-position: center;
  } 


  .services-page  h3{
    font-size:14px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .services-page .row .col-lg-12 h3{
      text-align: center;
      margin-bottom: 10px;
  }
 
.callto__text h2{
  font-size: 25px;
    line-height: 45px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }

  .grid-sizer {
    width: 100%;
  }

  .work__item.wide__item {
    width: 100%;
  }

  .work__item {
    width: 100%;
    margin-right: 0;
  }

  .work__item.large__item {
    width: 100%;
  }

  .work__gallery {
    margin-right: 0;
  }

 
    .kit_body p{
      text-align: center;

    }

    .about h3{
     
      text-align: center;
    }
    .about p{
      max-width: 100%;
      
    }
    .about .service-btn{
    
     
     margin: 0 auto;

      
    }
    .about .col-lg-6 img{
      width: 100%;
      object-fit: cover;
    }
    .callto{
      overflow: hidden;
    }
}








@media(max-width:320px){

   .slicknav_icon {
    float: left;
    width: 5px;
    margin-right: 25px;
    font-size: 27px;
    
  }
  .services-page .special h2 {
    position: absolute;
    top: 80%;
    left: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 40px;
    color: #939598;
}
.services-page .face h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .hair h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
.services-page .beard h2 {
  position: absolute;
  top: 80%;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-size: 40px;
  color: #939598;
}
  .hero__slider.owl-carousel .owl-dots {
    max-width: 479 !important;
  }
  .hero{
    overflow: hidden;
  }
  .hero__text h1 {
    font-size: 35px;
    line-height: 40px;
    text-align: center;
   
  }
  .header__logo a {
    display: inline-block;
    margin-top: 0px;
  }
  .services-page{
    overflow: hidden;
  }
  .services-page  h3{
    margin-left: 0;
  }
 
  .services-page h3 button {
    margin-left: 10px;
    padding: 5px 20px;
  
  }
  .services-page h3 button span{
    margin-left: 5px;
   
  }

  .services-page .hair{
    background-position: center;
  } 
  .services-page .face{
    background-position: center;
  } 

  .services-page .beard{
    background-position: center;
  } 

  .services-page .special{
    background-position: center;
  } 


  .services-page  h3{
    font-size:14px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .services-page .row .col-lg-12 h3{
      text-align: center;
      margin-bottom: 10px;
  }
  .hero{
  max-width: 100%;
}
.callto__text h2{
  font-size: 25px;
    line-height: 45px;
    margin-bottom: 50px;
    font-family: "cinzel";
  }

  
  
  .grid-sizer {
    width: 100%;
  }

  .work__item.wide__item {
    width: 100%;
  }

  .work__item {
    width: 100%;
    margin-right: 0;
  }

  .work__item.large__item {
    width: 100%;
  }

  .work__gallery {
    margin-right: 0;
  }

 
    .kit_body p{
      text-align: center;

    }

    .about h3{
     
      text-align: center;
    }
    .about p{
      max-width: 100%;
      
    }
    .about .service-btn{
    
     
     margin: 0 auto;

      
    }
    .about .col-lg-6 img{
      width: 100%;
      object-fit: cover;
    }
    .callto{
      overflow: hidden;
    }
}
