html,body{
    width:100%;
    height: auto;
}
.parent{
    height: 100vh;
}
.parent>.row{
    display: flex;
    align-items: center;
    height: 100%;
}
.logo-cns{
	margin-left: 15%;
}
.col img{
    height:200px;
    width: 100%;
    cursor: pointer;
    transition: transform 1s;
    object-fit: cover;
    margin-top: 20px;
}
.col label{
    overflow: hidden;
    position: relative;
}
.imgbgchk:checked + label>.tick_container{
    opacity: 1;
}

i.bi.bi-check2{
    margin-right: 0 !important;
    font-weight: 600;
}

.btn{
    box-shadow: 2px 2px 1px #999;
}


/* ANIMATION */
.imgbgchk:checked + label>img{
    transform: scale(1.25);
    opacity: 0.3;
}
.tick_container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}
.tick {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 6px 12px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
}

.card-header .fa {
    transition: .3s transform ease-in-out;
}
.card-header .collapsed .fa {
    transform: rotate(90deg);
}