:root {
    --primary-color: #839e64;
    --secondary-color: #4B3B2A;
}

html {
    scroll-behavior: smooth;
}

.top_header {
    height: 45px;
    background-color: var(--secondary-color);
    color: #fff;
}

.top_header a {
    font-size: 14px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.social-icons {
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.social-icons:hover {
    color: var(--primary-color);
}

.header {
    height: 80px;
    z-index: 100;
}

.header .logo {
    height: 70px;
}

.header .menus a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    transition: 0.3s ease-in-out;
}

.header .menus a:hover {
    text-decoration: none;
    font-weight: 600;
}

.active {
    font-weight: 600 !important;
    border-bottom: 2px solid #000;
}

.showcase {
    width: 100%;
    min-height: 500px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
}

.showcase h1 {
    font-size: 60px;
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    font-weight: 900;
}

.showcase p {
    font-size: 20px;
    color: #d3d3d3;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.showcase-img {
    height: 300px;
}

/* .primary-outline-button {
    border-radius: 999px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.primary-outline-button:hover {
    background-color: var(--primary-color);
    color: #fff;
} */

.heading {
    font-size: 60px;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-weight: 900;
}

.paragraph {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #000;
}

.primary-button {
    border-radius: 999px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease-in-out;
}

.primary-button:hover {
    color: #fff;
    padding-left: 50px;
    padding-right: 50px;
}

.news-letter {
    width: 100%;
    background-image: url(../images/azure.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.news-letter h1 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-weight: 900;
    font-size: 60px;
}

.news-letter input {
    background: transparent;
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: 3px solid #fff;
    padding: 25px 20px;
    border-radius: 999px;
}

.news-letter input:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 3px solid #fff;
}

.news-letter input::placeholder {
    color: #fff;
}

.light-button {
    border-radius: 999px;
    color: #000;
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Poppins", sans-serif;
}

.services {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.services img {
    width: 150px;
    height: 150px;
}

.services h3 {
    font-family: "Poppins", sans-serif;
}

.services p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.footer_top {
    width: 100%;
    background-color: var(--primary-color);
}

.footer_bottom {
    background-color: var(--secondary-color);
    width: 100%;
}

.footer_bottom p {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.footer_logo {
    height: 150px;
}

.footer_top p {
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.footer_top h3 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.footer_top a {
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.news {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.news img {
    width: 100%;
    height: 200px;
}

.news h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.news p {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-weight: 300;
}

.elipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.burger {
    cursor: pointer;
    display: none;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 5px;
}

@media screen and (max-width: 1100px) {
    .top_header a span {
        display: none;
    }

    .burger {
        display: block;
    }

    .menus {
        position: absolute;
        top: 130px;
        left: 0;
        flex-direction: column;
        background-color: #fff;
        width: 0%;
        height: calc(100vh - 70px);
        justify-content: space-around;
        opacity: 0;
        transition: 0.3s;
    }

    .menus li {
        margin: 0 !important;
    }
}

.menus-open {
    width: 100%;
    opacity: 1;
    z-index: 1000;
}

@media screen and (max-width: 480px) {
    .heading,
    .showcase h1,
    .news-letter h1 {
        font-size: 40px;
    }

    .showcase p {
        font-size: 16px;
    }
}

.about p,
.about span {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.about h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.hover-effect {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hover-effect img {
    width: 100%;
    border-radius: 5px;
}

.hover-effect .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 5px;
}

.hover-effect:hover .overlay {
    opacity: 1;
}

.hover-effect .overlay p {
    position: absolute;
    bottom: 0;
    font-family: "Poppins", sans-serif;
}

.job h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.job p {
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}