* {
    padding: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}



.nav-link {
    cursor: pointer;
    color: #fff;
}

.nav-link:hover {
    color: #fff; 
}

.sub-nav {
    cursor: pointer;
}

.sub-header {
    background-color: rgb(87, 169, 242);
}

/*
header style
//////////////////////////////////////*/

.header-banner {
    padding: 0 200px;
}

.header-board {
    padding: 0 200px;
}

.header-menu {
    padding: 0 200px;
}

@media (max-width: 900px) {
    .header-banner {
        padding: 0 20px;
    }

    .header-board {
        padding: 0 20px;
    }

    .header-menu {
        padding: 0 20px;
    }
}

/*
End header style
//////////////////////////////////////*/

/*
 Hero style
//////////////////////////////////////*/
.hero img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

/*
 End Hero style
//////////////////////////////////////*/

/*
 main style
//////////////////////////////////////*/

.content {
    display: grid;
    grid-template-columns: 22% 1fr;
    gap: 1rem;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 2rem;
}

.content a {
    color: #000;
    cursor: pointer;
}

.content img {
    max-width: 100%;
}

.content h1,
h5 {
    color: #000;
    font-weight: 600;
}


.content-info-boxes .boxes {
    width: 130px;
    margin: .8rem;
    cursor: pointer;
}


.content-info-boxes .boxes {
    width: 130px;
    margin: .8rem;
}

.base-content {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 800px) {
    .content {
        display: block;
        gap: 1rem;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 400;
        line-height: 2rem;
    }
}

/*
 End main style
//////////////////////////////////////*/

/*
 End footer style
//////////////////////////////////////*/

footer {
    background-color: #dce7f5;
}


.footer-board {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 30px 200px;

}

.footer-items .nav-link {
    list-style: none;
    cursor: pointer;
}

.footer-items .nav-link li {
    padding: 5px 0;
}

.footer-base {
    background-color: #25437c;
    padding: 30px 200px;
    align-items: center;
}

@media (max-width:900px) {
    .footer-board {
        display: block;
        padding: 30px 20px;

    }

    .base-content {
        width: 100%;
        margin-top: 10px;
    }

    .footer-base {
        background-color: rgb(41, 48, 141);
        padding: 20px 50px;
        align-items: center;
    }
}

/*
 SignUp Modal Box style
//////////////////////////////////////*/

.modal-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}

.signup-form {
    background-color: #dce7f5;
    width: 600px;
    padding: 30px;
    position: absolute;
    z-index: 9;

}

.close-btn {
    display: flex;
    justify-content: right;
    color: #fff;
}

.close-me {
    background-color: #a4c4ec;
    color: #dce7f5;
    padding: 9px;
    border-radius: 10px;
    text-align: right;
    cursor: pointer;

}

@media (max-width: 900px) {

    .signup-form {
        width: 90%;
        padding: 10px;
        position: absolute;
        overflow: scroll;

    }
}

.succes-main {
    padding: 30px 0 100px 0;
}



.modal-box-one {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}


/*
 End SignUp Modal Box style
//////////////////////////////////////*/