/* ------------------------------------------

01. Default style
02. Preloader style
03. Header style
04. Section style
05. Demos style
06. Button Link style
07. Footer style
08. Buy style
09. Media Query style

------------------------------------------ */


/* ======= Default style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    color: #fff;
    line-height: 1.75;
    font-size: 17px;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    height: 100%;
    background: #101010;
}
p {
    margin: 0 0 15px;
    color: #fff;
    line-height: 1.75;
    font-size: 17px;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus,
a:hover {
    color: #fff;
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #101010;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 65px;
    height: 65px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 65px;
    height: 65px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid #c5a47e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ======= Header style ======= */
.header {
    background: #efece9;
    text-align: center;
    border: none;
    padding: 50px 0;
}
.header h1 {
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 45px;
    line-height: 1.2em;
    color: #c5a47e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.header p {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5em;
    color: #101010;
    text-align: center;
    margin-bottom: 0;
}
.header img {
    width: 190px;
    min-width: 190px;
    margin-bottom: 10px;
}

/* ======= Section style ======= */
.section-padding {
    padding: 90px 0px 60px 0;
}

/* ======= Demos style ======= */
.demos {
    position: relative;
}
.demos .item {
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}
/* title */
.demos .item h6 {
    position: relative;
    font-family: "Outfit", sans-serif;
    color: #999;
    font-weight: 300;
    text-align: center;
    margin: 30px 0;
    font-size: 17px;
}

.demos .item h6 span {
    color: #fff;
}
/* img */
.demos .item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
    isolation: isolate;
}
.demos .item:hover .img img {
    transform: scale(1.05);
}
/* content */
.demos .item .con {
    position: relative;
    z-index: 2;
    opacity: 0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 85% 15%;
    align-items: center;
}
.demos .item .con.opacity-1 { 
    opacity: 0;
}
.demos .item .con.active {
    visibility: visible;
    opacity: 1;
}
/* icon */
.demos .item .con .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #101010;
    border-top-left-radius: 50%;
    padding: 15px;
}
.demos .item:hover .con .icon .arrow {
  transform: scale(1.05);
}
.demos .item .con .icon::before {
position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #101010;
}
.demos .item .con .icon::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 0 6px #101010;
}
.demos .item .con .icon .arrow {
    position: absolute;
    background: #c5a47e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.demos .item:hover .con .icon .arrow {
    color: #101010;
    background: #efece9;
}
.text-decoration-line-bottom {
    border-bottom: 1px solid #c5a47e;
    line-height: 1.5em;
}

/* ======= Buy style ======= */
.buy a {
    text-decoration: none;
}
.buy .item {
    position: fixed !important;
    right: 25px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    color: #fff !important;
    background: #222;
    z-index: 999;
    bottom: 25px;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.buy .item:hover,
.buy .item:focus,
.buy .item:active {
    color: #101010 !important
}
.buy .item .img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    padding: 15px;
    transition: all .4s;
    line-height: 22px;
}
.buy .item .img img {
    max-width: 100%;
    height: auto;
}
.buy .item .text {
    padding: 14px 0 14px 0;
    height: 60px;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 300;
    transition: all .4s;
    visibility: hidden;
    font-family: "Oswald", sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 17px;
    color: #F6F1F0;
    letter-spacing: 1px;
}
.buy .item:hover .text {
    width: 125px;
    visibility: visible;
    padding: 14px 14px 14px 0
}

/* ======= 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: #91765a;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
		font-size: 13px;
        letter-spacing: 1px;
        font-weight: 300;
		line-height: 1.5em;
		color: #fff;
		transition: all 0.3s;
	}
.duru-buy-now-btn:active,
.duru-buy-now-btn:focus {
    color: #fff;
}
.duru-buy-now-btn svg {
		margin-right: 12px;
	}
.duru-buy-now-btn:hover {
		background: #222;
		color: #fff;
		transform: translateY(-2px);
	}
.duru-buy-now-btn:hover svg {
		fill: #82b541;
	}
.duru-buy-now .img {
    width: 20px;
    height: 20px;
    border-radius: 30px;
    transition: all .4s;
    margin-right: 5px;
}
.duru-buy-now .img img {
    max-width: 100%;
    height: auto;
}
/* ======= Footer style ======= */
footer.bottom {
    padding: 45px 0;
    text-align: left;
    border: none;
}
footer.bottom p {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: #999;
    font-weight: 300;
    margin: 0;
}
footer.bottom p a {
    color: #c5a47e;
}
footer.bottom .button {
    display: inline-block;
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #c5a47e;
    text-decoration: none;
}
footer.bottom .button:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #c5a47e;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding: 0;
}
footer.bottom:hover .button::before {
    width: 100%
}


/* ======= Media Query style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {
    .demos .item .con .img {
        padding: 0 20px 20px 0px;
    }
}


