/*HARDWARE*/

.hardware {
    margin-top: 100px;
}

.hardware h1 {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--light-color);
}

.hardware h2 {
    font-weight: 300;
    font-style: normal;
    margin-bottom: 2rem;
}

.hardware img {
    max-width: 300px;
    width: 100%;
    height: auto;
    justify-self: center;
}

.text a {
    font-weight: 500;
    color: #375BA9;
}

.option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    margin: 0 2rem;
    padding: 2rem;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    background-color: white;
    border-radius: 5px;
}

.option h3 {
    color: #375BA9;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.option p {
    font-size: 1.2rem;
}

.option li {
    display: flex;
    gap: 1rem;
    align-content: center;
    align-items: center;
}

.option i {
    color: #375BA9;
}

.enterprise {
    margin: 3rem 2rem;
    box-shadow: rgba(254, 208, 134, 1) 6px 0px 40px -16px ;
    position: relative;
}

.enterprise .option {
    margin: 0;
}

.enterprise_logo {
    letter-spacing: 10px;
    text-orientation: sideways;
    writing-mode: vertical-lr;
    position: absolute;
    height: -webkit-fill-available;
    padding: 1rem;
    background-color: beige;
    color: var(--dark-color);
    font-size: 1.5rem;
    text-align: center;
    transform: rotate(180deg);
}

@media(max-width:915px){
    .option {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .enterprise .option {
        padding-left: 4rem;
        gap:0;
    }

    .option h3 {
        text-align: center;
    }

    .enterprise_logo {
        font: 0.5rem;
        padding: 0.3rem;
    }
}
