@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700,900&display=swap');

html,
body {
    width: 100%;
    height: auto;
    background-color: #F8F8F8;
    min-height: 100%;
}

html {
    height: 100%;
}

ul,
li {
    text-decoration: none;
    list-style-type: none;
}

/****************
TYPOGRAPHY
****************/

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-stretch: normal;
}

h1.hero-title {
    font-size: 44px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.18;
    letter-spacing: 0.1px;
    color: black;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: 0.09px;
    color: black;
}

h2 {
    font-size: 34px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.09px;
    color: #000000;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: 0.07px;
    color: #000000;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.4;
    letter-spacing: 0.07px;
    color: #000000;
}

h5 {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.05px;
    color: var(--black);
}

h6 {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: 0.05px;
    color: black;
}

p.small {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: 0.9;
    line-height: 28px;
    letter-spacing: -0.69px;
    color: black;
    margin-top: 20px;
}

p {
    font-size: 22px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: -0.69px;
    color: #656565;
}

p.quote {
    border-left: 4px solid #FF7401;
    border-radius: 3px;
    padding-left: 30px;
}

.bold600 {
    font-weight: 600;
}

.bold700 {
    font-weight: 700;
}

/****************
BUTTONS AND LINKS
****************/

.btn-primary,
.btn-secondary {
    max-width: 320px;
    min-width: 240px;
    height: 50px;
    border-radius: 8px;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 38px;
    letter-spacing: 0.88px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    outline: none !important;
    border: none !important;
}

.btn-outline-dark {
    max-width: 300px;
    min-width: 100px;
    height: 50px;
    border-radius: 8px;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 38px;
    letter-spacing: 0.88px;
    text-align: center;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    color: black;
}

*:focus {
    outline: none !important
}

.btn-primary {
    background-color: #FF7401;
    color: #ffffff;
    outline: none !important;
    border: none !important;
    box-shadow: none;
}

.btn-secondary {
    color: black;
    box-shadow: 0 5px 20px 0 rgba(7, 42, 68, 0.1);
    background-color: #ffffff;
}

.btn-primary:hover {
    background-color: #FFD03D;
    color: black;
}

.btn-secondary:hover {
    background-color: #FFD03D;
    color: black;
}

.btn-primary:active:focus {
    box-shadow: none;
    background-color: #D56C15 !important;
    color: #ffffff;
}

.btn-primary:active {
    outline: none !important;
    border: none !important;
}

.btn-main-nav {
    max-width: 100px;
    min-width: 140px;
    color: black;
    font-weight: 500;
    font-size: 13px;
    line-height: 42px;
    background: white;
}

.btn-full-width {
    width: 100%;
    max-width: 100%;
}

.btn-grow {
    transition: all .2s ease-in-out;
}

.btn-grow:hover {
    transform: scale(1.05);
}

a.contact-link {
    font-size: 22px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: -0.69px;
    color: #656565;
    text-transform: none;
}

a {
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #FF7401;
}

a:hover {
    color: inherit;
}

.absolute-btn {
    position: absolute;
    bottom: 20%;
    padding-bottom: 40px;
}

/****************
COLORS
****************/

.col-primary {
    color: #FF7401 !important;
}

.col-dark-blue {
    color: #03293F;
}

.bg-col-primary {
    background: #FF7401 !important;
}

/****************
MOBILE MENU
****************/
#dropdownMenuButton {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: -550% !important;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: 20px;
    margin: .125rem 0 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 24px;
    -webkit-box-shadow: 10px -1px 39px -17px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 10px -1px 39px -17px rgba(0, 0, 0, 0.45);
    box-shadow: 10px -1px 39px -17px rgba(0, 0, 0, 0.45);
}

