*
{
    transition: 0.7s;
}
.R1 a
{
    background: #525bdd;
    border-color: transparent;
}
#navbarDropdown:hover
{
    color: #525bdd;
}
#rd_rd a
{
    background: transparent;
    color: #444;
}

.description{
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #ebf5fc;
    margin-right: 70%;
}
section
{
    margin-left: 10%;
    gap: 40px;
}


.containerrr{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.containerrr .card{
    position: relative;
    width: 320px;
    height: 440px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
                inset -5px -5px -5px rgba(255, 255, 255, 0.5),
                5px 5px 5px rgba(0, 0, 0, 0.05),
                -5px -5px -5px rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 30px;
}

.containerrr .card .box{
 position: absolute;   
 top: 20px;
 left: 20px;
 right: 20px;
 bottom: 20px;
 background: #ebf5fc;
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 border-radius: 15px;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: 0.5s;

}

.containerrr .card:hover .box{
    transform: translateY(-50px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg,#b95ce9, #4f29cd);
}

.containerrr .card .box .contenttt{
padding: 20px;
text-align: center;

}


.containerrr .card .box .contenttt h2{
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8em;
    color: rgba(0, 0, 0, 0.02);
    transition: 0.5s;
    pointer-events: none;
}

.containerrr .card:hover .box .contenttt h2
{
    color: rgba(0, 0, 0, 0.05);
}


.containerrr .card .box .contenttt h3{
font-size: 1.8em;
color: #777;
z-index: 1;
transition: 0.5s;
}

.containerrr .card .box .contenttt p{
    font-size: 1em;
    font-weight: 300;
    color: #777;
    z-index: 1;
    transition: 0.5s;
}

.containerrr .card .box .contenttt a{
position: relative;
display: inline-block;
padding: 8px 20px;
background: #03a9f4;
margin-top: 15px;
border-radius: 20px;
color: #fff;
text-decoration: none;
font-weight: 400;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02) ;
}

.containerrr .card:hover .box .contenttt h3,
.containerrr .card:hover .box .contenttt p{
    color: #fff;
}

.containerrr .card:hover .box .contenttt a{
    background: #ff568f;
}