html, body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #fff;
}

/* Background */
.page-bg {
    min-height: 100vh;
    background: url("bg.png") center / cover no-repeat;
}

/* Header */
.header {
    padding: 40px 0 20px;
}

.logo {
    max-width: 200px;
}

.tagline {
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 300;
    opacity: 0.85;
    margin-top: 6px;
}

.contact-details {
	font-size: 1.35rem;
	line-height: 2.1rem;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Divider */
.divider {
    border-top: 2px solid #2ecc71;
    margin: 30px 0 60px;
}

/* Hero text */

.hero-text {
	margin-bottom: 10em;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    max-width: 520px;
    font-weight: 300;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1em;
    margin-top: 30px;
}

.btn-fixed {
    width: 360px;
    text-align: center;
}

.btn-eco {
    background: #2ecc71;
    color: #000;
    font-weight: 700;
    padding: 12px 0;
}

.btn-eco:hover {
    background: #555;
    color: #FFF;
    transition: all 1s ease;
}

.btn-white {
    background: #ffffff;
    color: #000;
    font-weight: 700;
    padding: 12px 0;
}

.btn-white:hover {
    background: #555;
    color: #FFF;
    transition: all 1s ease;
}

/* Images */
.blower-wrap {
    text-align: center;
}

.blower-main {
    max-width: 100%;
    cursor: pointer;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.7));
}

.thumbnails {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.thumb {
    max-width: 160px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumb-hover {
    display: inline-block;
    transition: transform 0.65s ease;
}

.thumb-hover:hover {
    transform: scale(1.07);
}

/* Footer */
.footer-text {
	margin-top: 5em;
	color: #777;
}

/* Modal */
.modal-content img {
    border-radius: 6px;
}
