section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    text-align: right;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.img-cont{
    max-width: 200px;
    width: 40%;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.shde{
    box-shadow:0 0 1.5rem #7B1918;
}

.icall{
    box-shadow: 0 0 1.5rem #202b43;
}

section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text{
    flex: 1;
    padding: 0 1.5rem;
    font-weight: 300;
    font-size: larger;
}

.right{
    text-align: left;
    flex-direction: row-reverse;
}

@media screen and (max-width:768px){
    .text{
        font-size:small;
    }
}

@media screen and (max-width:496px){
    section{
        height: fit-content;
        padding: 0 0.5rem;
    }
    .text{
        padding-right: 0;
        font-size: 0.7rem;
    }
    .img-cont{
        width: 25%;
    }
    .right .text{
        padding-left: 0;
    }
}

@media screen and (max-width:351px){
    section{
        flex-direction: column !important;
        height: fit-content;
        text-align: center !important;
    }
    .text{
        padding: 0 1rem;
    }
    .img-cont{
        width: 100%;
        max-width: 200px;
        aspect-ratio: 1;
        margin-bottom: 1rem;
    }
}