.dropdown-item {
    font-family: 'Roboto';
    font-size: 14px !important;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.88px;
    color: #ffffff;
    opacity: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.dropdown-item:last-child {
    margin-bottom: 0px;
}

.dropdown-item:hover {
    color: white;
    text-decoration: none !important;
    opacity: 1 !important;
    border-radius: 30px;
}

/****************
FORM
****************/
label {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    margin-bottom: 20px;
}

input {
    border-radius: 8px !important;
    border: solid 2px #e1e1e1 !important;
    height: 60px !important;
}

iframe {
    width: 100%;
    /*height: 651px;*/
    border-radius: 24px;
}

.quform-errors > .quform-error,
.quform-outer-no-js .quform-error {
    padding: 6px 16px 6px 16px;
    line-height: 16px;
    background: #FFF0E4;
    background-size: 20px;
    color: #FF7401;
    font-size: 15px;
    font-weight: normal;
    display: inline-block;
    border: 1px solid #FF7401;
    border-radius: 4px;
    min-width: 150px;
    margin-top: 10px;
}

/****************
HELPERS
****************/

.xs-show {
    display: none;
}

.xs-hide {
    display: block;
}

.no-padding {
    padding: 0px !important;
}

.height-limit-250 {
    min-height: 280px !important;
    height: 100%;
}


/****************
HERO IMAGES
****************/
.hero-container {
    background-image: url('../images/hero-image@2x.jpg');
    background-color: #cccccc;
    height: 860px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-hero-container {
    background-image: url('../images/contact-us-hero@3x.jpg');
    background-color: #cccccc;
    height: 860px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-container {
    background: white;
    height: 60px;
    border-radius: 0 0 10px 10px;
}

.nav-item {
    margin-right: 15px;
}

.nav-link {
    font-family: 'Roboto';
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.88px;
    color: #ffffff;
    opacity: 1;
	padding: 10px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: white;
    text-decoration: underline;
    opacity: 1 !important;
}

.nav-link:focus {
	background: transparent;
	border-radius: 20px;
    text-decoration: underline;
    opacity: 1 !important;
}

.nav-item:last-child {
    margin-top: -10px;
}

/****************
CONTENT CONTAINER
****************/
.rounded-container {
    background-color: white;
    border-radius: 24px;
    padding: 40px;
}

.rounded-container-no-top {
    background-color: white;
    border-radius: 0 0 24px 24px;
    padding: 40px;
}

.rounded-container-no-padd {
    background-color: white;
    border-radius: 24px;
}

.content-card {
    padding: 30px;
    border-radius: 24px;
    background-color: lightgray;
    min-height: 420px;
    height: 100%;
}

.big-testimonial-card {
    border-radius: 24px;
    min-height: 500px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #23272A;
    background-image: url('../images/testimonial-pattern@2x.png');
}

.parallax-earth {
    background-image: url('../images/planet-earth@2x.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
}

.parallax-power-plant {
    background-image: url('../images/power-plant-chimney.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 560px;
}

.testimonial-nav {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.renewable-content {
    position: absolute;
    top: 50px;
    width: 600px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.hvac-container {
    background-color: #E7F0FF;
    min-height: 500px;
    height: auto;
    border-radius: 24px;
}

.hvac-container img {
    position: absolute;
    left: 0px;
    top: 5px;
}

/****************
BACKGROUNDS
****************/
.bg-eng-services,
.bg-consult-services,
.bg-clean-energy,
.bg-projects,
.bg-testimonials,
.bg-work-together,
.bg-blue {
    background-color: #cccccc;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-eng-services {
    background-image: url('../images/services-engineering-construction@2x.jpg');
}

.bg-consult-services {
    background-image: url('../images/services-consulting-services@2x.jpg');
}

.bg-clean-energy {
    background-image: url('../images/services-clean-energy@2x.jpg');
}

.bg-projects {
    background-image: url('../images/electrical-pylon@2x.jpg');
}

.bg-testimonials {
    background-image: url('../images/testimonials-pattern@3x.png'), linear-gradient(55deg, #cc809d, #c67b2a);
}

.bg-blue {
    background-color: #0D82FF;
    background-image: url('../images/corporate-profile-pattern@2x.png');
}

.bg-work-together {
    background-image: url('../images/engineer-looking-at-power-plant@2x.jpg');
}

.bg-testimonials p {
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: normal;
    color: #ffffff;
}

.carousel-control-next,
.carousel-control-prev {
    position: static;
    display: -ms-flexbox;
    display: inline-block;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    color: #fff;
    text-align: center;
    opacity: 1;
}

/****************
ACCORDIONS
****************/
.card {
    border: none;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-radius: 30px !important;
    margin-bottom: 15px;
    border: none;
    transition: all .2s ease-in-out;
}

.card-header:hover {
    transform: scale(1.01);
    cursor: pointer;
}

.accordion-header h2 {
    position: absolute;
    margin-top: 48px;
    margin-left: 30px;
}

.btn-link {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #000000;
}

.btn-link:hover {
    text-decoration: none;
    color: #FF7706;
}

/****************
FOOTER
****************/

footer {
    padding-top: 80px;
    background-color: white;
}

.widget-list li {
    margin-top: 20px;
}

.widget-list li a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.1px;
    text-transform: none;
    color: black;
}

h4.card-header > a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.07px;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.1px;
    color: black;
}

.widget-list li a:hover {
    text-decoration: underline;
}

.widget .card-header {
    background: transparent;
}

.widget .card-header a {
    width: 100%;
    display: block;
}

.widget .card-header a:after {
    content: url(../images/ico-16-icon.svg);
    position: absolute;
    right: 40px;
    top: 0.9rem;
    transition: transform 0.25s ease-in-out;
}

.widget .card-header a:hover,
.widget .card-header a:focus {
    text-decoration: none;
}

.widget .card-header a[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.widget .card-block {
    padding: 0 1.3rem;
}

.widget .card-block .widget-list li {
    margin-bottom: 4px;
}