.main-container{
    margin-top: 106px;
    color: #333;    
}

.grid-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "title title illustration"
    "productImg productImg  illustration"
    ;
    padding: 50px;
    background-image: url("../img/antivirus_background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.kaspersky-product-img{
    background-size: contain;
    background-image: url("../img/kaspersky/kaspersky-logo.svg");
    width: 100%;
    height: 10vh;
    grid-area: productImg;
    background-repeat: no-repeat;
    background-position: center;
}

.grid-container .grid-item.text{
    grid-area: title;
    align-self: center;
}

.grid-container .text h2{
    margin-top: 0;
    padding-top: 0;
    text-align: center;
}

.illustration{
    background-size: contain;
    background-image: url("../img/kaspersky/undraw_secure_server.svg");
    min-width: 100%;
    height: 50vh;
    grid-area: illustration;
    background-repeat: no-repeat;
    background-position: center;
}

.why-text{
    padding: 50px 50px 0px 50px;
    line-height: 2.5rem;
}
.p-alternatives{
    margin-top: 50px;
    border-bottom: 2px solid #006D5C;
    width: 80%;
    text-align: center;
    padding-bottom: 20px;
}
.grid-container-ksproducts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    width: 80%;
    gap: 40px;
}

.ks-product{
    display: flex;
    align-items:  center;
    justify-content: space-around;
}

.ks-product-name{
    width:  500px;
    text-align: left;
}

.ks-product .img{
    height: 13vh;
    width: 30%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.ks-product.product-1 .img{
    background-image: url("../img/kaspersky/product-box-KISMD.png");
}
.ks-product.product-2 .img{
    background-image: url("../img/kaspersky/product-box-KAV.png");
}
.ks-product.product-3 .img{
    background-image: url("../img/kaspersky/product-box-KTS.png");
}
.ks-product.product-4 .img{
    background-image: url("../img/kaspersky/product-box-KAV.png");
}
.ks-product.product-5 .img{
    background-image: url("../img/kaspersky/product-icon-kpm.png");
}

.btn-blue{
    margin-top: 70px;
}

@media (max-width: 1200px){

    .grid-container{
        display: flex;
        flex-direction: column;
        padding: 10px 10px;
        background-image: none;
    }

    .illustration{
        display: none;
    }

    .grid-container .text h2{
        text-align: center;
    }

    .grid-container-ksproducts{
        width: 100%;
    }
}

@media(max-width: 1060px){
    .grid-container-ksproducts{
        display: flex;
        flex-direction: column;
        width: 70%;
    }
}

@media(max-width: 650px){
    .grid-item.text h2{
        text-align: center;
    }

    .grid-item.text{
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .ks-product{
        flex-direction: column;
    }

    .ks-product .ks-product-name{
        text-align: center;
        margin: 0;
        padding: 0;
        font-size: 1.5rem;
    }

    .ks-product .img{
        height: 25vh;
        padding: 0;
        margin: 0;
    }
}