.hero{
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}


/* .profile-container{
    grid-column: 8 / span 4;
    display: flex;
    max-width: 100%;
    width: 24rem;
    border-radius: 30rem;
    background-color: var(--color-whitesmoke-100);
    overflow: hidden;
    justify-content: center;
    padding: 2rem 1.62rem;
    box-sizing: border-box;
    min-width: 24rem;
    position: relative;
} */
.profile-container-neumorphic{
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.15), -7px -7px 5px #fff;
    animation: neumorphicEffect2 1s ease-in-out forwards;
}

@keyframes neumorphicEffect2 {
    from {
        box-shadow: none;
    }
    to {
        box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.15), -7px -7px 5px #fff;
    }
}
.profile-img{
    flex: 1;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 318px;
}

/* CWP CONTAINER*/
.cwp-container{
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 32px;
    row-gap: 50px;
    justify-items: center;
    align-content: center;

}

.cwp-container h1{
    grid-column: span 12;
    
}
.toggle-container{
    grid-column: span 12;
    display: flex;
    flex-direction: row;
    gap: var( --gap-32);
    justify-content: center;
    align-items: center;
}

.toggle-body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 280px;
    border-radius: 90px;
    background-color: var(--color-gainsboro);
    box-shadow: -13px -13px 9px #fff inset,
    11px 11px 24px rgba(0, 0, 0, 0.27) inset;
}

.toggle-btn.move {
    position: absolute;
    top: 130px; 
    left: 0;
    right: 0;
    margin: auto; 
    transition: top .8s ease-in-out; 
}
.btn-two.move-two{
    position: absolute;
    bottom: 135px;
    left: 0;
    right: 0;
    margin: auto; 
    transition: bottom .8s ease-in-out;   
}

.btn-two{
    position: absolute;
    bottom: 0; 
    left: 0;
    right: 0;
    width: 150px;
    height: 150px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--color-whitesmoke-100);
    box-shadow: -6px -8px 20px rgba(244, 196, 44, 0.35) inset,
      4px 4px 8px #fff inset, -4px -1px 10px #fff,
      6px 8px 15px rgba(8, 84, 103, 0.3);
    z-index: 1;
    
}

.toggle-btn{
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    width: 150px;
    height: 150px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--color-whitesmoke-100);
    box-shadow: -6px -8px 25px rgba(8, 84, 103, 0.35) inset,
      4px 4px 8px #fff inset, -4px -1px 10px #fff,
      6px 8px 15px rgba(8, 84, 103, 0.3);
    z-index: 1;  
}
   

.icon-two{
    bottom: 0; 
    left: 0;
    right: 0;
    margin: auto;
    width: 150px;
    height: 130px;
    position: absolute;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    font-size: var(--h2); 
}

.toggle-icon{
    top: 0; 
    left: 0;
    right: 0;
    margin: auto;
    width: 150px;
    height: 130px;
    position: absolute;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}
.toggle-icon {
    font-size: var(--h2);
}

.cwp-info{
    grid-column: 3/ span 9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--body-text);
}



@media screen and (max-width: 780px){
   .hero{
    grid-column: span 4;
    display: flex;
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
    padding: var(--gap-20);
   } 


/* CWP  */
.cwp-container{
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: var(--gap-50);
    justify-items: center; 
    align-content: center;
    padding: var(--gap-20);

}

.cwp-container h1{
    text-align: center;
    
}
.toggle-container{
    display: flex;
    flex-direction: column;
    gap: var( --gap-32);
    justify-content: center;
    align-items: center;
}

.toggle-body{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 150px;
}

.toggle-btn {
    transition: left .8s ease-in-out; 
}

.toggle-btn.move {
    position: absolute;
    left: 130px; 
    right: unset;
    top: 0;
    bottom: 0;
    margin: auto; 
    transition-property: left;

}
.btn-two.move-two{
    position: absolute;
    right: 130px; 
    top: 0;
    bottom: 0;
    left: unset;
    margin: auto;
    transition: right .8s ease-in-out; 
}

.btn-two{
    position: absolute;
    left: 130px; 
    top: 0;
    bottom: 0;

    
}

.toggle-btn{
    position: absolute;
    right: 130px; 
    top: 0;
    bottom: 0;
 
}
   

.icon-two{
    left: 130px;
    bottom: 0;
    top: 0;

}

.toggle-icon{
    top: 0; 
    bottom: 0;
    right: 130px;

}
.toggle-icon {
    font-size: var(--h2);
}

.cwp-info{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
}
