/*RESET*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: inherit;
}

:hover {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
::-webkit-scrollbar {
    width:10px;
} 
::-webkit-scrollbar-track {
    background:#999999;
} 
::-webkit-scrollbar-thumb {
	background:rgb(0,0,0,0.5);
}

body {
    background: url(../images/solar-panels.jpg) no-repeat left top;
    background-size: cover;
    font-family: 'arial', sans-serif;
    color: white;
    width: 100%;
    height: 100vh;
    position: relative;
}


/*FONTS*/
strong {
    font-weight: bolder;
}

p,
li {
    font-size: 18px;
    line-height: 30px;
    margin: 30px auto;
}

ul li {
    margin: 5px 0;
    margin-left: 25px;
}


/*OBJECTS*/
.button {
    display: inline-block;
    padding: 10px 15px;
    background: goldenrod;
    outline: none;
    -webkit-appearance: none;
    color: #111;
    margin: 10px auto;
    border-radius: 3px;
    border: none;
    font-size: 18px;
    font-weight: bold;
}
.button:hover {
    cursor: pointer;
    background: #111;
    color: goldenrod;
}

hr {
    border: none;
    margin: 50px auto;
    width: 100%;
    height: 1px;
    background: black;
}

.logo {
    width: 300px;
    position: absolute;
    top: 30px;
    left: 40px;
}

.icon {
    width: 100px;
}
.stats {
    width: calc(100% - 120px);
}
.icon img {
    width: 100%;
    height: 100%;
}

.count {
    font-size: 36px;
    font-weight: bold;
}


/*LINKS*/
a:link,
a:hover,
a:visited,
a:active {
    color: inherit;
	text-decoration: none;
}
a:link {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}


/*DIVS*/
section {
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding: 50px 0;
}

.overlay {
    background: rgba(0,0,0,0.7);
    width: 532px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: scroll;
}

.container {
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.col12n {
    width: 100%;
}
.coln {
    width: 100%;
}

/*FORM*/
form {
    width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: left;
}
form label {
    display: none;
    font-size: 0;
}

input,
textarea,
select {
    width: 100%;
    margin: 0 0 10px;
    padding: 10px;
    background: white;
    border: 0;
    border-radius: 3px;
    font-family: 'arial', sans-serif;
    font-size: 18px;
    color: #111;
    -webkit-appearance: none;
}

textarea {
    width: 100%;
    height: 150px;
}


/*MODIFIERS*/
.left {
    text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.justify {
	text-align: justify;
}

.ftlt {
    float: left;
}
.ftrt {
    float: right;
}
.clear {
    clear: both;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.heading {
    font-size: 40px;
    margin: 36px 0;
}
.sub-heading {
    font-size: 30px;
    margin: 24px 0;
}
.small-heading {
	font-size: 21px;
}

.yellow {
    color: goldenrod;
}


/*MEDIA QUERIES*/
@media (max-width:1024px) {
}


@media (max-width:960px) {
    body {
        background: url(../images/solar-panels-tablet.jpg) no-repeat left top;
        background-size: 960px auto;
        height: 100%;
        color: #111;
    }

    .overlay {
        background: white;
        width: 100%;
        height: auto;
        position: relative;
        top: 600px;
        bottom: 0;
        right: 0;
        overflow-y: auto;
    }

    hr {
        background: #ddd;
    }

    input,
    textarea,
    select {
        border: 1px solid #ddd;
        border-radius: 3px;
    }

    .flex {
        align-items: flex-start;
    }

    .coln {
        width: calc(33.33% - 25px);
        text-align: center;
    }
    .icon,
    .stats {
        width: 100%;
    }
    .icon img {
        max-width: 150px;
    }
}


@media (max-width:768px) {
}


@media (max-width:600px) {
    body {
        background: url(../images/solar-panels-tablet.jpg) no-repeat left top;
        background-size: auto 400px;
    }

    .overlay {
        top: 400px;
        text-align: center;
    }

    .coln {
        width: 100%;
    }
}


@media (max-width:414px) {  
    .logo {
        width: 225px;
    }  
}