/********** Template CSS **********/
/* :root {
    --primary: #d69304;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #050606;
} */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.active {
    background: unset !important;
}


.accordion-body {
    padding: 15px 15px 15px 15px;
}


.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


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


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
}

.btn-primary {
    color: #11126c;
}

.btn-outline-primary:hover {
    color: #d59100;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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;
}

.top-header {
    background-color: #d59100;
}

.top-header .other-logo img:not(:last-child) {
    width: 120px;
}

.text-banner h5.display-1.text-dark.mb-4 span {
    font-size: 28px;
}

.banner-brand img {
    width: 70%;
    padding-right: 0;
}

.bnner-image {
    text-align: center;
}

.top-header .other-logo img {
    width: 50px;
    margin: 0 10px;
}

header {
    z-index: 9999;
    padding: 0 0 8px 0;
    box-shadow: 0 4px 5px 0 #04040426;
    position: relative;
}

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.logo {
    flex: 2;
    display: none;
    align-items: center;
}

.logo img {
    width: 100%;
}


.bartoggle,
#menubrop {
    display: none;
}

.NavMenu {
    flex: 10;
    list-style: none;
    align-items: center;
    position: relative;
    padding: 0;
    display: flex;
    margin: 0;
}

.NavMenu li {
    display: inline-block;
}

.NavMenu li input {
    display: none;
}


.NavMenu li a {
    display: block;
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #191768;
    position: relative;
}


.NavMenu li a:hover {
    color: #d59100;
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    margin: 0;
    display: block;
    font-weight: 600;
    position: relative;
}

.NavMenu li a label::after {
    content: "+";
    position: absolute;
    right: -8px;
    top: 0;
    font-size: 20px;
}

.NavMenu>li>a label::after {
    right: -15px;
    top: 0px;
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 265px;
    border-bottom: 2px solid #d59100;
    top: 100%;
    margin: 0;
    padding: 0;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
}

.NavMenu li ul li {
    position: relative;
}

.NavMenu li ul li a {
    color: #191768;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: normal;
    display: block;
    border-left: 2px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 353px;
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #d59100;
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@media(max-width:991.98px) {
    header {
        padding: 6px 5%;
    }

    .logo {
        flex: 6;
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 55px;
        align-items: center;
        background-color: #fff;
        padding: 0 0 0 10px;
        margin: 0;
        color: #dbab45;
        cursor: pointer;
    }

    .NavMenu {
        width: 500px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #1a365d;
        left: 0;
        top: 40px;
        height: 100vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none;
    }

    .NavMenu li a {
        display: block;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        color: #191768;
        position: relative;
        padding: 11px 15px;
        border-bottom: 1px solid #fff;
    }

    .NavMenu li ul li ul {
        background: #1a365d;
        position: inherit;
        margin-top: -10px;
    }

    .NavMenu li ul li ul li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px;
    }

    .NavMenu li a label::after {
        right: 10px;
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

}

@media(max-width:768px) {


    .NavMenu {
        width: 80%;
        align-items: unset;
        padding: 0;
        background-color: #191768;
    }

    .logo img {
        width: 60%;
    }



    ul.NavMenu {
        top: 0px;
        z-index: 999;
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        background-color: #191768;
        top: 0;
        display: none;
    }

    .NavMenu li a {
        color: #fff !important;
    }

}

img.img-fluids {
    width: 40%;
}

a.navbar-brand {
    width: 40%;
}






.image-container {
    position: relative;
    width: 340px;
    height: 460px;
}

.back-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 100px;
    box-shadow: 0 0 7px -2px #fff;
    border-bottom-left-radius: 100px;
    z-index: 1;
}

.text-banner {
    text-align: start;
    padding-left: 70px;
}


.texst-banner p {
    font-size: 19px;
    font-weight: 600;
    padding: 20px 0 20px 0;
}

.texst-banner img {
    width: 80%;
}

