/********** Template CSS **********/
/* Hide scrollbar but allow scrolling */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

:root {
    --primary: #6C244C;  /* Deep Purple */
    --primary-gradient: linear-gradient(to right, #6C244C, #7D3A5E, #8E5070, #7D3A5E, #6C244C);
    --service-hover-gradient: linear-gradient(to bottom, #7D3A5E, #6C244C);
    --gold: #B37F2C;
    --gold-gradient: linear-gradient(to right, #B37F2C, #F8DE7D, #FFF2A6, #F8DE7D, #B37F2C);
    --secondary: #F8DE7D;
    --light: #FFF5F0;
    --dark: #3D2C29;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h1.text-center {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 15px rgba(179, 127, 44, 0.7);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
}

.btn-primary:hover {
    color: var(--dark) !important;
    background: var(--gold-gradient);
    border-color: var(--gold);
}

.btn-secondary {
    background: var(--gold-gradient);
    border-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
}

.btn-secondary:hover {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: var(--dark) !important;
}

.btn-light:hover {
    color: var(--dark) !important;
    border-color: var(--gold);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-square i,
.btn-sm-square i,
.btn-lg-square i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


/*** Custom Image Frame ***/
.custom-image-frame {
    position: relative;
    padding: 10px;
    overflow: hidden;
    animation: frameGlow 3s infinite alternate;
    max-width: 90%;
    margin: 0 auto;
    background-color: transparent;
}

@keyframes frameGlow {
    0% {
        box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(248, 222, 125, 0.6);
    }
}

@keyframes rotateFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    clip-path: polygon(
        0% 5%, 5% 0%, 30% 0%, 35% 5%, 65% 5%, 70% 0%, 95% 0%, 100% 5%,
        100% 30%, 95% 35%, 95% 65%, 100% 70%, 100% 95%, 95% 100%,
        70% 100%, 65% 95%, 35% 95%, 30% 100%, 5% 100%, 0% 95%,
        0% 70%, 5% 65%, 5% 35%, 0% 30%
    );
    z-index: 1;
    box-shadow: 0 0 20px rgba(179, 127, 44, 0.5);
    animation: rotateFrame 15s linear infinite;
    pointer-events: none;
}

.custom-image-frame::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background: var(--gold-gradient);
    filter: brightness(1.2);
    clip-path: polygon(
        0% 10%, 10% 0%, 90% 0%, 100% 10%,
        100% 90%, 90% 100%, 10% 100%, 0% 90%
    );
    z-index: 2;
    pointer-events: none;
}

.custom-image-frame img {
    position: relative;
    z-index: 3;
    border: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    transform-origin: center center;
    display: block;
    animation: pulseImage 8s ease-in-out infinite alternate;
    clip-path: polygon(
        5% 12%, 12% 5%, 88% 5%, 95% 12%,
        95% 88%, 88% 95%, 12% 95%, 5% 88%
    );
}

@keyframes pulseImage {
    0% {
        transform: scale(1.01);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.01);
    }
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--light) !important;
}

.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    text-shadow: 0 0 8px rgba(248, 222, 125, 0.7);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    text-shadow: 0 0 8px rgba(248, 222, 125, 0.7);
    position: relative;
}

.navbar-light .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link.active::after {
        width: auto;
        left: 10px;
        right: 10px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        display: inline-block;
        text-align: center;
    }
}

.navbar-light .navbar-brand h1 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(248, 222, 125, 0.3);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .navbar-light, .sticky-top.navbar-light {
        position: relative;
        background: var(--primary) !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: var(--primary);
        padding: 10px;
        border-radius: 0 0 8px 8px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--light) !important;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .sticky-top.navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active,
    .sticky-top.navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
        text-shadow: 0 0 8px rgba(248, 222, 125, 0.7);
    }

    .navbar-light .navbar-brand h1 {
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 10px rgba(248, 222, 125, 0.3);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .navbar-toggler {
        color: var(--light) !important;
        border-color: rgba(255, 255, 255, 0.3);
        background-color: var(--primary);
    }

    .navbar-toggler span {
        color: var(--light) !important;
    }

    .navbar-light {
        background: var(--primary) !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: var(--gold-gradient);
        border-color: var(--gold);
        box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--gold-gradient);
        border-color: var(--gold);
        box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 10px rgba(248, 222, 125, 0.5);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }


}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
    border-bottom: 4px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}

