/*
 * Assignment 02
 * CSS FILE
 */

 
.fullwidth {
    display: block;
    width: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif
}

.header_parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    height: 15vh;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header_img {
    width: 15%;
}

/* Button Styles */
.button {
    padding: 0.5rem;
    padding-inline: 1rem; border-radius: 0.3rem;
}

.button.outlined {
    background: none;
    border: 1px solid black;
    background: white
}

.button.filled {
    background: #1e5922;
    border: 1px solid #1e5922;
    color: white
}


.button.filled.invert {
    background: white;
    color: #1e5922;
    font-weight: bold;
}


.invert {
    color: white
}
/* Main */
.hero_cta {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 60vw;
}

.hero_cta {
    background: white;
    padding: 2rem;
    border-radius: 0.3rem;
}

.main {
    display: flex;
    /* padding: 1rem; */
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 2vw;
    width: 100%;
}

.cta_cont {
    display: flex;
    align-items: center;
    gap: 1vh;
    justify-content: center;
}

.cta_intl {
    border: 1px solid black;
    border-radius: 0.3rem;
    padding: 0.5rem;
    background-color: white;
}

.cta_intl.fullwidth {
    width: 100%;
}

.hero_expand {
    width: 100%;
}

.prod {
    width: 90vw;
    display: flex;
    gap: 1vw;
    /* padding: 1vw; */
    align-content: center;
    flex-direction: row;
    background: #f5f5f5;
    border-radius: 0.3rem;
}

.prod.opp {
    flex-direction: row-reverse;
}

.prod_img {
    /* border: 1px solid black; */
    /* border-radius: 0.3rem; */
    width: 100%;
    border-radius: 0 0.3rem 0.3rem 0rem;
}

.prod_img.opp {
    border-radius: 0.3rem 0rem 0rem 0.3rem;
}

.prod_ctn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1vh;
    width: 40%;
}

.hero_img {
    background: url("/images/main_bg.jpg");
    width: 100%;
    display: flex;
    justify-content: center;
    height: 80vh;
    object-fit: cover;
    align-items: center;
    background-size: cover;
}

.icon-inline {
    display: flex;
    gap: 1vh;
}

.sticky_header {
    position: sticky;
    top: 0;
}

.prod_img_par {
    /* flex: 1; */
    width: 100%;
}

a.abtn {
    /* width: 100%; */
    text-align: center;
    text-decoration: none;
    color: black;
}

.faq {
    width: 90vw;
}

.bottom_cta {
    width: 100%;
    background: #1e5922;
    padding: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_footer {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 1vh;
    gap: 1vw;
}

.sm_logo {
    width: 10%;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    color: #1e5922;
    font-weight: bolder;
}