body.page-template-template-role {
    background-color: #f8fafb;
}

.hero {
    background-color: #D7F6E9;
    min-height: 610px;
    padding: 100px 0;
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.hero.hero--content-center .inner,
.hero.hero--content-center .hero__logos,
.hero.hero--content-center .hero__content{
    justify-content: center;
    text-align: center;
    align-items: center;
}

.hero .inner {
    min-height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.hero__logos {
    display: flex;
}

.hero__logos-logo {
    margin-right: -12px;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid rgba(29, 190, 122, 0.7);
    overflow: hidden;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__logos-logo--alt {
    background-color: var(--color-green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.hero__logos-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
}

.hero__content .btn {
    padding: 16px 40px;
}

.hero__content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero__content p {
    max-width: 564px;
    letter-spacing: 1px;
}

.content-break {
    padding: 72px;
    background-color: #EBF8F4;
    margin-bottom: 65px;
}

.content-break__inner {
    display: flex;
    justify-content: space-between;
}

.content-break__left {
    max-width: 350px;
}

.content-break__right {
    display: flex;
    gap: 48px;
}

.content-break__right-column {
    max-width: 332px;
    padding-left: 64px;
    position: relative;
}

.content-break__right-column:first-child::before,
.content-break__right-column:last-child::before {
    content: '1';
    background-color: var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.content-break__right-column:last-child::before {
    content: '2';
}

.link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-green);
    position: relative;
    text-transform: uppercase;
}

.link::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 11L6.5 6L1.5 1' stroke='%231DBE7A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    width: 7px;
    height: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
}

/*
* Cards
*/

.cards {
    padding: 65px 0;
}

.cards__header-badge {
    display: inline-block;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-green);
    background-color: #E4F6EF;
    border-radius: 6px;
    margin-bottom: 16px;
}

.cards__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.cards__card {
    margin: 16px;
    width: calc(25% - 32px);
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #E9ECEE;
    padding: 16px 24px;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    height: 260px;
}

.cards__card:hover {
    text-decoration: none;
    box-shadow: 15px 15px 0px rgba(126, 144, 153, 0.1);
}

.cards__card-image {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 10px;
    border: 1px solid #B9F3DA;
    border-radius: 50%;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.cards__card:hover .cards__card-image {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding: 0!important;
}

.cards__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards.cards--companies .cards__card-image {
    padding: 10px;
}

.cards.cards--companies .cards__card-image img {
    object-fit: contain;
}

.cards__card-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cards__card-description {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.cards__card-socials {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.cards__social {
    width: 32px;
    height: 32px;
    border: 1px solid #636665;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: transform 0.3s ease;
    margin: 0 4px;
}

.cards__social:first-child {
    margin-left: 0;
}

.cards__social:last-child {
    margin-right: 0;
}

.cards__social:hover {
    border-color: var(--color-green);
    background-color: #F4FEFB;
}

.cards__social.cards__social--url:hover svg path {
    stroke: var(--color-green);
}

.cards__social:not(.cards__social--url):not(.cards__social--youtube):hover path {
    fill: var(--color-green);
}

.cards__social:not(.cards__social--url):hover path:first-child {
    fill: var(--color-green);
}

.cards__readmore {
    display: inline-block;
    margin-top: 16px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cards__card:hover .cards__card-socials,
.cards__card:hover .cards__readmore {
    transform: translateY(0);
}

.cards__cta-wrapper {
    text-align: center;
    margin-top: 32px;
}

.cards__cta.btn {
    display: inline-block;
    padding: 16px 40px;
}

.links-slider__wrapper {
    margin-top: 116px;
    margin-bottom: 130px;
}

.links-slider__slide {
    padding: 12px;
    transition: background-color 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
    border-radius: 8px;
}

.links-slider__slide-image {
    position: relative;
}

.links-slider__slide-image img {
    border-radius: 5px;
}

.links-slider__slide-image::before {
    content: '';
    background-color: rgba(101, 135, 121, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.links-slider__slide-image::after {
    content: '';
    width: 64px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32' cy='32' r='32' fill='white'/%3E%3Cpath d='M37 27L27 37' stroke='%233A3A3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 27H37V36' stroke='%233A3A3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.links-slider__slide:hover .links-slider__slide-image::after,
.links-slider__slide:hover .links-slider__slide-image::before {
    opacity: 1;
}

.links-slider__slide-description {
    margin-bottom: 0;
}

.links-slider__slide:hover {
    background-color: #fff;
    border-color: #E9ECEE;
    text-decoration: none;
}

.links-slider__slide:hover .links-slider__slide-title {
    color: var(--color-green);
}

.links-slider__slide-image {
    width: 100%;
    height: 303px;
}

.links-slider__slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.links-slider__slide-title {
    font-size: 20px;
    margin-top: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.links-slider__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links-slider__arrows {
    display: flex;
    align-items: center;
}

.links-slider__arrow {
    margin: 0 8px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #EEF2F4;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.links-slider__arrow svg path {
    transition: stroke 0.3s ease;
}

.links-slider__arrow:hover {
    background-color: #E1F4EC;
}

.links-slider__arrow:hover svg path {
    stroke: var(--color-green);
}

.links-slider__arrow--left {
    margin-left: 0;
}

.links-slider__arrow--right {
    margin-right: 0;
}

/**
    Single Page
 */

.role-model {
    margin-top: 32px;
    margin-bottom: 76px;
}

.role-model__inner {
    display: flex;
    gap: 32px;
}

.role-model__left {
    width: 400px;
}

.role-model__right {
    width: calc(100% - 400px);
}

.role-model__header,
.role-model__badges,
.role-model__description,
.role-model__related {
    border: 1px solid #E9ECEE;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 24px;
}

.role-model__description,
.role-model__related {
    padding: 24px 32px;
    line-height: 1.5;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.role-model__description p:last-child {
    margin-bottom: 0;
}

.role-model__banner {
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 156px;
}

.role-model__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-model__image {
    background-color: #fff;
    position: relative;
    width: 120px;
    height: 120px;
    margin: -60px auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #B9F3DA;
}

.role-model__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-model__image.role-model__image--company {
    padding: 25px;
}

.role-model__image.role-model__image--company img {
    object-fit: contain;
}

.role-model__title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.role-model__headings {
    color: #3A3A3A;
}

.role-model__heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.role-model__company,
.role-model__company p,
.role-model__company a {
    color: #3A3A3A;
}

.role-model__company {
    display: flex;
    gap: 17px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.role-model__company p {
    font-size: 12px;
    margin: 0;
}

.role-model__company-left,
.role-model__company-right {
    display: flex;
    align-items: center;
    position: relative;
}

.role-model__company-left::before,
.role-model__company-right::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='3.5' width='9' height='6.5' rx='1' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 3.5V2.5C4.5 1.94772 4.94772 1.5 5.5 1.5H7.5C8.05228 1.5 8.5 1.94772 8.5 2.5V3.5' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.5 5.99994V6.00494' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 6.5C4.83048 7.92629 8.16952 7.92629 11 6.5' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.role-model__company-right::before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='3.5' r='2' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 10.5V9.5C3 8.39543 3.89543 7.5 5 7.5H7C8.10457 7.5 9 8.39543 9 9.5V10.5' stroke='%233A3A3A' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.role-model--company .role-model__company-right::before {
    content: unset
}

.role-model__company-left::after {
    content: '';
    width: 1px;
    height: 70%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 9px);
    background-color: #CACDCF;
}

.role-model__socials .cards__card-socials {
    transform: none;
    max-width: 239px;
    margin: 24px auto 17px;
}

.role-model__socials .cards__social {
    width: 44px;
    height: 44px;
}

.role-model__socials .cards__social--url {
    border: none;
    width: auto;
    height: auto;
    font-size: 14px;
    color: var(--color-green);
}

.role-model__socials .cards__social--url:hover {
    background: transparent;
}

.role-model__socials .cards__social--url svg {
    margin-right: 8px;
}

.role-model__socials .cards__social.cards__social--url svg path {
    stroke: var(--color-green);
}

.role-model__socials {
    margin-bottom: 33px;
}

.role-model__badges {
    padding: 24px;
}

.role-model__badges .role-model__heading {
    text-align: center;
}

.role-model__badges-inner {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.role-model__badges-inner img {
    width: calc(50% - 16px);
}

.role-model__heading,
.role-model__description h2{
    color: #3a3a3a;
    font-size: 20px;
}

.role-model__photos-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.role-model__photos-inner a {
    width: calc(33.3% - 11px);
    height: 160px;
}

.role-model__photos-inner a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.role-model__related-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.role-model__related-inner .cards__card {
    width: calc(33.3% - 11px);
    margin: 0;
}

.links-slider__heading-inner h2 {
    padding-right: 20px;
}

.form-row {
    display: flex;
}

.form-row:not(:last-child) {
    margin-bottom: 24px;
}

.role-form__title {
    margin-bottom: 20px;
}

.form-row__col label {
    display: block;
    font-size: 14px;
}

.form-row__col input,
.form-row__col textarea {
    width: 100%;
    border: 1px solid #CACDCF;
    border-radius: 6px;
    padding: 12px 16px;
}

.form-row__col input[type="submit"] {
    display: inline-block;
    width: auto;
    background: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    padding: 18px;
    min-width: 280px;
    cursor: pointer;
    transition: .3s;
}

.form-row__col input[type="submit"]:hover {
    background: transparent;
    color: var(--color-green);
}

.form-row__col textarea {
    min-width: 100%;
}

.form-row__col {
    width: 100%;
}

.form-row__col .form-row__col--half {
    width: calc(50% - 12px);
}

.form-row__col--half:first-child {
    margin-right: 24px;
}

.role-form .new-select {
    width: 100%;
    padding: 13px 60px 12px 25px;
    height: 50px;
    background: #fff;
    border-radius: 5px;
    -ms-appearance: none;
    appearance: none!important;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: SF UI Display;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    color: rgba(58,58,58,.3);
    border: 1px solid rgba(98,105,117,.5);
    position: relative;
    outline: 0;
    cursor: pointer;
    color: #3a3a3a;
}

.role-form .new-select.on {
    border: 1px solid #2dc082;
}

.role-form .new-select__list {
    position: absolute;
    top: 54px;
    left: 0;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #e9ecee;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 17px 32px rgb(58 89 105 / 15%);
    box-shadow: 0 17px 32px rgb(58 89 105 / 15%);
    border-radius: 5px;
}

.role-form .new-select__item span {
    display: block;
    padding: 15px 20px;
    font-family: SF UI Display;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #2e2e2e;
}

.role-form .new-select__item span:hover {
    background: #f8fafb;
}

.role-form .new-select::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 15px;
    background: url(../images/select-arrow.png) no-repeat right center/cover;
    opacity: 0.6;
    -webkit-transition: all 0.27s ease-in-out;
    transition: all 0.27s ease-in-out;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.page-template-template-role-form .hero {
    margin-bottom: 0;
    padding-bottom: 360px;
}

.page-template-template-role-form .hero__content {
    align-items: center;
    text-align: center;
}

.role-form {
    margin-top: -290px;
    margin-bottom: 140px;
}

.role-form__inner {
    padding: 32px 48px;
    background-color: #fff;
    border: 1px solid #E9ECEE;
    box-shadow: 15px 15px 0px rgba(126, 144, 153, 0.1);
    border-radius: 5px;
}

@media screen and (max-width: 1200px) {
    .role-model__related-inner .cards__card {

    }
}

@media screen and (max-width: 992px) {
    .cards__card {
        width: calc(50% - 32px);
    }

    .content-break__inner {
        flex-direction: column;
    }

    .content-break__left {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .content-break__right {
        justify-content: center;
    }

    .role-model__inner {
        flex-direction: column;
    }

    .role-model__left,
    .role-model__right {
        width: 100%;
    }

    .role-model {
        margin-top: 100px;
        margin-bottom: 80px;
    }

    .role-model__badges-inner img {
        max-width: 200px;
        margin: 0 auto;
    }

    .role-model__badges .role-model__heading {
        text-align: center;
        width: 100%;
        display: inline-block;
    }
}

@media screen and (max-width: 768px) {
    .role-model__related-inner .cards__card {
        width: calc(50% - 8px);
    }

    .content-break__right {
        flex-direction: column;
    }

    .content-break__right-column {
        max-width: 100%;
    }

    .role-model__related-inner {
        justify-content: center;
    }
}

@media screen and (max-width: 540px) {
    .cards__card {
        width: 100%;
    }

    .links-slider__heading {
        flex-direction: column;
    }

    .content-break {
        padding: 50px 20px;
    }

    .role-model__linkmore {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .role-model__related-inner .cards__card {
        width: 100%;
    }

    .role-model__photos-inner a {
        width: calc(50% - 8px);
    }

    .form-row {
        flex-wrap: wrap;
    }

    .form-row__col {
        width: 100%;
        margin-right: 0!important;
    }

    .form-row__col--half:last-child {
        margin-top: 24px;
    }
}
a.links-slider__slide {
    color: var(--color-black);
    text-decoration: none;
}