/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/
:root {
    --ui-primary: #0d6efd;
    --ui-primary-soft: rgba(13, 110, 253, 0.08);
    --ui-text: #212529;
    --ui-text-muted: #6c757d;
    --ui-text-soft: #495057;
    --ui-bg-soft: #f8f9fa;
    --ui-border: #eceff1;
    --ui-radius-sm: 0.75rem;
    --ui-radius-md: 1rem;
    --ui-radius-pill: 999px;
    --ui-shadow-sm: 0 0.5rem 1.25rem rgba(0,0,0,.08);
    --ui-shadow-md: 0 0.85rem 2rem rgba(0,0,0,.12);
    --ui-space-1: 0.5rem;
    --ui-space-2: 0.75rem;
    --ui-space-3: 1rem;
    --ui-space-4: 1.25rem;
    --ui-space-5: 1.5rem;
    --ui-space-6: 2rem;
    --ui-title-xl: 2.2rem;
    --ui-title-lg: 1.35rem;
    --ui-title-md: 1.1rem;
    --ui-body: 1rem;
    --ui-body-lg: 1.05rem;
    --ui-body-sm: 0.92rem;
    --ui-line: 1.7;
}

.ui-section {
    padding: 3rem 0;
}

.ui-section-soft {
    background: var(--ui-bg-soft);
}

.ui-section-header {
    margin-bottom: 1.5rem;
}

.ui-section-title {
    font-size: var(--ui-title-xl);
    line-height: 1.15;
    font-weight: 700;
    color: var(--ui-text);
    margin-bottom: 0.6rem;
}

.ui-section-subtitle {
    font-size: var(--ui-body);
    line-height: 1.65;
    color: var(--ui-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

.ui-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .ui-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--ui-shadow-md);
    }

.ui-card-body {
    padding: var(--ui-space-4);
}

.ui-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.75rem;
    border-radius: var(--ui-radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
}

.ui-badge-primary {
    background: var(--ui-primary);
    color: #fff;
}

.ui-badge-soft {
    background: var(--ui-primary-soft);
    color: var(--ui-primary);
}

.ui-title-lg {
    font-size: var(--ui-title-lg);
    line-height: 1.25;
    font-weight: 700;
    color: var(--ui-text);
    margin-bottom: 0.75rem;
}

.ui-title-md {
    font-size: var(--ui-title-md);
    line-height: 1.35;
    font-weight: 700;
    color: var(--ui-text);
    margin-bottom: 0.6rem;
    height:100px;
    overflow:auto;
}

.ui-text {
    font-size: var(--ui-body);
    line-height: var(--ui-line);
    color: var(--ui-text-soft);
    text-align: justify;
}

.ui-text-lg {
    font-size: var(--ui-body-lg);
    line-height: 1.8;
    color: var(--ui-text-soft);
    text-align:justify;
}

.ui-meta-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ui-text-muted);
    margin-bottom: 0.35rem;
}

.ui-meta-value {
    font-size: var(--ui-body);
    line-height: 1.6;
    color: var(--ui-text);
}

.ui-link {
    color: var(--ui-primary);
    text-decoration: none;
}

    .ui-link:hover {
        text-decoration: underline;
    }

.ui-image-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ui-image-cover-lg {
    width: 100%;
    min-height: 320px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-shadow-sm);
}

.ui-divider-top {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ui-border);
}

.ui-back-link {
    margin-top: 2rem;
}

    .ui-back-link .btn {
        border-radius: var(--ui-radius-pill);
        padding: 0.65rem 1rem;
    }

.ui-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.75rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .ui-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .ui-scroll::-webkit-scrollbar-thumb {
        background: #c9ced3;
        border-radius: 999px;
    }

.ui-scroll-item {
    scroll-snap-align: start;
}

