*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

p{
    color: #888;  
}

.content{
    position: relative;
}

.main-title{
    color: #241f62 !important;
    font-size: 61px;
    margin-bottom: 40px !important;
}

.device-card h4{
    color: #241f62 !important;
}

.devices-grid{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.device-card{
    background: #ebebeb;
    padding: 20px 40px;
    border-radius: 8px;
}

.device-card .logo-box{
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.description{
    text-align: center;
    color: #73737b;
    height: 114px;
}

.link{
    font-size: 11px;
    text-align: center !important;
    width: 100%;
    display: block;
    margin-top: 10px;
    color: #73737b;
}

.device-info{
    height: 85px;
    color: #241f62 !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 8px !important;
}

.device-info .icon{
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-info .text-box{
    grid-column: span 3;
    padding: 10px 20px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}


.device-info .text-box.code{
    grid-column: span 4 !important;
    align-items: center !important;
    font-size: 18px;
}

h2.subtitle{
    margin-top: 50px !important;
    color: #241f62;
    font-size: 50px;
}



.step{
    padding: 4px;
    margin-top: 44px;
    border-radius: 55px;
    position: relative;
    background: rgb(45,151,209);
    background: linear-gradient(90deg, rgba(45,151,209,1) 0%, rgba(53,181,120,1) 69%, rgba(53,181,120,1) 100%);
}

.step .step-number{
    position: absolute;
    z-index: 99999;
    top: -20px;
    left: 44%;
    padding: 10px 20px;
    background: #241f62;
    color: #fff;
    text-transform: uppercase;
}

.step .content{
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    border-radius: 52px;
    background: #fff !important;
}

.step .content p{
    color: #888;
}

.step .content p:last-child{
    margin: 0 !important;
}

.step .content h4{
    color: #241f62;
    font-weight: 500;
}

.magi-logo{
    width: 126px;
    position: absolute;
    right: -13px;
    z-index: 999999;
    top: 364px;
}


@media screen and (max-width: 992px) {
    .devices-grid {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: 1fr;
    }

    .magi-logo {
        width: 70px;
        position: absolute;
        right: 0px;
        z-index: 999999;
        top: 50%;
    }
}
