/*** KEYFRAMES ***/
@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@-moz-keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@-o-keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@-ms-keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}


.cycle-pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    position: absolute;
    z-index: 500;
    width: calc(100% * (7/12));
    /*matches to what the carousel bootstrap widths start at*/
    bottom: 5rem;
    right: 0;
}

.cycle-pager a {
    width: 30px;
    height: 30px;
    background: transparent;
    margin: 0 15px;
    border-radius: 25px;
    border: 1px solid #fff;
}

.cycle-pager a.cycle-pager-active {
    border: 4px solid #fff;
    border-style: double;
}

.cycle-pager a.cycle-pager-active div {
    background: white;
    border-radius: 25px;
    height: 100%;
}

/*** The topsection WRAPPER ***/
#sustainability-video-wrapper {
    min-height: 90vh;
    position: relative;
    background: #474647;
    padding: 0;
}

/* >> The topsection - Video Container */
#sustainability-video-wrapper .video-container {
    height: max(750px, 100vh);
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#sustainability-video-wrapper .video-container video {
    width: 100%;
    height: max(750px, 100vh);
    -o-object-fit: cover;
    object-fit: cover;
    /* -o-object-position: bottom; */
    /* object-position: bottom; */
    position: absolute;
    top: 0;
    left: 0;
}
#sustainability-video-wrapper .video-container video.loudOne {
    display: none;
}

/* >> The topsection Video - Text Overlay */
#sustainability-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    /* top: max(263px, 38vh); */
    text-align: center;
    z-index: 10;
    max-width: 1200px;
}

#sustainability-video-wrapper .text-overlay>span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}

#sustainability-video-wrapper .text-overlay h2 {
    font-size: 60px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 500 !important;
    color: #fff;
    margin: 0;
    margin-top: 10px;
    
}

#sustainability-video-wrapper h3 {
    font-size: 48px;
    font-weight: bold !important;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #B3B1B4;
}

#sustainability-video-wrapper h3.below-title {
    margin-top: 2vh;
}

#sustainability-video-wrapper .text-overlay span {
    font-size: 25px;
    letter-spacing: 3px;
}

#sustainability-video-wrapper .text-overlay p.below-title {
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 10px;
}

#sustainability-video-wrapper .bottom-text {
    letter-spacing: 1px;
    margin-top: 10px;
    bottom: 10rem;
    position: absolute;
    color: white;
    text-align: center;
}

#sustainability-video-wrapper .bottom-text p {
    font-size: 18px;
}

#sustainability-video-wrapper .bottom-text img {
    margin-top: 3vh;
    max-width: 40px;
}

#sustainability-video-wrapper a.mlkn-button {
    display: block;
    width: 240px;
    text-align: center;
    max-width: 90%;
    font-weight: 600 !important;
    margin: auto;
    min-width: fit-content;
}

/* >> The topsection - Text Container */
#sustainability-video-wrapper .container {
    min-height: 25vh;
}

#sustainability-video-wrapper .container .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: max(188px, 25vh);
    padding: 30px 15px;
}

#sustainability-video-wrapper .container p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
}

#sustainability-video-wrapper .container .button-wrapper {
    text-align: center;
}

#sustainability-video-wrapper .container a.mlkn-button {
    border: 1px solid #fff;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background: #fff;
    width: 310px;
}

#sustainability-video-wrapper .container a.mlkn-button:last-of-type {
    margin-left: 15px;
}

#sustainability-video-wrapper .mobileOnly {
    display: none;
}

#sustainability-video-wrapper p {
    margin: 2rem;
}

#sustainability-video-wrapper img.redListLogo {
    max-width: 150px;
    margin: 1rem;
}

