 
section.tt{
   display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.tile2{
    height: 160px;
    width: 130px;
    position: relative;
}
input[type="radio"].chx2{
    -webkit-appearance: none;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    outline: none;
    
    border: 2px solid #f7f7f7;
    
}
 
input[type="radio"].chx2:hover{
   border: 2px solid #0032a0;
    box-shadow: 15px 15px 25px rgba(2,28,53,0.05);
}
input[type="radio"].chx2:checked{
    border: 2px solid #0032a0;
    opacity:1;
   
}
 
label.chx2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    height: 93%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}
label .fas{
    font-size: 90px;
    color: #2c2c51;
}
input[type="radio"].chx2:checked + label  .fas{
    animation: grow 0.5s;
    opacity: 1;
}
@keyframes grow{
    50%{
        font-size: 80px;
    }
}
label.chx2  h6{ 
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    color: #7a7a7b;
}


 
.tile3{
    height: 120px;
    width: 120px;
    position: relative;
}
input[type="radio"].chx3{
    -webkit-appearance: none;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer; 
    outline: none;
     
    
}
 
input[type="radio"].chx3:hover{
   border: 2px solid #0032a0;
    box-shadow: 15px 15px 25px rgba(2,28,53,0.05);
}
input[type="radio"].chx3:checked{
    border: 2px solid #0032a0;
    opacity:1;
   
}
 
label.chx3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    height: 93%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}
label .fas{
    font-size: 90px;
    color: #2c2c51;
}
input[type="radio"].chx3:checked + label  .fas{
    animation: grow 0.5s;
    opacity: 1;
}
@keyframes grow{
    50%{
        font-size: 80px;
    }
}
label.chx3  h6{ 
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    color: #7a7a7b;
}

