@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}


.projectContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background: #F0F8FF;
}

.projectCard{
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


.projectCard .imgBx{
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 15px;
}

.projectCard .imgBx img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.projectCard .imgBx::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #F0F8FF;
}

.projectCard .imgBx::after{
    content: '';
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #F0F8FF;
}

.projectCard .content{
    position: relative;
    width: 100%;
    height: 150px;
    background: #004170;
    border-radius: 15px;
    border-top-left-radius:0 ;
}

.projectCard .content ul{
    padding: 0 20px;
    color: #fff;
    font-size: 10px;
/*    padding-bottom: 5px;*/
    list-style: none;
}

.projectCard .content p{
    font-size: 12px;
}

.projectCard .content .price{
    position: absolute;
    top: -52%;
    height: 52%;
    width: 80%;
    background: #004170;
    border-top: 10px solid #F0F8FF;
    border-right: 10px solid #F0F8FF;
    border-top-right-radius: 25px;
}

.projectCard .content .price a{
    position: relative;
    background: #fff;
    padding: 10px 20px;
    margin: 15px;
    display: block;
    border-radius: 7px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #004170;
    transition: 0.5s;
    border: 2px solid #004170;
}

.projectCard .content .price a:hover{
    color: #fff;
    background: #004170;
    border: 2px solid #fff;
}

.projectCard .content .price::before{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0#F0F8FF ;
}

.projectCard .content .price::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #004170;
}

@media  screen and (max-width: 768px) {
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: auto;
        width: 100%;
        margin: 20px 0;
    }
}


/*
@media only screen and (min-width: 1921px) and (max-width: 2560px)
{   
   .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 100vh;
        width: 100%;
        margin: 10px 0;
    }
    
}


@media only screen and (min-width: 1367px) and (max-width: 1920px)
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 80vh;
        width: 80%;
        margin: 20px 0;
    }
   
    
}

@media only screen and (min-width: 993px) and (max-width: 1366px)
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 70vh;
        width: 70%;
        margin: 30px 0;
    }
   
}


@media only screen and (min-width: 992px) and (max-width: 1200px)
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 60vh;
        width: 60%;
        margin: 40px 0;
    }
   
    
}

@media only screen and (min-width: 769px) and (max-width: 991px)
{
   .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 50vh;
        width: 50%;
        margin: 50px 0;
    }

    
}

@media only screen and ( max-width: 768px )
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 40vh;
        width: 40%;
        margin: 60px 0;
    }

}


@media only screen and (min-width: 576px) and (max-width: 767px)
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 30vh;
        width: 30%;
        margin: 70px 0;
    }
}



@media only screen and (min-width: 320px) and (max-width: 575px)
{
    .projectContainer {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .projectCard {
        height: 20vh;
        width: 20%;
        margin: 80px 0;
    }
} */