@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&family=Nunito:wght@300;400;600;700&family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --primary-color: #4FC0D0;
    --secondary-color: #A2FF86;
    --color-one: #1B6B93;
    --color-two: #164B60;
    --color-black: #eee;
    --color-white: #fff;
}

*{
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    /*
    text-transform: capitalize;
    */
    transition: all .2s linear;
}
html{
    font-size: 62.5%;
}
body{
    max-width: 1800px;
}
.header{
    position: absolute;
    width: 100%;
    min-height: 60px;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid var(--color-black); */
    z-index: 1000;
    padding: 1rem 2%;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .head #menu_bar{
    text-align: center;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    font-size: 2rem;
    background: var(--color-two);
    color: var(--color-white);
    margin-left: .5rem;
    cursor: pointer;
    display: none;
}
.header .logo img{
    height: 60px;
    background: no-repeat cover center;
    width: 120px;
    vertical-align: middle;
}
.header ul{
    position: relative;
}
.header ul li{
    position: relative;
    list-style: none;
    float: left;
}
.header ul li a{
    color: var(--color-white);
    font-size: 1.3rem;
    padding: 1.6rem;
    text-decoration: none; 
    display: flex;
    justify-content: space-between;   
}
.header ul li a:hover{
    background: var(--color-one);
}
.header ul li ul{
    position: absolute;
    left: 0;
    width: 250px;
    background: var(--primary-color);
    display: none;
}
.header ul li:hover ul{
    display: block;
}
.header ul li ul li{
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--color-one);
}

/* Slider*/
.slider{
    margin: 6.5rem 0 0;
    position: relative;
    width: 100%;
    background: var(--color-two);
}
.slider .slide{
    height: 650px;
    overflow: hidden;
    display: none;
}
.slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .navigation-dots{
    position: absolute;
    left: 50%;
    bottom: 1%;
    transform: translate(-50%,-1%);
    text-align: center;
}
.slider .navigation-dots .dot_btn{
    display: inline-block;
    height: .7rem;
    width: 8rem;
    margin: 1rem;
    cursor: pointer;
    background: #eeeeeea1;
}
.slider .navigation-dots .dot_btn:hover{
    background: var(--color-white);
}
.slider .navigation-dots .dot_btn.active{
    background: var(--color-white);
}

.slider .info{
    position: absolute;
    background: rgba(0, 0, 0, 0.808);
    padding: 3rem;
    width: 40%;
    top: 50%;
    left: 10%;
    transform: translate(-10%,-50%);
    letter-spacing: .2rem;
    z-index: 1;
    /* border-radius: 2rem; */
    box-shadow: 0 .1rem 2rem rgba(0, 0, 0, 0.616);
    text-transform: none !important;
}
.slider .info h2{
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 2rem;
}
.slider .info p{
    color: white;
    font-size: 4rem;
    font-weight: 600;
    margin: 2rem;
}
/************ Cards ************/
.card-section{
    padding: 14rem;
    background: rgba(20, 129, 143, 0.438);
}
.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 5rem;
}
.cards .info-box{
    text-align: center;
    padding: 3rem;
    box-shadow: 0 .1rem 1rem rgba(255, 255, 255, 0.5);
    gap: 3rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.671);
}
.cards .info-box:hover{
    transform: translate(0, -10px);
}
.cards .info-box img{
    border-radius: 50%;
    width: 70%;
    object-fit: cover;
}
.cards .info-box h2{
    font-size: 2.7rem;
    color: var(--color-two);
}
.cards .info-box p{
    font-size: 1.6rem;
    margin-bottom: 3rem;
}
.cards .info-box a{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-one);
    border:  2px solid var(--color-one);
    outline: none;
    border-radius: .5rem;
    padding: 1rem 2rem;
}
.cards .info-box a:hover{
    background: var(--color-one);
    color: var(--color-white);
}
/********* BLock **********/
.section-1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assests/pics/gradient_background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem;
    display: flex;
    justify-content: left;
    align-items: center;
}
.text-box{
    background: var(--color-white);
    padding: 5rem;
    width: 60%;
    box-shadow: 0 .1rem 5rem rgb(255, 255, 255);
    margin: 10rem 2rem;
}
.text-box h1{
    font-size: 4rem;
    font-weight: 800;
}
.text-box h2{
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
}
.text-box p{
    font-size: 1.7rem;
    margin-bottom: 2rem;
}
.text-box  a{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-one);
    border:  2px solid var(--color-one);
    outline: none;
    border-radius: .5rem;
    padding: 1rem 2rem;
}
.text-box a:hover{
    background: var(--color-one);
    color: var(--color-white);
}

