/*----- GENERIC -----*/

body {
    background-color: #ffffff;
    color: #112f49;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

h1 {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 40px;
}

h2 {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	font-size: 36px;
}

h3 {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	font-size: 30px;
}

h3.white {
    color: #ffffff;
}

h3.light-blue {
    color: #0099dc;
}

h4 {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 500;
	font-size: 26px;
}

h5 {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 500;
	font-size: 22px;
}

p, ol, li, li {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 400;
	font-size: 18px;
}

a {
	color: #112f49;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 400;
	font-size: 18px;
}

a:hover {
	color: #0099dc;
	transition: all 0.5s;
}

strong {
	color: #112f49;
	font-weight: 900;
}

hr {
	background-color: #112f49;
    border: none;
    display: block;
    height: 3px;
    margin: 0px 0px 15px 0px;
    width: 50px;
}

hr.white {
    background-color: #ffffff;
}

hr.light-blue {
    background-color: #0099dc;
}

a.button {
    background-color: #ffffff;
    height: auto;
    border: none;
    border-radius: 3px;
    color: #0099dc;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
}

a:hover.button {
    background-color: #0099dc;
    color: #ffffff;
    transiton: all 0.5s;
}

/* BANNER/TOP PARALLAX */

#banner {
	padding: 0px;
}

#banner .container {
    max-width: 100%;
}

#banner .overlay {
    position: absolute;
    top: 0%;
    z-index: 1;
    width: 100%;
    height: 97.5%;
    background-color: rgba(0, 0, 0, 0.5);
}

#banner .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: auto;
}

#banner .overlay-text h1 {
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

/*CONTENT PARALLAX */

.overlay {
    position: absolute;
    top: 3%;
    z-index: 1;
    width: 100%;
    height: 94%;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 66.666%;
    height: auto;
}

.overlay-text h1 {
    color: #ffffff;
    /*text-align: center;*/
    text-transform: uppercase;
}

img.parallax {
    height: 350px;
}

/* GRADIENT */

#gradient {
    background: rgb(0,153,220);
    background: -moz-linear-gradient(90deg, rgba(0,153,220,1) 0%, rgba(0,95,197,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,153,220,1) 0%, rgba(0,95,197,1) 100%);
    background: linear-gradient(90deg, rgba(0,153,220,1) 0%, rgba(0,95,197,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0099dc",endColorstr="#005fc5",GradientType=1);
}

#gradient h5 {
    color: #ffffff;
}

/*---------- HOME PAGE ----------*/



/* BANNER SLIDER */

#banner-slider {
    padding: 0px;
}

#banner-slider .container {
    max-width: 100%;
}

/* INTRODUCTION */

#introduction {
    background-color: #0099dc;
}

#introduction h4 {
    color: #ffffff;
}

/* WHAT WE DO TILES */

#what-we-do .column.is-6-desktop.is-6-tablet.is-12-mobile {
    padding: 0px;
}

.construction-intro {
    background-image: url(/images/construction-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    border-radius: 25px 0px 0px 0px;
}

.construction-intro .intro-content {
    border-radius: 25px 0px 0px 0px;
}

.healthcare-infrastructure-intro {
    background-image: url(/images/healthcare-infrastructure-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    border-radius: 0px 25px 0px 0px;
}

.healthcare-infrastructure-intro .intro-content {
    border-radius: 0px 25px 0px 0px;
}

.surgical-solutions-intro {
    background-image: url(/images/surgical-solutions-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    border-radius: 0px 0px 0px 25px;
}

.surgical-solutions-intro .intro-content {
    border-radius: 0px 0px 0px 25px;
}

.engineering-technical-support-services-intro {
    background-image: url(/images/engineering-technical-support-services-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    border-radius: 0px 0px 25px 0px;
}

.engineering-technical-support-services-intro .intro-content {
    border-radius: 0px 0px 25px 0px;
}

/* OUR VALUES */

#our-values {
    background-color: #e1ecf6;
}

.value {
    margin-bottom: 20px;
}

.value h5 {
    display: inline-flex;
    align-items: center;
    color: #0099dc;
}

i.fas.fa-handshake, i.fas.fa-clipboard-check, i.fas.fa-lightbulb, i.fas.fa-users, i.fas.fa-award, i.fas.fa-seedling {
    margin-right: 10px;
    font-size: 40px;
}

/* GET IN TOUCH */

form#form1_contact label {
    color: #112f49;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

form#form1_contact input#form1_name, input#form1_phone, input#form1_email {
    width: 100%;
    border: 1px solid #112f49;
    color: #112f49;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    padding: 10px;
    margin-top: 5px;
}

form#form1_contact textarea#form1_message {
    width: 100%;
    border: 1px solid #112f49;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    padding: 10px;
    margin-top: 5px;
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    max-height: 500px;
}

form#form1_contact .checkbox label {
    font-size: 18px;
    text-transform: none;
}

