@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* variables */

:root {
    --gold: #B58A34;
    --gray: #B3B3B7;
    --green: #025157;
    --rose: #B8999E;
    --white: #FFFFFF;
    --site-width: 1100px;
    --h1-size: 26px;
    --h1-mobile-size: 22px;
    --button-h: 40px;
    --mobile-button-h: 30px;
    --font: 'Open Sans', sans-serif;
}

/* layout */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 190px;
}

body {
    color: var(--green);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}

.wrapper {
    margin: 0 auto;
    width: var(--site-width);
}

a {
    cursor: pointer;
}


/* header */

#header {
    align-items: center;
    background: var(--white);
    border-bottom: 2px solid var(--green);
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 5;
    
    &>div:first-child {
        img {
            width: 259px;
        }
    }

    &>div:last-child {
        display: flex;
        flex-direction: column;
        text-align: right;
        
        img {
            height: var(--button-h);
        }
    }
}


/* we help people */

#weHelpPeople {
    line-height: 0;
    
    img {
        max-width: 100%;
    }
}


/* follow our journey */

#followOurJourneyTop {
    background: var(--green);
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    padding: 40px 30px 60px 30px;
    
    h1 {
        border-bottom-color: var(--gold);
        border-bottom-style: solid;
        border-bottom-width: 2px;
        color: var(--white);
        font-size: var(--h1-size);
        font-weight: 800;
        line-height: var(--h1-size);
        margin: 30px 0;
        padding: 0 0 5px 0;
        text-transform: uppercase;
    }
}

#followOurJourneyBottom {
    display: flex;
    gap: 70px;
    margin: -50px 0 80px 0;
    padding: 0 30px;
    
    &>div {
        flex: 1;
    }
    
    .followOurJourneyBottomLogo {
        img {
            max-width: 100%;
        }
    }
    
    .followOurJourneyBottomTitle {
        font-weight: 700;
        margin: 15px 0;
    }
}


/* trusted providers */

#trustedProviders {
    margin-bottom: 80px;
    padding: 0 30px;

    h1 {
        border-bottom-color: var(--gold);
        border-bottom-style: solid;
        border-bottom-width: 2px;
        color: var(--green);
        font-size: var(--h1-size);
        font-weight: 800;
        line-height: var(--h1-size);
        margin: 30px 0;
        padding: 0 0 5px 0;
        text-transform: uppercase;
    }
    
    #trustedProvidersList {
        display: flex;
        gap: 40px;
        
        &>div {
            flex: 1;
        }
        
        .trustedProvidersListCategory {
            font-weight: 700;
            margin: 15px 0;
        }
        
        .trustedProvidersListItem {
            margin: 15px 0;
            
            &>div:not(:first-child) {
                padding-left: 20px;
            }
            
            a {
                color: var(--green);
                text-decoration: none;
            }
        }
    }
}


/* starter pack */

#starterPack {
    background: var(--gold);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding: 50px 30px;
    position: relative;

    h1 {
        border-bottom: 2px solid var(--white);
        color: var(--white);
        font-size: 34px;
        font-weight: 800;
        margin: 0 0 35px 0;
        padding: 0 0 15px 0;
        text-transform: uppercase;
    }
    
    p {
        width: 800px;
    }
    
    img#starterPackMonitor {
        bottom: -55px;
        position: absolute;
        right: 0;
        width: 300px;
    }
}


/* journey further */

#journeyFurther {
    line-height: 0;
    margin-top: 85px;
    
    img {
        max-width: 100%;
    }
}


/* footer */

#footer {
    background: var(--green);
    border-bottom: 3px solid var(--gold);
    color: var(--white);
    padding: 50px 30px 30px 30px;
    position: relative;
    
    #footerVisitBtn {
        border: 0;
        height: var(--button-h);
        position: absolute;
        right: 25px;
        top: -20px;
    }
    
    #footerGrid {
        align-items: center;
        display: flex;
        justify-content: space-between;
        
        #footerLeft {
            flex: 0 0 300px;
            
            #footerLeftTitle {
                border-bottom: 2px solid var(--gold);
                font-size: 18px;
                font-weight: 700;
                margin: 0 0 10px 0;
                padding-bottom: 4px;
                width: fit-content;
            }
            
            #footerLeftText {
                font-size: 15px;
            }
        }
        
        #footerRight {
            flex: 0 0 300px;
            
            img {
                max-width: 100%;
            }
        }
    }
}

#copyright {
    font-size: 13px;
    margin-top: 20px;
    text-align: center;
}

#socialButtons {
    margin: 20px 0 30px 0;
    text-align: center;
    
    img {
        margin: 0 7px;
        width: 40px;
    }
}