@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

body{
   width: 100%;
   height: 100vh;
    background: rgba(27,32,44,255);
    margin-bottom: 700px;
    color: #c8ced5;
}

#ima{
    border-radius: 20px;
}

h1{
    color: #68d290;
}

.title{
    margin-top: 150px;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title img{
    width: 230px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
}

.key-feature{
    width: 94%;
    height: 370px;
    background: lightgreen;
    border-radius: 20px;
    margin-top: 100px;
    margin-left: 3%; 
    padding: 10px;
    margin-bottom: 100px;
}

.key-feature p{
    font-size: 32px;
    font-weight: 600;
    height: 37px;
    color: #4d4d4d;
    border-bottom: 1px solid gray;
}


.text{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}


.comp{
    display: flex;
    padding: 15px;
    flex-direction: column;
    margin-bottom: 130px;
}

.comp2{
    display: flex;
    padding: 15px;
    flex-direction: column;
   
}

.comp2 .box{
      position: absolute;
      right: 10px;
     border-radius: 30px 0 30px 0;
}

.comp2 .image{
    position: relative;
}

.box{
    width: 75%;
    height: 80px;
    border-radius: 0 30px 0 30px;
    background: #407055;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.image{
    width: 160px;
    height: 120px;
    border: 4px solid #71c596;
    border-radius: 20px;
    right: 10px;
    margin-top: 84px;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}









