/* ======= Typography style ======= */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
}
body {
    color: #fff;
    background: #222;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
    overflow-x: hidden !important;
}
img {
    width: 100%;
    height: auto;
}
span,
a,
a:hover {
    display: inline-block;
    color: inherit;
}
a:link {
    text-decoration: none;
}
h1 {
    font-size: 55px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 35px;
}
h4 {
    font-size: 30px;
}
h5 {
    font-size: 25px;
}
h6 {
    font-size: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    margin: 0;
    line-height: 1.5;
    font-weight: 700;
}
p {
    font-family: 'Syne', sans-serif;
    color: #c8c8c8;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin: 0;
}
a,
span {
    display: inline-block;
}
a:hover,
span:hover {
    text-decoration: none;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.container {
    max-width: 1200px;
}
.full-width {
    width: 100% !important;
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}


/* ======= Intro style ======= */
.box .light,
.box .dark {
    min-height: 100vh;
    padding: 30px 0;
}
.box .light {
    color: #1b1b1b;
    background: #f0f0f3;
}
.box {
    overflow: hidden;
}
.box .logo-img {
    width: 200px;
    margin-bottom: 30px;
}
.box .item {
    margin: auto;
    display: block;
    width: 600px;
    position: relative;
    z-index: 4;
    padding: 15px;
}
.box .item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.box .item h4.cb {
    color: #1b1b1b;
}
.box .item .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.box .item .wrap .img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  border-radius: 5px;
}
.box .item .wrap .img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  border-radius: 5px;
}
.box .item .wrap:hover img {
  opacity: 0.3;
}
.box .item .wrap:hover .img {
  transform: scale(0.97);
}
.box .item .wrap:hover .text {
  opacity: 1;
  transform: translateX(0px);
}
.box .item .wrap .text {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.box .item .wrap .text h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}
.box .item .wrap .text p {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}
.box .item .wrap .text .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.3s;
    z-index: 1;
    margin: 0 auto;
    opacity: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(255, 255, 255, 1);
}
.box .item:hover .wrap .text .icon-box {
    opacity: 1;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.box .item .wrap .text .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0.7);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
  content: "";
  opacity: 0;  
}
.box .item:hover .wrap .text .icon-box::before {
    transform: scale(1.0);
    opacity: 1;
}
.box .item .wrap .text .icon-box i::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 1;
}
.box .item:hover .wrap .text .icon-box i::before {
    transform: rotate(0);
    color: #1b1b1b;
    z-index: 9;
}



/* Buy now */
.duru-buy-now {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}
.duru-buy-now a {
    text-decoration: none;
}
.duru-buy-now-btn {
    display: inline-flex;
    padding: 15px 30px;
    align-items: center;
    border: none;
    border-radius: 50em;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    line-height: 1em;
    color: #1b1b1b;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
}
.duru-buy-now-btn:focus {
    color: #1b1b1b;
}
.duru-buy-now-btn svg {
    margin-right: 10px;
}
.duru-buy-now-btn:hover {
		background: #1b1b1b;
		color: #fff;
	}


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