@charset "utf-8";
/* CSS Document */
/* ===== CVI SECTION ===== */

.cvi-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

/* CIRCLE */

.cvi-circle{
    width: 310px;
    height: 310px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, #1e5a91, #112352);
    border: 14px solid rgb(71 128 181 / 77%);
    box-sizing: border-box;
}
.cvi-circle2{
    width: 310px;
    height: 310px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, #1e5a91, #112352);
    border: 14px solid rgb(71 128 181 / 77%);
    box-sizing: border-box;
}
/* TEXT */

.cvi-content{
    text-align: center;
    color: #ffffff;
}

.cvi-content p{
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 600;
}

/* ARROW */

.cvi-arrow{
    font-size: 42px;
    color: #222222;
    font-weight: 300;
    line-height: 1;
}

/* RESPONSIVE */

@media(max-width:768px){

    .cvi-section{
        flex-direction: column;
        gap: 22px;
    }

    .cvi-arrow{
        transform: rotate(90deg);
        font-size: 34px;
    }

    .cvi-circle{
        width: 230px;
        height: 230px;
    }
}

@media(max-width:480px){

    .cvi-circle{
        width: 200px;
        height: 200px;
        padding: 25px;
    }

    .cvi-content p{
        font-size: 14px;
        line-height: 1.5;
    }
}



.cv-section{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 20px;
    flex-wrap: wrap;
}

/* LEFT IMAGE CIRCLE */

.cv-image-circle{
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;

    border: 14px solid rgba(180,180,180,0.45);

    margin-right: -45px;
}

.cv-image-circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-image-circle2{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;

    border: 14px solid rgba(180,180,180,0.45);

    margin: 15px;
}

.cv-image-circle2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* RIGHT TEXT CIRCLE */
.cv-text-circle{
    width: 430px;
    height: 430px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px;
    position: relative;
    background: linear-gradient(135deg, #1e5a91, #112352);
    border: 14px solid rgb(71 128 181 / 77%);
}
/* TEXT CONTENT */
.cv-content{
    text-align: center;
    max-width: 290px;
	color: #fff;
}
.cv-content h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}
.cv-content p{
    font-size: 21px;
    line-height: 1.7;
    font-weight: 600;
}
/* RESPONSIVE */
@media(max-width:768px){
    .cv-section{
        flex-direction: column;
    }

    .cv-image-circle{
        margin-right: 0;
        margin-bottom: -40px;
        width: 220px;
        height: 220px;
    }

    .cv-text-circle{
        width: 360px;
        height: 360px;
        padding: 45px;
    }

    .cv-content h2{
        font-size: 26px;
    }

    .cv-content p{
        font-size: 17px;
    }
}

@media(max-width:480px){
    .cv-text-circle{
        width: 300px;
        height: 300px;
        padding: 30px;
    }

    .cv-content{
        max-width: 210px;
    }

    .cv-content h2{
        font-size: 22px;
    }

    .cv-content p{
        font-size: 15px;
        line-height: 1.5;
    }
}
