@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Tenor+Sans&display=swap");

:root {
    --primary-color: #8f91b0;
    --secondary-color: #e8ded3;
    --third-color: #472836;
    --text-color: #ffffff;
    --text-footer-color: #000000;
    --bg-image-color: transparent;
    --bg-card-color: var(--secondary-color);
    --bg-section-color-1: #fef5e6;
    --bg-section-color-2: #fff1de;
    --bg-section-color-3: #ffebd0;
    --bg-section-color-4: #472837;
}

html {
    scroll-behavior: smooth;
    /*scroll-padding-top: 95px;*/
}

body {
    font-family: "Poppins", sans-serif;
    color: #000;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

b,
strong {
    font-weight: 600 !important;
}

.material-symbols-outlined-filled {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 30;
    font-display: swap;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-10 {
    background-color: var(--bg-section-color-1);
}

.bg-11 {
    background-color: var(--bg-section-color-2);
}

.bg-12 {
    background-color: var(--bg-section-color-3);
}

.bg-13 {
    background-color: var(--bg-section-color-4);
}

.w-1\/5 {
    width: 19.6% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Tenor Sans", serif;
    font-weight: normal !important;
}

p {
    margin: 0px;
    font-weight: 300 !important;
}

.w-200px {
    width: 200px;
}

.content-center {
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0px 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    flex-direction: row;
    text-transform: uppercase;
}

.navbar-nav .active {
    color: var(--primary-color) !important;
}

.logo-anim {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-main {
    background-color: transparent;
    border-radius: 20px;
    margin: 15px 0px;
    width: 65px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.logo-secondary {
    width: 120px;
    display: block;
    transition: all 0.4s ease, transform 0.4s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile .navbar-scrolled .logo-main {
    transform: rotate(90deg);
    display: block;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.mobile .navbar-scrolled .logo-secondary {
    display: none;
    transform: translateY(-10px);
}

.iconsBar {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: calc(50% - 7px);
    height: 75px;
    border-radius: 30px;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
    -o-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
    width: calc(100% - 30px);
    margin: 15px;
    transform: translateX(-50%);
    background: white;
    max-width: 500px;
    padding: 0px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.iconsBar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iconsBar span {
    font-size: 14px;
    text-transform: uppercase;
}

.iconsBar .icon {
    border-radius: 100%;
    color: black !important;
    background-color: transparent !important;
    padding: 8px;
}

.iconsBar .active .icon {
    background-color: var(--main_color) !important;
    color: white !important;
}

.footbutton {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-btn {
    background-color: var(--third-color);
    padding: 10px 35px;
    color: #fff;
    border: 1px solid var(--third-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-wrap: nowrap;
    display: inline-block;
}

.site-btn:hover {
    color: var(--third-color);
    background-color: #fff;
}

.site-btn-invert {
    background-color: #fff;
    padding: 10px 35px;
    color: var(--third-color);
    border: 1px solid var(--third-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-wrap: nowrap;
    display: inline-block;
}

.site-btn-invert:hover {
    color: #fff;
    background-color: var(--third-color);
}

footer {
    position: relative;
    background-color: var(--bg-section-color-2);
    color: var(--text-footer-color);
    padding: 50px 0 130px 0px;
    font-weight: 200 !important;
    z-index: 1;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--bg-section-color-2);
    z-index: -1;
}

footer img {
    height: 45px;
    width: auto;
}

footer .social-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

footer .social-links p {
    font-weight: 500 !important;
    margin-right: 10px;
    font-size: 20px;
}

footer .social-links a {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

footer .dati-azienda {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
}

footer .links p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

footer .links li {
    list-style: none;
}

.main-box .slide-box {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 95px - var(--bs-gutter-x, 0.75rem) - 10px);
    background-color: var(--primary-color);
    display: flex !important;
    align-items: center;
    margin: 0 !important;
    margin-top: 95px !important;
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.main-box .slide-box > div {
    padding: 80px;
    width: 50%;
}

.main-box .slide-custom {
    background-color: #fff;
}

.main-box .slide-custom .box-left {
    width: 27%;
    height: 100%;
    margin-right: 6.4%;
    padding: 0px;
    background-color: var(--primary-color);
    text-align: center;
}

.main-box .slide-custom .box-right.w-2\/3 {
    width: 66.6%;
    height: 100%;
}

.main-box .box-white {
    background-color: #fff;
    padding: 15px;
    height: 27%;
}

.main-box .box-white p {
    color: #000;
    margin-bottom: 0px;
}

.main-box .box-white p .text-lg {
    font-size: 40px;
}

.main-box .box-left .box-down {
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    height: 50%;
}

.main-box .box-left .box-down p {
    margin-bottom: 0px;
}

.main-box .slide-custom .box-right {
    background-color: #eadad0;
    display: flex !important;
}

.main-box .slide-custom .box-right p {
    color: #000;
}

 .main-box .slide-custom .box-right {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
 }

.main-box .slide-custom .box-right .card-1 {
    text-align: center;
}

.main-box .slide-custom .box-right .card-2 p{
    text-align: end;
    font-size: 24px;
}

.main-box .slide-custom .flex-center {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.main-box .slide-custom .box-right .card-1 img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.main-box .slide-custom .box-right .card-1 span {
    font-size: 45px;
}

.main-box .slide-custom .box-right .card-1 p {
    font-size: 30px;
    line-height: 35px;
    font-weight: 400 !important;
}

.main-box .slide-custom .box-right .card-3 img {
    max-height: 400px;
    object-fit: contain;
}

.main-box .slide-custom .box-right .card-4 {
    display: flex !important;
    justify-content: end;
}

.main-box .slide-custom .box-right .card-4 p {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 400 !important;
}

.main-box .slide-custom .box-left picture {
    height: 23%;
}

.main-box .slide-custom .box-left img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.main-box .slide-custom .box-right picture {
    height: auto;
}

.main-box .box-image {
    height: 100%;
}

.main-box .slide-box .align-top {
    vertical-align: middle !important;
}

.main-box h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.main-box p,
.div-box .box-primary p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.main-box picture {
    display: flex;
    align-items: center;
    justify-content: end;
}

.main-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 590px;
    max-height: 650px;
}

.slick-list {
    border-radius: 20px;
    margin: 0px -10px;
}

.slick-dots {
    bottom: 20px;
    right: 30px;
    display: inline-block;
    width: initial;
}

.slick-dots li button::before {
    font-size: 15px !important;
}

.slick-dots li.slick-active button::before {
    color: var(--main_color) !important;
}

.slider-main {
    visibility: hidden;
    opacity: 0;
    margin-bottom: 0px !important;
}

.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.div-box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0px !important;
    height: 600px;
    display: flex;
    align-items: center;
    margin-top: 50px;
    background-color: var(--bg-image-color);
    border-radius: 20px;
}

.div-box .box-primary {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 80px;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    display: inline-flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.div-box .box-primary h3 {
    font-size: 40px;
    line-height: 40px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.div-box .box-secondary {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.div-box .box-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-box {
    align-items: center;
    display: inline-flex;
}

.product-box .box-left {
    padding: 50px;
    background-color: var(--bg-card-color);
    border-radius: 20px;
    overflow: hidden;
    height: 80vh;
}

.product-box img {
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.card-full {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    transition: all 0.3s ease-in-out;
}

.card-full:hover {
    transform: scale(1.02);
}

.card-full.landing-1 {
    background-color: #8f91b0;
    color: #ffffff;
}

.card-full.landing-2 {
    background-color: #905d7b;
    color: #ffffff;
}

/* .llm .leaflet-pane {
    mix-blend-mode: luminosity;
} */

.leaflet-marker-pane img {
    border-radius: 50%;
    box-shadow: 0px 0px 10px 1px #8f91b0;
    overflow: hidden;
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    -webkit-box-shadow: #e2eaed;
    box-shadow: #e2eaed;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px !important;
}

.accordion-button::after {
    content: none !important;
}

.accordion-collapse {
    border: solid rgba(255, 255, 255, 0.125);
    border-width: 0 1px;
}

.accordion-body {
    padding: 1.5rem 2rem;
    border: 1px solid #e2eaed;
    border-top: 0px;
}

.accordion-button {
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 2.6rem;
    font-size: 1rem;
    text-align: left;
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 0;
    /* reset default */
}

.accordion-button:focus {
    box-shadow: none;
    outline: 0;
    border: 0px;
}

/* Stondatura superiore primo elemento */
#azienda .accordion-item .accordion-button {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

#azienda .accordion-item:last-child .accordion-button {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

/* Stondatura inferiore ultimo elemento SOLO se collapse NON è attivo */
#azienda
    .accordion-item:last-child:not(:has(.accordion-collapse.show))
    .accordion-button {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.modal.show {
    z-index: 9999;
}

.modal_close {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 999;
    background-color: transparent;
    border: 0px;
}

.modal_close span {
    color: #fff !important;
    font-size: 25px !important;
}

form .site-btn {
    width: 100%;
    text-align: center;
    margin-top: 30px !important;
}

#valori .icon {
    color: var(--primary-color);
}

.font-14px {
    font-size: 14px !important;
}

.text-alert {
    color: #838f00;
    line-height: 16px;
    font-size: 16px;
}

#contatti .site-btn {
    width: auto !important;
}

.page-contatti .align-top {
    vertical-align: middle !important;
}

.page-contatti .box-card {
    padding: 50px;
    background-color: var(--bg-card-color);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.page-contatti .box-card .content {
    font-size: 22px;
    font-weight: 300;
}

.page-contatti .box-card h5 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 30px;
}

.box-products .card-product {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.box-products .card-product img {
    border-radius: 30px;
    overflow: hidden;
}

.box-products .card-product picture,
.box-products .card-product img {
    max-height: 200px;
    width: 100%;
}

.box-products {
    display: flex;
    gap: 30px;
    width: 100%;
}

.box-mission .card {
    background-color: var(--bg-card-color);
    padding: 30px;
    border-radius: 30px;
    margin-top: 30px;
}

.box-mission .card .list p {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.box-mission .card .list p:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.box-mission .card .list p:last-child i {
    font-style: italic;
}

.ratio-4x3 {
    aspect-ratio: 4/3;
    object-fit: cover;
}

#prodotti picture {
    height: initial !important;
}

#prodotti .d-flex {
    gap: 20px;
}

#prodotti .d-flex > div {
    width: 23.9%;
    --bs-bg-opacity: 1;
    background-color: var(--secondary-color);
    border-radius: var(--bs-border-radius-xl) !important;
    padding: 1.5rem !important;
}

.grigliaProdotti h3 {
    font-size: 18px !important;
    margin-top: 20px;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif;
}

#prodotti p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    font-style: italic;
    color: #606060;
    min-height: 50px;
}

#prodotti img {
    max-height: 200px;
    aspect-ratio: 1;
    object-fit: contain;
}

#prodotti a:not(.site-btn) {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 14px;
}

.slide-img {
    max-height: 200px;
}

#main-box #cover-content img {
    max-height: 500px;
    min-height: 400px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#main-box #text-content {
    padding-left: 50px;
}

.w-3\/4 {
    width: 74.5%;
}

main {
    scroll-behavior: smooth;
}

main .section {
    height: 100vh;
    box-sizing: border-box;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer.section {
    height: auto !important;
    min-height: initial !important;
}

.vertical-align-bottom {
    vertical-align: bottom !important;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 5px;
}

.punteggio_star .star,
#form_feedback .star {
    font-size: 25px;
}

.star {
    color: #ccc;
    transition: color 0.2s ease-in-out;
}

.main_punteggio .punteggio_star .star,
#form_feedback .star {
    cursor: pointer;
}

.star.star-full,
#form_feedback .star:hover {
    color: #ffc107;
}

.align-top:not(#valori .align-top, #vision .align-top) {
    vertical-align: middle !important;
}

#recensioni img {
    object-fit: cover;
    width: 100%;
    max-height: 800px;
}

#form_feedback textarea,
#contatti textarea {
    min-height: 150px !important;
}

.-m-15em {
    margin-left: -1.5em !important;
    margin-right: -1.5em !important;
}

#vision h2,
#vision p,
#vision h6 {
    position: relative;
    z-index: 2;
}

#vision .img-oriz img {
    position: absolute;
    bottom: -10px;
    right: 0;
    z-index: 1;
}

#vision .img-vert img {
    position: absolute;
    right: 0;
    bottom: -80px;
    z-index: 1;
}

