/*------------------------------------------------------------------
[Master Stylesheet]

Project:    Glib
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. body
2. navigation
3. banner Section
4. partner Section
5. create section
6. explore section
7. product section
8. sellers section
9. art section
10. testimonial section
11. footer section
-------------------------------------------------------------------*/
/* /*--------------------------------------------------------------*/



@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&display=swap');

/*-------- Default Items ------------ */ 
:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #d317cb;
    --e-global-color-text: #9797b9;
    --e-global-color-accent: #d217cb;
    --e-global-color-white: #ffffff;
    --e-global-color-bright-blue: #6b43f8;
    --e-global-color-dark-blue: #20203e;
    --e-global-color-yellow: #f1c337;
    --e-global-color-desaturated-blue:#2e2e4f;
    --e-global-color-very-dark-blue: #151530;
    --e-global-color-dark-gray: #1d1d1d;
    --e-global-color-grayish-cyan: #f1f9fb;
}
body {
    font-family: 'Mulish', sans-serif;
}
html {
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%47476d' r='4'/%3E%3C/svg%3E") 3 3, auto;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.h1, h1 {
    font-size: 65px;
    line-height: 78px;
    font-weight: 800;
}
.h2, h2 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 800;
}
.h3, h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 800;
}
.h4, h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
}
.h5, h5 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}
.h6, h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}
p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.text-size-16 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.hover-effect {
    transition: all 0.3s ease-in-out;
}
.hover-effect:hover {
    transform: translateY(-5px);
}
.cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    transform: translate(
      calc(var(--x) - var(--width) / 2),
      calc(var(--y) - var(--height) / 2)
    );
    transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1),
      150ms height cubic-bezier(0.39, 0.575, 0.565, 1),
      150ms transform cubic-bezier(0.39, 0.575, 0.565, 1);
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}
@media (pointer: fine) {
    .cursor {
      display: block;
    }
}
.cursor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius);
    border: 1px solid #47476d;
    opacity: var(--scale);
    -webkit-transform: scale(var(--scale));
    transform: scale(var(--scale));
    transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1),
      300ms transform cubic-bezier(0.39, 0.575, 0.565, 1),
      150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1);
}
html:not(html:hover) .cursor::after {
    opacity: 0;
    transform: scale(0);
    border: none;
}
a:hover .cursor::after {
    border: none !important;
    opacity: 0;
}
/*-------- HEADER ------------ */
.main-header {
    padding: 20px 180px 20px 180px;
    background: var(--e-global-color-very-dark-blue);
}
.navbar .navbar-brand {
    margin-right: 146px;
}
.navbar li {
    padding: 0 20px;
}
.navbar li:first-child {
    padding-left: 0px;
}
.navbar li:last-child {
    padding-right: 0px;
}
.navbar li a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-white) !important;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar li a:hover::before {
    content: "";
    height: 4px;
    width: 21px;
    background-image: linear-gradient(48deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1;
    border-radius: 2px;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li.active > a:before {
    content: "";
    height: 4px;
    width: 21px;
    background-image: linear-gradient(48deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1;
    border-radius: 2px;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}
.navbar .navbar-icon a {
    color: var(--global--color-very-dark-gray);
    font-size: 26px;
    padding-right: 25px;
}
.navbar .navbar-icon a:hover {
    color: var(--e-global-color-accent);
}
.navbar .glib-dropdown {
    padding: 20px 30px 20px 40px;
    border-radius: 10px;
    margin: 0;
    left: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 30px 30px 20px rgba(30,34,47,0.2);
    border-top: 4px solid var(--e-global-color-accent); 
    width: 200px;       
}
.navbar .glib-dropdown li {
    padding: 0;
    display: inline-block;
}
.navbar .glib-dropdown li.active .glib-menu {
    color: var(--e-global-color-accent) !important;
}
.navbar .glib-dropdown .glib-menu {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    padding: 6px 0px;
    color: var(--e-global-color-dark-blue) !important;
    white-space: inherit;
}
.navbar .glib-dropdown .glib-menu:hover {
    background: transparent;
    color: var(--e-global-color-accent) !important;
}
.navbar .glib-dropdown li:hover a:after {
    width: 100%;
    left: 0;
    right: auto;
}
.navbar .glib-dropdown li:hover a:before {
    color: var(--e-global-color-accent);
}
.navbar .glib-dropdown li a:after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: var(--e-global-color-accent);
    bottom: 5px;
}
.navbar .glib-dropdown li:hover a:after {
    width: 100%;
    left: 0;
    right: auto;
}
.navbar .glib-dropdown li a:before {
    content: "\f111";
    line-height: 1;
    font-weight: 700;
    left: -18px;
    top: 16px;
    position: absolute;
    color: var(--global--color-text);
    font-size: 5px;
    font-family: "Font Awesome 5 Pro";
    height: auto;
    width: auto;
    background: transparent;
}
.navbar .glib-dropdown .glib-menu:hover {
    background: transparent;
    color: var(--e-global-color-accent) !important;
}
.login-outer-div .icon {
    padding: 0px 15px;
    display: inline-block;
    position: relative;
}
.login-outer-div .icon span {
    position: absolute;
    top: -8px;
    left: 5px;
    background: var(--e-global-color-accent);
    display: inline-block;
    border-radius: 500px;
    line-height: 16px;
    width: 22px;
    height: 22px;
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    font-size: 10px;
}
.login-outer-div .icon:hover span {
    color: var(--e-global-color-white);
}
.login-outer-div .support {
    margin-left: 0;
}
.login-outer-div .support, .login-outer-div .buy {
    padding: 13px 44px 16px 44px;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--e-global-color-white);
    background: transparent;
    display: inline-block;
    margin-left: 12px;
    color: var(--e-global-color-white);
}
.login-outer-div .support:hover {
    background: var(--e-global-color-white);
    color: var(--e-global-color-accent);
}
.login-outer-div .buy {
    padding: 14px 42px 17px 42px;
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
    border: none;
}
.login-outer-div .buy:hover {
    color: var(--e-global-color-white);
    background-image: linear-gradient(90deg, var(--e-global-color-accent) 0%, var(--e-global-color-bright-blue) 100%);
}
/*-------- BANNER ------------ */
.home-banner-section {
    padding: 145px 180px 190px;
    background-image: url(../images/home-banner-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-banner-text h1 {
    margin-bottom: 40px;
} 
.home-banner-section .home-banner-button .purchase, .home-banner-section .home-banner-button .demo {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 21px 38px;
    text-decoration: none;
    display: inline-block;
    color: var(--e-global-color-white);
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
}
.home-banner-section .home-banner-button .purchase:hover {
    background-image: linear-gradient(90deg, var(--e-global-color-accent) 0%, var(--e-global-color-bright-blue) 100%);
}
.home-banner-section .home-banner-button .demo {
    padding: 20px 46px;
    border: 1px solid var(--e-global-color-white);
    background: transparent !important;
}
.home-banner-section .home-banner-button .demo:hover {
    background: var(--e-global-color-white) !important;
    color: var(--e-global-color-accent);
}
.home-banner-section .home-banner-button .purchase-outer {
    margin-right: 17px;
}
.home-banner-section .home-banner-button {
    margin-bottom: 85px;
}
.home-banner-section .top-btn {
    display: inline-block;
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    z-index: 1000;
    align-items: center;
    text-decoration: none;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;   
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgba(210, 23, 203, .99)
}
to {
    box-shadow: 0 0 0 45px rgba(210, 23, 203, .01)
}
}    
@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgba(210, 23, 203, .99)
}
to {
    box-shadow: 0 0 0 45px rgba(210, 23, 203, .01)
}
}
.home-banner-section .top-btn i {
    font-size: 35px;
    line-height: 82px;
    color: var(--e-global-color-white);
}
.home-banner-section .counter-box {
    display: table-cell;
    vertical-align: middle;
}
.home-banner-section .counter-box .counter-box-inner {
    display: inline-block;
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
    width: 140px;
    height: 140px;
    line-height: 140px;
    text-align: center;
    border-radius: 50%;
    transition: background-color .3s, opacity .5s, visibility .5s;
    z-index: 1000;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}
