@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

:root {
    --clr: #083d41;    
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--clr);
}

.card {
    position:relative;
    width: 320px;
    height: 430px;    
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.card .box {
    position: relative;
    width: 110%;
    height: 200px;
    background: #f00;
    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;
    padding: 30px 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: #333;    
}

.card .box .content h2 span {
    font-size: 0.75em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #e91e63;
    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: #999;
}

.card .box .content ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.card .box .content ul li span {
    font-size: 1.65em;
    color: #333;    
}

.card .box .content button {
    position: relative;
    top: 25px;
    padding: 8px 30px;
    border: none;
    outline: none;
    background: #03a9f4;
    border-radius: 30px;
    color: #fff;
    font-size: 1em;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: 5px solid var(--clr);
    box-shadow: 0 0 0 10px #fff;
    transition: .5s;    
}

.card .box .content button:hover {
    letter-spacing: .5em;
    background: #f5a86a;
}

.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
}