
:root {
    --color-text: #4a4e53;
    --color-primary: #6ec1e4;
    --color-secondary: #f6b75a;
    --color-tertiary: green;
    --color-link: #86e393;
    --color-link-hover: purple;
    --color-main-background: var(--color-white);
    --color-accent: #86e393;
    --color-white: #fcfcfc;
    --color-black: #000;
    --color-grey: #b7b5b5;
    --header-font: "Chivo","sans-serif";
    --text-font: "Overpass","Helvetica Neue",Arial,sans-serif;
    --font-size: 16px;
}

body {
    padding:0;
    margin: 0;

}

a {
    color: var(--color-secondary);
    border-bottom: 3px dotted var(--color-accent);
    text-decoration: none;
}

.fsh-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center

}

.fsh-hero__image-box {
    width: 100%;
    height:100%;
}

.fsh-hero__image-box img {
    width: 100%;
    height:100%;
    object-fit: cover;
}


.fsh-hero__text-box {
    width: 80%;
    height: 100vh;
    position: absolute;
    top:0;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    z-index:10;
    justify-content: center;

    /* padding: 0 20%; */
    color: var(--color-white);
}

.fsh-hero__text-box h1{
    
    font-size: 62px;
    font-weight: 700;
    text-shadow: 0px 0px 9px #000;
    word-wrap: break-word;
    white-space: normal;
    letter-spacing: -.1rem;
    font-family: var(--header-font);
}

.fsh-hero__text-box p {
    font-family: var(--text-font);
    font-size: 26px;
    font-weight: 600;
    text-shadow: 0px 0px 9px #000;

}

.contact-login-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.contact-login-box a {
    /* color: var(--color-white); */
}


.contact-fsh, 
.login-portal {
    width: 270px;
    padding: 5px 15px;
    margin-top: 10px;
    margin-right:20px;
    background: rgba( 255,255,255, 0.2);
    font-family: var(--text-font);
    font-size: 18px;
/* 
    display: flex;
    justify-content: baseline; */
}

.contact-fsh a , 
.login-portal a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-weight: 600;
    text-shadow: 0px 0px 9px #000;
    color: var(--color-white);

}

.contact-fsh a img, 
.login-portal a img {

    max-width: 30px;
    color: var(--color-white);
    fill: var(--color-white);
    margin-right: 8px;

    
}