.ui-icon-chip {
    width: 42px;
    height: 42px;
    border-radius: 0.85rem;
    background: var(--ui-primary-soft);
    color: var(--ui-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

    .ui-icon-chip svg {
        width: 18px;
        height: 18px;
    }

.ui-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.ui-info-card {
    background: var(--ui-bg-soft);
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius-md);
    padding: 1rem;
    height: 100%;
}

.ui-readmore {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ui-primary);
    text-decoration: none;
    cursor: pointer;
}

    .ui-readmore:hover {
        text-decoration: underline;
    }

    .ui-readmore.collapsed::after {
        content: "Leggi di più";
    }

    .ui-readmore:not(.collapsed)::after {
        content: "Mostra meno";
    }

@media (max-width: 991.98px) {
    .ui-section {
        padding: 2rem 0;
    }

    .ui-section-title {
        font-size: 1.8rem;
    }

    .ui-image-cover-lg {
        min-height: 260px;
        max-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .ui-section {
        padding: 1.5rem 0;
    }

    .ui-section-title {
        font-size: 1.45rem;
    }

    .ui-section-subtitle,
    .ui-text,
    .ui-text-lg,
    .ui-meta-value {
        font-size: 0.95rem;
    }

    .ui-title-lg {
        font-size: 1.05rem;
    }

    .ui-title-md {
        font-size: 1rem;
    }

    .ui-card-body,
    .ui-info-card {
        padding: 0.9rem;
    }

    .ui-image-cover {
        height: 190px;
    }

    .ui-image-cover-lg {
        min-height: 220px;
        max-height: 280px;
        border-radius: 0.9rem;
    }

    .ui-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .ui-badge {
        font-size: 0.72rem;
        padding: 0.38rem 0.65rem;
    }
}






/* personalizzato   */
.navbar-nav .nav-link {
    text-transform: none !important;
}

.logo img {
    max-height: 150px !important;
}

#login_username {
    display: contents;
    line-height: 5px;
    margin: 10px 15px;
}

#logout {
    line-height: 30px !important;
}

#page-content {
    padding:10px 20px;
}

.popup-anno:hover {
    background-color: #fe5a3f;
}

.popup-img, .popup-anno {
    background: #0a1426;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    font-size: 24px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 500;
}

.cases-item .popup-img:hover, .cases-item .popup-anno:hover {
    background: #2363d5;
    color: #ffffff
}

.popup-img:after, .popup-anno:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: 10;
    border: 3px dashed #ffffff;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
}

.cases-item:hover .popup-img:after, .cases-item:hover .popup-anno:after {
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}

.cases-item:hover .popup-img, .cases-item:hover .popup-anno {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.page-content {
    padding: 15px;
}

/* Home */
#box-icon .featured-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#box-icon .featured-desc {
    margin-top: auto;
}

#progetti .post-card .card-img-top {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}


#progetti_hover .service-img {
    aspect-ratio: 4 / 3; /* oppure 16 / 9 */
}

#progetti_hover .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.owl-carousel .item {
    display: flex;
    height: 100%;
}


#pubblicazioni {
    background: var(--ui-bg-soft);
    padding: 3rem 0;
    padding-bottom: 30px !important;
}

#pubblicazioni .cases-item img {
    filter: grayscale(100%);
    opacity: 0.6;
}

#pubblicazioni .cases-item:hover img {
    filter: none;
    opacity: 1;
}


.circle-area .circle-shape-wrapper {
    display: flex;
    align-items: center;
}



@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .circle-shape-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .circle-shape-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
    .circle-shape-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
    .circle-shape-wrapper {
        justify-content: center;
    }
}


.counter-card.style-1 {
    position: relative;
    text-align: center;
    transition: all 0.5s ease-out;
}

.counter-card.style-1:hover {
    z-index: 5;
    transform: scale(1.04);
    transition: all 0.5s ease-out;
}

