.current-locals {
    padding: 120px 0;
    position: relative;
    background: #224254;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.current-locals.hide-numbers{
    background-image: url(../../assets/images/steps-bg.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
}

.current-locals .current-locals-cta {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    background: #284D62;
    backdrop-filter: blur(18.899999618530273px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    color: #fff;
    position: relative;
}

.current-locals .current-locals-cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 101.5%;
    height: 108%;
    transform: translateY(-50%) translateX(-50%);
    border: 2px dashed rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    pointer-events: none;
}

.current-locals .current-locals-cta h2 {
    color: #fff;
}

.current-locals .current-locals-cta p {
    opacity: 0.8;
    font-size: 20px;
}

.current-locals .current-locals-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.current-locals .block-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap:16px;
}

.current-locals .block-title p{
    font-size:18px;
    opacity:0.8;
}

.current-locals .block-title>* {
    color: #fff;
}

.current-locals .block-title em {
    color: #5086B4;
    font-style: normal;
}

.current-locals .locals-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.current-locals .block-single {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    width: calc(25% - 18px);
    flex: 1 auto;
    position: relative;
    background: #224254;
}

.current-locals .block-single::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(95, 133, 180, 0.18) 0%, rgba(41, 58, 78, 0.00) 100%);
    transition: opacity .3s ease;
    opacity: 0;
}

.current-locals .block-single::after {
    content: attr(data-key);
    pointer-events: none;
    position: absolute;
    right: 16px;
    bottom: 0;
    font-family: "Source Sans";
    font-size: 140px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    opacity: 0.16;
    text-shadow:
        1px 0 #fff,
        -1px 0 #fff,
        0 1px #fff,
        0 -1px #fff,
        1px 1px #fff,
        -1px -1px #fff,
        1px -1px #fff,
        -1px 1px #fff;
    -webkit-text-stroke: 1px #fff;
    paint-order: stroke fill;
    color: #224254;
}

.current-locals.hide-numbers .block-single::after{
    content: none;
    display: none;
}

.current-locals .block-single:hover::before {
    opacity: 1;
}

.current-locals .block-single p {
    font-size: 18px;
    color: #fff;
    opacity: 0.7;
}

.current-locals .block-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.current-locals .block-title-wrapper img {
    min-width: 30px;
    max-width: 30px;
    width: 100%;
    height: auto;
}

.current-locals .block-title-wrapper h3 {
    color: #fff;
    border-left: 5px solid #5086B4;
    font-size: 24px;
    padding-left: 16px;
}


@media (max-width:1366px) {
    .current-locals {
        padding: 96px 0;
    }
}

@media (max-width:1199px) {
    .current-locals {
        padding: 64px 0;
    }

    .current-locals .current-locals-cta {
        padding: 24px;
    }

    .current-locals .current-locals-wrapper {
        gap: 32px;
    }

    .current-locals {
        gap: 32px;
    }

    .current-locals .block-title br {
        display: none;
    }

    .current-locals .locals-wrapper {
        gap: 16px;
    }

    .current-locals .block-single {
        width: calc(50% - 8px);
    }
}

@media (max-width:991px) {
    .current-locals .block-title-wrapper {
        gap: 16px;
        align-items: center;
        flex-direction: row;
    }

    .current-locals .block-title-wrapper h3 {
        padding-left: 8px;
        font-size: 18px;
        border-left-width: 4px;
    }
    .current-locals .current-locals-cta::before{
        width: 105%;
    }
    
    .current-locals .block-title p{
        font-size:16px;
    }

    .current-locals .block-single p {
        font-size: 14px;
    }

    .current-locals .current-locals-cta p {
        font-size: 16px;
    }
}

@media (max-width:768px) {
    .current-locals{
    	background-position: 50% 60%;
    }
        
    .current-locals .block-single {
        max-width: 100%;
        padding: 16px;
    }
    
    .current-locals.mobile-1-column .block-single{
    	width: 100%;
    }
    
    .current-locals.mobile-1-column .block-single::after{
    	font-size:102px;
        bottom: 50%;
        transform: translateY(50%);
    }

    .current-locals .block-title-wrapper img {
        min-width: 30px;
        max-width: 30px;
        aspect-ratio: 1;
    }
}