/*** CSS VARIABLES ***/
:root {
    --black: #1a1a1a;
    --black-blue: #021423;
    --grey: #cfd9de;
    --light-grey: #f9fafb;
    --blue-grey: #ccd8de;
    --dark-grey: #97a1a6;
    --darker-grey: #7c8487;
    --blue: #0f91f2;
    --orange: #ff5b00;
    --white: #ffffff;
    --font: Arial, sans-serif;
  
    /* responsive size conversion: 1px = 0.13vh */
    --f1: 3vw;
    --f2: 4vw;
    --f3: 2.4vw;
    --f1px: 45px;
    --f2px: 20px;
    --f3px: 18px;
    --f4: 16px;
    --f5: 14px;
    --f6: 12px;
    /*--f4: 3vw;
    --f5: 2.4vw;
    --f6: 2vw;
    --f6-px: 18px; */
    --f7: 15px;
    /* --f7-px: 14px;
    --f8: 1.5vw;
    --f8-px: 12px;
    --f9: 1.3vw; */
}


/*** COMMON ELEMENTS FOR ALL PAGES ***/

body { 
    background-color: var(--white);
}

.container {
    color: var(--black);
    font-family: var(--font);
}

.hero-fg {
    padding:0;
}

a {
    color: var(--blue);
}
a:hover {
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
}

.btn {
    color: var(--white);
    background-color: var(--blue-grey);
    border-color: var(--blue-grey);
    border-radius: 100px;
    padding: 0px 10px 0px 10px;
}


/* HEADERS */

h2 {
    font-size: var(--f1px);
}

h3 {
    font-size: var(--f4);
}

.header-underline, h4 {
    font-size: var(--f2px);
    font-weight: bold;
    margin: 10vh 0 4vh 0;
}

.header-underline div, h4 {
    border-bottom: 2px solid var(--orange);
}

.col-md-6 {
    text-align: center;
}

.col-md-6 .img-fluid {
    height: 10vh;
    margin: 20px 0 20px 0;
}



/* CARDS WITH ICONS */

.card {
    align-items: center;
    background: none;
    border:none;
}

.card .img-png, .img-png {
    height: 10vh;
    width: auto;
}

.card .img-svg, .img-svg {
    height: 10vh;
    max-width: 90%;
}

.card-title {
    text-align: center;
    font-size: var(--f6-px);
    font-weight: bold;
    margin-bottom: 1vh;
}

.card-text {
    font-size: var(--f7-px);
}

.card-footer {
    background:none;
    border:none;
}




/* PARAGRAPHS */

p {
    font-size: var(--f6-b-px);
}

blockquote {
    font-size: var(--f7-px);
    background-color: var(--blue-grey);
    padding: 1rem;
    margin-top: 5vh;
    font-weight: 500;
}