.home-banner-section .counter-box .counter-box-inner .number {
    font-size: 55px;
    line-height: 55px;
    font-weight: 800;
    position: relative;
    left: 4px;
    top: 2px;
}
.home-banner-section .counter-box .counter-box-inner .suffix {
    font-size: 30px;
    line-height: 30px;
    position: relative;
    top: -16px;
}
.home-banner-section .counter-box .counter-box-inner small {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    display: block;
    position: relative;
    top: -47px;
    left: -2px;
}
/*-------- LAYOUT SECTION ------------ */
.layout-section {
    padding: 135px 0 94px 0;
    background: var(--e-global-color-grayish-cyan);
}
.layout-section .heading {
    margin-bottom: 40px;
}
.layout-section .heading h2 {
    color: var(--e-global-color-dark-gray);
}
.layout-section .heading h6 {
    color: var(--e-global-color-secondary);
}
.layout-section .layout-box .layout-box-inner {
    border: 20px solid var(--e-global-color-white);
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    height: 585px;
    vertical-align: bottom;
}
.layout-section .layout-box .layout-box-inner figure {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.layout-section .layout-box .layout-box-inner figure img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
       -o-object-position: top;
       object-position: top;
    height: 545px;
    transition: 7s all ease;
}
.layout-section .layout-box .layout-box-inner:hover figure img {
    -o-object-position: bottom;
    object-position: bottom;
}
.layout-section .layout-box h5 {
    color: var(--e-global-color-dark-gray);
}
.layout-section .layout-box {
    margin-bottom: 41px;
}
.layout-section .layout-box a:hover {
    text-decoration: none;
}
/*-------- INNER PAGES SECTION SECTION ------------ */
.inner-pages-section {
    padding: 135px 30px 135px 30px;
}
.inner-pages-section .heading {
    margin-bottom: 40px;
}
.inner-pages-section .heading h2 {
    color: var(--e-global-color-dark-gray);
}
.inner-pages-section .heading h6 {
    color: var(--e-global-color-secondary);
}
.inner-pages-section .layout-box .layout-box-inner {
    border: 20px solid var(--e-global-color-grayish-cyan);
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    height: 585px;
    vertical-align: bottom;
    box-shadow: 0 30px 15px 0 rgba(210, 23, 203, .01);
}
.inner-pages-section .layout-box .layout-box-inner figure {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.inner-pages-section .layout-box .layout-box-inner figure img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
       -o-object-position: top;
       object-position: top;
    height: 545px;
    transition: 7s all ease;
}
.inner-pages-section .layout-box .layout-box-inner:hover figure img {
    -o-object-position: bottom;
    object-position: bottom;
}
.inner-pages-section .layout-box h5 {
    color: var(--e-global-color-dark-gray);
}
.inner-pages-section .layout-box a:hover {
    text-decoration: none;
}
.inner-pages-section .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 50px;
}
.inner-pages-section .owl-carousel .owl-nav button.owl-next, .inner-pages-section .owl-carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    line-height: 66px;
    border-radius: 100px;
    margin: 0 10px;
    background: var(--e-global-color-dark-blue);
    transition: all 0.3s ease-in-out;
}
.inner-pages-section .owl-carousel .owl-nav button.owl-next:hover, .inner-pages-section .owl-carousel .owl-nav button.owl-prev:hover {
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
}
.inner-pages-section .owl-carousel .owl-nav button.owl-next:focus, .inner-pages-section .owl-carousel .owl-nav button.owl-prev:focus {
    outline: none;
}
.inner-pages-section .owl-carousel .owl-nav button.owl-next span, .inner-pages-section .owl-carousel .owl-nav button.owl-prev span {
    font-size: 28px;
    line-height: 50px;
    color: var(--e-global-color-white);
}
/*-------- FEATURES SECTION ------------ */
.features-section {
    padding: 135px 0 110px 0;
    background: var(--e-global-color-grayish-cyan);
}
.features-section .heading {
    margin-bottom: 40px;
}
.features-section .heading h2 {
    color: var(--e-global-color-dark-gray);
}
.features-section .heading h6 {
    color: var(--e-global-color-secondary);
}
.features-section .feature-box {
    padding: 30px 35px;
    margin-bottom: 25px;
    border-radius: 0;
    position: relative;
    background-color: var(--e-global-color-white);
}
.features-section .feature-box:hover {
    box-shadow: 0 10px 15px 10px rgba(0, 0, 0, 0.1);
}
.features-section .feature-box figure {
    margin-bottom: 25px;
}
.features-section .feature-box h6 {
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: var(--e-global-color-dark-gray);
}
/*-------- TESTIMONIALS SECTION ------------ */
.testimonials-section {
    padding: 135px 0;
}
.testimonials-section .heading {
    margin-bottom: 40px;
}
.testimonials-section .heading h2 {
    color: var(--e-global-color-dark-gray);
}
.testimonials-section .heading h6 {
    color: var(--e-global-color-secondary);
}
.testimonials-section .testimonial-box {
    border: solid 2px #dee9eb;
    padding: 40px 45px;
}
.testimonials-section .testimonial-box p {
    color: var(--e-global-color-text);
}
.testimonials-section .testimonial-box .thum-content h6 {
    margin-bottom: 3px;
    font-weight:600;
    text-transform: capitalize;
    color: var(--e-global-color-dark-gray);
    letter-spacing: 0;
}
.testimonials-section .testimonial-box .thum-content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--e-global-color-yellow);
}
.testimonials-section .owl-theme .owl-nav {
    display: none;
}
/*-------- PURCHASE SECTION ------------ */
.purchase-section {
    padding: 135px 0 135px 0;
    background-image: url(../images/glitter-background.jpg);
}
.purchase-section .heading h2 {
    color: var(--e-global-color-dark-gray);
    margin-bottom: 45px;
    padding: 0 140px;
}
.purchase-section .heading h6 {
    color: var(--e-global-color-secondary);
}
.purchase-section .heading a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 21px 54px;
    margin: 0 3px;
    text-decoration: none;
    display: inline-block;
    color: var(--e-global-color-white);
    background-image: linear-gradient(90deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-accent) 100%);
}
.purchase-section .heading a:hover {
    background-image: linear-gradient(90deg, var(--e-global-color-accent) 0%, var(--e-global-color-bright-blue) 100%);
}
/*-------- FOOTER BAR ------------ */
.footer-bar {
    background-image: url(../images/glitter-background.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 22px 0;
    border-top: 1px solid var(--e-global-color-desaturated-blue);
}
.footer-bar p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}