body {
    padding-top: 56px;
    font-family: 'Exo 2', sans-serif;
    height: 100%;
    margin:0;
    padding:0;
}

html{
    margin:0;
    padding:0;
}

.banner {
    padding: 100px 0 105px 0;
}

.wave {
    position: absolute;
    left: 0;
    bottom: 0;
}

.vps {

}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: 'Exo 2', sans-serif;
    min-width: 400px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

td {
    white-space: nowrap;
}

.styled-table thead tr {
    background-color: #606662;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;

}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.styled-table tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #606662;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #606662;
}


.banner-title {
    font-family: "Exo 2", sans-serif;
    font-weight: 800;
    font-size: 60px;
    text-transform: capitalize;
    color: #000 !important;
}

@media (max-width: 629px) {
    .banner-title {
        font-size: 30px;
    }
}
.rotate-45 {
    transform: rotate(-45deg);
}

.wave-bg {
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url("images/wave.svg");
    background-size: 100%;
}

.lightning-bg {
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url("images/lightning.svg");
    background-size: 22%;
}

.spaceship-bg {
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url("images/spaceship.svg");
    background-size: 22%;
}


.shield-bg {
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url("images/shield.svg");
    background-size: 8%;
    padding-left: 5%;
}
.synthogradient {
    background: -webkit-linear-gradient(#778787, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.undraggable {
    user-drag: none;
    user-select: none;
    pointer-events: none;
}


.illustration {
    width: 500px;
    z-index: 0;
    right: 200px;
}

@media (max-width: 1400px) {
    .illustration {
        display: none;
    }
}

#why-us {
    padding-bottom: 50px;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #778787;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #778787;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #778787
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #778787;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}
footer {
    padding-left: 25px;
    padding-right: 25px;
    background-color: #dddedc;
}

@media (max-width: 1000px) {
    .wave-bg {
        background-image: none;
    }
}

@media (max-width: 1000px) {
    .lightning-bg {
        background-image: none;
    }
}

@media (max-width: 1000px) {
    .spaceship-bg {
        background-image: none;
    }
}

.banner-description {
    font-family: monospace, Times, serif;
    color: #000;
    font-size: 20px !important;
}

.navbar-nav .nav-link {
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover .dropdown-menu {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer; /* Aggiunto cursor pointer */
}

.dropdown-item i {
    margin-right: 10px;
}

.dropdown-item .text {
    margin-right: 10px;
}

.dropdown-item .description {
    font-size: 80%;
    color: #6c757d;
}