/* >> Modular Landscapes - Media Queries */
@media only screen and (max-width: 1600px) {
    #sustainability-video-wrapper .text-overlay {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1400px) {
    #sustainability-video-wrapper .text-overlay h2 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    #sustainability-video-wrapper {
        height: auto;
        min-height: 85vh;
    }

    #sustainability-video-wrapper .container,
    #sustainability-video-wrapper .container .content-wrapper {
        height: auto;
        min-height: 25vh;
    }

    #sustainability-video-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }

    #sustainability-video-wrapper .container a.mlkn-button,
    #sustainability-video-wrapper .container a.mlkn-button:last-of-type {
        display: block;
        margin: 15px auto 0;
    }

    #sustainability-video-wrapper img.redListLogo {
        margin: 1vh;
    }

    #sustainability-video-wrapper .text-overlay h2 {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    #sustainability-video-wrapper .video-container, #sustainability-video-wrapper .video-container video {
        max-height: 85vh;
    }
}

/* >> The topsection - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #sustainability-video-wrapper .text-overlay>span.expanded {
        font-size: 25px;
    }

    #sustainability-video-wrapper .text-overlay h2 {
        font-size: 70px;
    }

    #sustainability-video-wrapper .container,
    #sustainability-video-wrapper .container .content-wrapper {
        height: max(188px, 25vh);
    }

    #sustainability-video-wrapper .container p {
        font-size: 25px;
    }

    #sustainability-video-wrapper .container a.mlkn-button {
        font-size: 20px;
        width: 400px;
    }
}


/*for humankind wrapper*/
#for-humankind-wrapper {
    padding: 10rem;
    background: white;
    position: relative;
}

#for-humankind-wrapper>div {
    position: relative;
}

#for-humankind-wrapper img.hover {
    display: none;
    position: absolute;
    left: 0;
}

#for-humankind-wrapper .text-overlay {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    bottom: 20%;
    height: 90%;

}

#for-humankind-wrapper .button-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 5rem;
}

#for-humankind-wrapper img {
    width: 100%;
}

#for-humankind-wrapper .button-wrapper img {}

#for-humankind-wrapper p {
    color: white;
    font-size: 24px;
}

#for-humankind-wrapper p.title {
    font-size: 60px;
    line-height: normal;
}

#for-humankind-wrapper p.subtitle {
    font-weight: 500;
    margin: 2rem auto 5rem auto;
}

#for-humankind-wrapper a {
    margin: 0 1rem;
    position: relative;
}

@media (max-width: 1400px) {
    #for-humankind-wrapper {
        padding: 7.5rem;
    }

    #for-humankind-wrapper .text-overlay {
        bottom: 10%;
    }

    #for-humankind-wrapper .button-wrapper {
        margin-top: 3rem;
    }

    #for-humankind-wrapper p {
        color: white;
        font-size: 20px;
    }

    #for-humankind-wrapper p.title {
        font-size: 50px;
    }

    #for-humankind-wrapper p.subtitle {
        margin: 1rem auto 3rem auto;
    }
}
@media (max-width: 991px) {
    #for-humankind-wrapper img:not(.button-wrapper img) {
        display: none;
    }

    #for-humankind-wrapper .text-overlay {
        position: relative;
        padding: 0 1rem;
    }

    #for-humankind-wrapper .button-wrapper {
        flex-direction: column;
    }

    #for-humankind-wrapper a {
        margin: 1rem;
    }

    #for-humankind-wrapper {
        padding: 5rem;
    }

    #for-humankind-wrapper .button-wrapper {
        flex-direction: column;
        margin-bottom: 5rem;
        padding: 0 3rem;
        align-items: center;
    }

    #for-humankind-wrapper p.title {
        font-size: 40px;
        margin-top: 10rem;
    }

    #for-humankind-wrapper {
        padding: 5rem;
    }

    #for-humankind-wrapper p {
        font-size: 20px;
    }

    #for-humankind-wrapper {
        background: white;
    }

    #for-humankind-wrapper>div {
        background: url(https://contenthub.milliken.com/api/public/content/322674b7f02e4939bf77f0cef11d283a?v=cdd154ef);
        background-size: cover;
    }
}
@media (max-width: 767px) {
    #for-humankind-wrapper {
        padding: 1rem;
    }

}

/*climate action wrapper*/
#climate-action-wrapper {
    position: relative;
    padding: 0;
}

