
/*POD STYLING*/

.pod__image {
    position: relative;
    width: 100%;
}

.logo_over--img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 50%;
}

/* POD ICON STYLING */
.pod .pod__image--icon img {
    width: 3em;
    margin: 0 auto;
}

/*POD LINK STYLING*/

a.arrow-link {
    color: var(--text-dark);
}

a.arrow-link:hover {
    text-decoration: underline;
}

.h5 a {
    color: inherit;
}

.h5 a:hover {
    text-decoration: underline;
}

/*ARROW STYLING*/
.arrow-link {
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    padding-right: 56px;
}

.arrow-link::after {
    content: "";
    background-image: url(/ig-assets/arrow-black.svg);
    width: 20px;
    height: 11px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease; 
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.arrow-link:hover::after {
    -webkit-transform: translate(-13px, -50%);
            transform: translate(-13, -50%);
}

.arrow-link:hover::after {
    -webkit-transform: translate(-13px, -50%);
            transform: translate(-13px, -50%);
}

.light-color .arrow-link {
    color: white;
}

.light-color .arrow-link::after {
    background-image: url(/ig-assets/arrow-white.svg);
}

/*NAVIGATION WIDGET*/

.block-text__aside .navigation ul li a {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 12px 0 12px 25px;
    font-weight: inherit;
}

    .block-text__aside .navigation ul li a::before {
        content: none;
    }

.block-text__aside .navigation ul li .arrow {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    display: block;
    padding: 22px 0 22px 0px;
    width: 20px;
    border-top: none;
}

    .block-text__aside .navigation ul li .arrow + a {
        padding: 12px 0 12px 5px;
    }

.block-text__aside .navigation ul li a .arrow::before {
    width: 8px;
    height: 11px;
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    background-image: url(/ig-assets/chevron-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.block-text__aside .navigation ul li div {
    border-bottom: none;
    border-top: 1px solid var(--border-dark);
}

.block.block-text__aside .navigation ul li.open > div > .arrow::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.block-text__aside .navigation ul ul {
    border-left: none;
}

    .block-text__aside .navigation ul ul li div {
        border: none;
    }

.block-text__aside .navigation li.selected > div a {
    color: inherit;
    font-weight: inherit;
}

.navigation ul li a {
    font-weight: var(--font-weight-normal);
}

/* CARD STYLING */

.card .card__text .card__button {
    padding-top: 1rem;
}

.card .card__text .card__button span.arrow-link {
    padding-right: 35px;
}

/* FORM STYLING */

form label {
    display: inline;
    font-weight: var(--font-weight-normal);
}
.consent-checkbox + .field-validation-error {
    margin-top: 0;
}

.grid-item--text h2 {
    padding-left: var(--grid-gutter-half);
}

.umbraco-forms-navigation {
    padding-left: var(--grid-gutter-half);
    margin-top: 2rem;
}

.umbraco-forms-navigation input {
    font-weight: var(--font-weight-normal);
}

/* BUTTON STYLE */
.button {
    font-weight: var(--font-weight-normal);
}