@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none;}
table { border-collapse: collapse; border-spacing: 0;}
* {box-sizing: border-box; vertical-align: top;}
a {
	text-decoration: none;
	transition: all 0.3s linear;
}

/*General*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}
.Wrapper {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
}
.Section {
    padding: 80px 0;
}
.Center {
    text-align: center;
}
strong {
    font-weight: 600;
}
i {
    line-height: 1.5 !important;
    color: #9fbc36;
}
p {
    margin-bottom: 20px;
}
p:last-of-type {
    margin-bottom: 0;
}
a {
    color: #444;
    transition: all 0.3s linear;
}
a:hover {
    color: #9fbc36;
}
header {
    background: #FFF;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}
header .Wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    padding: 10px 0;
}
.Logo {
    width: 270px;
    height: auto;
}
.Logo img {
    width: 100%;
    height: auto;
}
header .Phone {
    font-size: 22px;
}

.Hero {
    width: 100%;
    height: 100%;
    max-height: 700px;
    position: relative;
}
.Hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}
.Screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 3;
}
h1 {
    color: #FFF;
    font-weight: 600;
    font-size: 60px;
    line-height: 1.1;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 20px;
    font-weight: 600;
}
h3::after {
    display: block;
    content: "";
    margin: 10px 0;
    width: 50px;
    height: 4px;
    background: #9fbc36;
}
.ThreeCol {
    display: flex;
    gap: 40px;
    flex-direction: column;
}
.Green {
    color: #9fbc36;
}
footer {
    background-color: #4c7333;
    color: #FFF;
    padding: 20px 0;
}
footer .Wrapper {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
footer a {
    color: #FFF;
}

@media (min-width: 767px) {
    header .Wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    h1 {
        font-size: 80px;
    }
    .ThreeCol {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .Wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}