.bg-primary {
    background: var(--primary-gradient) !important;
}

.bg-gold {
    background: var(--gold-gradient) !important;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title.justify-content-center + h1 {
    display: block;
    width: 100%;
    text-align: center !important;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--gold-gradient);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}

.text-center.mb-5 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}

.text-center.mb-5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Fix for all centered headings */
h1.text-center.mb-5,
h2.text-center.mb-5,
h3.text-center.mb-5,
h4.text-center.mb-5,
h5.text-center.mb-5,
h6.text-center.mb-5 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    border: 1px solid transparent;
    background-color: var(--light);
    position: relative;
}

.feature-item:hover {
    margin-top: -15px;
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 5px 15px rgba(179, 127, 44, 0.3);
    background-color: var(--light);
    color: var(--dark);
    text-align: left;
    padding: 25px;
}

.feature-item:hover::after {
    content: '';
    display: table;
    clear: both;
}

.feature-item i.fa {
    display: block;
margin-top: 10px;
    margin-bottom: 10px;

}

.feature-item:hover i.fa {
    display: inline-block;
    vertical-align: middle;
    color: var(--gold) !important;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-item:hover h5 {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
    vertical-align: middle;
    margin-bottom: 15px;
}



.feature-item:hover p {
    color: var(--dark);
    font-weight: 500;
    clear: both;
    margin-top: 15px;
    display: block;
}

.feature-item .btn-square {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    margin: 15px auto 0;
    display: inline-flex;
}

.feature-item:hover .btn-square {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: var(--gold);
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.progress-bar.bg-primary {
    background: var(--gold-gradient) !important;
}

.progress-bar.bg-secondary {
    background: var(--gold-gradient) !important;
}

.progress-bar.bg-dark {
    background: var(--gold-gradient) !important;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
    border: 1px solid transparent;
    text-align: center;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary-gradient);
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(179, 127, 44, 0.3);
    transition: .5s;
}

.service-item:hover .service-icon {
    transform: rotate(360deg);
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--primary);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.service-item:hover a.btn {
    bottom: 0;
    color: var(--dark);
    font-weight: 600;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(179, 127, 44, 0.3);
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(248, 222, 125, 0.7);
}




/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--gold);
    border-color: var(--gold);
    text-shadow: 0 0 5px rgba(179, 127, 44, 0.5);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(108, 36, 76, .9);
    border: 2px solid var(--gold);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .position-relative {
    height: 250px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .portfolio-item .position-relative {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .portfolio-item .position-relative {
        height: 180px;
    }
}

.portfolio-item .position-relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item .bg-light {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-item .bg-light h5 {
    min-height: 50px;
    display: flex;
    align-items: center;
}

.portfolio-item .bg-light h5 a {
    display: block;
    width: 100%;
}


/*** Newsletter ***/
.newsletter {
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(179, 127, 44, 0.2);
    width: 100%;
    max-width: 100%;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--gold-gradient);
    box-shadow: 0 0 15px rgba(179, 127, 44, 0.7);
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .testimonial-carousel .testimonial-item {
        padding: 0 20px 20px 20px;
        margin: 0 10px;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .testimonial-carousel .owl-item {
        display: flex;
        justify-content: center;
    }

    .testimonial-carousel {
        padding: 0 10px;
    }

    .testimonial-carousel .fa-quote-left {
        font-size: 2.5em !important;
    }

    .testimonial-carousel .fs-5 {
        font-size: 1rem !important;
    }
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: var(--dark) !important;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(179, 127, 44, 0.7);
}


/*** Footer ***/
.footer {
    margin-top: 2rem;
    padding-top: 3rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
    border-top: 4px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    width: 100%;
    overflow: hidden;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(179, 127, 44, 0.5);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--gold);
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    width: 100%;
    clear: both;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(248, 222, 125, 0.5);
}

.footer .copyright .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}