*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(62, 71, 110, 0.7),rgba(10, 17, 45, 0.7)),url(../img/general.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 1% 1%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.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: #fff;
    text-decoration: none;
    font-size: 10px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f4f96f;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
}
.text-box h1{
        font-size: 42px;
        font-weight: 600;
        padding-top: 120px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 23px;
    color: #ebbfbf;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box{
        width: 80%;
        color: #fff;
        text-align: center;
        margin-top: 50px;
        margin-right: 20px;
    }
    .text-box h1{
            font-size: 24px;
            font-weight: 600;
    }
    .text-box p{
        margin: 10px 0 40px;
        font-size: 15px;
        color: #ebbfbf;
        text-shadow: 1px 0 0 #ebbfbf;
    }
    nav img{
        margin-top: 10px;
        width: 60px;
        margin-left: 15px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a{
        color: #000000;
    }
    .nav-links{
        position: absolute;
        background: #7ce2ed;
        height: fit-content;
        width: 150px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
/*------------------------------------*/

.data{
    background-color: #eddbf9;
    padding-left: 10PX;
}


/*-----------Footer-----------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #dc6438;
    margin: 0 13px;
    cursor: pointer;
    padding: 8px 0;
}
.fa-heart-o{
    color: #ff00bf;
}
