/* =========================================================
   PROMAN IT SECTOR METER
========================================================= */

.pw-it-sector-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #f7fafc;

}


.pw-it-sector-container {

    width: 1200px;

    max-width: calc(100% - 40px);

    margin: auto;

}


/* =========================================================
   HEADING
========================================================= */

.pw-it-sector-heading {

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;

}


.pw-it-label {

    display: inline-block;

    margin-bottom: 14px;

    color: #0874b9;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.pw-it-sector-heading h2 {

    margin: 0;

    color: #17324d;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.1;

}


.pw-it-sector-heading h2 span {

    color: #82c341;

}


.pw-it-sector-heading p {

    max-width: 600px;

    margin: 20px auto 0;

    color: #7b8994;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   MAIN METER
========================================================= */

.pw-sector-meter {

    position: relative;

    width: 760px;

    height: 760px;

    max-width: 100%;

    margin: auto;

}


/* =========================================================
   ROTATING RING
========================================================= */

.pw-sector-ring {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 650px;

    height: 650px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    border:
        1px dashed
        rgba(8,116,185,.18);

    /* animation:
        pwSectorRotate 35s linear infinite; */
        
        animation:none;

}


/* =========================================================
   ROTATION
========================================================= */

@keyframes pwSectorRotate {

    from {

        transform:
            translate(-50%, -50%)
            rotate(0deg);

    }

    to {

        transform:
            translate(-50%, -50%)
            rotate(360deg);

    }

}


/* =========================================================
   INNER RINGS
========================================================= */

.pw-sector-ring::before {

    content: "";

    position: absolute;

    inset: 45px;

    border-radius: 50%;

    border:
        1px solid
        rgba(8,116,185,.10);

}


.pw-sector-ring::after {

    content: "";

    position: absolute;

    inset: 100px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(130,195,65,.20);

}


/* =========================================================
   SECTOR
========================================================= */

.pw-sector {

    position: absolute;

    width: 150px;

    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform .4s ease;

}


/* =========================================================
   SECTOR DOT
========================================================= */

.pw-sector-dot {

    position: absolute;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #0874b9,
            #82c341
        );

    box-shadow:
        0 0 0 7px
        rgba(8,116,185,.08),

        0 0 25px
        rgba(8,116,185,.25);

    animation:
        pwDotPulse 2s ease-in-out infinite;

}


@keyframes pwDotPulse {

    0%,
    100% {

        box-shadow:
            0 0 0 7px
            rgba(8,116,185,.08),

            0 0 20px
            rgba(8,116,185,.20);

    }

    50% {

        box-shadow:
            0 0 0 13px
            rgba(8,116,185,.04),

            0 0 35px
            rgba(130,195,65,.30);

    }

}


/* =========================================================
   SECTOR LABEL
========================================================= */

.pw-sector-label {

    position: absolute;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 115px;

    height: 65px;

    padding: 10px;

    box-sizing: border-box;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid #e3ebee;

    border-radius: 10px;

    box-shadow:
        0 8px 25px
        rgba(7,59,92,.08);

    text-align: center;

    transition:
        transform .35s ease,

        box-shadow .35s ease,

        border-color .35s ease;
}


.pw-sector-label strong {

    color: #0874b9;

    font-size: 18px;

    line-height: 1;

}


.pw-sector-label span {

    margin-top: 5px;

    color: #687984;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;

}


/* =========================================================
   SECTOR POSITIONS
========================================================= */

.sector-sales {

    top: -35px;

    left: 250px;

}


.sector-engineering {

    top: 75px;

    right: -35px;

}


.sector-it {

    bottom: 85px;

    right: -35px;

}


.sector-marketing {

    bottom: -35px;

    left: 250px;

}


.sector-operations {

    bottom: 85px;

    left: -35px;

}


.sector-finance {

    top: 75px;

    left: -35px;

}


.sector-procurement {

    top: 245px;

    left: 250px;

}


/* =========================================================
   HOVER
========================================================= */

.pw-sector:hover {

    z-index: 10;

}


.pw-sector:hover .pw-sector-label {

    transform:
        scale(1.15);

    border-color:
        rgba(8,116,185,.35);

    box-shadow:
        0 15px 35px
        rgba(7,59,92,.15);

}


.pw-sector:hover .pw-sector-dot {

    transform:
        scale(1.4);

}


/* =========================================================
   CENTER
========================================================= */

.pw-sector-center {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 350px;

    height: 350px;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffffff 45%,
            #f4f9fb 100%
        );

    box-shadow:

        0 20px 60px
        rgba(7,59,92,.10),

        inset 0 0 0 1px
        rgba(8,116,185,.08);

}


