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

01. Default style
02. Preloader style
03. Banner style
04. Section-Padding style
05. Demos style
06. Footer style
07. Buy Now style
08. Media Query style
----------------------------------------- */

/* ======= Default style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    color: #fff;
    line-height: 1.75;
    font-size: 18px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    height: 100%;
    background: #101010;
}
a {
    color: #101010;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus,
a:hover {
    color: #101010;
    text-decoration: underline;
}
p {
    margin: 0 0 15px;
    color: #101010;
    line-height: 1.75;
    font-size: 18px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
}
b,
strong {
    color: #101010;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-60 {
    margin-bottom: 60px;
}
.container-fluid {
    padding: 0 60px;
}

/* ======= Preloader style ======= */
.preloader {
    background-color: #101010;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
}
.preloader * {
    transition: all 0.3s;
}
.preloader .centered {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}
.preloader .centered:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.preloader .centered .cont {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}
.preloader .centered .cont .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    margin-left: -45px;
    margin-top: -45px;
}
.preloader .centered .cont .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 45px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    overflow: hidden;
    transform-origin: 45px 45px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotate 1.2s infinite linear;
}
.preloader .centered .cont .loader-line-mask .loader-line {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(182, 239, 0, 0.5);
}
.preloader .centered .cont img {
    width: 40px;
    max-width: 40px;
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.preloader [not-existing] {
    zoom: 1;
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
.preloader [not-existing] {
    zoom: 1;
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.preloader [not-existing] {
    zoom: 1;
}

/* ======= Banner style ======= */
.banner {
    background: #101010;
    text-align: center;
    border: none;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.banner p {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #777;
    text-align: center;
    margin-bottom: 0;
}
.banner img {
    width: 225px;
    margin-bottom: 10px;
}

/* ======= Demos style ======= */
.demos {
    position: relative;
    background: #f2f2f2;
}
.demos.drk {
    background: #1b1b1b;
    color: #777;
}
.demos h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #777;
}
.demos.drk h5 {
    color: #777;
}
.demos .item {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 10px;
    isolation: isolate;
}
.demos .item .desc {
    padding: 20px;
    overflow: hidden;
}
.demos .item .desc h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: #777;
    text-decoration: none;
}
.demos.drk .item .desc h3 {
    color: #fff;
}
/* figure */
.demos figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}
.demos figure img {
    display: block;
    border-radius: 10px;
    isolation: isolate;
}
.demos figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-radius: 10px;
    overflow: hidden;
}
.demos figcaption .inner {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.demos figure:hover figcaption {
    opacity: 1;
    outline: none;
    overflow: hidden;
}
/* button */
.demos .butn {
    position: relative;
}
.demos .butn a {
    text-decoration: none;
    border-radius: 4px;
}
.demos .butn-btn {
    display: inline-flex;
    padding: 13px 30px;
    align-items: center;
    border: none;
    border-radius: 0px;
    background: #b6ef00;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    font-family: "Barlow", serif;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.5em;
    color: #101010;
    transition: all 0.3s;
}
.demos .butn-btn.bg-white {
    background: #fff;
}
.demos .butn-btn:active,
.demos .butn-btn:focus {
    color: #101010;
}
.demos .butn-btn i {
    margin-right: 5px;
}
.demos .butn-btn:hover {
    background: #fff;
    color: #101010;
    transform: translateY(-2px);
}
.demos .butn-btn:hover svg {
    fill: currentColor;
}
.demos .butn-btn:first-of-type {
    margin-right: 4px;
}

/* tab */
.tab-content {
    display: none;
}
.tab-content.current {
    display: block;
}
.tabs {
    margin-bottom: 45px;
}
.tabs li {
    display: inline-block;
    padding: 15px 32px;
    margin: 0;
    background: #fff;
    color: #101010;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    font-family: "Federo", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}
.tabs li.light {
    background: #fff;
    color: #1b1b1b;
    border-radius: 0 10px 10px 0;
}
.tabs li.dark {
    background: #101010;
    color: #fff;
    border-radius: 0 10px 10px 0;
}

/* ======= Section-Padding style ======= */
.section-padding {
    padding: 90px 0;
}
.section-padding h2 {
    font-size: 21px;
    font-weight: 400;
    font-family: "Federo", sans-serif;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}

/* ======= Footer style ======= */
.bottom {
    padding: 45px 0;
    text-align: center;
}
.bottom p {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 400;
    margin: 0;
}
.bottom p a {
    color: #fff;
}

/* ======= Buy Now style ======= */
.duru-buy-now {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}
.duru-buy-now a {
    text-decoration: none;
}
.duru-buy-now img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.duru-buy-now-btn {
    display: inline-flex;
    padding: 14px 24px;
    align-items: center;
    border: none;
    border-radius: 50em;
    background: #222;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 15px;
    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: #fff;
    color: #101010;
    transform: translateY(-2px);
}
.duru-buy-now-btn:hover svg {
    fill: currentColor;
}

/* ======= Media Query style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
