.zigzag-section {
    width: 100%;
    /* padding: 80px 20px; */
    overflow: hidden;
    position: relative;
}
.zigzag-image {
    position: relative;
    text-align: center;
}
.zigzag-image img.main-img {
    width: auto;
    height: 488px;
}
.zigzag-image img.ring-circle {
   width: auto;
   height:auto;
   position: absolute;
   left: 66px;
}
/* ROTATING CIRCLE */
.zigzag-circle {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zigzag-circle::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite;
}

.zigzag-circle span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

@keyframes rotateCircle {
    100% {
        transform: rotate(360deg);
    }
}

/* BUTTON */
.zigzag-btn {
  display:inline-block;
  position: relative;
}
.zigzag-btn .btn-text {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:#fff;
    font-size:18px;
}
/* RESPONSIVE */

@media (max-width: 991px) {

    .zigzag-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .zigzag-content {
        max-width: 100%;
        text-align: center;
    }

    .zigzag-content p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .zigzag-content h2 {
        font-size: 58px;
    }

    .zigzag-image img {
        max-width: 300px;
        height: auto !important;
    }
}
