/* ------------------------------------------
01. Default style
02. Preloader style
03. Banner style
04. Section-Padding style
05. Panel style
06. Button Link style
07. Footer style
08. New-Popular style
09. Media Query style
------------------------------------------ */


/* ======= Default style ======= */
body {
    color: #101010;
    line-height: 1.75;
    font-size: 17px;
    font-family: 'Urbanist', 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: 17px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}
b,
strong {
    color: #101010;
}

.mb-45 {
    margin-bottom: 45px;
}
.mb-60 {
    margin-bottom: 60px;
}

.bg-lightblue {
    background-color: #f4f5f8;
}

/* ======= 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(172, 141, 86, 0.1);
    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(172, 141, 86, 0.5);
}
.preloader .centered .cont img {
    width: 38px;
    max-width: 38px;
}
.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 {
    padding: 45px 15px;
    background: #fff;
    text-align: center;
}
.banner p {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #1b1b1b;
    text-align: center;
    margin-bottom: 0;
}
.banner img {
    width: 160px;
    margin-bottom: 15px;
}

/* ======= Section-Padding style ======= */
.section-padding {
    padding: 100px 0;
}

/* ======= Panel style ======= */
.panel {
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    text-align: center;
}
.panel .panel-item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    padding: 0 20px 20px 20px;
    position: relative;
}
.panel .panel-item .img img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
    border-radius: 5px;
}
.panel .panel-item:hover .img img {
    transform: scale(0.98);
}
.panel .panel-item .img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 45px;
    bottom: 0;
    background: rgba(189, 148, 90,1);
    border-radius: 5px;
}

/* ======= Button Link style ======= */
.panel .panel-item .link-btn {
    display: inline-block;
    position: relative;
    font-family: 'Urbanist', sans-serif;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
}
.panel .panel-item .link-btn.blck {
    color: #fff;
    padding: 20px 0 0 0;
    text-decoration: none;
}
.panel .panel-item .link-btn.lght {
    color: #1b1b1b;
    padding: 20px 0 0 0;
    text-decoration: none;
}
.panel .panel-item .link-btn:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #BD945A;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding: 0;
}
.panel .panel-item .link-btn.lght:before {
    background-color: #fff;
}
.panel .panel-item:hover .link-btn::before {
    width: 100%
}

/* ======= Footer style ======= */
footer.bottom {
    padding: 0 0 60px 0;
    text-align: center;
    border: none;
}
footer.bottom p {
    font-size: 14px;
    line-height: 1.5em;
    color: #777;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    margin: 0;
}
footer.bottom p a {
    color: #BD945A;
}
footer.bottom .button {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #777;
    text-decoration: none;
}
footer.bottom .button:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #BD945A;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding: 0;
}
footer.bottom:hover .button::before {
    width: 100%
}


/* New-Popular style */
.new-popular {
    background: #ff0000;
    border-radius: 100%;
    height: 55px;
    width: 55px;
    line-height: 55px;
    display: block;
    position: absolute;
    top: 20px;
    right: 45px;
    text-transform: uppercase;
    border: 1px solid #ff0000;
    z-index: 1;
}
.new-popular p {
    padding-top: 18px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4em;
}



/* ======= 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: #1b1b1b;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    font-family: 'Urbanist', 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;
}