:root {
    /* Colors */
    --sv-landing-primary-color: ;
    --sv-landing-secondary-color: ;
    --sv-landing-body-color: #01322B;

    /* Fonts */
    --sv-landing-body-font-size: 1rem;
    --sv-landing-body-font-weight: regular;
    --sv-landing-body-strong-font-weight: bold;

    --sv-landing-body-heading-size: 1.5rem;
    --sv-landing-primary-font: "Work Sans", sans-serif;;
    --sv-landing-secondary-font: "Work Sans", sans-serif;;
}
* {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
abbr[title],
acronym[title] {
	text-decoration: none;
}
html {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    overflow-x: hidden;
}
html:focus-within {
    scroll-behavior: smooth;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
body {
    color: var(--sv-landing-body-color);
    font-family: var(--sv-landing-primary-font);
    font-weight: var(--sv-landing-body-font-weight);
    font-size: var(--sv-landing-body-font-size);
    background-color: #fff;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
body strong,
body h1,
body h2,
body h3,
body h4,
body h5 {
    font-weight: var(--sv-landing-body-strong-font-weight);
}
body h1,
body h2 {
    font-size: var(--sv-landing-body-heading-size);
}
body a {
    color: #468730;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}
body a:hover,
body a:focus {
    color: #01322B;
}
.italic {
    font-style: italic;
}
.img-box {
    position: relative;
}
.img-box img {
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    position: absolute;
}
.img-box:after {
    content: '';
    display: block;
}
.img-box.cover img {
    object-fit: cover;
}
.img-box.contain img {
    object-fit: contain;
}
.img-box.square:after {
    padding-bottom: 100%;
}
.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 79rem;
}
.header .logo {
    width: 100%;
    max-width: 17.75rem;
}
.header .logo img {
    width: 100%;
    height: auto;
}
.header .top-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
}
.header .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    align-items: flex-end;
    text-align: center;
}
body > article .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.main-panel .content .swiper-slide {
    width: auto !important;
    height: 100%;
    max-height: 25rem;
    min-height: 25rem;
    flex-shrink: unset;
}
.main-panel {
    padding-bottom: 3.75rem;
}
.main-panel .content .swiper-wrapper {
    padding-bottom: 0;
    transition-timing-function: linear;
}
.main-panel .content .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    max-height: 25rem;
    min-height: 25rem;
    flex-shrink: unset;
    display: block;
}
.footer {
    height: 100%;
    padding-bottom: 2rem;
}
.footer .wrapper {
    display: flex;
}
.footer .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer .social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.footer .content .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.footer .content .left .phone a,
.footer .content .left .email a {
    color: #01322B;
}
.footer .content .left .phone a:hover,
.footer .content .left .phone a:focus,
.footer .content .left .email a:hover,
.footer .content .left .email a:focus {
    color: #468730;
}
.footer .social .facebook {
    margin: 0 2rem 0 1rem;
}
.footer .phone {
    margin-right: 2rem;
}
@media (max-width: 46.25em) {
    .header .top-panel {
        gap: 2.5rem;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 2.25rem;
        margin-bottom: 2.75rem;
        padding: 0 1rem;
    } 
    .header .content {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: 0.5rem;
        align-items: center;
    }
    .header .content p {
        text-align: center;
    }
    .main-panel {
        padding-bottom: 2.75rem;
    }
    .footer .content {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .footer .wrapper {
        height: 100%;
    }
    .footer .content .left {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        padding-bottom: 2rem;
    }
    .main-panel .content .swiper-slide {
        max-height: 12.5rem;
        min-height: 12.5rem;
    }
    .main-panel .content .swiper-slide img {
        max-height: 12.5rem;
        min-height: 12.5rem;
    }
    .footer .social .facebook {
        margin: 0 0 0 1rem;
    }
    .footer .phone {
        margin-right: 0;
    }
    .footer .content .copyright {
        margin-top: auto;
    }
}