#climate-action-wrapper .top-block {
    display: flex;
}

#climate-action-wrapper .top-block img {
    width: 100px;
}

#climate-action-wrapper .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    height: 100%;
}

#climate-action-wrapper .top-block p {
    font-size: 24px;
    color: #B3B1B4;
}

#climate-action-wrapper .content-block h2 {
    color: #3399B8;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 3rem;

}

#climate-action-wrapper .content-block p {
    color: #555555;
    font-size: 18px;
    margin-bottom: 3rem;
}

#climate-action-wrapper a {
    color: #3399B8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
}

#climate-action-wrapper .slide {}

#climate-action-wrapper .slide .image-wrapper img:not(.logo) {
    width: 100%;
    min-height: var(--cawHeight);
    object-fit: cover;
}

#climate-action-wrapper .slide .image-wrapper img.logo {
    width: initial;
    max-width: 200px;
    margin: 1rem;
}
#climate-action-wrapper .slide .image-wrapper img.logo.mpact {
    max-width: 348px;
}

#climate-action-wrapper .text-wrapper {
    padding-left: 10rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#climate-action-wrapper .cycle-wrapper {}

#climate-action-wrapper .image-wrapper {
    position: relative;
    text-align: center;
}

#climate-action-wrapper .image-wrapper>div {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10rem;
}

#climate-action-wrapper #climate-action-slideshow-controls {
    width: auto;
    right: 5rem;
    bottom: 50%;
    position: absolute;
    z-index: 100;
    color: white;
    font-size: 36px;
}

#climate-action-wrapper .cycle-pager {
    right: 0;
}
.top-block > div {
    padding-left: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cycle-wrapper button {
    border: none;
    font-size: 60px;
    color: white;
    background: transparent;
}
.slide .content-block h2 {
    text-transform: uppercase;
}
@media (max-width: 1200px) {
    #climate-action-wrapper .text-wrapper {
        padding-left: 7.5rem;
        padding-right: 3rem;
    }
    #climate-action-wrapper .content-block {
        padding: 3rem;
    }
    #climate-action-wrapper a {
        margin-bottom: 3rem;
    }
    .cycle-pager {
        width: 100%;
        bottom: 2rem;
    }
    .cycle-pager a {
        filter: invert(0.6);
    }
    #climate-action-wrapper .cycle-pager {
        bottom: calc(var(--cawHeight) - 1rem);
    }
    #climate-action-wrapper #climate-action-slideshow-controls {
        bottom: calc(1.5 * var(--cawHeight));
        right: 3rem;
        filter: invert(0.6);
    }
    #climate-action-wrapper .slide > div > div {
        min-height: var(--cawHeight);
        padding: 0;
    }
    #climate-action-wrapper .slide .image-wrapper img:not(.logo) {
        height: var(--cawHeight);
        object-fit: cover;
    }
    #climate-action-slide-1 img:not(.logo) {
        object-position: left;
    }
    #climate-action-wrapper .content-block {
        justify-content: space-evenly;
    }
}
@media (max-width: 767px) {
    #climate-action-wrapper .content-block {
        padding: 1rem;
    }
    #climate-action-wrapper .text-wrapper {
        padding-left: 1.75rem;
    }
    #climate-action-wrapper #climate-action-slideshow-controls {
        right: 0;
    }
    #climate-action-wrapper .image-wrapper>div {
        align-items: center;
        flex-direction: column;
    }
    #climate-action-wrapper .top-block p {
        font-size: 20px;
    }
    .cycle-wrapper button {
        padding-right: 1rem;
    }
    .slide .content-block h2 {
        font-size: 28px !important;
    }
    .slide .content-block p:not(.title) {
        font-size: 16px !important;
    }
    #climate-action-wrapper a {
        margin-bottom: 5rem;
    }
    #climate-action-wrapper .cycle-pager {
        bottom: calc(var(--cawHeight) - 3rem);
    }
}

/*health and wellness*/

