.contact-section {
    background: #020c3a;
    padding: 10px;
}

.contact-form {
    max-width: 600px;
}

/* Remove Bootstrap input borders */
.contact-form .form-control {
    border-radius: 0;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
}

/* Button style */
.send-btn {
    background: transparent;
    color: #7ac400;
    border: 2px solid #7ac400;
    padding: 5px;
    font-weight: 200;
    transition: 0.3s;
}

.send-btn:hover {
    background: #7ac400;
    color: #020c3a;
}


/*  */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
.kp-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

/* CONTAINER */
.kp-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

/* LOGO */
.kp-logo img {
    height: 80px;
}

/* NAV */
.kp-nav {
    margin-left: auto;
}

/* MENU */
.kp-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

/* MENU ITEM */
.kp-menu li {
    position: relative;
}

/* VERTICAL DIVIDER */
.kp-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 1px;
    background: #e5e5e5;
}

/* LINK */
.kp-link {
    text-decoration: none;
    color: #9bb0e8;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 22px;
    position: relative;
}

/* UNDERLINE */
.kp-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #7ac400;
    transition: width 0.3s ease;
}

/* HOVER + ACTIVE */
.kp-link:hover::after,
.kp-link.active::after {
    width: 100%;
}

/* ACTIVE COLOR */
.kp-link.active {
    color: #7ac400;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .kp-container {
        flex-direction: column;
        gap: 15px;
    }

    .kp-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .kp-menu li:not(:last-child)::after {
        display: none;
    }
}