/* ------------------------------------------
00. Font style
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
------------------------------------------ */

/* ======= Font style ======= */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap');

/* variable */
:root {     
    --base-color: #5c4d91;  
    --dark-gray: #19063D;
    --medium-gray: #757086;
    --medium-pink: #db89ca;
    --very-light-gray: #f4f4f7;
    --white: #fff;
    --alt-font: "Urbanist", sans-serif;
    --primary-font: "Urbanist", sans-serif;    
}

/* ======= Default style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    word-break: break-word;
    -webkit-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: #14100c;
    line-height: 1.75;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    height: 100%;
    background: #f4f4f7;
}
a {
    color: #14100c;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus,
a:hover {
    color: #14100c;
    text-decoration: underline;
}
p {
    margin: 0 0 15px;
    color: #14100c;
    line-height: 1.75;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
}
b,
strong {
    color: #14100c;
}

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

/* ======= Preloader style ======= */
.preloader {
    background-color: #fff;
    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(219, 137, 202, 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(219, 137, 202, 0.5);
}
.preloader .centered .cont img {
    width: 50px;
    max-width: 50px;
}
.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: 50px 15px;
    background: #fff;
    text-align: center;
}
.banner p {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5em;
    color: #19063D;
    text-align: center;
    margin-bottom: 0;
}
.banner img {
    width: 180px;
    margin-bottom: 15px;
}



/* ======= Section-Padding style ======= */
.section-padding {
    padding: 100px 0;
}
.section-padding h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(25, 6, 61, 0.1);
}

/* ======= 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;
    left: 45px;
    right: 0;
    bottom: 0;
    background: #db89ca;
    border-radius: 5px;
}

/* ======= Button Link style ======= */
.panel .panel-item .link-btn {
    display: inline-block;
    position: relative;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.panel .panel-item .link-btn.blck {
    color: #19063D;
    padding: 20px 0 0 0;
    text-decoration: none;
}
.panel .panel-item .link-btn.lght {
    color: #19063D;
    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: #db89ca;
    -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 ======= */
.bottom {
    padding: 15px 0 45px 0;
    text-align: center;
}
.bottom p {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #757086;
    text-align: center;
    font-weight: 400;
    margin: 0;
}
.bottom p a {
    color: #db89ca;
}

/* 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;
}

/* 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 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: #19063D;
    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: #19063D;
    transform: translateY(-2px);
}
.duru-buy-now-btn:hover svg {
    fill: currentColor;
}


/* Buy Double Button style */
.btn-double {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 999;
}
.btn-double img { 
    position: absolute;
    left: 50%;
    top: 12px;
    margin-left: -29px;
    width: 27px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    background: #f4f4f7;
    border-radius: 100%;
    padding: 5px;
}
.btn-double > a + a {
	margin-left: 0px;
}
.btn-double > a {
    display: inline-block;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color .3s ease;
}
.btn-double > a span {
    font-size: 14px;
    margin-right: 3px;
}
.btn-double > a:nth-of-type(1) {
    background: #5c4d91;
    color: #fff;
    border-radius: 30px 3px 3px 30px;
    padding: 12px 32px 12px 22px;
}
.btn-double > a:nth-of-type(1):hover {
	background: #db89ca;
    color: #fff;
}
.btn-double > a:nth-of-type(2) {
    background: #5c4d91;
    color: #fff;
    border-radius: 3px 30px 30px 3px;
    padding: 12px 22px 12px 32px;
}
.btn-double > a:nth-of-type(2):hover {
	background: #db89ca;
    color: #fff;
}
/*
@media screen and (max-width: 768px) {
    .btn-double {
        display: none;
    }
}
*/