form#form1_contact .checkbox label a {
    color: #0099dc;
    font-weight: 500;
}

form#form1_contact .checkbox label a:hover {
    color: #112f49;
    transition: all 0.5s;
}

form#form1_contact input#form1_submit {
    background-color: #0099dc;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 100px;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

form#form1_contact input:hover#form1_submit {
    background-color: #112f49;
    transition: all ease-in 1s;
}



/*--------- CONSTRUCTION PAGE ----------*/



.walling-intro {
	background-image: url(/images/walling-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 271px;
}

.doors-intro {
	background-image: url(/images/doors-thumbnail.jpg);
    background-position: 100% 15%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 271px;
}

.floors-intro {
	background-image: url(/images/floors-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 271px;
}

.ceilings-intro {
	background-image: url(/images/ceilings-thumbnail.jpg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 271px;
}

.glazing-intro {
	background-image: url(/images/glazing-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 328px;
}

.ventilation-intro {
	background-image: url(/images/ventilation-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 328px;
}

.safety-systems-intro {
	background-image: url(/images/safety-systems-thumbnail.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 328px;
}

.intro-content {
    background-color: rgba(17, 47, 73, 0.2);
    height: 100%;
    padding: 50px;
}

.intro-content .text h4 {
	color: #ffffff;
	text-transform: uppercase;
    line-height: normal;
}

.intro-content .text .text-hidden {
	display: none;
}

.intro-content .text .text-hidden p {
	color: #ffffff;
}

.intro-content:hover {
    background-color: rgba(17, 47, 73, 0.8);
}

.intro-content:hover .text .text-hidden {
    display: block;
}

/*---------- CONSTRUCTION SUBPAGES ----------*/

/* SUBCATEGORIES FILTER */

.filter-list {
    display: inline-flex;
    align-items: center;
}
    
a.filter-item {
    background-color: #0099dc;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 15px 30px;
    margin: 0px 15px;
    font-weight: 500;
}

a:hover.filter-item {
    background-color: #112f49;
    transition: all 0.5s;
}

#content {
    align-items: center;
}

/*---------- MEDIA QUERIES ----------*/

/*----- MOBILE -----*/

@media (max-width: 480px) {
    .construction-intro, .construction-intro .intro-content {
        border-radius: 25px 25px 0px 0px;
    }

    .healthcare-infrastructure-intro, .healthcare-infrastructure-intro .intro-content {
        border-radius: 0px;
    }

    .surgical-solutions-intro, .surgical-solutions-intro .intro-content {
        border-radius: 0px;
    }

    .engineering-technical-support-services-intro, .engineering-technical-support-services-intro .intro-content {
        border-radius: 0px 0px 25px 25px;
    }

    #our-values .column.is-5-desktop.is-offset-1-desktop.is-6-tablet.is-12-mobile {
        padding-bottom: 0px;
    }

    #our-values .column.is-5-desktop.is-6-tablet.is-12-mobile {
        padding-top: 0px;
    }
}

/*----- TABLET -----*/

@media (min-width: 481px) and (max-width: 768px) {
    .construction-intro, .construction-intro .intro-content {
        border-radius: 25px 25px 0px 0px;
    }

    .healthcare-infrastructure-intro, .healthcare-infrastructure-intro .intro-content {
        border-radius: 0px;
    }

    .surgical-solutions-intro, .surgical-solutions-intro .intro-content {
        border-radius: 0px;
    }

    .engineering-technical-support-services-intro, .engineering-technical-support-services-intro .intro-content {
        border-radius: 0px 0px 25px 25px;
    }

    #our-values .column.is-5-desktop.is-offset-1-desktop.is-6-tablet.is-12-mobile {
        padding-bottom: 0px;
    }

    #our-values .column.is-5-desktop.is-6-tablet.is-12-mobile {
        padding-top: 0px;
    }
}

/*----- LAPTOP -----*/

@media (min-width: 769px) and (max-width: 1024px) {
}

/*----- DESKTOP -----*/

@media (min-width: 1025px) and (max-width: 1200px) {
}


