@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
}

/* Statistic Desing */
.statistic {
    color: white;
    background-color: #c82127;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.statistic .statistic-content {
    width: 100%;
    max-width: 1920px;
    padding: 60px 10% 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 4;
}

.statistic .svg-key1 {
    position: absolute;
    top: -500px;
    left: 13%;
    width: 1600px;
    height: 1600px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(338deg) scale(0.5, 0.6);
}

.statistic .svg-key2 {
    position: absolute;
    width: 2000px;
    height: 2000px;
    top: -390px;
    right: 0px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(65deg);
}

.statistic .statistic-content .statistic-left {
    display: flex;
    flex-direction: column;
    gap: 46px;
    width: 35%;
}

.statistic .statistic-content .statistic-left h1 {
    cursor: default;
    line-height: 35px;
    font-weight: 400;
    font-size: 28px;
    width: 100%;
}

.statistic .statistic-content .statistic-left a {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 26px 4%;
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 2px;
    border: 2px solid white;
    font-weight: 400;
    overflow: hidden;
    transition: all 0.6s ease;
}

.statistic .statistic-content .statistic-left a:hover {
    color: black;
}

.statistic .statistic-content .statistic-left a span {
    position: relative;
    z-index: 2;
}

.statistic .statistic-content .statistic-left a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    z-index: 1;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.statistic .statistic-content .statistic-left a:hover::before {
    width: 100%;
}

.statistic .statistic-content .statistic-right {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    justify-content: space-between;
    gap: 50px;
}

.statistic .statistic-content .statistic-right .stat-info {
    width: 40%;
    cursor: default;
}

.statistic .statistic-content .statistic-right .stat-info h2 {
    font-size: 40px;
    line-height: 70px;
    font-weight: 400;
    width: 100%;
}

.statistic .statistic-content .statistic-right .stat-info p {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    margin-left: 6px;
}


/* Statistic Responsive Desing */
@media screen and (max-width: 850px) {
    .statistic .svg-key1, .svg-key2 {
        display: none;
    }

    .statistic .statistic-content {
        width: 100%;
        gap: 50px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 4;
    }

    .statistic .statistic-content .statistic-left {
        gap: 30px;
        width: 70%;
        text-align: center
    }

    .statistic .statistic-content .statistic-left a {
        padding: 22px 4%;
        font-size: 15px;
        line-height: 22px;
    }

    .statistic .statistic-content .statistic-left h1 {
        line-height: 26px;
        font-size: 22px;
        width: 100%;
    }

    .statistic .statistic-content .statistic-right .stat-info h2 {
        font-size: 30px;
        line-height: 48px;
    }

    .statistic .statistic-content .statistic-right .stat-info p {
        width: 100%;
        font-size: 16px;
        margin-left: 0;
    }

    .statistic .statistic-content .statistic-right {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .statistic .statistic-content .statistic-right > * {
        flex: 0 1 calc(50% - 55px);

    }

    .statistic .statistic-content .statistic-right .stat-info {
        width: 100%;
        cursor: default;
    }

}

@media (min-width: 850px) and (max-width: 1020px) {
    .statistic .statistic-content .statistic-left h1 {
        line-height: 34px;
        font-size: 22px;
        width: 98%;
    }

    .statistic .statistic-content .statistic-left a {
        font-size: 15px;
        line-height: 22px;
    }

    .statistic .statistic-content .statistic-right .stat-info p {
        width: 100%;
        font-size: 12px;
        margin-left: 6px;
    }
}



