* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(21, 21, 103);
    padding: 0 40px;
    width: 100%;
    height: 70px;

    h1 {
        color: #fff;
    }
}

.nav .logo {
    width: 14%;
}

.nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 25px;
    font-size: 20px;
}

.nav-link {
    text-decoration: none;
    transition: all 0.8s;
    color: #fff;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f6f7fb;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section{
    margin-top: 30px;
    width: 90%;
}
h2{
    margin-top: 30px;
    font-size: 40px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
        margin-bottom: 50px;
    label{
    font-weight: bold;
    font-size: 24px;
    color: #143484;
}
}

.form-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-textarea {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-sub {
    padding: 15px;
    color: #fff;
    background-color: #151e58;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.8s;
}

.form-sub:hover {
    background-color: #352c80;
}


/* Footer */
.last-section {
    background-color: #101c3a;
    display: inline-block;
    margin-top: 0;
    height: 500px;
    width: 100%;
}

.big-div {
    display: flex;
    justify-content: space-around;
    max-width: 1400px;
    margin: 20px auto;

}

.child {
    width: 22%;
}

.head-title {
    color: #e1e1e1;
    margin-bottom: 20px;
}

.last-p {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
    position: relative;
    padding-left: 15px;
}

.last-p::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #adaaaa;
    font-weight: bold;
}

.last-parag {
    color: #adaaaa;
    font-size: 12px;
    line-height: 35px;
}


.info-link {
    color: #adaaaa;
    text-decoration: none;
}

.info-list {
    list-style: none;
}

.info-l {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
}

.info-icons {
    font-size: 15px;
    margin-right: 10px;
}

.footer-bottom {
    background-color: #3e65c7;
    height: inherit;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}