
/* =============================== PARAGRAPH AND IMG SECTION ================================= */

.section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    
}

/* ~~~ PARAGRAPH CARD AND PARAGRAPH ~~~ */

.para{
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    
}

.para p{
    max-width: 600px;
    
}

/* Tickle */
.para-card{
    background-color: #1E1E1E;
    padding: 50px;
    /* background-color: #FFFFFF; */
    box-shadow: 0px 4px 8px rgba(139, 134, 134, 0.2); 
    transition: all 0.5s;
}

.para-card:hover{
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.2);
}

.para-card h1{
    margin-top: 0px;
}


/* ~~~ BULLETS FOR THE PARAGRAPH ~~~ */

.bullet-for-para{
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 5px;
}


.bullet{
    width: 30px;
}

.bullet img{
    width: 100%;
    padding-top: 3px;
}

/* ~~~ IMAGE DECORATION ~~~ */

.sub-img{
    height: 600px;
}

.sub-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.shop-btn-pos{
    display: flex;
    margin-top: 10px;
    justify-content: end;
}

/* ~~~ SHOPING BUTTON DECORATION ~~~ */

.shop-btn{
    padding: 10px;
    font-family: "Patrick Hand",Cinzel;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 0px 15px;
    transition: 1s all;
}

.shop-btn:hover{
    border-radius: 15px 0px;
    
}


/* ~~~~ LIST ITEMS DECORATION ~~~~ */

.list-items{
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

}


/* ~~~~~~~ MEDIA QUERIES FOR A LARGER LAPTOP ~~~~~~~~~~ */

@media screen and (max-width: 1440px) {
    

    .para-card{
        max-width: 500px;
        
    }

    .para-card h1{
        font-size: 25px;
        text-align: left;
    }

    .sub-img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .list-items h2{
        text-align: left;
    }
    
}


/* ~~~~~~ MEDIA QUERIES FOR A SMALLER LAPTOP ~~~~~~~ */

@media screen and (max-width: 1024px) {
    .para-card{
        max-width: 300px;
    }

    .para-card h1 {
        font-size: 20px;
    }

    .sub-img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .bullet{
        width: 20px;
    }
    
    .shop-btn{
        font-size: 15px;
    }

    .sub-img{
        height: 500px;
    }

    
}

/* ~~~~~ MEDIA QUERIES FOR A TABLET ~~~~~~~ */

@media screen and (max-width: 720px) {
    
    .para {
        text-align: justify;
        position: absolute;
        justify-content: center;
        align-items: center;
        place-content: center;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px; 
    }
    
    

    .section{
        margin: 0px;
        padding: 0px;
        position: relative;
        grid-template-columns: 1fr;
        place-items: center;
    }

    .list-items{
        display: flex;
        justify-content: left;
        margin-left: 25px;       
    }

    .mobile-deleting-img{
        display: none;
    }

    .para-card{
        width: 300px;
        opacity: 0.9;
        padding: 30px;
    }
    
    .list-items{
        display: flex;
        justify-content: left;
        margin: 15px;
        text-align: left;
    }

    .para-card p{
        text-align: justify;
    }

    .para-card h1{
        font-size: 20px;
    }
    
    .bullet-for-para{
        grid-template-columns: 20px 1fr;
    }
    
    .list-items h2{
        font-size: 20px;
    }

    
}


/* ~~~~~~ MEDIA QUERIES FOR THE MOBILE VIEW ~~~~~~~ */


@media screen and (max-width: 330px) {
    
    

    .para-card{
        width: 250px;
        opacity: 0.9;
        padding: 30px;
    }
    
    .list-items{
        display: flex;
    }

    .para-card p{
        text-align: justify;
    }

    .para-card h1{
        font-size: 20px;
    }
    
    .bullet-for-para{
        grid-template-columns: 20px 1fr;
    }
    
    .list-items h2{
        font-size: 20px;
    }

    .para{
        margin: 0px;
        
    }
    
}

