.module {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.module:last-child {
    margin-bottom: 0;
}

.module.has--background {
    padding: 3rem 0;
}

.module.has--background-image {
    background-size: cover;
    background-position: center center;
}

.module.no-spacing-below {
    margin-bottom: 0;
}

.module .heading h1,
.module .heading h2,
.module .heading h3 {
    margin-bottom: 0;
}

.module__hero {
    color: var(--light);
}

.module__hero .hero-wr {
    position: relative;
    overflow: hidden;
}

.module__hero .hero__content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    margin-top: var(--header-height);
}

.module__hero .hero__content p {
    font-size: 1rem;
}

.module__hero .hero__content .button-wrapper {
    margin-top: 2rem;
}

.module__hero .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.module__hero.has--overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.module__hero .hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module__text {
    font-size: 1.125rem;
}

.module__image .image {
    border-radius: .125rem;
    overflow: hidden;
}

.module__image .image.has--video {
    position: relative;
    cursor: pointer;
}

.module__image .image.has--video .play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.module__text-image .text {
    font-size: 1.125rem;
}

.module__text-image .image {
    border-radius: .125rem;
    overflow: hidden;
}

.module__text-image .image.has--video {
    position: relative;
    cursor: pointer;
}

.module__text-image .image.has--video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.module__cards .card {
    border: none;
    border-radius: .125rem;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.module__cards .card .image {
    overflow: hidden;
}

.module__cards .card .image img {
    transition: 350ms cubic-bezier(.24, .28, .63, 1);
}

.module__cards .card .content {
    width: 100%;
}

.module__cards .card .content p {
    margin-bottom: 0;
}

.module__cards .card .content .arrow {
    position: absolute;
    line-height: 1;
    color: var(--secondary-color);
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

.module__cards .card:not(.layout1):hover .image img,
.module__cards .card:not(.layout1):focus .image img {
    transform: scale(1.1);
}

.module__cards .card:hover .content .arrow,
.module__cards .card:focus .content .arrow {
    transform: translateX(10px);
}

.module__cards .card.layout1 .content {
    position: relative;
    padding: 1rem 1rem 3rem;
    background: var(--white);
}

.module__cards .card.layout1 .content .arrow {
    bottom: 1rem;
    right: 2rem;
}

.module__cards .card.layout1 .content h4 {
    font-family: "DIN Pro", sans-serif;
    font-size: .875rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: -.75rem;
}

.module__cards .card.layout2 .content {
    background: var(--white);
    padding: 1.5rem;
}

.module__cards .card.layout2 .content .arrow {
    position: static;
    text-align: right;
    margin-top: .5rem;
}

.module__cards .card.layout3 {
    color: var(--white);
}

.module__cards .card.layout3::after {
    content: "";
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(3,45,57);
    background: linear-gradient(0deg, rgba(3,45,57,1) 0%, rgba(3,45,57,0) 100%);
}

.module__cards .card.layout3 .content {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    background: none;
    padding: 1.5rem;
    padding-right: calc(4rem + 1.25rem);
}

.module__cards .card.layout3 .content :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: .25rem;
}

.module__cards .card.layout3 .content p {
    display: none;
}

.module__cards .card.layout3 .content .arrow {
    bottom: 2rem;
    right: 2rem;
    color: var(--white);
}

.module__cards-grid .text {
    font-size: 1.125rem;
}

.module__cards-grid .card {
    color: var(--primary-color);
    border-radius: .125rem;
    border: none;
    padding: 1.5rem;
    box-shadow: 0 0 60px 0 rgba(0,0,0,0.2);
}

.module__usps .item {
    text-align: center;
    font-size: 1.125rem;
}

.module__usps .item .icon {
    margin-bottom: 1.5rem;
}

.module__usps .item .icon img {
    max-height: 4rem;
}

.module__form {
    font-size: 1.125rem;
}

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

@media (min-width: 414px) {
    .module__cards .card.layout3 .content :is(h1, h2, h3, h4, h5, h6) {
        margin-bottom: 1rem;
    }

    .module__cards .card.layout3 .content p {
        display: block;
    }
}

@media (min-width: 576px) {
    .module {
        margin-bottom: 4.5rem;
    }

    .module.has--background {
        padding: 4.5rem 0;
    }

    .module__hero .hero__content {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .module__hero .hero__content p {
        font-size: 1.25rem;
    }

    .module__hero .hero__background {
        position: relative;
        min-height: 500px;
    }

    .module__image .image::before {
        content: none;
    }

    .module__image .image img {
        position: static;
        height: auto;
    }
}

@media (min-width: 768px) {
    .module {
        margin-bottom: 6rem;
    }

    .module.has--background {
        padding: 6rem 0;
    }

    .module__hero.hero__size-big .hero__background {
        min-height: 600px;
    }

    .module__cards .card.layout2 {
        padding-bottom: 2rem;
    }

    .module__cards .card.layout2 .content {
        position: absolute;
        left: 0;
        bottom: 2rem;
        width: 80%;
    }

    .module__cards .card.layout2 .content .arrow {
        position: absolute;
        top: calc(100% + .375rem);
        right: 2rem;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .module__cards-grid .card {
        padding: 3rem;
    }
}

@media (min-width: 1400px) {
    .module__hero.hero__size-big .hero__background {
        min-height: 700px;
    }
}