/* UNIVERSAL STYLE */
/* ------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* FONT STYLE *
/* ------------------------------------------------- */
/* Style on tags will serve as backup, if the element don't have class  */
a {
    text-decoration: none;
    color:#F2A019;
}

h1, h2, h3, p {
    color: #524125;
}

h1 {
    /* based on Heading 1 */

    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
}

h2 {
    /* based on Heading 3 */

    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
}

h3 {
    /* based on Heading 4 */

    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

p {
    /* based on Sub heading 4 */
    
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

/* Class tags are based on Figma design file component */

.huge, .heading1, .sub-heading1, .heading3, .sub-heading3, .heading4, .sub-heading4 {
    color: #524125;
    
    letter-spacing: 0em;
    text-align: left;
}

.huge {
    font-family: 'Poppins', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
    /* or 62px */
}

.heading1 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    }

.sub-heading1 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}

.heading3 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    /* identical to box height */
}

.sub-heading3 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */
}

.heading4 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 14px; 
    line-height: 18px;
    /* identical to box height */
}

.sub-heading4 {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    /* identical to box height */
}

.footer-copyright {
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */
}


/* MAIN LAYOUT */
/* ------------------------------------------------- */

/* this tags will encapsulate the whole content before we insert the template */
.topnav, .bottomnav, .content {
    max-width: 800px;
    min-width: 320px;

    padding: 10px 30px;
    margin: 0 auto;
}

/* class inside "content", use together with autolayout classes below */
.content-container {
    gap: 20px;
}

.autolayout-row {
    display: flex;
    flex-direction: row;
    
    width: 100%;
    height: auto;
}

.autolayout-column {
    display: flex;
    flex-direction: column;
    
    width: 100%;
    height: auto;
}


/* NAVIGATION */
/* ------------------------------------------------- */

/* + Top Navigation */

.topnav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 10px 30px;
    gap:10px;

    height: 60px;

    background-color: white;
}

.topnav-button {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 8px;

    width: auto;
    height: auto;

    /* Accent Light Green */

    border: 1px solid #7FC241;
    border-radius: 4px;

    color: #7FC241;

    /* based on Heading 3 but smaller */
    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* + Bottom Navigation */
footer, .bottomnav {
    margin-top: auto; 
    background-color: #83C4EC;
}

.content {
    margin-bottom: auto;
    margin-bottom: 20px;
}

.bottomnav {
    width: 100%;
    margin-top: auto;
}

.bottomnav-container {
    display: flex;
    justify-content: space-between;
    align-items: left;

    padding: 8px 0;
    gap: 8px;

    flex-direction: column;

    color: white;
}

.bottomnav-content ul {
    list-style-type: none;
}

.bottomnav-content ul li, .bottomnav-content ul li a {
    margin-bottom: 5px;
    
    color: white;
}

/* GENERAL COMPONENTS */
/* ------------------------------------------------- */

/* + buttons */
.cta-button {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    margin: 0 auto;

    width: auto;
    height: auto;

    /* Accent Light Green */

    background: #7FC241;
    border-radius: 4px;

    color: white;

    /* based on Heading 3 */

    font-family: 'Mulish', 'Arial', 'Helvetica';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: auto;

    overflow: hidden;
}

.img-container img {
    border-radius: 8px;

    max-width: 100%;
    height: auto;
}

.content-button {
    justify-content: center;    
}