/* icon.css */

.container.icon {
    margin: 0px;
    width: 80px;
    aspect-ratio: 1 / 1;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0);
}

.container.icon .bkg {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 50%; 
    background: var(--goldShine); 
}

.content.icon {
    margin: 0px;
    width: 80px;
    aspect-ratio: 1 / 1;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 30%, var(--darkBlue) 100%);
}

.container.line {
    margin: 0px 20px;
    margin-bottom: 10px;
    width: calc(100% - 40px);
    height: 1px;
    background: var(--goldShine);
}

.content.icon .container.image {
    justify-content: center;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 255, 0, 0.0);
}

.content.icon .content.image {
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: calc(100% - 40px);
    height: auto;
    background-color: rgba(0, 0, 255, 0.0);
}

.content.icon .content.image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

@media
only screen and (min-width: 300px) and (max-width: 575px){

}

@media
only screen and (min-width: 576px) and (max-width: 935px){
    
}