/* GENERAL STYLES */


* {
    margin: 0;
    padding: 0;

    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url("../images/bg.jpg");
    background-position: 0% 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255, 0.6);
    background-blend-mode: lighten;
    background-clip: border-box;

    min-width: 600px;
}

@media all and (orientation: portrait) {
    body {
        background-position: 50% 0%;
        background-size: auto 100%;
    }
}


body, header, main, div.main-page-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}


/* HEADER STYLES */


header {
    width: 100%;

    margin: 0;
    padding: 0;
}

div#company-info,
nav#page-nav > ul {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

div#company-info {
    margin: 10px;
    align-items: center;
}

img#header-logo {
    height: 120px;
    width: auto;
}

span#header-url {
    color: black;
    font-size: 24px;
    font-weight: bold;
}

nav#page-nav {
    padding: 10px 50px 10px 50px;

    background-color: #0C47A0;
}

nav#page-nav > ul {
    align-items: center;
}

li.nav-item {
    flex: 1 1 0px;

    min-width: 110px;
    
    border: none;
    background-color: transparent;

    text-align: center;
    list-style: none;
}

li.nav-item a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

li.nav-item a:hover {
    text-decoration: underline;
}


/* GENERAL MAIN STYLES */

main {
    align-items: center;
}

div.main-page-wrapper {
    width: 900px;

    padding-top: 20px;
    padding-left: auto;
    padding-right: auto;

    align-items: center;
}


div.page-text-wrapper {
    width: 100%;

    padding-top: 30px;

    display: flex;
    flex-flow: column;    
}

p.page-text {
    padding-bottom: 30px;

    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}


/* HOME MAIN STYLES */


img#main-logo {
    max-height: 300px;
    height: auto;
}

h1#name {
    color: #0C47A0;
    font-size: 36px;
}

h1#name > span.llc-text {
    font-size: 28px;
}

h2#dba {
    font-size: 20px;
    font-weight: normal;
}

h1#phone {
    color: #0C47A0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    padding: 20px 0 10px 0;
}

h1#description {
    font-size: 30px;
    font-weight: normal;
}


/* SERVICES MAIN STYLES */


div.services-list-section > h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

div.services-list-section,
div.services-list-section > ul {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

div.services-list-section {
    padding-bottom: 30px;
}

li.list-text,
p.list-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

div.services-list-section p.list-text {
    text-align: center;
}

/* BENEFITS MAIN STYLES */

ul#benefits-list {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

ul#benefits-list > li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}


/* CONTACT MAIN STYLES */

div.contact-text-wrapper {
    width: 400px;

    padding-top: 30px;

    display: flex;
    flex-flow: column; 
    align-items: center;   
}


div.contact-list-section {
    width: 100%;

    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}

div.contact-list-section > h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

div.contact-list-section > ul > li {
    list-style-type: none;
}

div.contact-list-section {
    padding-bottom: 30px;
}

.icon-item {
    list-style: none;
}

.icon-item::before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: text-bottom;
    margin-right: 5px;
}

#landline-item::before {
    background-image: url("../images/icons/landline.svg");
}

#mobile-item::before {
    background-image: url("../images/icons/smartphone.svg");
}

#email-item::before {
    background-image: url("../images/icons/email.svg");
}

#location-header::before {
    background-image: url("../images/icons/location.svg");
}