
:root {
    --arancione: #e95c0c;
    --arancionerbg: rgba(233, 92,12, 0.5);
    --blu: #025b8d;
    --grey: #b9b6b663;
    --darkgrey: #414141;
    --black: #000000;
    --lightgrey: #f2f2f2;
}

html,
body {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    height: 100%;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: var(--black);
}

::selection {
    background-color: var(--arancionerbg);
    color: #000000;
}

:focus,
:active {
    outline: none !important;
}

:hover {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.clear {
    clear: both;
}

span[style*="color:#0000ff"] {
    color: var(--blu) !important;
}

span[style*="color:#ff8c00"] {
    color: var(--arancione) !important;
}
/*font*/
.barlow {
    font-family: "Barlow", sans-serif;
}

.bebas {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.8px;
}
/**/

a {
    text-decoration: none;
    color: inherit;
    /*color: var(--blu);*/
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.7px;
    transition: color 0.2s;
}
a:hover {
    color: var(--arancione);
}
/*
p {
    font-size: 18px;
}*/

.banner {
    background-color: white;
    border-radius: 16px;
    font-weight: 300;
    padding: 16px;
    margin: 16px auto;
}

.banner-blu {
    background-color: var(--blu);
    color: white;
}

.bg-arancione {
    background-color: var(--arancione);
}

.bg-blu {
    background-color: var(--blu);
}

.bg-darkgrey {
    background-color: var(--darkgrey);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-lightgrey {
    background-color: var(--lightgrey);
}

.bg-white {
    background-color: #ffffff;
}

.btn-arancione {
    background-color: var(--arancione);
    border-radius: 5px;
    color: white;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    padding: 12px 18px;
    text-transform: uppercase;
}
.btn-arancione:hover {
    background-color: var(--white);
    border-radius: 5px;
    border-color: var(--arancione);
    color: var(--arancione);
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    padding: 12px 18px;
    text-transform: uppercase;
}

.btn-blu {
    background-color: var(--blu);
    border-radius: 5px;
    color: white;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    padding: 12px 18px;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.btn-blu i {
    font-size: 16px;
    padding-left: 8px;
}

.btn-blu:hover {
    background-color: var(--arancione);
    color: white;
}

.btn-blu:hover i {
    color: white !important;
}

.btn-freccia {
    color: initial;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: text-decoration 0.3s color 0.3s;
}

.btn-freccia:hover {
    color: initial;
    text-decoration: underline;
}

.btn-freccia i {
    font-size: 16px;
    padding-left: 8px;
    position: relative;
    top: 1px;
}

.btn-freccia:hover i {
    animation: to-right 0.2s forwards;
}

.btn-freccia.btn-blu {
    color: white;
}

.btn-freccia.btn-blu:hover {
    color: white;
    text-decoration: none;
}

.color-arancione {
    color: var(--arancione);
}

.color-blu {
    color: var(--blu);
}

.color-lightgrey {
    color: var(--lightgrey);
}

.color-darkgrey {
    color: var(--darkgrey);
}

.color-white {
    color: white;
}

.img-radius {
    border-radius: 16px;
    height: fit-content;
    overflow: hidden;
}

.list-arrow a {
    font-family: "Roboto", sans-serif;
    color: black;
    font-weight: 500;
}

.list-arrow ul,
.list-check ul {
    list-style: none;
    padding-left: 0;
}

.list-arrow li {
    padding-bottom: 16px;
    display: flex;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.list-arrow li:hover {
    text-decoration: underline;
}

.list-arrow li::before {
    content: url(../img/list-arrow.svg);
    display: inline-block;
    flex-shrink: 0;

    box-sizing: content-box;
    padding-right: 16px;
    padding-left: 0;
    width: 10px;

    position: relative;
    top: 2px;
    left: 0;
    transition: left 0.1s;
}

.list-arrow li:hover::before {
    left: 5px;
}

.list-check li {
    padding-bottom: 8px;
}

.list-check li::before {
    content: url(../img/check-list.svg);
    padding-right: 12px;
    position: relative;
    top: 5px;
}

.list-group-flush .list-group-item {
    border: none;
    padding-top: 18px;
    padding-bottom: 18px;
}

.list-group-flush .list-group-item:hover {
    cursor: pointer;
}

.list-group-flush .list-group-item:hover .link {
    color: var(--arancione);
}

.list-group-flush .list-group-item.active {
    background-color: var(--lightgrey);
    border-radius: 16px;
}

.list-group-flush .list-group-item.active .link {
    color: var(--arancione);
}

.ls-normal {
    letter-spacing: normal;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

.rounded-grey {
    border: 1.5px solid var(--grey);
    border-radius: 16px;
}

.strong-block strong {
    display: block;
}

.text-lg {
    font-size: 20px;
}

.text-sm {
    font-size: 14px;
}

.to-orange {
    animation: bg-to-orange 0.2s forwards;
}

.to-blu {
    animation: bg-to-orange 0.2s reverse forwards;
}

/* Accordion */
.accordion-button::after {
    background-color: var(--blu);
    background-image: url(../img/plus-solid.svg);
    background-position: center;
    background-size: 50%;
    border-radius: 5px;
    padding: 16px;

    color: white;
    position: relative;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/minus-solid.svg);
    transform: var(--bs-accordion-btn-icon-transform);
}

.home-accordion .accordion-button {
    background-color: white !important;
}

/*.home-accordion .accordion .accordion-item {
    transform: translateX(50px);
}*/

/* Blog card */
.blog-card,
.blog-preview .blog-card {
    border: 1.5px solid var(--grey);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.blog-card a {
    color: black;
}

.blog-card .btn-freccia {
    position: relative;
    bottom: 1.5px;
    padding: 8px 12px;
    border-left: 1px solid var(--grey);
}

.blog-card .blog-card-img {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.blog-card .card-title:hover a {
    color: black !important;
    text-decoration: underline;
}

.blog-card-2 {
    border: none;
    border-radius: 0;
}

.blog-card-2:last-of-type {
    border-bottom: none !important;
}

.blog-card-2 .blog-card-img {
    border-radius: 0;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    object-fit: cover;
    width: 75%;
    transition: width 0.3s;
}

.blog-card-2 .card-header {
    background-color: var(--blu);
    height: 150px;
    width: 75%;
    max-width: 350px;
}

.blog-card-2 .card-header + div {
    max-width: 350px;
}

.blog-card-2 .card-header:hover .blog-card-img {
    width: 60%;
}

/* Boxes */
.boxes {
    width: 200px;
}

.boxes p {
    height: 100%;
}

.boxes > div {
    height: 125px;
}

.boxes .img-1,
.boxes .img-2 {
    padding: 0;
    transform: translateY(calc(27.5px + (125px) / 2)) rotate(90deg);
    z-index: -1;
}

/* Caratteristiche area */
.caratteristiche-area .col:last-child {
    margin: 0 auto;
    min-width: 350px;
    max-width: 75vw;
}

.caratteristiche-area .img-container {
    height: 150px;
    width: 150px;
}

.caratteristiche-area .img-container img {
    height: 90%;
    position: relative;
}

.caratteristiche-area .img-container img[alt="img-1"] {
    left: -30px;
}

.caratteristiche-area .img-container img[alt="img-2"] {
    left: 30px;
}

.caratteristiche-area .img-container[class~="position-absolute"] {
    transform-origin: center;
    top: 33.333%;
    right: 20px;
}

/* Cards */
.cards .banner {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-family: "Roboto", sans-serif;
    font-weight: lighter;
}



.cards a .link {
    font-weight: inherit;
    transition: font-wheight 0.3s;
}

.cards a:hover .link {
    font-weight: 300;
}

/* Contatti */
.contatti .banner {
    border-radius: 0;
}

.contatti .form {
    padding-top: 120px !important;
}

.contatti .form img {
    top: 45px;
}

/* Desc-aside */
.desc-aside .bg-image {
    max-width: 1320px;
}

.desc-aside .text-container {
    /*background-color: #00000055;*/
    background-color: rgb(0 0 0 / 53%);

}

.desc-aside .text-editor li {
    margin-bottom: 16px;
}

/* DescImg */
.desc-img .img-container {
    width: 90%;
}

/* Desc-2 */
.desc-home-2 {
    padding-bottom: 40vw;
}

.desc-home-2 .img-1,
.desc-home-2 .img-2 {
    min-height: 170px;
}

.desc-home-2 .img-1 img,
.desc-home-2 .img-2 img {
    object-fit: cover;
    object-position: center;
}

.desc-home-2 .img-1 {
    left: 10%;
}

.desc-home-2 .img-2 {
    right: 10%;
    top: 75%;
}

.desc-home-2 .img-3 {
    right: 13%;
    bottom: 29%;
}

.desc-home-2 .img-4 {
    height: 25vw;
    max-height: 150px;
    right: 63%;
    top: 108%;
}

/* Fasi */
.intro-fasi .img-container .trat {
    border-top: 2px dashed var(--blu);
    border-right: 2px dashed var(--blu);
}

.post-fasi .img-container .trat {
    border-bottom: 2px dashed var(--blu);
    /*border-right: 2px dashed var(--blu);*/
}

.intro-fasi .img-container div[class~="rounded-circle"] {
    height: 150px;
    width: 150px;
    left: 29px;
    transform: translateY(-50%);
}

.post-fasi .img-container div[class~="rounded-circle"] {
    transform: translateY(-50%);
    left: 25px;
}

.fasi > .row .col .card-container::after {
    content: "";
    display: flex;
    height: 20px;
}

.fasi > .row .col:nth-child(1) .card-container::after,
.fasi > .row .col:nth-child(4) .card-container::after,
.fasi > .row .col:nth-child(5) .card-container::after {
    background-image: url(../img/gruppo4-fasi.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 100px;
    transform: rotate(90deg);
    position: relative;
    z-index: 3;
}

.fasi-card,
.card-container {
    min-height: 250px;
    width: 250px;
}

.fasi-card .circle {
    height: 100px;
    width: 100px;
    z-index: 5;
}

.fasi-card .circle::before {
    content: "";
    background-color: var(--blu);
    border-radius: 50%;
    position: absolute;
    left: 5%;
    top: -55%;
    width: 150%;
    height: 150%;
}

.fasi-card .fasi-icon {
    max-width: 75%;
    max-height: 75%;
    z-index: 3;
}

.fasi-frecce {
    transform: rotate(90deg);
}

.fasi-did .fasi-card,
.fasi-did .card-container {
    width: 100%;
    max-width: 350px;
    min-width: 250px;
}

.fasi-did .text-editor {
    padding: 95px 0 0 35px;
    width: 80%;
}

/* Fasi 2 */
.fasi-2 .fase-header {
    background-color: var(--lightgrey);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    max-width: 90px;
    text-align: center;
}

.fasi-2 .fase-body {
    background-color: var(--lightgrey);
    border-radius: 16px;
    border-top-left-radius: 0;
}

.fasi-2 .fase-title {
    line-height: 1.2;
}

/* Footer */
footer a {
    color: var(--lightgrey);
}

footer a:hover {
    color: white !important;
    text-decoration: underline;
}

footer img[alt="ExpYouLogo"] {
    box-sizing: content-box;
    max-height: 50px;
    aspect-ratio: inherit;
}

/*footer > div > .row:first-child {
    border-bottom: 1px solid var(--lightgrey);
}*/

footer ul {
    list-style: none;
    padding-left: 0;
}

/* Form */
.form {
    font-size: 1rem;
}

.form .item {
    margin-bottom: 16px;
}

.form .item .btn {
    margin-top: 16px;
    display: block;
    margin-left: auto;
}

.form input,
.form textarea {
    border-radius: 16px;
    font-size: 18px;
    padding: 9px 16px;
}

.form img {
    width: 80px;
    top: -30px;
}

/* Header */
.nav-link {
    transition: color 0.2s;
    font-size: 18px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--arancione);
}

.navbar-brand img {
    max-height: 75px;
}

.navbar-nav .active a,
.navbar-nav .active {
    color: var(--arancione) !important;
}

.navbar-toggler {
    padding: 5px 7px;
    transform: scale(0.7);
    width: fit-content;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero */
.breadcrumb li,
.breadcrumb a {
    color: var(--blu);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/*.breadcrumb-item + .breadcrumb-item.active {
    color: var(--blu);
    font-weight: 600;
    padding-left: 0;
    text-align: start;
}

.breadcrumb-item.active::after {
    content: "";
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
    text-align: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
}*/

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--blu) !important;
}

.hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vw;
    min-height: 200px;
    max-height: 300px;
}

.hero-border {
    border-bottom: 1.5px solid white;
}

.hero .title {
    width: max-content;
}

.hero-home {
    max-height: 650px;
}

.hero-home a span {
    bottom: 76px;
    font-size: 22px;
    right: 8px;
    width: 230px;
}

.hero-home img {
    bottom: 15px;
    right: -25px;
    width: 285px;
}

.hero-home i {
    bottom: 30px;
    font-size: 30px;
    right: 25px;
}

/* Intro */
.cosa-facciamo-intro .img-container:first-child > div {
    border: 2px solid var(--grey);
    height: 220px;
    width: 220px;
}

.cosa-facciamo-intro .img-container:first-child > div > div {
    height: 75px;
    width: 75px;

    bottom: -30px;
    left: -50px;
}

.cosa-facciamo-intro .img-container:first-child img {
    height: 136px;
    width: 136px;
}

.cosa-facciamo-intro .img-container:last-child {
    height: fit-content;
    transform: translateX(15px);
}

.cosa-facciamo-intro .img-container:last-child img[alt="dots"] {
    width: 150px;
    height: 208px;
    object-fit: cover;
    object-position: top left;
}

.cosa-facciamo-intro .img-container:last-child img[alt="img-1"],
.cosa-facciamo-intro .img-container:last-child img[alt="img-2"] {
    width: 122px;
    height: 200px;
    object-fit: cover;
}

.cosa-facciamo-intro .img-container:last-child img[alt="img-1"] {
    top: -23px;
    left: -77px;
}

.cosa-facciamo-intro .img-container:last-child img[alt="img-2"] {
    bottom: -35px;
    left: 55px;
}

/* Key Card */
.key-card .banner {
    border: 1px solid var(--darkgrey);
    margin: 8px;
}

.key-card .key-card-body {
    box-sizing: content-box;
    max-width: 488px;
}

/* Lista prodotti */
.lista-prodotti .img-group .box {
    aspect-ratio: 1;
    border-radius: 10px;
    width: 30%;
    background-color: var(--blu);
}

.lista-prodotti .img-group .img-container {
    /*aspect-ratio: 1;*/
    border: 1px solid var(--blu);
    border-radius: 16px;
    overflow: hidden;
}

.lista-prodotti .img-group .img-container img {
    object-fit: cover;
}

/* PreForm */
.pre-form .banner {
    text-align: center;
    max-width: 500px;
}

/* Scopri */
.scopri .text-editor p {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.scopri .text-editor p > span {
    font-size: 24px;
}

/* Servizi */
.servizi .splide__arrow {
    bottom: 0;
    top: auto;
    transform: translateY(0);
}

.servizi .splide__pagination__page.is-active {
    background: var(--arancione);
}

.servizi .splide .img-container {
    max-width: 390px;
}

.servizi .splide .img-container div:first-child {
    height: 200px;
    width: 80%;
    max-width: 360px;
    margin-bottom: 16px;
}

.servizi .splide .img-container div:nth-child(2) {
    height: 85px;
    width: 70%;
    max-width: 315px;
    margin-left: auto;
}

.servizi .splide .img-container div:last-child {
    top: -25px;
    max-height: 100%;
    max-width: 60%;
    aspect-ratio: 0.75;
}

.servizi .splide .img-container div:last-child img {
    object-fit: cover;
}

/* Stampi area */
.stampi-area {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.stampi-area .list-container {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    transform: translateX(5px);
}

.stampi-area .list-container > .col-2 > span {
    display: inline-block;
    height: 60px;
    width: 60px;
}

.stampi-area .list-container > .col-2 > span > p {
    bottom: -19px;
    bottom: -19px;
    right: 0;
}

/* Tecniche */
.tecniche .accordion-button {
    background-color: var(--blu);
    transition: background-color 0.3s;
}

.tecniche .accordion-button:not(.collapsed) {
    background-color: var(--arancione);
}

.tecniche .accordion-button::after {
    background-image: url(../img/plus-solid.svg);
    background-color: transparent;
}

.tecniche .accordion-button:not(.collapsed)::after {
    background-image: url(../img/minus-solid.svg);
    transform: var(--bs-accordion-btn-icon-transform);
    background-color: transparent;
}

.tecniche .accordion-header p {
    position: relative;
    top: 3px;
}

.tecniche .accordion-item {
    background-color: transparent;
}

.tecniche .accordion-item a {
    color: white;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.tecniche .accordion-item a:hover {
    color: white;
    text-decoration: underline;
}

.tecniche .btn-blu,
.scopri .btn-blu {
    background-color: var(--arancione);
    display: inline-block;
    /*height: 50px;*/
    width: fit-content;
    text-decoration: none;
}

.tecniche .btn-blu:hover {
    text-decoration: underline;
}

#accordionPanelsStayOpenExample .accordion-header,
#accordionXL {
    --bs-accordion-border-color: transparent;
}

#accordion-tecniche {
    min-height: 800px;
}


/* Valori */
.valori-item {
    column-gap: 16px;
    padding: 16px;
    width: 100%;
    max-height: 200px;
}

.valori-item img:first-child {
    max-width: 50px;
    max-height: 50px;
}

/* ANIMAZIONI */
@keyframes bg-to-orange {
    from {
        background-color: var(--blu);
    }
    to {
        background-color: var(--arancione) !important;
    }
}

@keyframes to-right {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(1px);
    }
}

/*elen*/
.w-35 {
    width: 35%;
}
.container-bigger {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.fs-2-1 p {
    font-size: 2.5rem;
}

.p-mb-0 p {
    margin-bottom: 0 !important;
}

.text-orange {
    color: var(--arancione);
}
/**/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: start;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2) !important;

    /* start slide text vertically */
    display: flex;
    justify-content: start;
    align-items: start;
}
.swiper-container-lettera-logo,
.swiper-containe2{
    /*     width: 600px; */
    height: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-container-lettera-logo .swiper-pagination-bullet ,
.swiper-containe2 .swiper-pagination-bullet {
    background: black!important;
}

.swiper-container-lettera-logo .swiper-slide{
    display: flex;
    justify-content: flex-start;
    align-items: start;
    width: 100%!important;
    height: 15%!important;
    cursor: pointer;
}

.swiper-container-lettera-logo .swiper-wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    height: 15%;
}

.swiper-container-lettera-logo .grid{
    display: grid;
    grid-template-columns:repeat(2, 1fr);
}

.swiper-container-lettera-logo p {
   color: var(--blu);
}
.swiper-container-lettera-logo .swiper-slide-active p{
   color: var(--arancione);
}

.swiper-containe2 .swiper-slide-active p{
    width: 100%!important;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: normal;
    text-align: start;
}

.swiper-containe2 .swiper-slide{
    width: 100%!important;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
    text-align: start;

}

.accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
}
/**/

.tecniche .expansion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tecniche .block {
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column-reverse;
}

.tecniche .block-toggle {
    width: 100%;
    padding: 1rem;
    background-color: var(--blu);
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.open .block-toggle {
    border-radius: 0 0 1rem 1rem;
}

.tecniche .block.open .block-toggle {
    background-color: var(--arancione);
    border-radius: 0;
}

.tecniche .block-content {
    background-color: var(--arancione);
    color: white;
    padding: 1rem;
    border-radius: 1rem !important;
    display: none;
    opacity: 0;
    max-height: max-content;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tecniche .block.open .block-content {
    display: block;
    opacity: 1;
    min-height: 300px;
    transform: translateY(0);
}


.tecniche .btn-freccia {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.tecniche .btn-freccia:hover {
    text-decoration: underline;
}
/**/
.tecniche .block.open .block-toggle {
    color: transparent;
}

.tecniche .block-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: none;
}

.tecniche .block.open .block-toggle {
   /* opacity: 1;
    pointer-events: none;*/
    display: none !important;
}

/*.tecniche .block.open .icon-toggle {
    opacity: 0;
    pointer-events: none;
}*/

.tecniche .block.open .block-title {
    display: block;
}

.span-normal span{
    font-family: "Roboto", sans-serif;
    font-weight: 400 !important;
    line-height: 1.7;
    display: inline-block;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--arancione) !important;
}

.w-60-px {
    width: 55px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--blu);
    color: white !important;

}


