/*general style setting*/

* {
    padding: 0%;
    margin: 0%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
}

a,
a:visited {
    color: black;
    text-decoration: none;
}


/*font imports*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Scope+One&display=swap');

/*header and navbar*/

header {
    padding: 12px 24px;
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    z-index: 1;
}

.header-container {
    display: flex;
    width: 1400px;
    justify-content: space-between;
}

.logo img {
    margin: 10px;
    width: 80px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    height: 100%;
    display: flex;
    align-items: center;
    list-style-type: none;
}

nav ul li {
    margin-right: 32px;
    border-radius: 16px;
    transition: 150ms ease-in-out;
}

nav ul li a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

nav ul li:hover {
    background-color: #386344;
}

nav ul li:hover a {
    color: #fff;
}


/*index page body*/

section {
    width: 100vw;
}

.landing {
    background-color: #386344;
    background-image: url(img/bg-img1.jpg);
    background-size: cover;
    background-position: top;
    margin-top: 94px;
    height: 70vh;
}


/*
.landing .title-card {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 62px;
    padding: 25px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-family: 'Open Sans', sans-serif;
    color: #386344;
    border-radius: 32px;
}
*/

.about {
    background-color: #386344;
    background-image: url(img/bg-img2.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact {
    background-color: #386344;
    background-image: url(img/bg-img3.jpg);
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-card {
    width: 60vw;
    margin-top: 50px;
    padding: 50px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 32px;
}

.text-card:last-child {
    margin-bottom: 50px;
}

.text-card h1 {
    font-family: 'Open Sans', sans-serif;
    color: #386344;
    font-size: 24px;
    font-weight: 700;
}

.text-card p {
    font-family: 'Scope One', serif;
    color: #0F1A12;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
}