main.home {
    display: flex;
    flex-direction: column;
    gap: 100px;   
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}
main.home .box1 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
main.home .box1 .badge {
    color: white;
    background: rgba(52, 199, 89, 0.15);
    outline: 1px solid rgb(52, 199, 89);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 30px;
    border-radius: 100px;
    font-family: "SN Pro", sans-serif;
}
main.home .box1 h1 {
    text-align: center;
    font-size: 46px;
    line-height: 56px;
    font-family: "SN Pro", sans-serif;
    font-weight: 900;
}
main.home .box1 h1 span {
    font-family: "SN Pro", sans-serif;
    border-bottom: 5px solid rgb(0, 122, 255);
    font-weight: 900;
}
main.home .box1 .description {
    font-family: "SN Pro", sans-serif;
    font-weight: 500;   
}
main.home .box1 .buttons {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
main.home .box1 .buttons .boxButton {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    min-width: 100px;
}
main.home .box1 .buttons .boxButton .button {
    background: rgb(28, 28, 30);
    outline: 1px solid rgba(255, 255, 255, 0.25);
    outline-offset: -1px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 35px;
    border-radius: 100px;
}
main.home .box1 .buttons .boxButton .label {
    font-size: 12px;
    opacity: 0.5;
    text-align: center;
}
main.home .box1:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: rgb(0, 122, 255);
    width: 200px;
    height: 200px;
    margin-left: -200px;
    margin-top: -50px;
    border-radius: 1000px;
    filter: blur(150px)
}
main.home .box1:after {
    content: "";
    position: absolute;
    z-index: -1;
    background: rgb(97, 85, 245);
    width: 200px;
    height: 200px;
    margin-left: 200px;
    margin-top: 50px;
    border-radius: 1000px;
    filter: blur(100px)
}
main.home .box2 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
main.home .box2 .cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
main.home .box2 .cards .card {
    background: rgb(28, 28, 30);
    outline: 1px solid rgba(255, 255, 255, 0.25);
    outline-offset: -1px;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
main.home .box2 .cards .card .icon.calendar {
    mask-image: url(/static/imgs/upd-cards/calendar.png);
}
main.home .box2 .cards .card .icon.newspaper {
    mask-image: url(/static/imgs/upd-cards/newspaper.png);
}
main.home .box2 .cards .card .icon.person {
    mask-image: url(/static/imgs/upd-cards/person.2.png);
}
main.home .box2 .cards .card .icon.devices {
    mask-image: url(/static/imgs/upd-cards/macbook.and.iphone.png);
}
main.home .box2 .cards .card .icon.gear {
    mask-image: url(/static/imgs/upd-cards/gear.png);
}
main.home .box2 .cards .card .icon.lock {
    mask-image: url(/static/imgs/upd-cards/lock.png);
}
main.home .box2 .cards .card .icon {
    margin-bottom: auto;
    width: 90px;
    height: 40px;
    margin-bottom: 10px;
    background: white;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: left;
}
main.home .box2 .cards .card .card__title {
    font-family: "SN Pro", sans-serif;
    font-weight: 700;
    font-size: 20px
}
main.home .box2 .cards .card .card__description {
    font-size: 14px;
    opacity: 0.5;
    font-family: "SN Pro", sans-serif;
}
main.home .box3 {
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
main.home .box3 .cards {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}
main.home .box3 .cards .card {
    outline-offset: -1px;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 300px;
    align-items: center;
    box-sizing: border-box;
    padding-top: 20px;
}
main.home .box3 .cards .card img {
    max-width: 100%;
}
main.home .box3 .cards .card .card__title {
    font-size: 28px;
    font-family: "SN Pro", sans-serif;
    font-weight: 900;
    margin-top: -40px
}
main.home .box3 .cards .card .card__button {
    background: rgb(28, 28, 30);
    outline: 1px solid rgba(255, 255, 255, 0.25);
    outline-offset: -1px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 35px;
    border-radius: 100px;
    margin-top: 20px;
}
main.home .box3 .cards .card .card__label {
    font-size: 12px;
    opacity: 0.5;
}
@media screen and (max-width: 1040px) {
    main.home {
        width: 100%;
        margin-left: none;
        margin-right: none;
    }
    main.home .box1 {
        width: 100vw;
        margin-left: none;
        margin-right: none;
        padding: 20px;
    }
    main.home .box1 h1 {
        font-size: 24px;
        line-height: 34px;
    }
    main.home .box1 .description {
        text-align: center;
    }
    main.home .box1 .buttons {
        flex-wrap: wrap;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    main.home .box2 {
        width: 100vw;
        margin-left: none;
        margin-right: none;
        padding: 20px;
    }
    main.home .box2 .cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    main.home .box3 {
        width: 100vw;
        padding: 20px;
    }
    main.home .box3 .cards {
        width: 100%;
        overflow-x: auto;
        flex-direction: column;
    }
    main.home .box3 .cards .card {
        min-width: 250px;
    }
    main.home .box3 h1 {
        font-size: 20px;
    }
    
}