div.c-company-box p span a {
  color: #335bff;
} 

div.feed a {
  text-colour: black;
}
.c-mybigproject {
    font-size: 1em;
}
@media (max-width: 768px) {
    .c-mybigproject {
        font-size: 0.8em;
    }
}

.notloggedin #copyinfo {
    display: none;
}

body {
font-family: 'Manrope', sans-serif;
}

/* TITLES */

#contenttop h1.c-title-xl, #belowsite h1.c-title-xl {
font-size: clamp(40px, 4vw, 60px);
font-weight: 800;
margin-bottom: 10px;
padding-bottom: 0px;
}

.c-subtitle-xl {
    margin-bottom: 0;
    font-size: clamp(20px, 2vw, 30px);
}

.c-text-xxl {
    font-size: clamp(40px, 4vw, 9vw);
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 0px;
}


.c-text-lg {
    font-size: clamp(20px, 2vw, 40px);
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.c-title-inside {
    font-size: clamp(24px, 3vw,40px);
    font-weight: 800;
    display: flex;
    /*align-items: center;*/
    border-bottom: 1px solid black;
    padding-bottom: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.c-title-inside:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 30px;
    height: auto;
    margin-right: 10px;
    background-color: #5befd5;
}

@media (min-width: 991px) {
.c-subtitle-inside {
width: 50%;
}
}

/* END TITLES */
/* =========================== */
/* TOP SECTION */

.c-topsection-container {
position: relative;
}

div.news div.detail .c-topsection-container {
    margin-bottom: 50px;
}

.c-top-video {
    width: 100%;
    aspect-ratio: 16/9;
    height: 100%;
    overflow: hidden;
}

.c-top-image {
    width: 100%;
    aspect-ratio: 16/6;
    height: 100%;
    overflow: hidden;
}

.c-top-video video, .c-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.c-top-video::before, .c-top-image::before {
content: '';
background-color: rgb(0 0 0 / 35%);
position: absolute;
width: 100%;
height: 100%;
}

.c-top-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    margin-top: 60px;
    width: 70%;
}

.c-topsection-container-image .c-top-title {
    margin-top: 30px;
}

#contenttop .c-top-title h1.c-title-xl {
    color: white;
}

/* END TOP SECTION */
/* =========================== */
/* CONTAINERS  */
.c-main-container {
    padding-top: clamp(50px, 4vw, 100px);
    padding-bottom: clamp(50px, 4vw, 100px);
}

.c-lastcontainer.c-howitworks-outer {
    padding-bottom: clamp(50px, 4vw, 100px);
}

.c-main-inner {

}

.c-main-inner-inside {
max-width: 1280px;
margin: 0 auto;
}


.c-about-nms-inner {
max-width: 800px;
    padding-left: 20px;
    margin: 0 auto;
}

.c-about-nms-inner p {
font-size: 20px;
position: relative;
}

.c-about-nms-inner p:before {
    content: '';
    display: block;
    width: 5px;
    background-color: #5befd5;
    position: absolute;
    left: -20px;
    height: calc(100% + 9vw);
    bottom: 0;
}

.c-grey-container {
    background-color: #f4f4f4;
}

.c-logo-container {
    background-color: black;
    color: white;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-bottom: 200px;
    position: relative;
    overflow: hidden;
}

.c-logo-container::after {
    content: '';
    display: block;
    height: 200px;
    width: 70%;
    background-color: #5befd5;
    position: absolute;
    bottom: -160px;
    border-radius: 50%;
    left: 0;
    filter: blur(80px);
    animation: glow-effect-rl;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

    opacity: 0.7;

}

.c-logo-container:before {
    content: '';
    display: block;
    height: 200px;
    width: 70%;
    background-color: #00afff;
    position: absolute;
    bottom: -160px;
    border-radius: 50%;
    left: 60%;
    filter: blur(80px);
    animation: glow-effect-lr;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

    opacity: 0.7;

}

@keyframes glow-effect-rl {
  0% {left: 50%;}
  50% {left: 0%;}
  100% {left: 50%;}
}


@keyframes glow-effect-lr {
  0% {left: 0%;}
  50% {left: 50%;}
  100% {left: 0%;}
}

.c-negative-boxborder {
    margin-top: clamp(-60px, -4vw, -20px);
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 30px;
}

.c-negative-boxborder-homepage {
    margin-top: clamp(-200px, -4vw, -20px);
}

/* END CONTAINERS */
/* =========================== */
/* BUTTON */

a.c-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #5befd5;
    border-radius: 100px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

a.c-button:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    border-radius: 100px;
    background-color: black;
    transition: 0.5s;
}

.c-buttontext {
    margin-right: 10px;
    position: relative;
}