#health-and-wellness-wrapper {
    position: relative;
    padding: 0;
    margin-top: 10rem;
}

#health-and-wellness-wrapper .top-block {
    display: flex;
}

#health-and-wellness-wrapper .top-block img {
    width: 100px;
}

#health-and-wellness-wrapper .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 5rem;
}

#health-and-wellness-wrapper .top-block p {
    font-size: 24px;
    color: #B3B1B4;
}

#health-and-wellness-wrapper .content-block h2 {
    color: #C4A4A7;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 3rem;

}

#health-and-wellness-wrapper .content-block p {
    color: #555555;
    font-size: 18px;
    margin-bottom: 3rem;
}

#health-and-wellness-wrapper a {
    color: #C4A4A7;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

#health-and-wellness-wrapper .slide {}

#health-and-wellness-wrapper .slide .image-wrapper img:not(.logo) {
    width: 100%;
    min-height: var(--hwHeight);
    object-fit: cover;
}

#health-and-wellness-wrapper .slide .image-wrapper img.logo {
    width: initial;
    width: 200px;
    max-width: 15%;
    margin: 1rem;
    object-fit: contain;
}
#health-and-wellness-wrapper .slide .image-wrapper img.logo.cri {
    max-width: 13%;
}

#health-and-wellness-wrapper .text-wrapper {
    padding-right: 10rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: calc(var(--bs-gutter-x) * -1);
}

#health-and-wellness-wrapper .cycle-wrapper {}

#health-and-wellness-wrapper .image-wrapper {
    position: relative;
    text-align: center;
}

#health-and-wellness-wrapper .image-wrapper>div {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10rem;
}

#health-and-wellness-wrapper #health-and-wellness-slideshow-controls {
    width: auto;
    left: calc(var(--hwControlsRight) - 10rem);
    bottom: 50%;
    position: absolute;
    z-index: 100;
    color: white;
}

#health-and-wellness-wrapper .cycle-pager {
    left: 0;
}
@media (max-width: 1200px) {
    #health-and-wellness-wrapper .text-wrapper {
        padding-left: 7.5rem;
        padding-right: 3rem;
    }
    #health-and-wellness-wrapper .content-block {
        padding: 3rem;
    }
    #health-and-wellness-wrapper a {
        margin-bottom: 3rem;
    }
    #health-and-wellness-wrapper #health-and-wellness-slideshow-controls {
        bottom: 25%;
        right: 3rem;
    }
    #health-and-wellness-wrapper .slide > div > div:nth-of-type(2) {
        min-height: var(--hwHeight);
        padding: 0;
    }
    #health-and-wellness-wrapper .slide .image-wrapper img:not(.logo) {
        height: var(--hwHeight);
        object-fit: cover;
    }
    #health-and-wellness-slide-1 img:not(.logo) {
        object-position: left;
    }
    #health-and-wellness-wrapper .content-block {
        justify-content: space-evenly;
    }
    #health-and-wellness-wrapper .slide .image-wrapper img.logo {
        width: 100px;
    }
    #health-and-wellness-wrapper #health-and-wellness-slideshow-controls {
        left: unset;
    }
    #health-and-wellness-wrapper {
        margin-top: 5rem;
    }
    #health-and-wellness-wrapper .cycle-pager {
        bottom: calc(var(--hwHeight) - 1rem);
    }
    #health-and-wellness-wrapper #health-and-wellness-slideshow-controls {
        bottom: calc(var(--hwHeight)*1.5);
        filter: invert(0.6);
    }
}
@media (max-width: 767px) {
    #health-and-wellness-wrapper .content-block {
        padding: 1rem;
    }
    #health-and-wellness-wrapper .text-wrapper {
        padding-left: 3rem;
    }
    #health-and-wellness-wrapper #health-and-wellness-slideshow-controls {
        right: 0;
    }
    #health-and-wellness-wrapper .image-wrapper>div {
        align-items: center;
    }
    #health-and-wellness-wrapper {
        margin-top: 1rem;
    }
    #health-and-wellness-wrapper .top-block p {
        font-size: 20px;
    }
    #health-and-wellness-wrapper a {
        margin-bottom: 5rem;
    }
    #health-and-wellness-wrapper .cycle-pager {
        bottom: calc(var(--hwHeight) - 3rem);
    }
    #health-and-wellness-wrapper .slide .image-wrapper img.logo {
        max-width: none;
    }
    #health-and-wellness-wrapper .slide .image-wrapper img.logo.cri {
        max-width: 15%;
    }
}

