html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


/* Width */

::-webkit-scrollbar {
    width: 1.2vw;
}


/* Track */

::-webkit-scrollbar-track {
    background: transparent;
}


/* Handle */

::-webkit-scrollbar-thumb {
    backdrop-filter: blur(5px);
    background: rgba(188, 188, 188, 1);
}

@media (max-width: 700px) {
    /*html*/
    /*{*/
    /*    overflow: hidden;*/
    /*}*/
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    /* background-color: var(--main-color); */
    z-index: 1;
    transition: 0.3s;
}

header.scroll {
    position: fixed;
    top: -10rem;
    left: 0;
    width: 100%;
    height: 7rem;
    /* background-color: var(--main-color); */
    z-index: 1;
    transition: 0.3s;
}

.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: transparent;
    width: 100%;
    height: 140px;
    z-index: 10;
}

nav {
    position: relative;
    display: flex;
    padding: 2% 6% 0%;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
}

nav img {
    width: 130px;
    height: auto;
    filter: brightness(1.1);
}

.nav-links {
    flex: 1;
    text-align: right;
    padding-top: 20px;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 20px;
    position: relative;
    margin: 0px 2.5px;
    border-radius: 10px;
    background-color: rgba(83, 83, 83, 0.2);
    backdrop-filter: blur(5px);
}

.nav-links ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    /* text-shadow: 1px 1px 5px #000, 1px 1px 5px #000; */
    /* mix-blend-mode:multiply; */
}

.nav-links .active {
    background-color: rgba(15, 184, 0, 0.5);
    backdrop-filter: blur(5px);
}

.nav-links .menu-close {
    display: none;
}

.nav-links .active:hover {
    background-color: rgba(16, 161, 2, 0.5);
    backdrop-filter: blur(5px);
}

.nav-links ul li:hover {
    background-color: rgba(121, 121, 121, 0.5);
}

.menu-icon {
    display: none;
}


/* Media Querey */

@media (max-width: 700px) {
    nav {
        justify-content: center;
    }
    nav img {
        width: 130px;
        height: auto;
    }
    .logo {
        display: none;
    }
    nav a {
        transform: translateY(60%);
    }
    .nav-links {
        padding: 0;
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 100%;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        transform: scale(0);
        transition: all 0.2s;
        /* display: none; */
    }
    .nav-links ul li {
        display: block;
        text-align: center;
        margin: 20% 0%;
        background-color: transparent;
        backdrop-filter: none;
    }
    .nav-links .menu-close {
        display: block;
        background-color: rgba(161, 2, 2, 0.5);
        margin: 20% 20%;
    }
    .menu-icon {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        transform: translate(-20px, 40px);
        color: #ffffff;
    }
    .menu-icon img {
        height: auto;
        width: 30px;
        background-color: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 5px;
        padding: 1px 3px;
        transition: all 1s;
    }
}


/* Nav Menu */


/* Nav complete, add js part later */

.hero {
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('images/background-foliage-4.jpg');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    background: rotate(90deg);
    position: relative;
}

.text-box {
    width: 90%;
    color: #ffffff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box img {
    display: none;
}

.text-box h1 {
    font-size: 62px;
    font-weight: 600;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: #ffffff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    transition: all 0.5s;
}

.hero-btn:hover {
    cursor: pointer;
    border: 1px solid rgba(16, 161, 2, 0.5);
    background-color: rgb(15, 161, 2, 0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

@media (max-width: 700px) {
    .hero {
        min-height: 20vh;
        width: 100%;
        background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('images/background-foliage-4.jpg');
        background-position: right;
        background-size: cover;
        background-attachment: fixed;
        background: rotate(90deg);
        position: relative;
    }
    .text-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 50%
    }
    .text-box img {
        display: block;
        height: 130px;
        padding: 30px 0px;
        /* transform: translateX(50%); */
    }
    .text-box h1 {
        font-size: 30px;
    }
    .text-box p {
        margin: 0px 0 40px;
    }
}


/* Sections */

.section {
    width: 85%;
    margin: auto;
    text-align: center;
    /* padding-top: 50px; */
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 20px 0px;
}

.row {
    padding: 2.5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
}

.column {
    text-align: justify;
    /* flex-basis: 31%; */
    width: 100%;
    /* background: rgba(199, 199, 199, 0.5); */
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* padding: 20px 10px; */
    box-sizing: border-box;
    transition: all 1s;
    display: flex;
}

h3 {
    padding-left: 10px;
    color: rgba(0, 0, 0, 0.87);
    text-align: center;
    font-weight: 600;
    margin: 10px 0px;
    /* text-shadow: 0px 0px 20px black; */
}

.column img {
    padding: 20px 10px;
    height: 200px;
    width: 230px;
    filter: brightness(1.1);
}

@media (max-width: 700px) {
    p {
        font-size: 15px;
        padding: 20px 0px;
    }
}


/* Contact Page - CSS */

.contact-col {
    flex-basis: 48%;
    margin-bottom: 38px;
}

.contact-col img {
    width: 38px;
}

.contact-row {
    display: flex;
    text-align: left;
    padding: 20px;
}

#contact-row {
    display: flex;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-row p {
    font-size: 17px;
    padding: 0px 30px;
}

#details {
    padding-top: 50px;
}

#G-map-container {
    width: 470px;
    height: 300px;
    border-radius: 0px;
}

#G-map {
    width: 100%;
    height: 290px;
    border: none;
    box-shadow: 0px 0px 5px -5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 700px) {
    #contact-row {
        display: flex;
        text-align: left;
        padding: 20px;
        flex-direction: column;
        justify-content: space-between;
    }
    .contact-row p {
        padding: 0px 10px;
    }
    .contact-col img {
        padding-right: 10px;
    }
    #G-map-container {
        width: fit-content;
        height: 250px;
        border-radius: 0px;
    }
}


/* Contact Page Form */

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-col textarea {
    resize: none;
}

.contact-col .hero-btn {
    color: rgb(109, 109, 109);
    border: 1px solid #ccc;
}

.contact-col .hero-btn:hover {
    color: rgb(255, 255, 255);
    border: 1px solid #ccc;
    background-color: rgb(51, 207, 45);
    transform: scale(1);
}

@media (max-width: 700px) {
    .contact-col input,
    .contact-col textarea {
        padding: 15px;
    }
}


/* Footer Section */

footer {
    padding-bottom: 10px;
    width: 100%;
}

footer .section img {
    width: 15px;
}

@media (max-width: 700px) {
    footer .section {
        padding: 0;
    }
    footer .section img {
        width: 12px;
    }
}