* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit
}

a {
    text-decoration: none;
    color: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px
}

h1 {
    font-size: 48px;
    font-weight: 800
}

@media(max-width: 1024px) {
    h1 {
        font-size: 32px
    }
}

@media(max-width: 768px) {
    h1 {
        font-size: 24px
    }
}

h2 {
    font-size: 32px;
    font-weight: 700
}

@media(max-width: 1024px) {
    h2 {
        font-size: 24px
    }
}

@media(max-width: 768px) {
    h2 {
        font-size: 18px
    }
}

h3 {
    font-size: 24px;
    font-weight: 600
}

@media(max-width: 768px) {
    h3 {
        font-size: 18px
    }
}

p {
    margin-bottom: 16px;
    line-height: 1.6
}

.text-center {
    text-align: center
}

.text-light {
    color: #666
}

.blue-button {
    background-color: #1177c2;
    display: inline-block;
    color: #fff;
    padding: 8px 28px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0;
    transition: background-color .3s ease;
    text-transform: uppercase
}

.blue-button:hover {
    background-color: #0d5b94
}

@media(max-width: 768px) {
    .blue-button {
        padding: 16px 32px;
        font-size: 16px
    }
}

.header {
    background-color: #fff;
    padding: 16px 0
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.header img {
    margin: 0 auto;
    max-width: 250px
}

@media(min-width: 768px) {
    .header img {
        max-width: 300px
    }
}

@media(min-width: 1024px) {
    .header img {
        max-width: 400px
    }
}

.hero {
    background-color: #031a44;
    background-image: url("/images/header-mobile.jpg");
    background-size: cover;
    background-position: center right;
    padding: 60px 0
}

@media(min-width: 1024px) {
    .hero {
        background-image: url("/images/header-desktop.jpg");
        padding: 100px 0
    }
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

@media(max-width: 1023px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center
    }
}

.hero__content {
    padding: 0 clamp(20px, 4vw, 60px) clamp(20px, 4vw, 60px) clamp(20px, 4vw, 60px)
}

@media(min-width: 1024px) {
    .hero__content {
        padding: 0 0 0 clamp(20px, 4vw, 60px)
    }
}

.hero__title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px
}

@media(min-width: 768px) {
    .hero__title {
        font-size: 42px
    }
}

.hero__subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 40px
}

@media(min-width: 768px) {
    .hero__subtitle {
        font-size: 24px
    }
}

.hero__image {
    display: none
}

@media(max-width: 1023px) {
    .hero__image {
        display: block
    }
}

.hero__image img {
    width: 100%
}

.feature-callouts {
    padding: 60px 0;
    background-color: #e6f5ff
}

@media(min-width: 1024px) {
    .feature-callouts {
        padding: 80px 0
    }
}

.feature-callouts__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.feature-callouts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px
}

@media(min-width: 1024px) {
    .feature-callouts__wrapper {
        flex-direction: row
    }
}

@media(min-width: 1400px) {
    .feature-callouts__wrapper {
        gap: 120px
    }
}

.feature-callouts__item {
    position: relative
}

@media(min-width: 1024px) {
    .feature-callouts__item::after {
        content: "";
        display: block;
        background-color: #a1aab4;
        position: absolute;
        bottom: 0;
        top: 0;
        width: 1px;
        height: 100%;
        right: -40px
    }
}

@media(min-width: 1400px) {
    .feature-callouts__item::after {
        right: -60px
    }
}

.feature-callouts__item:last-child::after {
    display: none
}

.feature-callouts__title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: #104761
}

@media(min-width: 1024px) {
    .feature-callouts__title {
        font-size: 26px
    }
}

.feature-callouts__grid {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 40px
}

@media(min-width: 1200px) {
    .feature-callouts__grid {
        gap: 60px
    }
}

.feature-callouts__foot {
    margin-top: 40px;
    text-align: center
}

@media(min-width: 1024px) {
    .feature-callouts__foot {
        margin-top: 60px
    }
}

.feature-callout {
    max-width: 360px;
    text-align: center;
    width: 100%
}

