/* ------------------------------------------
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: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    height: 100%;
    background: #748173;
}
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: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}
b,
strong {
    color: #101010;
}

/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    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: 60px;
    height: 60px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1.5px;
    -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: 1.5px solid rgba(0, 0, 0, 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: 60px;
    height: 60px;
    top: -1.5px;
    left: -1.5px;
    border: 1.5px solid transparent;
    border-top: 1.5px solid #748173;
    -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);
    }
}

/* ======= Banner style ======= */
.banner {
    padding: 45px 15px;
    background: #fff;
    text-align: center;
}
.banner p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    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;
}
.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: #fff;
}

/* ======= Button Link style ======= */
.panel .panel-item .link-btn {
    display: inline-block;
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    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: #fff;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding: 0;
}
.panel .panel-item .link-btn.lght:before {
    background-color: #748173;
}
.panel .panel-item:hover .link-btn::before {
    width: 100%
}

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

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

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




/* ======= 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-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: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 11px;
    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;
}