/***** Angling *****/

/*Angling Image 1*/
.porthole {
    width: 300px; 
    height: 300px;
    border-radius: 50%;
    border: 20px solid #bfbfbf; 
    overflow: hidden;
    position: relative;
}

.porthole-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.angling_image_1_center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .angling_image_1_center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

