﻿/* Homepage Common */
.home-section{
    padding: 4rem 0;
}
.home-title {
    text-align:center;
    font-size: 4rem;
    margin-bottom: 3rem;
}
@media only screen and (max-width: 786px) {
    .home-title {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 576px) {
    .home-title {
        font-size: 2rem;
    }
}


.home-title > span {
    display: inline-block;
    position: relative;
}

    .home-title > span > .first-letter {
        position: relative;
        display: inline-block;
        font-family: 'Constantia', sans-serif;
        font-size: 2.5em;
        line-height: 1;
        margin-right: 0.15em;
    }
    .home-title > span .first-letter:before {
        content: "";
        position: absolute;
        right: -0.09em;
        bottom: 15%;
        display: block;
        width: 0.035em;
        height: 55%;
        background-color: var(--home-title-color);
    }

.home-subtitle{
    font-size:2rem;
    text-align:center;
}
.home-description {
    max-width: 800px;
    margin: 2rem auto;
}
        /* Banner Section*/
        .home-banner-section {
            height: 700px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center bottom;
            display: flex;
            align-items: center;
        }

.home-banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px hsla(0,0%,0%,0.4);
}

.hb-headline1 {
    font-family: var(--font-oswald);
    font-size: 50px;
}

.hb-headline2 {
    font-family: var(--font-oswald);
    font-size: 36px;
    margin-bottom: 4rem;
}

.hb-text {
    display: inline-block;
    max-width: 700px;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.hb-button > a {
    display: inline-block;
    padding: 0 2.5rem;
    height: 48px;
    line-height: 48px;
    border-radius: 22px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-oswald);
    box-shadow: 0 0 15px hsla(0, 0%,0%, 0.3)
}

    .hb-button > a:hover {
        background: var(--primary-color-lighter);
    }

/* Our Services */
.home-services-section {
}

    .home-services-section .home-title > span {
        color: #29404E;
    }

        .home-services-section .home-title > span > .first-letter {
            color: var(--second-color);
        }

            .home-services-section .home-title > span > .first-letter:before {
                --home-title-color: #29404E;
            }

.home-services-wrapper {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(320px, 1fr) );
    gap:1rem;
}
.home-services-item {
    justify-self: center;
    max-width: 320px;
    background: var(--primary-color);
    padding: 1rem;
    color: #fff;
}
.home-services-item-image { 
    padding: 1rem;
    text-align:center;
}
.home-services-item-text {
    padding:1rem;
}
    .home-services-item-text > :first-child {
        font-size:1.5rem;
        font-weight:bold;
        margin-bottom:1rem;
    }

@media only screen and (max-width: 660px) {
    .home-services-wrapper {
        grid-template-columns: none;
    }
    .home-services-item{
        display:flex;
        max-width:100%;
    }
    .home-services-item-image {
        flex: 1;
        padding:0;
    }
    .home-services-item-text {
        flex: 2;
        padding: 0;
        margin-left:1rem;
    }
}
/* Questionnaire */
.home-questionnaire-section {
    background: url(/media/pacnj2pn/home-questionnaire.png) center center no-repeat;
    background-size: cover;
    padding-bottom: 0;
}
    .home-questionnaire-section .home-title > span {
        color: #fff;
    }

        .home-questionnaire-section .home-title > span > .first-letter:before {
            --home-title-color: #fff;
        }
    .home-questionnaire-section .caption{
        background:hsla(0,0%,0%,0.6);
        padding: 2rem 0;
        color:#fff;
    }
    /* About Us*/
    .home-about-section {
        text-align: center;
    }

        .home-about-section .home-title > span {
            color: #29404E;
        }

            .home-about-section .home-title > span > .first-letter {
                color: var(--primary-color);
            }

                .home-about-section .home-title > span > .first-letter:before {
                    --home-title-color: #29404E;
                }

    /* Investing Section */
.home-invest-section {
    background: url(/media/o3ii0l5u/home-section-invest.png) center bottom no-repeat;
    background-size: contain;
    height: 700px;
    display: flex;
    align-items: end;
}

        .home-invest-section .slogan {
            margin-bottom: 3rem;
        }

            .home-invest-section .slogan > * {
                font-family: var(--font-oswald);
                font-size: 5rem;
                color: #18133C;
                line-height: 1;
            }

        .home-invest-section .btn {
            background: #FF5119;
            color: #fff;
            margin: 3rem 0;
        }


