.dn-hero {
    margin: 0;
    padding: 120px 0 40px;
    position: relative;
}

.dn-hero .c {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.dn-hero-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFF;
    order: 2;
}

.dn-hero-left h1 {
    font-size: 36px;
}

.dn-hero-left p {
    font-size: 20px;
}

.dn-hero-left .cta-button {
    max-width: 100%;
    margin-right: auto;
    font-size: 20px;
    font-weight: 400;
}

.dn-hero-right {
    max-width: 100%;
    width: 100%;
}

.dn-hero-right img {
    max-width: 100%;
}

.dn-hero .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.dn-hero .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.dn-info {
    background: #FFF;
    padding: 40px 0;
    color: #293156;
    text-align: center;
}

.dn-text-image {
    background: #deecf5;
    padding: 40px 0;
}

.dn-text-image .c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.dn-text-image-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

.dn-text-image img {
    max-width: 100%;
}

.dn-box {
    margin: 40px 0;
    position: relative;
}

.dn-box .c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    border-radius: 16px;
}

.dn-box-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #293156;
}

.dn-box-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dn-card {
    margin: 0 0 40px;
    position: relative;
}

.dn-card .c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.dn-card-txt {
    padding: 40px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #293156;
}

.dn-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dn-prefooter {
    padding: 40px 0;
    position: relative;
}

.dn-prefooter .c {
    position: relative;
    color: #FFF;
    text-align: center;
    z-index: 2;
}

.dn-prefooter .c--n {
    max-width: 890px;
    padding: 0 20px;
}

.dn-prefooter h2 {
    margin-bottom: 30px;
    font-weight: 400;
}

.dn-prefooter a.cta-button {
    max-width: 100%;
    font-size: 20px;
    padding: 12px 60px;
}

.dn-prefooter .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.dn-prefooter .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .dn-hero {
        margin: 0 0 100px;
        padding: 180px 0 60px;
    }

    .dn-hero-left {
        max-width: 55%;
        order: unset;
    }

    .dn-hero-left h1 {
        font-size: 55px;
    }

    .dn-hero-left p {
        font-size: 27px;
    }

    .dn-hero-right {
        max-width: 40%;
    }

    .dn-hero-right img {
        max-width: 100%;
        margin-bottom: -90px;
    }

    .dn-info {
        padding: 40px 0 80px;
    }

    .dn-text-image {
        padding: 80px 0;
    }

    .dn-text-image-txt {
        order: unset;
    }

    .dn-text-image--reverse .dn-text-image-txt {
        order: 2;
    }

    .dn-text-image .c {
        grid-template-columns: 1fr 1fr;
        gap: 40px 120px;
    }
    
    .dn-box {
        margin: 80px 0;
    }

    .dn-box .c {
        grid-template-columns: 1fr 1fr;
        gap: 20px 76px;
        padding: 40px;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    }

    .dn-card {
        margin: 80px 0;
    }

    .dn-card .c {
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }

    .dn-card-txt {
        padding: 80px 60px;
    }

    .dn-prefooter {
        padding: 80px 0;
    }
}

@media screen and (min-width: 1360px) { 
    .dn-hero {
        margin: 0 0 100px;
        padding: 40px 0 0;
    }
}