.card {        
    font-size: 1em !important;
    position:relative;
    width: 320px;
    height: 430px;    
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 5px 5px 20px #083d41; 
}

.card .box {
    color:#111;
    background: #eee;
    position: relative;
    width: 110%;
    height: 200px;
    
    border-radius: 15px;
}

.card .box:nth-child(1)::before {
    content:'';
    position: absolute;
    bottom: 0px;
    left: 105px;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 10;
    border-bottom-left-radius: 20px;
    box-shadow: -6px 6px var(--clr);
}

.card .box:nth-child(1)::after {
    content:'';
    position: absolute;
    top: 106px;
    left: -1px;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 10;
    border-bottom-left-radius: 20px;
    box-shadow: -6px 6px var(--clr);
}

.card .box:nth-child(2) {
    background: #fff;
    height: 220px;
    width: 100%;
}

.card .box:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 105px;
    left: -1px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-top-left-radius: 20px;
    z-index: 10;
    box-shadow: -6px -6px var(--clr);
}

.card .box:nth-child(2)::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 109px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-top-left-radius: 20px;
    z-index: 10;
    box-shadow: -6px -6px var(--clr);
}

.card .circle {
    position: absolute;
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    background: #0f0;
    border-radius: 50%;
    border: 10px solid var(--clr);    
}

.card .circle .imgBox,
.card .box .imgBox {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
}

.card .box .imgBox {
    border-radius: 15px;

}
 
.card .circle .imgBox img,
.card .box .imgBox video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .box .content {
    position: absolute;    
    inset: 0;
    top: -15px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;    
}

.card .box .content h2 {
    width: 100%;
    padding-left: 120px;
    text-transform: uppercase;
    font-size: 1.15em;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.1em;
    color: #083d41;    
}

.card .box .content h2 span {
    font-size: 0.75em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #222;
    text-transform: initial;
}

.card .box .content ul {
    position: relative;
    top: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0 10px;
    justify-content: space-evenly;
}

.card .box .content ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
    font-size: 0.85em;
    font-weight: 500;
    color: #222;
}

.card .box .content ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.card .box .content ul li span {
    font-size: 1.65em;
    color: #083d41;    
}

.card .box .content button {
    position: relative;
    top: 8px;
    padding: 8px 30px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    border-radius: 30px;

    border: 5px solid var(--clr);
    box-shadow: 0 0 0 10px #fff;
    transition: .5s;    
}
.card .box .content button a {
    color: #fff;
    font-size: 1.2em;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.card .box .content button:hover {    
    transition: .5s;
    background: #f5a86a;
}

.card .box .content button:hover a {
    transition: .5s;
    letter-spacing: .5em;    
}


.card .box .content button::before {
    content: '';
    position: absolute;
    top: 23px;
    left: -29px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 5px -7px #fff
}
.card .box .content button::after {
    content: '';
    position: absolute;
    top: 23px;
    right: -29px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: -5px -7px #fff
}


@media screen and (max-width:600px) {

    section[id="rrss"] .nocard {
        height: 100%;
        padding-top:50px;
        padding-bottom: 50px;
        color: #EEE;
        display: flex;
        flex-direction: column;        
        align-items: center;   
        justify-content: space-between;     
    }

    section[id="rrss"] div.nocard a img {
        width: 80px;
        height: 80px;
        filter:invert(100%);
    }
    
    section[id="rrss"] .card {           
        zoom: .6;        
    }
}

@media screen and (min-width: 600px) and (max-width: 1200px) {
    
 

    section[id="rrss"] {
        gap: 50px;        
    }

    section[id="rrss"] .nocard {
        display: none;
    }

}

@media screen and (min-width: 1200px) and (max-width: 1399px) {

    section[id="rrss"] {
        gap: 20px;        
    }    

    section[id="rrss"] .nocard {
        display: none;
    }

}

@media screen and (min-width: 1400px) {

    section[id="rrss"] .nocard {
        display: none;
    }

    div.card {
        zoom: 1;
    }
}
