*{
    margin:0;
    padding:0;
    font-family: 'Poppins';
    color: rgb(9, 10, 10);
    background-color: rgb(27, 188, 216);
}

.text{
    padding-top: 100px;
    padding-left: 320px;
    padding-right: 320px;
    padding-bottom: 100px;
}

.img {
justify-content: space-between;
}

.img2 {
justify-content: space-between;
padding-left: 200px;
}

.img3 {
padding-left: 320px;
padding-bottom: 100px;
}

.navigation{
    display: flex;
    padding: 2% 6% ;
    justify-content: space-between;
    align-items: center;
}
.navigation img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(28, 92, 175);
    display: block;
    margin: auto;
    transition: 1s;
}
.nav-links ul li:hover::after{
    width: 100%;
    background-color:#0f3eda;
    transition: 1s;
}