/*********** block 2 *********/
.section-2{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-2::after{
    position: absolute;
    content: "";
    background: var(--color-two);
    width: 100%;
    height: 100%;
    clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%);
    z-index: 1;
}
.section-2 .text-box{
    text-align: center;
    background: var(--color-one);
    padding: 5rem 10rem;
    width: 70%;
    box-shadow: 0 .1rem 0rem rgba(255, 255, 255, 0);
    z-index: 2;
}
.section-2 .text-box h1{
    font-size: 4rem;
    font-weight: 800;
}
.section-2 .text-box h2{
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 600;
}
.section-2 .text-box p{
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}
.section-2 .text-box  a{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    border:  2px solid var(--color-white);
    outline: none;
    border-radius: .5rem;
    padding: 1rem 2rem;
}
.section-2 .text-box a:hover{
    background: var(--color-white);
    color: var(--color-one);
}
/*********** section-4 *******/
.section-4{
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 5rem;
    background: #164B60;
    z-index: -2;
}
.section-4::after{
    position: absolute;
    content: "";
    background: rgb(228, 110, 0);
    width: 100%;
    height: 100%;
    clip-path: polygon(30% 0, 50% 0, 50% 100%, 30% 100%);
    z-index: -1;
}
.section-4 .text-box{
    flex: 1 1 300px;
    border-radius: .5rem;
    padding: 15rem 5rem;
    background: var(--color-white);
    margin: 20rem -15rem 0 15rem;
    box-shadow: 0 .1rem 0rem rgba(255, 255, 255, 0);
    z-index: 2;
}
.section-4 .text-box h2{
    color: var(--color-two);
    margin-bottom: 2.5rem;
}
.section-4 .text-box ul li{
    list-style: circle;
    font-size: 1.6rem;
    line-height: 3rem;
    color: var(--color-two);
}
.section-4 .img-bx{
    flex: 1 1 600px;
}
.section-4 .img-bx img{
    width: 100%;
    object-fit: cover;
}
/*********** Footer *******/
.footer{
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    background: #1B6B93;
    align-items: center;
    padding: 10rem 5rem;
}
.footer h2{
    font-size: 3.5rem;
}
.footer span{
    height: 1rem;
    width: 10rem;
    background: rgb(228, 110, 0);
    margin-bottom: 5rem;
}
.footer img{
    width: 50%;
}
/*********** semina **********/
.semina{
    margin: 5rem 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.semina .txt-bx{
    margin: 10rem 0;
}
.semina .bx-1{
    text-align: center;
}
.semina h1{
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
}
.semina h3 span{
    font-size: 2rem;
    color: var(--color-two);
}
.semina p{
    font-size: 1.7rem;
    line-height: 3rem;
}
.semina ul{
    list-style: disc;
}
.semina ul li{
    font-size: 1.9rem;
}
.semina .img-bx{
    padding: 5rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.semina .img-bx::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    clip-path: polygon(30% 0, 80% 0, 80% 100%, 30% 100%);
    background: var(--color-two);
    z-index: -1;
}
.semina .img-bx::after{
    position: absolute;
    content: "";
    left: 0;
    height: 25%;
    width: 22%;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
    background: #cc4915;
    z-index: -2;
}
.semina .bx-2{
    background: var(--color-two);
    display: flex;
    flex-direction: column;
    width: 50%;
}
.semina .img-bx img{
    width: 75%;
}
.semina table{
    border: 2px solid #1B6B93;
    margin: 2rem 0;
    border-collapse: collapse;
}
.semina table tr th{
    background: var(--color-two);
    color: white;
    padding: 1.5rem;
    font-size: 1.7rem;
}
.semina table td{
    padding: 1.5rem;
    font-size: 1.7rem;
}
.semina table .inline-row{
    background: #1B6B93;
    color: white; 
    text-align: center
}
.semina .tab-2 th,td{
    border-bottom: 1px solid #1B6B93;
}

/********* colloques ********/
.colloques{
    margin: 7rem 0;
}
.colloques h1{
    font-size: 3.5rem;
    margin-bottom: 2rem;
}
.colloques h2{
    font-size: 2.2rem;
}
.colloques p{
    font-size: 1.7rem;
    margin-bottom: 2rem;
}
.colloques p span{
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 600;
}
.colloques a{
    font-size: 1.6rem;
    color: red;
}
.colloques a:hover{
    font-size: 1.6rem;
    color: var(--color-two);
}
.colloques .first-para{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.colloques .first-para .info-txt{
    flex: 1 1 450px;
    line-height: 4rem;
    top: 0;
    right: -20px;
    transform: translate(20%);
    background: var(--color-white);
    padding: 5rem;
    border-left: 1rem solid var(--color-two);
}
.colloques .first-para .info-txt h1:first-child{
    color: var(--color-white);
    background: var(--color-two);
    padding: 2rem;
}
.colloques .first-para .img-bx{
    flex:  1 1 450px;
    width: 100%;
}
.colloques .first-para .img-bx img{
    width: 100%;
}
.colloques .sec-para{
    margin: 5rem 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.colloques .sec-para .img-bx{
    width: 70%;
}
.colloques .sec-para .img-bx img{
    width: 100%;
    object-fit: cover;
}
.colloques .sec-para .txt-bx{
    margin: -10rem 0 0;
    padding: 4rem 2rem;
    border: 1px solid #164B60;
    width: 60%;
    text-align: center;
    line-height: 4rem;
    background: var(--color-white);
    border-top: 1rem solid var(--color-two);
    border-bottom: 1rem solid #cc4915;
}
.colloques .third-para{
    display: flex;  
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.colloques .third-para .bx-2{
    margin: auto;
    width: 50%;
    display: flex;
    justify-content: space-between;
}
.colloques .img-bx img{
    width: 40%;
}


/********* Mission *******/
.mission{
    margin: 6.5rem 2%;
}
.mission .first-para{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.mission .first-para .txt-bx{
    flex: 1 1 450px;  
    padding: 5rem;
    line-height: 3rem;
    background: #4FC0D0;
}
.mission .first-para .txt-bx h1{
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-two);
    margin-bottom: 3rem;
    line-height: 4rem;
    padding: 4rem;
    border-left: 2rem solid #cc4915;
}
.mission .first-para .txt-bx p{
    font-size: 1.7rem;
}
.mission .first-para .img-bx{
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: start;
    position: relative;
}
.mission .first-para .img-bx::before{
    position: absolute;
    content: "";
    top: 1rem;
    left: 4rem;
    height: 23%;
    width: 16%;
    clip-path: circle(50% at 50% 50%);
    background: var(--primary-color);
    z-index: -1;
}
.mission .first-para .img-bx::after{
    position: absolute;
    content: "";
    height: 40%;
    width: 28%;
    right: 3rem;
    bottom: 0;
    clip-path: circle(50% at 50% 50%);
    background: var(--color-two);
    z-index: -2;
}
.mission .first-para .img-bx img{
    width: 70%;
    border-radius: 50%;
}

.mission .sec-para{
    padding: 5rem;
    width: 80%;
}
.mission .sec-para h1{
    padding: 2rem;
    background: var(--color-two);
    color: white;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    border-left: 2rem solid #cc4915;
}
.mission .sec-para ul{
    list-style: square;
}
.mission .sec-para ul li{
    font-size: 1.6rem;
    line-height: 4rem;
}






/*********** Responsive *******/
@media (max-width: 1500px){
    .header{
        padding: .8rem 1%;
    }
}
@media (max-width: 1200px){
    .header{
        padding: .7rem .8%;
    }
}
@media (max-width: 950px){
    .header .header-right{
        display: none;
    }
    .header .head #menu_bar{
        display: block;
    }
    .header .logo img{
        height: 50px;
        width: 100px;
    }
    .header nav{
        position: absolute;
        width: 100%;
        top: 65px;
        left: 0;
        display: none;
    }
    header.active nav{
        display: block;
        background: var(--color-two);
    }
    .header nav ul li{
        width: 100%;
        border-bottom: 1px solid var(--primary-color);
    }
    .header nav ul li ul{
        position: relative;
        width: 100%;
        left: 0;
    }
    .header nav ul li:hover ul li{
        background: var(--primary-color);
    }
    .slider{
        margin: 6.3rem 0 0;
    }
    .slider .slide{
        height: 500px;
    }
    .slider .info{
        width: 60%;
    }
    .slider .info h2{
        font-size: 2rem;
    }
    .slider .info p{
        font-size: 4rem;
    }
    
    .slider .navigation-dots .dot_btn{
        height: .5rem;
        width: 5rem;
    }
    .slider .navigation-dots .dot_btn:hover{
        height: .5rem;
        width: 5rem;
    }
    .slider .navigation-dots .dot_btn.active{
        height: .5rem;
        width: 5rem;
    }
    .card-section{
        padding: 5rem;
    }
    .cards{
        grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
        gap: 3rem;
    }
    .cards .info-box{
        padding: 4rem 2rem;
    }
    .cards .info-box img{
        width: 80%;
    }
    .cards .info-box h2{
        font-size: 3rem;
    }
    .cards .info-box p{
        font-size: 1.5rem;
    }
    .cards .info-box a{
        font-size: 1.4rem;
    }
    .section-1{
        padding: 3rem;
    }
    .text-box{
        padding: 5rem;
        width: 80%;
        margin: 5rem 1rem;
    }
    .text-box h1{
        font-size: 3rem;
    }
    .text-box h2{
        font-size: 2.5rem;
    }
    .text-box p{
        font-size: 1.8rem;
    }
    .section-2::after{
        clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
    }
    .section-2 .text-box{
        padding: 4rem 6rem;
        width: 80%;
    }
    .section-2 .text-box h1{
        font-size: 4.5rem;
    }
    .section-2 .text-box h2{
        font-size: 3rem;
    }
    .section-2 .text-box p{
        font-size: 1.7rem;
    }
    .section-4{
        padding: 3rem;
    }
    .section-4 .text-box{
        padding: 8rem 3rem;
        margin: 0rem 0rem 0 0rem;
    }
    .footer h2{
        font-size: 3rem;
    }
    .footer img{
        width: 80%;
    }
    .semina{
        margin: 3rem 5%;
    }
    .semina .txt-bx{
        margin: 7rem 0;
    }
    .semina h1{
        font-size: 3.5rem;
    }
    .semina h3 span{
        font-size: 2rem;
    }
    .semina p{
        font-size: 1.7rem;
    }
    .semina ul li{
        font-size: 1.7rem;
    }
    .semina .img-bx{
        padding: 4rem;
    }
    .semina .img-bx::before{
        clip-path: polygon(40% 0, 70% 0, 70% 100%, 40% 100%);
    }
    .semina .bx-2{
        width: 75%;
    }
    .semina .img-bx img{
        width: 80%;
    }
    .semina table tr th{
        padding: 1.2rem;
        font-size: 1.8rem;
    }
    .semina table td{
        padding: 1.2rem;
        font-size: 1.7rem;
    }
    /*****************/
    .colloques h1{
        font-size: 3.5rem;
    }
    .colloques h2{
        font-size: 2.2rem;
    }
    .colloques p{
        font-size: 1.6rem;
    }
    .colloques p span{
        font-size: 1.8rem;
    }
    .colloques .first-para .info-txt{
        flex: 1 1 400px;
        line-height: 3.5rem;
        background: var(--color-white);
        padding: 3.5rem;
    }
    .colloques .first-para .info-txt h1:first-child{
        padding: 1.5rem;
    }
    .colloques .first-para .img-bx{
        flex:  1 1 400px;
    }
    .colloques .first-para .img-bx img{
        width: 100%;
    }
    .colloques .sec-para{
        margin: 4rem 2%;
    }
    /********* Mission *******/
.mission{
    margin: 7rem 2%;
}
.mission .first-para{
    gap: 1rem;
}
.mission .first-para .txt-bx{
    flex: 1 1 400px;  
    padding: 3rem;
}
.mission .first-para .txt-bx h1{
    font-size: 3rem;
    padding: 3rem;
}
.mission .first-para .txt-bx p{
    font-size: 1.7rem;
}
.mission .first-para .img-bx{
    flex: 1 1 400px;
}
.mission .first-para .img-bx img{
    width: 80%;
    border-radius: 50%;
}

.mission .sec-para{
    padding: 3rem;
}
.mission .sec-para h1{
    padding: 2rem;
    font-size: 3.5rem;
}
.mission .sec-para ul li{
    font-size: 1.7rem;
}
}
@media (max-width: 786px){
    .slider .slide{
        height: 450px;
    }
    .slider .info h2{
        font-size: 2rem;
    }
    .slider .info p{
        font-size: 3.5rem;
    }
    .cards{
        gap: 1rem;
    }
    .section-1{
        padding: 2.5rem;
    }
    .text-box{
        padding: 4rem;
        width: 80%;
        margin: 5rem 1rem;
    }
    .footer{
        padding: 8rem 2rem;
    }
    .footer h2{
        font-size: 2.5rem;
    }
    .footer img{
        width: 90%;
    }
    /************/
    .colloques .first-para .info-txt{
        flex: 1 1 400px;
        top: 0;
        right: 0;
        transform: translate(0%,0%);
    }
    .colloques .first-para .img-bx{
        flex:  1 1 400px;
    }
    .colloques .sec-para{
        margin: 4rem 1%;
    }
    .colloques .sec-para .img-bx{
        width: 80%;
    }
    .colloques .sec-para .img-bx img{
        width: 100%;
    }
}
@media (max-width: 500px){
    .slider .slide{
        height: 400px;
    }
    .slider .info{
        padding: 1rem;
        margin: 1rem;
        width: 80%;
    }
    .slider .navigation-dots .dot_btn{
        width: 3rem;
        margin: .5rem;
    }
    .slider .navigation-dots .dot_btn:hover{
        background: var(--color-white);
    }
    .slider .navigation-dots .dot_btn.active{
        background: var(--color-white);
    }
    .cards .info-box{
        padding: 2rem 1rem;
    }
    .slider .info h2{
        font-size: 1.7rem;
    }
    .slider .info p{
        font-size: 2.5rem;
    }
    .card-section{
        padding: 3rem;
    }
    .cards .info-box img{
        width: 90%;
    }
    .section-1{
        padding: 2rem;
    }
    .text-box{
        padding: 3rem;
        width: 90%;
        margin: 5rem 1rem;
    }
    .text-box h1{
        font-size: 2.5rem;
    }
    .text-box h2{
        font-size: 2.2rem;
    }
    .text-box p{
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    .section-2 .text-box{
        padding: 4rem 3rem;
        width: 90%;
    }
    .section-2 .text-box h1{
        font-size: 3.5rem;
    }
    .section-2 .text-box h2{
        font-size: 2.2rem;
    }
    .section-2 .text-box p{
        font-size: 1.5rem;
    }
    .semina{
        margin: 3rem 1%;
    }
    .semina h1{
        font-size: 2.5rem;
    }
    .semina h3 span{
        font-size: 1.8rem;
    }
    .semina p{
        font-size: 1.5rem;
    }
    .semina ul li{
        font-size: 1.5rem;
    }
    .semina .img-bx{
        padding: 3rem;
    }
    .semina .bx-2{
        width: 80%;
    }
    .semina .img-bx img{
        width: 100%;
    }
    .semina table{
        overflow: scroll;
    }
    .semina table tr th{
        padding: .7rem;
        font-size: 1.5rem;
    }
    .semina table td{
        padding: .7rem;
        font-size: 1.4rem;
    }

    /****************/
    .colloques h1{
        font-size: 2.8rem;
    }
    .colloques h2{
        font-size: 2rem;
    }
    .colloques p{
        font-size: 1.5rem;
    }
    .colloques p span{
        font-size: 1.6rem;
    }
    .colloques a{
        font-size: 1.6rem;
    }
    .colloques .first-para .info-txt{
        line-height: 3rem;
        top: 0;
        right: 0;
        transform: translate(-0%,-0%);
        padding: 2rem;
    }
    .colloques .sec-para{
        margin: 2rem 1%;
    }
    .colloques .sec-para .img-bx{
        width: 95%;
    }
    .colloques .sec-para .txt-bx{
        margin: -7rem 0 0;
        padding: 2rem 1rem;
        width: 90%;
        line-height: 2.8rem;
    }
    .colloques .third-para .bx-2{
        margin: auto;
        width: 80%;
        display: flex;
        justify-content: space-between;
    }
    .colloques .img-bx img{
        width: 50%;
    }
    /********* Mission *******/
.mission{
    margin: 6rem 2%;
}
.mission .first-para .txt-bx{
    padding: 2rem;
}
.mission .first-para .txt-bx h1{
    font-size: 2.5rem;
    padding: 2rem;
}
.mission .first-para .txt-bx p{
    font-size: 1.5rem;
}
.mission .first-para .img-bx img{
    width: 80%;
    border-radius: 50%;
}

.mission .sec-para{
    padding: 2rem;
    width: 100%;
}
.mission .sec-para h1{
    padding: 1rem;
    font-size: 3.5rem;
}
.mission .sec-para ul li{
    font-size: 1.5rem;
}
}