/*GLOBAL*/
* {
    font-family: 'Montserrat', sans-serif;
    color: black;
}

h1 {
    font-size: 45px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #5d7262;
}

h2 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #5d7262;
}

p {
    font-size: 18px;
    line-height: 30px;
}

.sections {
    padding: 30px 20px;
    border-bottom: 3px #5d7262 solid;
}

a {
    color: #5d7262;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

a:hover {
    color: #d57b7b;
}


/*BACKGROUND*/
html {
    background-color: white;

}

/*HEADER*/
header {
    border-bottom: 3px #5d7262 solid;
}

.header-content {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Logos*/
.logos {
    max-height: 100px;
}

#logo {
    max-height: 45px;
}

#logoSnail {
    max-height: 50px;
}

#logosDiv {
    padding: 5px;
}

#headerText {
    text-align: right;
    
}

/*HERO SECTION
.hero-section {
    background-image: url('resources/media/OurWork-InternalInsulation.JPG');
    background-size: cover;
    height: 700px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: 40px 60px;
}

.hero-content {
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: left;
    background-color: #a2a185;
    padding: 25px 20px;;
    width: 25%;
    box-shadow: 2px 2px 100px black;
    border: 1px black solid;
}*/

/*INTRO SECTION*/
.intro-section {
    padding: 30px 10px;
    border-bottom: 3px #5d7262 solid;
    background-color: #e8eee9;
}


.intro-section p {
    padding: 0px 20%;
    text-align: center;
    font-size: 20px;

}

/*WHAT WE DO SECTION*/
.what-we-do-section-flex {
    display: flex;
    align-items: flex-start;
}

.what-we-do-section img {
    width: 450px;
    border: #5d7262 1px solid;
    box-shadow: 1px 1px 3px 0px #5d7262;
}

.what-we-do-section p {
    margin-right: 30px;
}

/*HOW WE WORK SECTION*/
.how-we-work-section {
    background-color: #e8eee9;
}

.how-we-work-section-flex {
    display: flex;
    align-items: flex-start;
}

.how-we-work-section img {
    width: 450px;
    border: #5d7262 1px solid;
    box-shadow: 1px 1px 3px 0px #5d7262;
}

.how-we-work-section-text {
    margin-left: 30px;
}

/*HELP SECTION*/
.help-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.help a {
    font-size: 22px;
}

.help img {
    width: 250px;
    border: #5d7262 1px solid;
    box-shadow: 1px 1px 3px 0px #5d7262;
    
}

.help-text {
    margin-right: 30px;
    max-width: 600px;
}

/*FOOTER SECTION*/
footer p {
    font-style: italic;
    font-size: 13px;
    text-align: center;
}

footer {
     background-color: #e8eee9;
     border: #e8eee9 1px solid;
}


