@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    color: #333333;
    background: #FFFFFF;
    overflow-x: hidden;
}

.round-shape {
    overflow: hidden;
    padding: 0;
}

.outcomes-panel {
    position: relative;
    width: 460px;
    height: 460px;
    margin: 0 auto;
}

.outcomes-panel::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 290px;
    height: 290px;
    background: #3EC1D2;
    border-radius: 50%;
}

.outcomes-rotator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.5 ease-in-out;
    width: 100%;
    height: 100%;
}

.outcomes-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #EBEBEB 0%, #FFFFFF 100%);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
    color: #1D3557;
}

.outcomes-col {
    position: absolute;
    width: 230px;
    height: 215px;
}

.outcomes-col__bg {
    position: absolute;
    top: 0;
    left: 0;
}

.outcomes-col.active .outcomes-col__bg {
    filter: drop-shadow(0px 0px 35px rgba(2, 13, 26, 0.1));
}

.outcomes-col__bg:last-of-type {
    visibility: hidden;
    opacity: 0;
}

.outcomes-col.active .outcomes-col__bg:last-of-type {
    visibility: visible;
    opacity: 1;
}

.outcomes-col.active .outcomes-col__bg:first-of-type {
    visibility: hidden;
    opacity: 0;
}

.inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.outcomes-col.active .inner-text {
    padding-bottom: 40px;
}

.inner-text span {
    display: block;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5em;
    color: #1D3557;
    margin: 6px 0 0;
}

.inner-text img {
    margin: 0 auto;
}

.outcomes-col.first {
    top: 40px;
    right: -21px;
    transform: rotate(286deg);
}

.outcomes-col.second {
    top: 226px;
    right: -4px;
    transform: rotate(-2deg);
}

.outcomes-col.third {
    bottom: -23px;
    right: 178px;
    transform: rotate(70deg);
}

.outcomes-col.fourth {
    left: -43px;
    bottom: 135px;
    transform: rotate(142deg);
}

.outcomes-col.fifth {
    top: -31px;
    left: 78px;
    transform: rotate(214deg);
}

.outcomes-dots {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 85px;
    height: 390px;
    background: url(../img/dots-line-bg.png) no-repeat calc(100% - 4px) center / cover;
}

.outcomes-dots li {
    display: block;
    font-size: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #7C9D9B;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
}

.outcomes-dots li:not(:last-child) {
    margin-bottom: 12px;
}

.outcomes-dots li.active {
    transform: scale(2);
    position: relative;
}

.outcomes-dots li.active::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #7C9D9B;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.outcomes-dots li:first-child,
.outcomes-dots li:last-child {
    margin-right: 4px;
}

.outcomes-dots li:nth-child(2),
.outcomes-dots li:nth-child(4) {
    margin-right: 1px;
}


/* 24-10-25 */
.outcomes-wrapper {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    padding: 0 0 155px;
}

.content-box {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    min-height: 117px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(2, 13, 26, 0.2);
}

.content-item {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 25px;
}

.content-item figure {
    display: block;
    margin: 0 20px 0 0 !important;
}

.content-item figure img {
    width: 100%;
}

.cont-detls h5 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: #1D3557;
    margin: 0 0 12px;
}

.cont-detls ul {
    list-style: none;
    column-count: 2;
    column-gap: 30px;
    padding: 0;
    margin: 0;
}

.cont-detls ul li {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5em;
    color: #1D3557;
    margin: 0;
}

.cont-detls ul li span {
    display: inline-block;
    color: red;
}

@media (max-width: 1199px) {
    .round-shape {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .round-shape {
        padding: 50px 0;
    }

    .outcomes-dots {
        top: unset;
        right: unset;
        left: 50%;
        bottom: -190px;
        transform: translate(-50%, 0) rotate(90deg);
    }

    /* 24-10-25 */
    .outcomes-wrapper {
        padding: 0 0 190px;
    }

    .content-box {
        min-height: 141px;
    }

    .content-item {
        padding: 15px;
    }

    .content-item figure {
        max-width: 35px;
        margin: 0 10px 0 0;
    }

    .cont-detls {
        width: calc(100% - 45px);
    }
}

@media (max-width: 480px) {
    .outcomes-panel {
        width: 345px;
        height: 345px;
    }

    .outcomes-panel::before {
        width: 200px;
        height: 200px;
    }

    .outcomes-text {
        width: 90px;
        height: 90px;
        font-size: 20px;
    }

    .outcomes-col {
        width: 160px;
        height: 145px;
    }

    .inner-text img {
        max-width: 30px;
    }

    .inner-text span {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    .outcomes-col.first {
        top: 44px;
        right: 1px;
    }

    .outcomes-col.first .inner-text {
        padding: 10px 35px 35px 35px;
    }

    .outcomes-col.second {
        top: 170px;
        right: 10px;
    }

    .outcomes-col.second .inner-text {
        padding: 28px 30px 40px 40px;
    }

    .outcomes-col.third {
        bottom: 0px;
        right: 133px;
    }

    .outcomes-col.third .inner-text {
        padding: 50px 20px 45px 35px;
    }

    .outcomes-col.fourth {
        left: -14px;
        bottom: 108px;
    }

    .outcomes-col.fourth .inner-text {
        padding: 75px 35px 45px 35px;
    }

    .outcomes-col.fifth {
        top: -4px;
        left: 68px;
    }

    .outcomes-col.fifth .inner-text {
        padding: 40px 45px 40px 25px;
    }

    .outcomes-dots {
        bottom: -140px;
        height: 315px;
    }

    .outcomes-dots li.active {
        transform: scale(1.7);
    }

    /* 24-10-25 */
    .outcomes-wrapper {
        max-width: 345px;
    }

    .content-box {
        min-height: 112px;
    }

    .cont-detls h5 {
        font-size: 14px;
    }

    .cont-detls ul {
        column-gap: 12px;
    }

    .cont-detls ul li {
        font-size: 12px;
    }
}