.c-buttonicon {
    position: relative;
    aspect-ratio: 30/8;
    -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
    -mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
    background-size: 100%;
    width: 30px;
    height: auto;
    background-repeat-y: no-repeat;
    background-position: center;
    margin: 0 auto;
    display: inline-block;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: black;
    transition: 0.5s;
}

a.c-button:hover {
    color: #5befd5;
}

a.c-button:hover:before {
    left: 0%;
}

a.c-button:hover .c-buttonicon {
    background-color: #5befd5;
}

/* END BUTTON */

.c-insidelogo {
    padding: 0 2vw;
}

.c-insidelogo img {
width: 100%;
height: auto;
}


/* INFORMATION BOXES */

.c-info-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.c-info-box {
    background-color: white;
    width: calc(50% - 60px);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
}

.c-info-circle {
    width: 55px;
    height: 55px;
    background-color: #5befd5;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 0.8;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 15px;
}

.c-info-content {
width: calc(100% - 85px)
}

.c-info-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 12px;
}

.c-info-circle.c-info-icon img {
    width: 100%;
    height: auto;
}

.c-info-circle.c-info-icon {
    background-color: transparent;
}


/* CALL TO ACTION SECTION */

.c-cta-container.c-main-container {
    padding-top: clamp(0px, 4vw, 0px);
    padding-bottom: clamp(50px, 4vw, 100px);
    text-align: center;
    background-color: #f4f4f4;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.c-cta-inner {
    background-color: #5befd5;
    border-radius: 30px;
    margin: 0 clamp(20px, 3.95vw, 100px);
    padding-top: clamp(50px, 4vw, 100px);
    padding-bottom: clamp(50px, 4vw, 100px);
}

.c-cta-container .c-text-xxl {
    text-align: center;
    line-height: 1.2;
    margin: 0 auto;
    font-size: clamp(20px, 3vw, 30px);
}

#contenttop .c-cta-container h1.c-title-xl {
    font-weight: 300;
    font-size: clamp(16px, 1.6vw, 20px);
}


.c-cta-container a.c-button {
margin-top: 30px;
}

a.c-button.c-button-dark {
    background-color: white;
    color: black;
}

a.c-button.c-button-dark:hover {
    color: #5befd5;
}

/* FOOTER */
.c-main-container.c-footer-container {
    padding: clamp(50px, 4vw, 100px) clamp(20px, 3.95vw, 100px);
    position: relative;
    overflow: hidden;
}

.c-main-container.c-footer-container:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
}

.c-main-container.c-footer-container::after {
    content: '';
    display: block;
    width: 10%;
    border-radius: 50%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #5befd5;
    animation: footer-effect;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.side-nav__header {
position: relative;
}

.side-nav__header:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: black;
}

.side-nav__header::after {
    content: '';
    display: block;
    width: 10%;
    border-radius: 50%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #5befd5;
    animation: footer-effect;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


@keyframes footer-effect {
  0% {left: 0%;}
  50% {left: 90%;}
  100% {left: 0%;}
}

.c-socialicons-container {
    display: flex;
    margin-top: 30px;
}

.c-sociaicon {
    padding: 12px;
    border-radius: 50%;
    background-color: white;
}

.c-sociaicon:hover {
    background-color: #5befd5;
}

#belowsite a {
color: black;
}

#belowsite a.c-button:hover {
color: #5befd5;
}

#belowsite p {
margin-bottom: 10px;
}

/* COPY APO SENTIMIND COLOREDBOX */

.c-sentimind-box {

}

.c-coloredbox {
    padding: 30px;
    background-color: white;
    border-radius: 30px;
}
.c-coloredbox p.c-text-lg {
padding-right: 0%;
}
.c-coloredbox p {
padding-right: 30%;
}

.c-image-negativemargin {
    margin-top: 100px;
    margin-left: -150px;
}

.c-image-negativemargin img {
    width: 100%;
    height: auto;
}

/* PARTNERS */

.c-partners-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;

}

.c-partners-box {
    width: 25%;
    width: 8.5%;
    min-width: 200px;
}

.c-partners-box img {
    mix-blend-mode: darken;
    width: 100%;
    height: 100%;
    padding: clamp(20px, 2vw, 40px);
    object-fit: contain;
    max-height: 160px;
}

.c-partners-col {
    padding: clamp(15px, 3vw, 50px) !important;
    background-color: white;
    border-radius: 30px;
    margin-top: 50px;
}

/* HOW IT WORKS DESIGN */

.c-howitworks-outer {
padding-top: 0px;
padding-bottom: 0px;
}

.c-howitworks-margin-b {
padding-bottom: clamp(50px, 4vw, 100px);
}

.c-howitworks-container {
    padding: clamp(20px, 1.15vw, 30px);
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
border-radius: 30px;
}

