.text-media.bg-default {
    background-color: var(--white);
}

.text-media.bg-light-blue {
    background-color: var(--light-blue);
}

.text-media.bg-dark-navy-blue {
    background-color: var(--dark-navy-blue);
    color: var(--white);
}

.text-media.bg-dark-navy-blue h2 {
    color: var(--white);
}

.text-media .boxed {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    gap: 80px;
}

.text-media .boxed > div {
    flex: 1;
    box-sizing: border-box;
}

.text-media.layout-default .boxed {
    flex-direction: row;
}

.text-media .boxed .small-heading {
    font-family: NunitoSansLight, Arial, sans-serif;
    margin-bottom: 20px;
}

.text-media.layout-flipped .boxed {
    flex-direction: row-reverse;
}

.text-media .boxed .content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    box-sizing: border-box;
}

.text-media .boxed .content .icons {
    display: flex;
    gap: 25px;
}

.text-media .boxed .content .icons .icon img {
    max-height: 100px;
}

.text-media .boxed .media img {
    position: relative;
    display: block;
}

.text-media .boxed .media.image-cut img {
    display: block;
    width: 100%;
    height: auto;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 25%);
}

.text-media .boxed .media.image-cut.default {
    background-color: var(--primary-orange);
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 23%);
    height: fit-content;
}

.text-media .boxed .media.image-cut.dark-blue {
    background-color: var(--dark-blue);
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 23%);
    height: fit-content;
}

.text-media .boxed .content > div {
    height: 100%;
}

.text-media .boxed.none .content > div {
    padding: 0;
}

.text-media .boxed .content > div > p {
    max-width: 650px;
}

.text-media .boxed .content > div > p, .text-media .boxed .content > div ul li {
    max-width: 650px;
    font-size: 24px;
}

.text-media .boxed .content h3 {
    font-family: NunitoSansRegular, Arial, sans-serif;
    font-size: 48px;
}

.text-media .boxed .content > div ul {
    list-style-image: url("images/list-style.svg");
    margin: 0 0 1.5em 2em;
}

@media (max-width: 768px) {
    .text-media .boxed,
    .text-media.layout-default .boxed,
    .text-media.layout-flipped .boxed {
        padding: 75px 20px;
        flex-direction: column;
    }

    .text-media .boxed .content > div {
        padding: 30px !important;
    }
}

@media (max-width: 500px) {
    .text-media .boxed,
    .text-media.layout-default .boxed,
    .text-media.layout-flipped .boxed {
        padding: 50px 20px;
    }
    .text-media .boxed .content > div > p, .text-media .boxed .content > div ul li {
        font-size: 16px;
    }
    .text-media .boxed {
        gap: 30px;
    }
    .text-media .boxed .content > div {
        padding: 0 !important;
    }
    .hero .boxed.layout-default, .hero .boxed.layout-flipped {
        gap: 50px;
    }
    .inside-site-info .copyright-bar {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}