/* ======= General style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: #fff;
    height: 100%;
    background: #904d30;
}
p {
    font-size: 14px;
    line-height: 1.75em;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: #fff;
}
h1,
h2,
h3, 
h4, 
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.75em;
    margin-bottom: 20px;
    color: #fff;
} 
a {
    color: #904d30;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out
}
a:hover,
a:focus {
    color: #904d30;
    outline: none
}
a:focus {
    text-decoration: none
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 400;
}
.count {
    font-family: 'Barlow', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    /*    top: 50%;*/
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}
.js .animate-box {
    opacity: 0;
}
.static {
    position: static;
}
.mt-50 {
    margin-top: 50px;
}

:root {
    scroll-behavior: auto;
}

/* ======= Spinner/Preloader style ======= */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: #101010;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner .spinner-border {
    color: #904d30;
    width: 3.5rem; 
    height: 3.5rem;
    border: 0.12em solid #904d30;
    border-right-color: transparent;
}


/* ======= For Images Reveal Effect style ======= */
.reveal-effect {
  float: left;
  position: relative;
}
.reveal-effect.animated:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #101010;
  position: absolute;
  left: 0;
  top: 0;
  animation: 1s reveal linear forwards;
  -webkit-animation-duration: 1s;
  z-index: 1;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.reveal-effect.animated > * {
  animation: 1s reveal-inner linear forwards;
}
@-webkit-keyframes reveal {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@-webkit-keyframes reveal-inner {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  51% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .cursor {
    display: none;
  }

}


/* ======= Text Animation style ======= */
.splitting.animated .char {
    -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}
.splitting .whitespace {
    width: 10px;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.splitting.txt.animated .char {
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(10ms * var(--char-index));
    animation-delay: calc(10ms * var(--char-index));
}
.splitting.txt .whitespace {
    width: 5px;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* ======= For Images Imago Effect style ======= */
.imago {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}
.imago.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


/* ======= Logo style ======= */
.div-logo {
    margin-bottom: 20px;
}
.div-logo .logo-img {
    width: 200px;
    text-align: center;
    margin: 0 auto 20px 0;
}


/* ======= Banner Header style ======= */
.banner-header {
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 120px;
}
.banner-header.hfixd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.banner-header .capt h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
}
.banner-header .capt h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 75px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-header .capt h2 span {
    position: relative;
    margin-bottom: 0;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}


/* ======= Section style ======= */
.section-padding {
    padding: 120px 0;
}
.section-head {
    position: relative;
    margin: 0 auto 90px;
}
.section-head2 {
    position: relative;
    margin: 0 auto 60px;
}
.section-head2 .section-subtitle {
    color: #904d30;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
}
.section-head .section-title {
    position: relative;
    font-size: 45px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-head .section-text {
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    line-height: 1.5em;
}
.section-head .tbg {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg,#904d30 0%,rgba(17,18,21,.2) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .7;
  z-index: -1;
}
.section-head .tbg b {
  font-weight: 500;
  font-size: 12vw;
}

.section-head .tbg2 {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    font-size: 9vw;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg,#904d30 0%,rgba(17,18,21,.2) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .7;
    z-index: -1;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.section-head .tbg2 b {
  font-weight: 500;
  font-size: 12vw;
}

/* ======= Content style ======= */
.main-content {
    background: #101010;
    position: relative;
    z-index: 3;
}
/* preview page */
.preview {}
.preview img {
  width: 100%;
  margin: 0;
  transition: all 0.2s ease-in-out;
  background-size: cover;
}
.preview h6 {
    font-family: 'Barlow', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    font-size: 15px;
    font-weight: 400;
    padding: 20px 0;
}
.preview .title-block {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -20%);
}
.preview .img-block:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.preview .img-block:hover img {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.3;
}
.preview .overlay-img {
  width: 100%;
  background-color: #000;
  transition: all 0.2s ease-in-out;
}
.preview .img-block {
    position: relative;
}
.preview .img-block:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color:#904d30;
  border-radius: 5px 5px 0 0;
}
.preview .img-block:after {
    content: "\2022 \2022 \2022";
    font-size: 30px;
    display: inline-block;
    position: absolute;
    top: -6px;
    left: 19px;
    color: #FFF;
    line-height: 1;
    letter-spacing: -2px;
  }
.preview .img-block:after {
    content: "\2022 \2022 \2022";
    font-size: 20px;
    display: inline-block;
    position: absolute;
    top: -2px;
    left: 10px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
  }
.preview .butn {
  font-family: 'Barlow', sans-serif;
  background-color: #904d30;
  color: #fff;
  border: 1px solid #904d30;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 30px;
  text-decoration: none;
}

.preview .butn span {
    margin-left: 8px;
    font-size: 10px;
    color: #fff;
}

.preview .butn:hover span {
    color: #101010;
}

.preview .butn:hover {
  background-color: #fff;
  color: #101010;
  border: 1px solid #fff;
}
.preview .butn::before {
  display: none;
}


/* ======= Button style ======= */
/* button-dark */
.btn-dark {
    font-family: 'Barlow', sans-serif;
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    line-height: 1.5em;
    color: #fff;
    background: #904d30;
    font-weight: 400;
    border: 1px solid #904d30;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 10px;
}

[data-overlay-dark] .btn-dark span {
    margin-left: 15px;
    font-size: 10px;
    color: #fff;
}

.btn-dark svg {
    margin-right: 5px;
}

.btn-dark:hover,
.btn-dark:focus {
    color: #101010;
    background: #fff;
    border: 1px solid #fff;
    outline: none !important
}

.btn-dark:hover span,
.btn-dark:focus span {
    color: #101010;
}


/* button-light */
.btn-light {
    font-family: 'Barlow', sans-serif;
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    line-height: 1.5em;
    color: #101010;
    background: #fff;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
}
[data-overlay-dark] .btn-light span {
    margin-left: 15px;
    font-size: 10px;
    color: #101010;
}
.btn-light svg {
    margin-right: 5px;
}

.btn-light:hover,
.btn-light:focus {
    color: #fff;
    background: #904d30;
    border: 1px solid #904d30;
    outline: none !important
}

.btn-light:hover span,
.btn-light:focus span {
    color: #fff;
}

/* ======= Bottom style ======= */
.bottom {
    padding-bottom: 60px;
    text-align: center;
}
.bottom p {
    font-size: 12px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    font-weight: 400;
    margin: 0;
}
.bottom p a {
    color: #904d30;
    text-decoration: none;
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e627';
    text-align: center;
    line-height: 50px;
    font-size: 11px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke-width: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 0px rgba(217,214,209, 0.5);
    box-shadow: inset 0 0 0 0px rgba(217,214,209, 0.5);
}
.progress-wrap::after {
    color: #fff;
}
.progress-wrap svg.progress-circle path {
    stroke: #904d30;
}



/* ======= Buy now style ======= */
.duru-buy-now {
    position: fixed;
    left: 90px;
    bottom: 30px;
    z-index: 999;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform: rotate(-90deg);
    -ms-transform-origin: left bottom;
}
.duru-buy-now a {
    text-decoration: none;
}
.duru-buy-now-btn {
		display: inline-flex;
		padding: 15px 20px;
		align-items: center;
		border: none;
		border-radius: 50em;
		background: #1b1b1b;
		font-size: 13px;
        font-weight: 400;
		line-height: 1.5em;
		color: #777;
		transition: all 0.3s;
	}
.duru-buy-now-btn:active,
.duru-buy-now-btn:focus {
    color: #777;
}
.duru-buy-now-btn svg {
		margin-right: 12px;
	}
.duru-buy-now-btn:hover {
		background: #fff;
		color: #101010;
		transform: translateY(-2px);
	}
.duru-buy-now-btn:hover svg {
		fill: #82b541;
	}
@media screen and (max-width: 768px){
    .duru-buy-now { 
        display: none;
    }
}


/* =======  Overlay Effect Bg image style  ======= */
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
[data-overlay-dark]:before {
    background: #000;
}
[data-overlay-light]:before {
    background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}
[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
    color: #999;
}
[data-overlay-dark] p {
    color: #fff;
}
[data-overlay-light] p {
    color: #999;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}


/* ======= Media Query style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
}
@media screen and (max-width: 767px) {
    .main-content {
    margin-top: 0 !important;
    }
    .section-head .section-title,
    .banner-header .capt h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .section-head .section-text,
    .banner-header .capt h6 {
        font-size: 16px;
    }
    .banner-header.hfixd {
        position: static;
    }
}
@media screen and (max-width: 480px) {
    .section-head .section-title,
    .banner-header .capt h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .section-head .section-text,
    .banner-header .capt h6 {
        font-size: 14px;
    }
}