.counter-card.style-1:nth-child(1) {
    margin-top: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(1) {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(1) {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(1) {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(2) {
    margin-top: -90px;
    z-index: 4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(2) {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(2) {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(2) {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(2) .content {
    /*    background-color: #CFF480;*/
    border: none;
    margin-left: -58px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #7ECAEB;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(2) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(2) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(2) .content {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(3) {
    margin-top: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(3) {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(3) {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(3) {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(3) .content {
    margin-left: -58px;
    background-color: #FFF089;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(3) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(3) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(3) .content {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(4) {
    margin-top: -90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(4) {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(4) {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(4) {
        margin: 0;
    }
}

.counter-card.style-1:nth-child(4) .content {
/*    background-color: #FFF089;*/
    border: none;
    margin-left: -58px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-card.style-1:nth-child(4) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1:nth-child(4) .content {
        margin: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-1:nth-child(4) .content {
        margin: 0;
    }
}

.counter-card.style-1 .content {
    width: 450px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px;
    background-color: #ffffff;
    /*border: 1px solid #7ECAEB;*/
    border-radius: 50%;
    gap: 16px;
    background-color: #CFF480;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .counter-card.style-1 .content {
        width: 322px;
        height: 322px;
        padding: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1 .content {
        width: 335px;
        height: 335px;
        padding: 30px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
    .counter-card.style-1 .content {
        width: 318px;
        height: 318px;
        padding: 30px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1699px) {
    .counter-card.style-1 .content {
        width: 400px;
        height: 400px;
    }
}

.counter-card.style-1 .content .number {
    font-size: 95px;
    font-weight: 600;
    line-height: 104.5px;
    letter-spacing: -1.425px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .counter-card.style-1 .content .number {
        font-size: 68px;
        line-height: 76px;
        letter-spacing: -0.96px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-card.style-1 .content .number {
        font-size: 68px;
        line-height: 76px;
        letter-spacing: -0.96px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
    .counter-card.style-1 .content .number {
        font-size: 68px;
        line-height: 76px;
        letter-spacing: -0.96px;
    }
}

.counter-card.style-1 .content .title {
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
    color: #525256;
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
    .counter-card.style-1 .content .title {
        font-size: 16px;
        line-height: 30px;
    }
}

.counter-card.style-2 .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-2 .content {
        gap: 0;
    }
}

.counter-card.style-2 .content .number {
    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
    letter-spacing: -0.72px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .counter-card.style-2 .content .number {
        font-size: 38px;
        line-height: 48.6px;
    }
}

.counter-card.style-2 .content .title {
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
    color: #525256;
    letter-spacing: initial;
}





/* ==== solutions 1 style ==== */
.solution1 {
    color:red;
}

.solution1 .images {
    position: relative;
}

    .solution1 .images .image img {
        width: 100%;
    }

@media (max-width: 991px) {
    .solution1 .images .image {
        /*height: 300px;*/
    }

        .solution1 .images .image img {
            width: auto;
        }
}

.solution1 .images::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/circle/solution-img-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transform: scale(1.4);
    z-index: -2;
    animation-name: round-circle5;
    animation-duration: 72s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

/* Icon box all */

.solution1 .icon-boxs-all1 {
    margin-top: -30px;
}

@media (max-width: 991px) {
    .solution1 .icon-boxs-all1 {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .solution1 .icon-boxs-all1 {
        margin-bottom: 50px;
    }
}

.solution1 .icon-boxs-all2 {
    margin-top: -30px;
}

@media (max-width: 991px) {
    .solution1 .icon-boxs-all2 {
        margin-top: 50px;
    }
}

@media (max-width: 575px) {
    .solution1 .icon-boxs-all2 {
        margin-top: 50px;
    }
}

/* Icon Box */

.solution1 .icon-box {
    display: flex;
    align-items: center;
    margin-left: 58px;
    width: 325px;
}

    .solution1 .icon-box.middle {
        margin: 100px 0px 100px 120px;
    }

@media (max-width: 991px) {
    .solution1 .icon-box.middle {
        margin: 40px 0px;
    }
}

@media (max-width: 575px) {
    .solution1 .icon-box.middle {
        margin: 40px 0px;
    }
}

.solution1 .icon-box.left .text {
    text-align: end;
}

.solution1 .icon-box.right .text {
    text-align: start;
}

.solution1 .icon-box .text a {
    transition: all .4s;
}

    .solution1 .icon-box .text a:hover {
        color: #4A43DD;
    }

/* Color 1 */

.solution1 .icon-box.color1 .icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    /*background-color: #4A43DD;*/
    border-radius: 50%;
    margin-left: 16px;
    transition: all .4s;
}

    .solution1 .icon-box.color1 .icon img {
        transition: all .4s;
    }

.solution1 .icon-box.color1:hover .icon img {
    transform: rotateY(180deg);
}

/* Color 2 */

.solution1 .icon-box.color2 .icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    /*background-color: #10002B;*/
    border-radius: 50%;
    margin-left: 16px;
    transition: all .4s;
}

    .solution1 .icon-box.color2 .icon img {
        transition: all .4s;
    }

/*.solution1 .icon-box.color2:hover .icon {
    background-color: #4A43DD;
}*/

    .solution1 .icon-box.color2:hover .icon img {
        transform: rotateY(180deg);
    }

/* Unic */

.solution1 .icon-box.unic {
    margin-left: 180px;
    margin-right: -90px;
}

@media (max-width: 991px), (max-width: 575px) {
    .solution1 .icon-box.unic {
        margin-left: 0;
        margin-right: 0;
    }
}


@media (min-width: 991px), (max-width: 1280px) {
    .solution1 .icon-box.unic {
        margin-left: 72px;
    }
}

@media (min-width: 1281px) {
    .solution1 .icon-box.unic {
        margin-left: 181px;
    }
}
/* Icon Box 2 */

.solution1 .icon-box2 {
    display: flex;
    align-items: center;
    margin-right: 58px;
    width: 325px;
}

@media (max-width: 991px), (max-width: 575px) {
    .solution1 .icon-box2 {
        margin-right: 0;
    }
}

.solution1 .icon-box2.middle {
    margin: 100px 120px 100px 0px;
}

@media (max-width: 991px), (max-width: 575px) {
    .solution1 .icon-box2.middle {
        margin: 40px 0px;
    }

    .text-fixed1, .text-fixed2 {
        position: absolute;
        z-index: 2;
    }

    .text-fixed1 {
        margin-top: -130px;
    }
}

.solution1 .icon-box2.color1 .icon,
.solution1 .icon-box2.color2 .icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-right: 16px;
    transition: all .4s;
}

.solution1 .icon-box2.color1 .icon {
    /* background-color: #4A43DD;*/
}

.solution1 .icon-box2.color2 .icon {
    /*background-color: #10002B;*/
}

.solution1 .icon-box2:hover .icon img {
    transform: rotateY(180deg);
}

/* Animation */

@keyframes round-circle5 {
    0% {
        transform: rotate(0deg) scale(1.4);
    }

    100% {
        transform: rotate(1000deg) scale(1.4);
    }
}

@media (max-width: 991px), (max-width: 575px) {
    @keyframes round-circle5 {
        0% {
            transform: rotate(0deg) scale(1.1);
        }

        100% {
            transform: rotate(1000deg) scale(1.1);
        }
    }

}

/* ==== solutions 1 style ==== */


/* Fine Home */

.text-justify {
    text-align: justify;
}



@media (min-width: 992px) {
    .navbar-nav .nav-link {
        line-height: 50px;
    }

    .fullscreen-banner { /*.banner.p-0.pos-r.fullscreen-banne*/
        height: 500px !important;
    }
}


.counter-icon img {
    width: 100px;
}


.tox-promotion-link {
    display: none !important;
}

.banner-fixed-content {
    pointer-events: none;
    height: 0px;
}

.view-all {
    text-align: center;
    margin-top: 10px;
}
.view-all .btn {
    color: #fff;
    background: #2363d5;
}

.view-all .btn:hover {
    color: #d6d4d4;
}

.text-justify {
    text-align: justify;
}


#progetti .list-inline {
    height: 60px;
}



