:root {
    --nkh-green: #009e01;
    --nkh-bg: #003100;
    --nkh-green-border: #115b0f;
    --font-text: "Lato", sans-serif;
    --font-title: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-text);
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--nkh-bg);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

h1.title {
    font-size: 40px;
    margin-bottom: 20px;
}

.nkh-button {
    padding: 10px 40px;
    border: 1px solid #333;
    text-align: center;
    transition: .4s ease-in-out;
}

.nkh-button:hover {
    background-color: #333;
    color: #fff;
}

/*HEADER*/

.navbar {
    padding: 15px 20px;
    background-color: var(--nkh-bg);
}

.navbar-menu {
    padding-right: 100px;
    color: #fff;
}

.navbar-menu ul {
    display: flex;
    gap: 1.5rem;
}

.navbar-logo img {
    width: 220px;
}

.navbar-menu ul li {
    position: relative;
    font-weight: 700;
}

.navbar-menu ul li i {
    font-size: 12px;
}

.hero video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.dropdown ul {
    position: absolute;
    background: #fff;
    color: #000;
    flex-direction: column;
    margin-bottom: 0;
    justify-content: center;
    gap: 0;
    padding: 1rem;
    top: 50px;
    display: none;
    z-index: 9;
    width: 200px;
}

.dropdown ul li {
    margin-bottom: 10px;
}

.dropdown ul li:last-of-type {
    margin-bottom: 0;
}


/*FOOTER*/

footer {
    background-color: var(--nkh-bg);
    padding: 100px 0 30px 0;
    color: #fff;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    left: 50%;
    height: 80px;
    top: -40px;
    width: 1px;
    transform: translateX(-50%);
    background-color: #fff;
}

.footer-logo img {
    width: 180px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-main {
    text-align: center;
}

.footer-social {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.footer-social ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: .4s ease-in-out;
}

.footer-social ul li:hover a {
    background-color: #fff;
    color: #000;
}

.footer-bottom {
    font-size: 12px;
    text-align: center;
    border-top: 1px solid var(--nkh-green-border);
    padding-top: 30px;
}

.footer-btn a {
    padding: 10px 30px;
    border: 1px solid #fff;
    font-size: 16px;
    transition: .4s ease-in-out;
}

.footer-btn a:hover {
    background-color: #fff;
    color: #000;
}

.footer-contact ul li {
    margin-bottom: .25rem;
}

.footer-contact i {
    width: 20px;
}

/*BREADCRUMB*/

section.breadcrumb {
    height: 450px;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .4;
    pointer-events: none;
}

section.breadcrumb .breadcrumb-content {
    position: relative;
}

.breadcrumb-content h2 {
    color: #fff;
}

/*SERVICES*/


/*CONTACT*/

.g-map iframe {
    width: 100%;
    height: 450px;
}

.contact-info h2 {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.form-input {
    margin-bottom: 40px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.form-input input, .form-input textarea {
    width: 100%;
    padding: 5px 0;
}

/*PROJECTS*/

.project-item {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 1rem;
    display: block;
}

.project-cover {
    height: 290px;
    margin-bottom: 1rem;
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-location {
    color: #5e5e5e;
    font-size: 13px;
    margin-bottom: .5rem;
}

.project-name {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.project-button {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}

.project-button i {
    font-size: 11px;
}

.project-button::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    background-color: var(--nkh-green-border);
    height: 2px;
}

.message-box {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}