@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Rubik+Wet+Paint&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --ob-primary-green: #32620e;
    --ob-primary-orange: #e27100;
    --ob-secondary-orange: #ffb400;
    --ob-red:#c50631;
    --ob-blue: #4472c4;
}


.jost-text-500 {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body{
    font-family: 'Urbanist' sans-serif;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: currentColor;
}

a:hover{
    color: currentColor;
}

header{
    width:100vw !important;
    height: 100px;
    display:flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: #ffff;
    box-shadow: 0px 3px 8px rgba(0,0,0, 25%);
}

header > div{
    display: flex;
    height: 100%;
    width: 100%;
    padding: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header > div > .navbar-logo{
    width: 12%;
    height: 100%;
    display: flex;
    padding: 5px;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header > div > .navbar-items{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

header .item a:hover {
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: var(--ob-primary-green);
    background: #c8fdca;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease;
}

.item-button{
    color: white;
    border-radius: 5px;
    background: var(--ob-secondary-orange);
    padding: 15px;
}
.item-button:hover{
    background-color: var(--ob-primary-orange);
    transition: all .2s ease;
}

.modal-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-line a{
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    gap:10px;
}

.modal-line a:hover{
    font-weight: bold;
    transition: all .2s ease;
}

.hero-section{
    position:relative;
    height: 600px;
    background: var(--ob-primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.hero-section .inner-hero{
    display: flex;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.911);
    justify-content: center;
    align-items: center;
}

.inner-hero{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
}


.inner-hero h1{
    width: 90%;
    font-weight: normal;
    font-size: 3rem;
}

.inner-hero p{
    font-weight: normal;
    font-size: 1.5rem;
}
