
.nctc-point-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nctc-point-image {
    position: relative;
    margin-bottom: 30px;
}

.nctc-image {
    scale: 1 1;
    transition: all ease-out 0.3s;
}

.nctc-image.zoom {
    scale: 1.1 1.1;
}

.nctc-image-point {
    position: absolute;
    opacity: 0;
    left:0;
    top:0;
    transition: all ease-out 0.3s;
}

.nctc-image-point-digit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background: #33898A;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.nctc-image-point-content {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid #33898A;
    background: #1F1F1F;
    border-radius: 10px;
    padding: 30px 23px 23px 23px;
    box-sizing: border-box;
    width: 400px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    z-index: 1;
    opacity: 0;
    transform: translate(5px, 5px);
    transition: all 0.2s ease-in;
    pointer-events: none;
}

.nctc-image-point.active .nctc-image-point-content {
    transform: translate(0, 0);
    opacity: 1;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: initial;
}

.nctc-image-point.active .nctc-image-point-digit {
    z-index: 4;
}

.nctc-image-point-video{
    position: relative;
    cursor: pointer;
}

.nctc-image-point-video:after {
    content: "";
    position: absolute;
    left:50%;
    top: 50%;
    width: 47.075px;
    height: 33.059px;
    background: url(../images/youtube.svg) center center no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.nctc-image-point-title {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    font-family: var(--heading-font);
}

.nctc-image-point.to-left .nctc-image-point-content {
    left: initial;
    right: -5px;
}

.nctc-image-point.to-left .nctc-image-point-title {
    padding-left: 0;
    padding-right: 45px;
}

.nctc-points-full {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 35px;
    margin-bottom: 20px;
}

.nctc-point-full {
    position: relative;
    width: calc(25% - (12px));
    color: #fff;
    font-size: 14px;
    padding: 25px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #4A4B4A;
    background: #1F1F1F;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.nctc-point-full.active, .nctc-point-full:hover {
    border-color: #33898A;
}

.nctc-point-full-media {
    width: 100%;
    aspect-ratio: 1/0.56;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.nctc-point-full-media-video:after {
    content: "";
    position: absolute;
    left:50%;
    top: 50%;
    width: 47.075px;
    height: 33.059px;
    background: url(../images/youtube.svg) center center no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.nctc-point-full-digit {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33898A;
    border-radius: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}

.nctc-point-full-title {
    font-size: 20px;
    color: #fff;
    font-family: var(--heading-font);
    height: 44px;
    line-height: 22px;
    margin-bottom: 5px;
}

/* Video Overlay */
.nctc-video-overlay.hidden {
    display: none;
}

.nctc-video-overlay:not(.hidden) {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:10px;
    background: rgba(26, 26, 26, 0.8);
    z-index: 100;
}

.nctc-video-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nctc-video-overlay-content > a {
    margin-left: auto;
    text-decoration: underline !important;
    color: #fff;
    line-height: 24px;
}

.nctc-video-overlay-content > iframe {
    aspect-ratio: 16/9;
    width: 760px !important;
    max-width: 90vw !important;
}

/*---------------------*/

/* TABLET SCREEN > 768px < 990px */

/*---------------------*/
@media (min-width:768px) and (max-width:991px) {


    .nctc-points-full {
        flex-wrap: wrap;
    }

    .nctc-point-full {
        width: calc((100% - 15px) /2);
    }
}


/*---------------------*/

/* MOBILE SCREEN < 767px */

/*---------------------*/
@media (max-width:767px) {


    .nctc-image-point.active .nctc-image-point-digit {
        transform: scale(1.5, 1.5);
    }

    .nctc-image-point-digit {
        width: 20px;
        height: 20px;
        font-size: 10px;
        transform: scale(1, 1);
        transition: 0.3s ease-in;
    }

    .nctc-image-point-content {
        display: none;
    }

    .nctc-points-full {
        flex-wrap: wrap;
    }

    .nctc-point-full {
        width: 100%;
    }
}