@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background: #021526;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding-top: 60px;
}

.abt-container {
    max-width: 100vw;
    height: 100%;
    color: #fff;
    padding: 1% 10%;
}
.section{
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 24px;
    border-radius: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, #1b252e 20%, #384d5e 40%, #384d5e 60%, #1b252e 80%, rgba(255, 255, 255, 0) 90%);
    box-shadow: inset 2px 2px 0px #2c4557,inset -2px -2px 0px #b0ffff;
}

@media (max-width: 991px) {
    .abt-container {
        padding: 1% 5%;
        }
}

@media (max-width: 599px) {
    
.abt-container {
padding: 1% 5%;
}
    .abt-container .abttitle{
        font-size: 24px;
    }
    .section-title{
        font-size: 20px;  
    }
    .section p{
        width: 90%;
        font-size: 16px;
    }
}