@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* hero section  */
body{
    background-image: url(../bg.jpg);
    background-size: cover;    
    padding: 100px;
}

.hero-section .text-content {
    margin-top: 150px;
}

.hero-section h1 {
    font-size: 60px;
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
}

.hero-section p {
    margin-top: 30px;
    color: #ffffff;
}

.hero-section button {
    margin-top: 20px;
    border-radius: 30px;
    background-color: #05282e;
    height: 50px;
    width: 170px;
}

.hero-section button:hover {
    transition: 1.5s;
    border: 1px solid #ffffff;
    background: #89c1d5;
}

.hero-section button a {
    text-decoration: none;
    color: #fff;
}

.hero-section img {
    height: 600px;
    width: 1000px;
}

.box {
    margin-top: 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.3px);
    width: 90%;  
    background-color: #ffffff4f;    
}
#news{
    margin-left: 25px;
    color: #05282e;
}
  
@media (max-width:700px) {

    .hero-section img {
        height: 350px;
        margin-top: 50px;
    }

    .services-section .services .card {
        margin-bottom: 50px;
    }

    .services-section .services .row1 {
        margin-bottom: 0px;
    }

    .about-section{
        padding: 50px 30px;
    }
    .about-section img {
        height: 300px;
    }

    .contact-section{
        padding: 50px;
    }

    footer ul li a {
        margin-left: 5px;
        letter-spacing: 0;
    }
}