/*ethics*/
#ethics-wrapper {
    position: relative;
    padding: 0;
    margin-top: 10rem;
}

#ethics-wrapper .top-block {
    display: flex;
}

#ethics-wrapper .top-block img {
    width: 100px;
}

#ethics-wrapper .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    height: 100%;
}

#ethics-wrapper .top-block p {
    font-size: 24px;
    color: #B3B1B4;
}

#ethics-wrapper .content-block h2 {
    color: #8EAB88;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 3rem;

}

#ethics-wrapper .content-block p {
    color: #555555;
    font-size: 18px;
    margin-bottom: 3rem;
}

#ethics-wrapper a {
    color: #8EAB88;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

#ethics-wrapper .slide {}

#ethics-wrapper .slide .image-wrapper img:not(.logo) {
    width: 100%;
    min-height: var(--ethHeight);
    object-fit: cover;
}

#ethics-wrapper .slide .image-wrapper img.logo {
    width: initial;
    max-width: 200px;
    margin: 1rem;
}
#ethics-wrapper .slide .image-wrapper img.logo.cdp {
    max-width: 243px;
}
#ethics-wrapper .slide .image-wrapper img.logo.wmec {
    max-width: 258px;
}

#ethics-wrapper .text-wrapper {
    padding-left: 10rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#ethics-wrapper .cycle-wrapper {}

#ethics-wrapper .image-wrapper {
    position: relative;
    text-align: center;
}

#ethics-wrapper .image-wrapper>div {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10rem;
}

#ethics-wrapper #ethics-slideshow-controls {
    width: auto;
    right: 5rem;
    bottom: 50%;
    position: absolute;
    z-index: 100;
    color: white;
    font-size: 36px;
}

#ethics-wrapper .cycle-pager {
    right: 0;
}
@media (max-width: 1200px) {
    #ethics-wrapper .text-wrapper {
        padding-left: 7.5rem;
        padding-right: 3rem;
    }
    #ethics-wrapper .content-block {
        padding: 3rem;
    }
    #ethics-wrapper a {
        margin-bottom: 3rem;
    }
    #ethics-wrapper #ethics-slideshow-controls {
        bottom: calc(1.5 * var(--ethHeight));
        filter: invert(0.6);
        right: 3rem;
    }
    #ethics-wrapper .slide > div > div {
        min-height: var(--ethHeight);
        padding: 0;
    }
    #ethics-wrapper .slide .image-wrapper img:not(.logo) {
        height: var(--ethHeight);
        object-fit: cover;
    }
    #ethics-slide-1 img:not(.logo) {
        object-position: left;
    }
    #ethics-wrapper .content-block {
        justify-content: space-evenly;
    }
    #ethics-wrapper .slide .image-wrapper img.logo {
        width: 100px;
    }
    #ethics-wrapper #ethics-slideshow-controls {
        left: unset;
    }
    #ethics-wrapper {
        margin-top: 5rem;
    }
    #ethics-wrapper .cycle-pager {
        bottom: calc(var(--ethHeight) - 1rem);
    }
    #ethics-wrapper .slide .image-wrapper img.logo.wmec {
        width: 200px;
    }
}
@media (max-width: 767px) {
    #ethics-wrapper .content-block {
        padding: 1rem;
    }
    #ethics-wrapper .text-wrapper {
        padding-left: 1.75rem;
    }
    #ethics-wrapper #ethics-slideshow-controls {
        right: 0;
    }
    #ethics-wrapper .image-wrapper>div {
        align-items: center;
    }
    #ethics-wrapper {
        margin-top: 1rem;
    }
    #ethics-wrapper .top-block p {
        font-size: 20px;
    }
    #ethics-wrapper a {
        margin-bottom: 5rem;
    }
    #ethics-wrapper .cycle-pager {
        bottom: calc(var(--ethHeight) - 3rem);
    }
}

