@font-face {
    font-family: 'Square721 BT';
    src: url('fonts/Square721BT-Bold.eot');
    src: url('fonts/Square721BT-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Square721BT-Bold.woff2') format('woff2'),
        url('fonts/Square721BT-Bold.woff') format('woff'),
        url('fonts/Square721BT-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height:1.3;
    color: #4d4d4d;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    --green: #123B15;
}
a {
    color:inherit;
    text-decoration: none;
}
h2, .square {
    font-family: 'Square721 BT', Arial, sans-serif;
    font-size:36px;
    margin:0px;
}
.square {
    font-weight:bold;
    font-size:24px;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}
.flex > div {
    flex-basis: 100%;
}
.flex-column {
    flex-direction: column;
}
.align-middle {
    align-items: center;
}
.inner {
    max-width: 1220px;
    margin: 0 auto;
}
.section {
    padding: 60px 0px;
}
.green {
    color: var(--green);
}
.white {
    color: #f4f4f4;
}
.center {
    text-align:center;
}
.bold {
    font-weight: bold;
}
.green-bg {
    background-color: var(--green);
}
header {
    padding:20px 0px;
    border-bottom: 1px solid var(--green);
}
header .flex, .flex.top-section {
    justify-content: space-between;
}
header .flex > div, footer .flex > div {
    flex-basis: content;
}
.flex.top-section {
    align-items: stretch;
}
.top-section > div:first-child {
    justify-content: space-between;
    padding-top:60px;
    padding-bottom:60px;
    align-items: flex-start;
}
.service-header, .service-content {
    padding:15px 0px;
    text-align:center;
    width:100%;
}
.service-header {
    background-color: #E93D00;
}
.service-content {
    background-color: #E3E8E3;
}
img.full-width {
    width:100%;
    height:auto;
}
img.icon {
    width:50px;
    height:50px;
}
footer.section {
    padding-bottom:0px;
}
footer img {
    height: 60px;
}
footer h2 {
    font-size:24px;
}
footer p {
    text-align:center;
    color:#ffffff;
    font-size:16px;
}
footer .flex {
    justify-content: space-between;
}
footer .foot-contact {
    margin-top:15px;
    padding: 10px 50px;
    box-sizing:border-box;
    color: var(--green);
    background-color:#ffffff;
}
.copyright {
    padding: 15px 0px;
    font-size:14px;
    color:#ffffff;
    border-top:1px solid #ffffff;
    margin-top:20px;
}

.copyright #insured {
    display:flex;
    align-items:center;
    gap:4px;
}

.copyright #insured img {
    width:16px;
    height:16px;
}

#home-slider {
	margin: 1em auto;
	width: 1220px;
    max-width:100%;
    height: 750px;
	position: relative;
    overflow:hidden;
}

#home-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#home-slider img:nth-of-type(1) {
    animation-name: fader;
    animation-delay: 2s;
    animation-duration: 1s;
    z-index: 20;
}

#home-slider img:nth-of-type(2) {
    z-index: 10;
}

#home-slider img:nth-of-type(n+3) {
    display: none;
}

@keyframes fader {
    from { opacity: 1.0; }
    to   { opacity: 0.0; }
}

@media screen and (max-width: 768px) {
    .flex {
        flex-direction: column;
        row-gap: 15px;
        flex-wrap: wrap;
    }
    .inner {
        padding: 20px;
    }
    h2 {
        font-size: 32px;
    }
    #home-slider {
        height: 180px;
    }
    #home-slider img {
        width: 85%;
    }
    .inner.services {
        padding-top:0px;
        padding-bottom:0px;
    }
    .flex.services div {
        width:100%;
    }

}