/* CSS General to all pages */

a {
    text-decoration: none;
}

html {
    height: 100%;
    font-family:Verdana, Arial;
}

body {
    margin: 0;
    background-color: white;
    width: 100%;
    min-height: 100vp;
    box-sizing: border-box;
}

h1 {
    font-size:4vw;
    font-family: Montserrat, Verdana, Arial;
    font-weight: 300;
    color: rgb(200, 80, 80);
}

@media (max-width: 760px) {
    h1 {
        font-size: 25px;
    }
}

h3 {
    font-size:1.4vw;
    font-family: "Open Sans", sans-serif;
    font-weight: 320;
    color: black;
}

@media (max-width: 760px) {
    h3 {
        font-size: 14px;
    }
}


h4 {
    font-size:1.1vw;
    font-family: Montserrat, Verdana, Arial;
    font-weight: 300;
    color: black;
}

@media (max-width: 760px) {
    h4 {
        font-size: 11px;
    }
}


/* NAVBAR - NAVBAR - NAVBAR - NAVBAR - NAVBAR */ 

.navbar {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    background-color: #2C3E50;
    opacity: 90%;
    align-items: center;
    height: 85px;
    padding: 0 10px 0 8px;
    z-index: 110;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 22%;
}

@media (max-width: 760px) {
    .logo-container {
        margin-left: 10%;
    }
}

.logo {
    vertical-align: middle;
    height: 70px;
}

.home{
    width: 20px;
}


/* TEXT FORMAT - TEXT FORMAT - TEXT FORMAT - TEXT FORMAT - TEXT FORMAT */ 

@media (max-width: 1125px) {
    .text-considered{
        text-align: center;
    }
}

.text-line-left {
    margin-top: 50px;
    margin-left: 22%;
    margin-right: 22%;
    margin-bottom: 0px;
    text-align: left;
}

@media (max-width: 1125px) {
    .text-line-left{
        text-align: center;
    }
}

.text-quotes {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    text-align: center;
    align-content: center;
    padding: 10px 20px;
}

.text-quotes-author {
    font-weight: 200;
}

.text-color{
    color: rgb(200, 80, 80);
    font-weight: 400;
}

.text-sections {
    margin-top: 140px;
    margin-left: 22%;
    margin-right: 22%;
    margin-bottom: 0px;
    text-align: left;
    line-height: .2;
}

@media (max-width: 1125px) {
    .text-sections{
        text-align: center;
        margin-top: 120px;
    }
}

.text-sections-reduce-top-margin {
    margin-top: 50px;
}

.text-sections-center{
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}

.text-line-center {
    margin-top: 50px;
    margin-left: 22%;
    margin-right: 22%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.bottom-padding {
    padding-bottom: 100px;
}

@media (max-width: 1000px) {
    .text-line-center {
        margin-top: 20px;
        margin-left: 5%;
        margin-right: 5%;
    }
}

.less-top-margin {
    margin-top: 100px;
}

@media (max-width: 1000px) {
    .less-top-margin {
        margin-top: 30px;
    }
}

.text-line {
    margin-top: 80px;
    margin-left: 22%;
    margin-right: 22%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .text-line{
        margin-left: 15%;
        margin-right: 15%;
    }
}

.text-box {
    /* background: #fff; */
    padding: 10px 10px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.text-bold {
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 0;
}

.text-bold-top-margin {
    margin-top: 0;
}

.text-h3 {
    margin: 0;
}

/* CONTACT FORM - CONTACT FORM - CONTACT FORM - CONTACT FORM */

.form-top-margin {
    margin-top: 10px;
}



/* FOOTER - FOOTER - FOOTER - FOOTER */



.footer-grid {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 1.2;
    background-color: #34495E;
    color: white;
    text-align: center;
    font-size: 11px;
    padding: 10px 0;
    opacity: 90%; 
}

.footer-grid p {
  margin: 0px;
}

#copyright {
    font-size: 9px;
    margin-top: 5px;
}