.pw-sector-center::before {

    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 50%;

    border:
        1px solid
        rgba(130,195,65,.25);

    animation:
        pwCenterPulse 3s ease-in-out infinite;

}


@keyframes pwCenterPulse {

    0%,
    100% {

        transform: scale(1);

        opacity: .5;

    }

    50% {

        transform: scale(1.04);

        opacity: 1;

    }

}


.pw-sector-center-circle {

    text-align: center;

}


.pw-sector-center-circle strong {

    display: block;

    color: #17324d;

    font-size: 70px;

    line-height: 1;

    font-weight: 800;

}


.pw-sector-center-circle span {

    display: block;

    margin-top: 10px;

    color: #0874b9;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.pw-sector-center-circle small {

    display: block;

    margin-top: 8px;

    color: #82c341;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   INFORMATION PANEL
========================================================= */

.pw-sector-info {

    position: absolute;

    /* right: -130px; */
     right: -250px;

    bottom: 50px;

    width: 260px;

    padding: 25px;

    box-sizing: border-box;

    background: #ffffff;

    border:
        1px solid #e4ecef;

    border-radius: 12px;

    box-shadow:
        0 15px 40px
        rgba(7,59,92,.10);

}


.pw-sector-info > span {

    color: #82c341;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.pw-sector-info h3 {

    margin: 8px 0 15px;

    color: #17324d;

    font-size: 18px;

}


/* =========================================================
   PROGRESS
========================================================= */

.pw-sector-progress {

    width: 100%;

    height: 6px;

    margin-bottom: 8px;

    overflow: hidden;

    background: #edf2f4;

    border-radius: 10px;

}


.pw-sector-progress-bar {

    width: 22%;

    height: 100%;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #0874b9,
            #82c341
        );

    transition:
        width .5s ease;

}


#pwSectorPercentage {

    color: #0874b9;

    font-size: 20px;

}


.pw-sector-info p {

    margin: 10px 0 0;

    color: #7b8994;

    font-size: 10px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .pw-sector-meter {

        width: 650px;

        height: 650px;

    }


    .pw-sector-ring {

        width: 550px;

        height: 550px;

    }


    .pw-sector-center {

        width: 290px;

        height: 290px;

    }


    .pw-sector-center-circle strong {

        font-size: 58px;

    }


    .sector-sales,
    .sector-marketing {

        left: 200px;

    }


    .sector-procurement {

        left: 200px;

    }


    .pw-sector-info {

        right: -80px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .pw-it-sector-section {

        padding: 70px 0;

    }


    .pw-it-sector-container {

        max-width:
            calc(100% - 30px);

    }


    .pw-sector-meter {

        width: 100%;

        height: auto;

        padding-top: 40px;

    }


    .pw-sector-ring {

        position: relative;

        left: auto;

        top: auto;

        transform: none;

        width: 340px;

        height: 340px;

        margin: auto;

        animation:
            pwSectorRotateMobile 35s linear infinite;

    }


    @keyframes pwSectorRotateMobile {

        from {

            transform:
                rotate(0deg);

        }

        to {

            transform:
                rotate(360deg);

        }

    }


    .pw-sector-center {

        width: 190px;

        height: 190px;

    }


    .pw-sector-center-circle strong {

        font-size: 42px;

    }


    .pw-sector-center-circle span {

        font-size: 8px;

    }


    .pw-sector-center-circle small {

        font-size: 7px;

    }


    .pw-sector {

        width: 90px;

        height: 90px;

    }


    .pw-sector-label {

        width: 90px;

        height: 55px;

    }


    .pw-sector-label strong {

        font-size: 14px;

    }


    .pw-sector-label span {

        font-size: 7px;

    }


    .sector-sales {

        top: -25px;

        left: 125px;

    }


    .sector-engineering {

        top: 45px;

        right: -25px;

    }


    .sector-it {

        bottom: 35px;

        right: -25px;

    }


    .sector-marketing {

        bottom: -25px;

        left: 125px;

    }


    .sector-operations {

        bottom: 35px;

        left: -25px;

    }


    .sector-finance {

        top: 45px;

        left: -25px;

    }


    .sector-procurement {

        top: 125px;

        left: 125px;

    }


    .pw-sector-info {

        position: relative;

        right: auto;

        bottom: auto;

        width: 100%;

        max-width: 400px;

        margin: 50px auto 0;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .pw-sector-ring {

        width: 290px;

        height: 290px;

    }


    .pw-sector-center {

        width: 165px;

        height: 165px;

    }


    .pw-sector-center-circle strong {

        font-size: 36px;

    }


    .sector-sales,
    .sector-marketing,
    .sector-procurement {

        left: 100px;

    }

}