@media(min-width: 500px) {
    .feature-callout {
        width: calc(50% - 20px)
    }
}

@media(min-width: 1200px) {
    .feature-callout {
        width: calc(50% - 30px)
    }
}

.feature-callout__icon {
    border-bottom: 1px solid #5c5f67;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    padding-bottom: 20px
}

.feature-callout__icon img {
    height: 70px
}

.feature-callout__description {
    color: #5c5f67;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.33;
    margin-bottom: 0;
    text-align: center
}

.two-features__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.two-features__grid {
    display: flex;
    justify-content: center;
    flex-direction: column
}

@media(min-width: 768px) {
    .two-features__grid {
        flex-direction: row
    }
}

.two-feature {
    background-repeat: no-repeat;
    background-size: 175px;
    padding: 60px 40px;
    text-align: center;
    width: 100%
}

@media(min-width: 768px) {
    .two-feature {
        text-align: left
    }
}

.two-feature--dark {
    background-color: #104761;
    background-image: url(/images/shield.png);
    background-position: calc(100% - 20px) 100%
}

@media(min-width: 768px) {
    .two-feature--dark {
        background-position: calc(100% - 60px) 100%
    }
}

.two-feature--light {
    background-color: #1177c2;
    background-image: url(/images/officer.png);
    background-position: calc(0% + 20px) 100%;
    padding-bottom: 100px
}

@media(min-width: 768px) {
    .two-feature--light {
        background-position: calc(100% - 60px) 100%
    }
}

.two-feature__title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto 20px
}

@media(min-width: 768px) {
    .two-feature__title {
        max-width: 350px
    }
}

.two-feature__description {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.33;
    margin: 0 auto;
    max-width: 275px
}

@media(min-width: 768px) {
    .two-feature__description {
        max-width: 350px
    }
}

.two-feature__list {
    list-style: none;
    margin: 0 auto;
    max-width: 245px;
    padding: 0
}

@media(min-width: 768px) {
    .two-feature__list {
        max-width: calc(100% - 12px)
    }
}

.two-feature__list li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    text-align: left
}

.two-feature__list li::before {
    align-items: center;
    background-image: url(/images/icon-check.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: flex;
    height: 18px;
    justify-content: center;
    left: -5px;
    position: absolute;
    top: 2px;
    width: 18px
}

@media(min-width: 768px) {
    .cover-cta {
        background-image: url(/images/flood-desktop.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat
    }
}

.cover-cta__container {
    max-width: 1400px;
    margin: 0 auto
}

@media(min-width: 768px) {
    .cover-cta__container {
        padding: 40px
    }
}

.cover-cta__image {
    display: block
}

@media(min-width: 768px) {
    .cover-cta__image {
        display: none
    }
}

.cover-cta__box {
    background-color: #fff;
    padding: 60px 40px;
    text-align: center;
    width: 100%
}

@media(min-width: 768px) {
    .cover-cta__box {
        margin-left: auto;
        text-align: left;
        width: 330px
    }
}

@media(min-width: 1024px) {
    .cover-cta__box {
        width: 450px
    }
}

.cover-cta__box-title {
    color: #5c5f67;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 30px;
    max-width: 350px
}

.cover-cta__box-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.33;
    margin: 0 auto 50px;
    max-width: 200px
}

@media(min-width: 768px) {
    .cover-cta__box-description {
        max-width: 350px
    }
}

.cover-cta__box-description ul {
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
    text-align: left
}

.cover-cta__box-description ul li {
    margin-bottom: 4px
}

.solutions {
    padding: 60px 0;
    background-color: #e6f5ff
}

@media(min-width: 1024px) {
    .solutions {
        padding: 80px 0
    }
}

.solutions__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.solutions__title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 48px;
    color: #104761;
    font-weight: 600
}

.solutions__grid {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 60px
}

.solution-card {
    max-width: 400px;
    text-align: center;
    width: 100%
}

@media(min-width: 768px) {
    .solution-card {
        width: calc(50% - 30px)
    }
}

@media(min-width: 1024px) {
    .solution-card {
        width: calc(33.33% - 40px)
    }
}

