@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@100;300;400;600&display=swap');

:root {
    green1: #002309;
    green2: #568C5E;
    gold1: #BF9926;
    gold2: #D9C077;
}

.green1 {
    color: #003b0f;
}

.green2 {
    color: #568c5e;
}

.gold1 {
    color: #BF9926;
}

.gold2 {
    color: #D9C077;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.poppins100 {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

.poppins300 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.poppins400 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.poppins600 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.merry400 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.merry700 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.hero {
    background-image: url(../images/bg.jpg);
    background-repeat: none;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 10%;
}

a {
    text-decoration: none !important;
    color: white;
}

a:hover {
    color: inherit; 
}

.row {
    margin: 0;
    padding: 0;
}

.link,
.nav-link {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    text-decoration: none;
    color: white !important;
    transition: 0.5s;
    border-style: solid;
    border-color: transparent;
    border-width: 2px 0px;
    font-size: 15px;
}

.link:hover {
    text-decoration: none;
    color: white;
    border-color: #568C5E;
}

.active {
    text-decoration: none;
    color: white;
    border-style: solid;
    border-color: #568C5E;
    border-width: 2px 0px;
}

.aboutprofilebox {
    background-color: #002309c2;
    color: white;
    border-left: 9px solid #ffbf00;
}

.OurProducts .title {
    background-color: #002309c2;
    color: white;
    border-left: 9px solid #ffbf00;
}

.OurProducts {
    background-color: rgba(0, 0, 0, 0.3);
}

.OurProducts .productlist {
    color: black;
}

.OurProducts .productlist:hover {
    background-color: #19291b;
    color: white;
}

.submitbutton {
    border-color: #19291b;
    color: #19291b;
}

.submitbutton:hover {
    background-color: #19291b;
    color: white;
    border-color: #ffbf00;
}

.name {
    background-color: rgb(58, 58, 58);
    color: white;
    transition: 0.7s ease;
}

.name:hover {
    color: #ffbf00;
    background-color: black;
}