/* Home Page */
h1.feature {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

h4 , h5 {
    color: var(--white);
}

#home {
    background: url("/images/backgrounds/home-background-img.jpg") center bottom;
    background-size: cover;
}

#home.twoColumn {
    display: grid;
    display: -moz-grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 132px);
    min-height: calc(1080px - 132px);
}

#homeRight {
    background-color: var(--white);
}

#homeRight .contentWrap {
    justify-content: center;
}

#homeLeft .contentWrap{
    justify-content: space-between;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 65%;
}

#homeLeft p, #homeLeft a {
    color: var(--white);
    text-decoration: none;
}

.contentWrap {
    padding: 10% 15%;
    display: flex;
    flex-direction: column;
}

#logo {
    max-width: 200px;
}

.cardWrap {
    display: flex;
    max-width: 536px;
    min-width: 520px;
    margin-top: 2rem;
}

.ctaCard {
    position: relative;
    transition: ease background-color 0.3s;
}

.ctaCard {
    width: 50%;
    margin: 0 20px 0 0;
    padding: 1rem;
    border-radius: 5px;
}

.ctaCard:last-of-type {
    margin-right: 0;
}

.ctaCard h4 {
    text-transform: capitalize;
}

.ctaCard a {
    color: var(--white);
    font-size: 0.8rem;
    display: flex;
    margin: 0.25rem 0 0;
}

.ctaCard .card {
    display: flex;
    flex-direction: column;
}

#featureWrap {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 4rem 0px;
}

#featureWrap p {
    margin: 1rem 0 0;
}

.ctaCard .bx.bx-line-chart, .ctaCard .bx.bx-search {
    border-radius: 5px;
    display: block;
    margin: 0rem 0 0.5rem;
    height: 3rem;
    width: 3rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaCard .bx:before {
    font-size: 1.5rem;
}

.bx.bx-search {
    background-color: #226cac;

}

.bx.bx-line-chart{
    background-color: #414f60;
}

#signUpNow .signBt, #inputFront .inputBt  {
    box-sizing: border-box;
    display: block;
    border: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

input[value="Login"]:hover {
    cursor: pointer;
}

.login {
    margin-bottom: 2rem;
}

#signUpNow {
    margin-top: 2rem;
}

.login .splitContent {
    margin-top: 20px;
}

.splitContent #signInStore, .splitContent a {
    font-size: var(--subText);
}


@media only screen and (max-width: 1400px) {
    .contentWrap {
        padding: 10%;
    }

    #homeLeft .contentWrap {
        max-width: 100%;
    }

    .cardWrap {
        max-width: 100%;
        min-width: 100%;
    }
}

@media screen and (max-width: 1150px) {
        #home.twoColumn {
            grid-template-columns: 1fr;
            height: inherit;
        }

    .contentWrap {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .contentWrap {
        padding: 3rem 1rem;
    }

    .cardWrap {
        flex-direction: column;
    }

    #rego.ctaCard {
        margin: 0 0 20px 0;
    }

    .ctaCard {
        width: calc(100% - 2rem);
    }

    .splitContent{
        flex-direction: column;
    }

    .inputLink {
        margin-top: 0.5rem;
    }
}

@keyframes hover {
 0% {clip-path: circle(0px)}
    100% {clip-path: circle(100%)}
}

@keyframes hoverExit {
    0% {clip-path: circle(100%)}
    100% {clip-path: circle(0px)}

}