.c-howitworks-container .c-title-inside {
    width: 100%;
    border-color: white;
}

.c-howitworks-box:nth-child(2) {
    width: 30%;
    font-size: 1.4em;
}

.c-howitworks-box:nth-child(3) {
    width: 65%;
    margin-left: 5%;
}

.c-howitworks-container .c-info-box {
    background-color: transparent;
    flex-direction: column;
    padding: 0px 10px 30px 10px;
    width: calc(50% - 20px);
}

.c-howitworks-container .c-info-content {
    width: 100%;
}

.c-howitworks-container .c-info-boxes {
    gap: 0;
}

.c-black-box-solution {
    background-color: black;
    color: white;
    padding: clamp(20px, 1.1vw, 30px);
    border-radius: 30px;
    margin-top: clamp(50px, 4vw, 100px);
}

.c-black-box-company {
    background-color: black;
    color: white;
    padding: clamp(20px, 1.1vw, 30px);
    border-radius: 30px;
}

.c-black-box-company .c-title-inside {
   border-color: white;
}

.c-divider-vertical {
    height: 100%;
    width: 1px;
    background-color: #5befd5;
    margin-left: 50%;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
.c-main-container {
    padding-left: 15px;
    padding-right: 15px;
}
}

@media (max-width: 990px) {
.c-partners-box {
    width: 33%;
    min-width: unset;
}

.c-divider-vertical {
    height: 1px;
    width: 100%;
    margin-left: 0%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.c-info-box {
    width: 100%;
}

.c-top-video {
    width: 100%;
    aspect-ratio: 9/16;
    height: 100vh;
    overflow: hidden;
}

.c-about-nms-inner p:before {
    height: calc(100% + 15vh);
}

.c-top-title {
    margin-top: 30px;
    width: 85%;
}

.c-nmsproducts-boxes {
    gap: 50px;
}
.c-cta-inner {
    margin: 0;
padding-right: 15px;
    padding-left: 15px;
}

.c-footer-infobox {
    margin-bottom: 50px;
}

.c-top-image {
    width: 100%;
    aspect-ratio: 16/21;
}

.c-info-circle {
    width: 45px;
    height: 45px;
}
.c-info-title {
    margin-top: 6px;
}

.c-howitworks-box:nth-child(2) {
    width: 100%;
    font-size: 1.2em;
}

.c-howitworks-box:nth-child(3) {
    width: 100%;
    margin-left: 0%;
}

.c-howitworks-container .c-info-box {
    background-color: transparent;
    flex-direction: column;
    padding: 30px 0px 0px 0px;
    width: 100%;
}

.c-insidelogo {
    padding: 0;
    margin-bottom: 30px;
}


}



/*PORTFOLIO*/

.c-portofolio-container {
max-width: 1280px;
margin: 0 auto;
padding-top: 10vh;
padding-bottom: 10vh;
}

.c-portofolio {
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
justify-content: center;
}

.c-portofolio img{
max-width: 350px;
height: auto;
border-radius: 40px;
}


/* COOKIE PREFERENCES */

.c-cookie-pref {
background-color: #f1f1f1;
padding-top: 10px;
padding-bottom: 10px;
padding-left: clamp(20px, 3.95vw, 100px);
padding-right: clamp(20px, 3.95vw, 100px);
font-size: 14px;
}

/* Reset any global <h2> styles that might interfere */
div#am_1551.amodule.am_1551 h2.c-title-inside {
    all: unset; /* Resets any browser default styles */
    font-size: clamp(24px, 3vw, 40px); /* Ensures same size */
    font-weight: 800;  /* Ensures bold */
    display: flex; /* Ensures Flexbox layout */
    border-bottom: 1px solid black;
    padding-bottom: 20px;
    margin-bottom: 20px;
    line-height: 1;
}

.c-newlogo {
    background-image: url('/cache/files/d17f1e148601b0a840d8d9ee4170a864f371f0e5.svg');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
    margin-left: calc(5% + 20px) !important;
}


a.mobile-header-startlink {
    background-image: url('/cache/files/d17f1e148601b0a840d8d9ee4170a864f371f0e5.svg');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
width: 150px;
    transform: translate(-50%, 0%);
}

.side-nav__header {
    background-color: white;
    background-image: url('/cache/files/d17f1e148601b0a840d8d9ee4170a864f371f0e5.svg') !important;
    color: #333;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 70%;
    padding-left: 8vh;
    padding-right: 8vh;
}.c-newsletter {
padding-top: 100px;
padding-bottom: 100px;
width: 60%;
margin: auto;
}

.c-newsletter form {
    margin: auto;
}

.c-newsletter form label {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 800;
font-family: 'Manrope', sans-serif;
}