.mw-100 img {
    max-width: 100%;
}

.mh-100 img {
    max-height: 100%;
}

.back-to {
    display: flex;
    width: 200px;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.back-to span {
    font-size: 18px;
}

#box-form {
    padding: 80px 0px;
}

#box-form .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
}

#box-form #content-form {
    width: 100%;
    max-width: 800px;
}

.minh-150 {
    min-height: 150px !important;
}

@media (max-width: 1366px) {
    /* fino a laptop piccolo */
    main,
    main .section {
        height: auto !important;
        min-height: 100vh !important;
    }

    .py-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .container-fluid {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .bg-full .container-fluid,
    #prodotti.container-fluid,
    footer .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (min-width: 900px) {
    .container-fluid {
        padding-left: calc(var(--bs-gutter-x, 0.75rem) + 10px);
        padding-right: calc(var(--bs-gutter-x, 0.75rem) + 10px);
    }
}

@media only screen and (max-width: 900px) {
    main,
    main .section {
        height: auto !important;
        min-height: initial !important;
    }

    #slider {
        padding-top: 0px !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .navbar-nav {
        display: none !important;
    }

    .slick-dots {
        width: 100% !important;
        position: initial !important;
    }

    .iconsBar {
        display: flex;
        max-width: 100%;
        overflow-x: scroll;
        gap: 25px;
    }

    .iconsBar .col {
        width: 60px;
        display: inline-block;
    }

    .iconsBar span {
        font-size: 12px;
    }

    #prodotti a:not(.site-btn) {
        font-size: 12px;
    }

    .-m-15em {
        margin-left: initial !important;
        margin-right: initial !important;
    }

    html {
        scroll-padding-top: 80px;
    }

    .card-full {
        height: 20vh;
    }

    .main-box .slide-box {
        height: initial;
        flex-direction: column-reverse;
        justify-content: flex-end;
    }

    .main-box .slide-box > div {
        padding: 25px;
    }

    .main-box p,
    .div-box .box-primary p {
        font-size: 16px;
    }

    .product-box {
        flex-direction: column;
        align-items: center;
    }

    .main-box h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .main-box img {
        width: 100%;
        object-fit: contain;
        object-position: center top;
        aspect-ratio: 1;
    }

    .slide-box > div:has(picture) {
        padding-bottom: 0px !important;
    }

    .main-box picture {
        justify-content: center;
        margin-top: 0px;
    }

    .main-box p {
        margin-bottom: 20px;
    }

    .div-box {
        height: 100%;
        flex-direction: column;
    }

    .div-box .box-primary h3 {
        font-size: 25px;
    }

    .div-box .box-primary {
        order: 2;
        padding: 30px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .div-box .box-secondary {
        order: 1;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        overflow: hidden;
    }

    nav .navbar-nav {
        gap: 0px;
        margin-top: 20px;
    }

    .offcanvas {
        width: 80% !important;
    }

    .offcanvas .btn-close {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .w-1\/5 {
        width: 100% !important;
    }

    .page-contatti .box-card {
        margin-top: 50px;
        padding: 30px;
    }

    .box-products {
        flex-direction: column;
    }

    #prodotti .d-flex > div {
        width: 47%;
        margin-bottom: 20px;
    }

    #prodotti img {
        width: 100%;
    }

    #main-box #text-content {
        padding-left: 0px;
    }

    #main-box #cover-content img {
        margin-bottom: 50px;
    }

    .iconsBar {
        left: initial !important;
        transform: initial !important;
    }

    .navbar-fixed {
        padding: 10px 1rem;
    }

    .logo-main {
        background-color: #fff;
        border-radius: 10px;
        width: 50px;
    }

    .logo-secondary {
        width: 80px;
    }

    .centered {
        display: initial !important;
    }

    #prodotti,
    #contatti {
        display: block !important;
    }

    footer .social-links {
        gap: 15px;
        justify-content: start;
        flex-wrap: wrap;
    }

    footer .social-links p {
        flex-basis: 100%;
    }

    #vision .img-oriz img {
        width: 70%;
    }

    #vision .img-vert img {
        width: 30%;
        bottom: -40px;
    }

    #recensioni {
        padding-top: 0px;
    }

    #box-form {
        padding: 50px 0px;
    }

    .main-box .slide-custom .flex-center {
        flex-direction: column;
    }

    .main-box .slide-custom .box-right .card-2 p {
        text-align: center;
    }

    .main-box .slide-custom .box-left {
        margin: 0%;
    }

    .main-box .slide-custom .box-left picture {
        padding: 20px 0px;
    }

    .main-box .box-left .box-down {
        padding: 20px;
    }

    .main-box .slide-custom .box-right .card-4 p,
    .main-box .slide-custom .box-right .card-2 p {
        font-size: 18px;
    }

    .main-box .slide-custom .box-right .card-3 img {
        max-height: 200px;
        margin: 20px 0px;
    }

    .main-box .slide-custom .box-right .card-4 {
        justify-content: center;
    }
}