/* commitments wrapper */
#commitments-wrapper {
    padding: 10rem 0 5rem;
    text-align: center;
}
#commitments-wrapper h3 {
    font-size: 48px;
    color: #98999B;
    font-weight: 600;
}
#commitments-wrapper p {
    font-size: 4rem;
    color: #003366;
    font-weight: 600;
    margin-top: 2rem;
}
#commitments-wrapper .card-box {
    overflow: hidden;
}
#commitments-wrapper .cards {
    display: flex;
    margin-top: 7rem;
    width: fit-content;
    transition: 1s;
}
#commitments-wrapper .cards img {
    width: 100%;
}
#commitments-wrapper .cards p {
    color: #555555;
    font-size: 16px;
    padding: 0 3rem 3rem 3rem;
    text-align: left;
}
#commitments-wrapper .cards p.card-title {
    color: #B3B1B4;
    font-size: 24px;
    padding: 1rem 3rem 0rem 3rem;
}
#commitments-wrapper .cards a {
    color: #233E85;
    font-size: 18px;
    font-weight: 600;
    padding: 0 3rem 3rem 3rem;
    text-decoration: none;
}
#commitments-wrapper .cards > .card {
    background: white;
    margin: 0 1rem;
    width: 400px;
    border: none;
    text-align: left;
}
#commitments-wrapper p.arrows {
    margin-top: var(--commitmentsButtonTop);
    padding: 0 7.5rem;
    position: relative;
}
#commitments-wrapper p.arrows span {
    cursor: pointer;
    color: #616264;
}
#lessCardsBtn {
    float: left;
}
#moreCardsBtn {
    float: right;
}
@media (max-width: 1400px) {
    #commitments-wrapper p.arrows {
        padding: 0 5rem;
    }
}
@media (max-width: 1200px) {
    #commitments-wrapper .cards > div {
        width: 268.5px;
    }
    #commitments-wrapper .cards p {
        font-size: 1.4rem;
        padding: 0 2rem;
        margin-top: 0;
        margin-bottom: 2rem;
    }
#commitments-wrapper .cards img {
    margin-top: 1rem;
}
#commitments-wrapper h3 {
    font-size: 2.4rem;
}
#commitments-wrapper p:not(p.arrows):not(.cards p) {
    font-size: 2.9rem;
}
#commitments-wrapper .cards p.card-title {
    padding: 3rem 0 0;
}
#commitments-wrapper .cards p {
    padding: 0 0 3rem;
}
}
@media (max-width: 991px) {
    #commitments-wrapper p.arrows {
        padding: 0 2rem;
    }
}
@media (max-width: 767px) {
    #commitments-wrapper {
        padding: 0;
        margin-top: 5rem;
    }
    #commitments-wrapper .cards > .card {
        width: 250px;
    }
}
@media (max-width: 575px) {

    #commitments-wrapper .cards p {
        font-size: 1.2rem;
        padding: 0 0 1.5rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
#commitments-wrapper .cards > div {
    width: 167px;
}
#commitments-wrapper p:not(p.arrows):not(.cards p) {
    font-size: 1.8rem;
    margin-top: 0;
}
#commitments-wrapper p.arrows {
    padding: 0 1rem;
}
#commitments-wrapper .cards {
    margin-top: 3rem;
}
}

/*form wrapper*/
#form-wrapper {
    padding: 0;
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
}
#form-wrapper h3 {
    font-size: 48px;
    color: #98999B;
    font-weight: 600;
    text-transform: uppercase;
}
#form-wrapper p {
    font-size: 28px;
    color: #C4A4A7;
    font-weight: 600;
}
@media (max-width: 1200px) {
    #form-wrapper h3 {
        font-size: 2.4rem;
    }
}