.c-newsletter form input {
    padding: 10px;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


.c-newsletter form input:focus-visible {
outline: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.c-newsletter form input::placeholder {
color: #d1d1d5;
font-size: 14px;
}

.c-newsletter form .submit {
margin-top: 20px;
text-align: center;
}

.c-newsletter form .submit button {
    font-size: 14px;
    font-weight: 400;
    padding: 20px 25px;
    color: white;
    background-color: #595959;
    transition: 0.3s;
    letter-spacing: 1px;
    border-radius: 3px;
    border-color: transparent;
    min-width: 170px;
}

.c-newsletter form .submit button:hover {
color: white;
background-color: #e0751b;
}

@media only screen and (max-width: 768px) {
.c-newsletter {
width: 90%;
}
}.notloggedin #belowtopmenu {
display: none;
}

.notloggedin .c-newlang, .notloggedin .langchooser {
    position: absolute;
    top: 38.5px;
    right: calc(5% + 15px);
    padding-top: 0 !important;
    font-size: 14px;
    font-weight: 800;
}

.notloggedin .langchooser ul li, .notloggedin #mobile-header .langchooser ul li {
    display: inline-block;
    width: 17.5px;
    overflow: hidden;
    padding-right: 0 !important;
    margin-right: 2px;
    padding: 0 2px;
    border-radius: 3px;
}

.notloggedin #mobile-header .langchooser ul li {
width: 20px;
}

.notloggedin #topbanner .langchooser ul li.active a, .notloggedin #mobile-header .langchooser ul li.active a {
    color: #54e0c7;
    text-decoration: underline;
}

.notloggedin #topbanner .langchooser ul li:hover a, .notloggedin #mobile-header .langchooser ul li:hover a {
    color: #54e0c7;
    text-decoration: underline;
}

.notloggedin #topmenu {
top: 20px !important;
    width: 90%;
    margin-left: 5%;
    border-radius: 10px;
}

div.topmenu ul {
    margin-right: 70px;
}

div.topmenu ul li {
position: relative;
}

div.topmenu ul li:before {
    content: '';
    display: block;
    height: 15px;
    width: 1px;
    background-color: black;
    position: absolute;
    right: 0;
    top: 22px;
}

div.topmenu ul li:last-child:before {
    /*display: none;*/
}

div.topmenu > ul > li.active > a {
font-weight: 800;
}

/* MOBILE */
.notloggedin #mobile-header {
    position: absolute;
    z-index: 2;
    width: calc(100% - 20px);
    margin-left: 10px;
    top: 10px;
    border-radius: 15px;
}

#mobile-header div.langlist span.langtext {
    display: block;
}

#mobile-header .langchooser {
    position: absolute;
    right: 16px;
    top: 18px;
}div.horizontalitemsnews div.theitems {
    max-width: 1280px;
    margin: 70px auto;
}

/*.itemdetail div.items.news {
    max-width: 1280px;
    margin: 0 auto;
}*/

.itemdetail div.items.news div.theitems {
    max-width: 1280px;
    margin: 0 auto;
}

div.items.news div.detail {
    position: relative;
}

#content h1.pagetitle {
    display: none;
}

.itemdetail #content h1.pagetitle {
    display: none;
}

.itemdetail h1 a.backtocat:before {
    display: none;
}


.itemdetail div.items div.photos img {
object-fit: contain;
    object-position: center;
    width: 100%;
}

div.items div.back {
    border: none;
    background: none;
    background-color: #5befd5;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

div.items.news div.back {
position: absolute;
    z-index: 3;
top: 100px;
    left: 5%;
}

div.items div.back a {
    display: inline-block;
    padding: 15px 25px 15px 55px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    z-index: 3;
    transition: 0.5s;
}

div.items div.back::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    border-radius: 100px;
    background-color: black;
    transition: 0.5s;
}

div.items div.back:hover::after {
    left: 0%;
}

div.items div.back:hover a {
    color: #5befd5;
}


div.items div.back::before {
    content: '';
position: absolute;
    left: -75px;
    top: 21px;
    aspect-ratio: 30/8;
    -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
    -mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' width='30px' height='8px' viewBox='0 0 30 8' x='0px' y='0px' fill='%23A48550' stroke-linecap='square' stroke-miterlimit='10'><path d='M22.1,8V4.4H0V3.6h22.1V0L30,4L22.1,8z'/></svg>");
    background-size: 100%;
    width: 30px;
    height: auto;
    background-repeat-y: no-repeat;
    background-position: center;
    margin: 0 auto;
    display: inline-block;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: black;
    transition: 0.5s;
    right: -15px;
    transform: rotate(180deg);
    z-index: 2;
    pointer-events: none;
}

div.items div.back:hover::before {
    background-color: #5befd5;
}

div.items h3 a {
color: #000;
}