.solution-card__media {
    margin-bottom: 10px
}

.solution-card__title {
    background-color: #327e9d;
    padding: 10px 12px;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 18px
}

.solution-card__description {
    color: #5c5f6a;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-top: 10px;
    font-size: 16px;
    text-align: center
}

.alt-feature {
    padding: 60px 0
}

@media(min-width: 768px) {
    .alt-feature {
        padding: 80px 0
    }
}

.alt-feature__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px)
}

.alt-feature__wrap {
    display: flex;
    justify-content: center;
    flex-direction: column
}

@media(min-width: 800px) {
    .alt-feature__wrap {
        flex-direction: row
    }
}

.alt-feature__image {
    display: none
}

@media(min-width: 800px) {
    .alt-feature__image {
        display: block;
        width: 35%
    }
}

.alt-feature__content {
    margin: 0 auto;
    max-width: 470px;
    padding-left: 20px;
    padding-right: 20px
}

@media(min-width: 800px) {
    .alt-feature__content {
        margin: 0;
        max-width: 100%;
        padding-left: 40px;
        text-align: left;
        width: 65%
    }
}

.alt-feature__content img {
    margin: 40px auto;
    max-width: 300px
}

@media(min-width: 800px) {
    .alt-feature__content img {
        display: none
    }
}

.alt-feature__content ul {
    list-style: disc;
    list-style-position: outside;
    font-size: 15px;
    padding: 0;
    margin: 0 0 0 20px;
    text-align: left
}

.alt-feature__content ul li {
    margin-bottom: 3px
}

.alt-feature__title {
    color: #5c5f6a;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
    text-align: center
}

@media(min-width: 800px) {
    .alt-feature__title {
        font-size: 22px;
        margin: 0 0 20px;
        text-align: left
    }
}

.alt-feature__subtitle {
    color: #5c5f6a;
    font-size: 20px;
    font-weight: 600;
    margin: 30px auto 10px;
    text-align: center
}

@media(min-width: 800px) {
    .alt-feature__subtitle {
        font-size: 22px;
        text-align: left
    }
}

.alt-feature__description {
    color: #5c5f6a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 auto
}

.trust {
    background-color: #104761
}

.trust__container {
    display: flex;
    flex-direction: column;
    margin: 0 auto
}

@media(min-width: 1024px) {
    .trust__container {
        flex-direction: row
    }
}

.trust__content {
    order: 2;
    padding: 60px 40px
}

@media(min-width: 1024px) {
    .trust__content {
        align-self: center;
        order: 1;
        width: 65%
    }
}

.trust__image {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    order: 1;
    width: 100%
}

@media(min-width: 1024px) {
    .trust__image {
        background-position: 35% 50%;
        order: 2;
        width: 35%
    }
}

.trust__grid {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center
}

@media(min-width: 800px)and (max-width: 1024px) {
    .trust__grid {
        flex-flow: row wrap
    }
}

.trust-feature {
    max-width: 360px;
    width: 100%;
    text-align: center
}

@media(min-width: 1400px) {
    .trust-feature {
        max-width: 800px
    }
}

.trust-feature__title {
    color: #fff;
    line-height: 1.33;
    margin-bottom: 12px;
    font-size: 20px
}

@media(min-width: 1024px) {
    .trust-feature__title {
        font-size: 22px
    }
}

.trust-feature__description {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.33;
    margin-bottom: 0
}

.cta {
    padding: 60px 0;
    color: #fff
}

@media(min-width: 1024px) {
    .cta {
        padding: 80px 0
    }
}

.cta__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    text-align: center
}

.cta__image {
    max-width: 450px;
    margin: 0 auto 30px
}

.cta__title {
    color: #5c5f6a;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px
}

@media(min-width: 768px) {
    .cta__title {
        font-size: 36px
    }
}

.footer {
    padding: 24px 0;
    background-color: #000;
    color: #fff
}

.footer__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    text-align: center
}

.footer__copyright {
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 0
}

/*# sourceMappingURL=main.css.map */