.sub-service-models {

}
.sub-service-models .models-examples {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: 64px 0;
    margin-top: 128px;
}
.sub-service-models .models-examples .example-item {
    width: calc((100% - 128px) / 3);
    padding-bottom: calc((100% - 128px) / 3);
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background-color: #000;

    cursor: pointer;
    transition: 1s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.sub-service-models .models-examples .example-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-service-models .models-examples .example-item .ar-icon-wrapper {
    position: absolute;
    width: 12.5%;
    height: 12.5%;
    right: 18px;
    bottom: 18px;
    min-width: 48px;
    min-height: 48px;
}
.sub-service-models .models-examples .example-item .ar-wrapper img.ar-icon {
    position: static;
}
.sub-service-models .models-examples .example-item video {
    position: absolute;
    height: 100%;
    transform: translateX(-50%);
    left: 50%;
}
.sub-service-models .models-overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
}
.sub-service-models .models-overlay .models-bg,
.sub-service-models .models-overlay-2 .models-bg{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(26, 25, 29, 0.5);
}

.sub-service-models .models-modal {
    position: fixed;
    border-radius: 60px;
    width: 768px;
    height: 768px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-service-models .models-modal img {
    width: 100%;
    height: 100%;
}
.sub-service-models .models-modal .model-3d-2 {
    width: 100% !important;
    height: 100% !important;
}
.sub-service-models .canvas-mob-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background-color: #fff;
}
.sub-service-models .model-3d-2-mob {
    /*margin: 20% 10% 0;*/
    width: 100% !important;
    height: 100% !important;
}
.sub-service-models #ARButton {
    display: none;
}
.sub-service-models .models-overlay-2 {
    display: none;
}

.sub-service-models .models-examples .example-item .main-obj-wrapper {
    display: none;
    position: fixed;
    border-radius: 60px;
    width: 768px;
    height: 768px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%);
    z-index: 1001;
    overflow: hidden;
}
.sub-service-models .models-examples .example-item .main-obj-wrapper .static {
    animation: 10s zoom linear infinite;
}
@keyframes zoom {
    0% {  transform: scale(1) }
    50% {  transform: scale(1.5) }
    100% {  transform: scale(1) }
}

@media (max-width: 1280px) {
    .sub-service-models .models-examples {
        margin-top: 48px;
    }
    .sub-service-models .models-examples .example-item {
        width: calc((100% - 100px) / 3);
        padding-bottom: calc((100% - 100px) / 3);
        border-radius: 20px;
    }

    .sub-service-models .models-modal,
    .sub-service-models .models-examples .example-item .main-obj-wrapper {
        width: 450px;
        height: 450px;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .sub-service-models .models-examples {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .sub-service-models .models-examples .example-item {
        width: 311px;
        height: 311px;
    }
    .sub-service-models .models-examples .example-item .ar-icon-wrapper {
        transform: translate(-50%,-50%);
        left: 50%;
        top: 50%;
        right: unset;
        bottom: unset;
        height: 78px;
        width: 78px;
        border-radius: 50%;
        background: rgba(26, 25, 29, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sub-service-models .models-examples .example-item .ar-icon-wrapper img.ar-icon {
        height: 70%;
        width: 70%;
    }
    .sub-service-models .models-examples .example-item .main-obj-wrapper {
        width: 100%;
        height: 100%;
        position: absolute;
    }
}