.front-image {
    position: absolute;
    top: 45px;
    left: -200px;
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.texst-banner {
    text-align: start;
    padding-left: 75px;
}

.texst-banner h5 {
    font-size: 45px;
}

.text-banner h5 img {
    width: 55%;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: #000000d6;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #d59100;
    border: 15px solid #d59100;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 844px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(136, 180, 78, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/* product-banner */

.banner-text {
    padding: 0 70px 0 0;
}

.banner-text h1 {
    color: #d59100;
    font-size: 40px;
}


.banner-text p {
    font-size: 16px;
    padding: 15px 0 15px 0;
}


/* product-banner */

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h5 {
    color: #3a80f7;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 32px;
    margin: 0;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #2a55ff, #34d4f7);
    margin: 10px auto 0;
    border-radius: 4px;
}

.categories {
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.category {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category:hover {
    transform: translateY(-10px);
}

.category img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 7px -2px rgb(0 0 0 / 42%);
    transition: box-shadow 0.3s ease;
}

.category:hover img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category p {
    margin-top: 15px;
    font-size: 21px;
    font-weight: 600;
    color: #d59100;
    font-family: "";
}

/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #11126c;
}

.store-item img {
    width: 100%;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: #11126c;
    border: 10px solid #d59100;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


.text-about p {
    font-size: 16px;
    text-align: justify;
    font-weight: 500;
}

/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11126c;
    background: #d59100;
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #11126c !important;
    color: #d59100;
}

.bg-white h4 {
    font-size: 22px;
    color: #d59100 !important;
}

.p-4 h4.mb-3 {
    color: #d59100;
    font-size: 21px;
}

/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/

.store-item .store-overlay {
    position: absolute;
    top: 0;
    cursor: pointer;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(219 171 69 / 24%);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}



/*** Contact ***/
.contact .btn-square {
    width: 85px;
    cursor: pointer;
    height: 85px;
    border: 10px solid #dadbda;
    background: #d59100;
    border-radius: 50px;
}

/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgb(0 0 0 / 75%), rgb(0 0 0 / 75%)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 20px solid #d59100;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #eeeef7;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #d59100 !important;
}

.section-title p.fs-5.fw-medium.fst-italic.text-white {
    color: #11126c !important;
}

.text-start h5 {
    font-size: 22px;
    color: #d59100;
    font-weight: 800;
}

.btn-square i {
    font-size: 25px;
    color: #11126c !important;
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #d59100;
    font-size: 20px;
    margin-right: 10px;
}

h4.text-primary.mb-4 {
    color: #d59100 !important;
    font-size: 26px;
}

.d-flex a.btn.btn-square.rounded-circle.me-2 {
    background-color: #d59100;
}

.footer .btn.btn-link:hover {
    color: #d59100;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: none;
}

.mb-2 i {
    font-size: 20px;
    color: #d59100;
}

.copyright {
    color: #B0B9AE;
}

.section-title.text-center.mx-auto.wow.animated {
    max-width: 600px !important;
}

.right-column h3 {
    font-size: 21px !important;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}



.bnner-image img {
    width: 70%;
}

tr {
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .top-header {
        background-color: #d59100;
        display: none;
    }

    a.navbar-brand {
        width: 55%;
    }

    img.img-fluids {
        width: 100%;
    }

    .container-fluid.bg-white.sticky-top {
        height: 100px;
    }

    .text-banner {
        text-align: start;
        padding-left: 70px;
        padding-top: 25px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 35px;
        padding: 10px 20px !important;
        color: #11126c;
        font-weight: 600;
        text-transform: uppercase;
        outline: none;
    }

    .column img {
        max-width: 100% !important;
        height: auto;
    }

    .left-box {
        background: linear-gradient(to bottom, #d59100, #11126c);
        margin: 0;
        color: white;
        cursor: pointer;
    }

    .right-box {
        background: #d591001c;
        color: black;
        margin: 0;
        cursor: pointer;
    }


    .dropdown-item {
        display: block;
        width: 100%;
        padding: 5px 0 5px 20px;
        clear: both;
        font-weight: 600;
        color: #11126c;
        font-size: 16px;
        text-align: inherit;
        white-space: nowrap;
        background-color: rgb(255 255 255);
        border: 0;
    }

    .text-banner h5.display-1.text-dark.mb-4 span {
        font-size: 16px;
    }

    .front-image {
        position: absolute;
        top: 13px;
        left: 10px !important;
        width: 160px !important;
        height: 260px !important;
        object-fit: cover;
        border-radius: 50px 0 50px 0;
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        z-index: 2;
    }

    .back-image {
        width: 50% !important;
        height: 60% !important;
        left: 155px !important;
        object-fit: cover;
        border-top-right-radius: 50px;
        box-shadow: 0 0 7px -2px #fff;
        border-bottom-left-radius: 50px;
        z-index: 1;
    }

    .col-lg-6.col-md-6.col-sm-12.align-items-center.d-flex.justify-content-center {
        margin-top: 80px;
        margin-bottom: 20px;
        text-align: center !important;
    }

    .banner-brand img {
        width: 100% !important;
        padding-bottom: 10px;
        padding-right: 0;
        position: unset !important;
    }

    .text.mt-2 {
        margin-top: -5px !important;
    }

    .text h6 {
        font-size: 12px;
    }

    .banner-brand {
        justify-content: start;
    }

    .texst-banner {
        text-align: start;
        padding-left: 0;
    }

    .texst-banner p {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 0 10px 0;
    }

    .texst-banner img {
        width: 80% !important;
        position: unset !important;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 685px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 3.5rem;
        background-color: #d59100;
        border: 15px solid #d59100;
    }

    .container-xxl.py-5 {
        padding: 45px 0 0 0 !important;
    }

    .display-6 {
        font-size: calc(1.375rem + 1.5vw);
        font-weight: 900;
        line-height: 1.2;
        font-size: 23px;
    }

    .section-title::before {
        left: 65px;
    }

    .section-title::after {
        left: calc(25% - -50px);
    }


    .bg-white.shadow-sm.text-center.p-4.position-relative.mt-n5.mx-4 {
        padding: 5px 5px 5px 5px !important;
        width: 285px !important;
        margin: auto;
        left: -10px;
    }



    .bg-white h4 {
        font-size: 19px;
        color: #d59100 !important;
    }

    .bg-white .text-body {
        color: #000000 !important;
        font-size: 14px;
    }

    .product-carousel .owl-nav .owl-prev,
    .product-carousel .owl-nav .owl-next {
        margin: 0 10px;
        width: 35px;
        height: 35px;
    }


    .bnner-image img {
        width: 100%;
    }

    .banner-text h1 {
        color: #d59100;
        font-size: 24px;
    }

    .banner-text {
        padding: 0;
    }

    .slider {
        position: relative;
        width: unset !important;
        margin: auto;
        overflow: hidden;
        border-radius: 10px;
        /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    }

    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #d59100;
        color: white;
        border: none;
        padding: 0px 9px !important;
        font-size: 18px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 10;
    }

    .next {
        right: 0px !important;
    }

    .prev {
        left: 0 !important;
    }

    .slidess img {
        width: 70% !important;
        height: auto;
    }

    .testimonial-item {
        margin: 0 auto;
        max-width: 600px;
        text-align: center;
        background: #FFFFFF;
        border: 10px solid #d59100;
    }


    .banner-image-dms img {
        width: 55% !important;
        position: unset !important;
    }



    .innerss-img img {
        width: 70% !important;
    }

    .inners-img img {
        width: 70% !important;
    }

    .thumbnail-gallery {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        overflow: scroll;
    }




}

.sticky-social {
    position: fixed;
    top: 70%;
    left: -32px;
    padding: 0px;
    margin: 0px;
    z-index: 9999;
}

.image-container img.front-image {
    width: 80%;
}

.image-container img.back-image {
    width: 100%;
}

.social {
    list-style: none;
}

li.fb {
    background-color: #d59100;
}

.social li {
    padding: 10px 15px;
    font-size: 25px;
}

.whats {
    background-color: #18e43a;
}

.social li a {
    color: #fff;
}

.row {
    display: flex;
}

.column {
    flex: 1;
    text-align: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.left-box {
    background: linear-gradient(to bottom, #d59100, #11126c);
    margin: 5px 5px 5px 5px;
    color: white;
    cursor: pointer;
}

.right-box {
    background: #d591001c;
    color: black;
    margin: 5px 5px 5px 5px;
    cursor: pointer;
}

.column img {
    max-width: 300px;
    height: auto;
}

.column h2 {
    font-size: 30px;
    margin: 20px 0 10px;
}

.column p {
    font-size: 18px;
    margin: 0 0 20px;
}

/* 
.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
} */

.btn-white {
    background: white;
    color: #191768;
}

.btn-black {
    background: #191768;
    color: white;
}

.left-box:hover {
    transform: translateY(-10px);
    transition: 0.9s;
}

.right-box:hover {
    transform: translateY(-10px);
    transition: 0.9s;
}

p.pafe.mb-2 {
    font-size: 14px;
}

p.futp.mb-2 {
    font-size: 15px;
}


.banner-image-dms img {
    width: 50%;
}