.locations {
    #header {
        #title-container {
            padding: 0;

            @media screen and (min-width: 1200px) {
                background: url("../images/dot-map-lg--Bywy37.avif") right center no-repeat;
                background-size: 50%;
            }

            @media screen and (min-width: 1850px) {
                background-size: auto;
            }

            .container {
                &>.col-12 {
                    padding: 1rem;
                }

                .btn {
                    @media screen and (min-width: 1200px) {
                        max-width: 360px;
                    }
                }


                #stats {
                    width: 100%;
                    box-sizing: border-box;
                    grid-template-columns: repeat(12, 1fr);
                    padding: 70px 30px;
                    background: url("../images/dot-map-iMm8F1r.avif") center/cover no-repeat;

                    @media screen and (min-width: 1200px) {
                        background: none;
                        align-self: start;
                    }

                    .box {
                        border-radius: 10px;
                        margin: 0;
                        padding: 12px;
                        gap: 8px;
                        justify-content: start;
                        align-items: start;

                        p {
                            width: 100%;
                            text-align: start;
                        }

                        p:first-child {
                            color: #71658B;
                            font-size: 13px;
                            font-weight: 500;
                            line-height: normal;
                        }

                        p:last-child {
                            color: #0A011A;
                            font-family: "Neue Kaine";
                            font-size: 18px;
                            font-weight: 800;
                            line-height: normal;
                        }
                    }
                }
            }

            @media screen and (min-width: 1200px) {

                h1,
                p {
                    text-align: start;
                }
            }
        }
    }

    ul {
        color: #FFF;
        font-family: "Inter Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }

    #servers {
        h3 {
            display: flex;
            gap: 16px;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            line-height: normal;

            @media screen and (min-width: 1200px) {
                font-size: 18px;
                line-height: normal;
            }

            .flag {
                font-size: 25px;
                line-height: 25px;
            }
        }

        .box.dark-gray {
            background: #EFEDF5;
            border-radius: 24px;
            padding: 20px 1rem;

            @media screen and (min-width: 1200px) {
                border-radius: 32px;
                padding: 28px 32px;
            }

            .box.white {
                border-radius: 20px;
                margin: 0;
            }
        }

        hr {
            height: 1px;
            background: #DADADA;
            margin: 20px 0;
            border: none;
        }

        table {
            width: 100%;
            border-spacing: 0;

            @media screen and (min-width: 1200px) {
                border-spacing: 0 12px;
            }

            .green-circle {
                display: block;
                width: 7px;
                height: 7px;
                background: #2ECC71;
                border-radius: 50%;
            }

            thead {
                tr {
                    th {
                        color: #0A011A;
                        font-size: 16px;
                        line-height: normal;
                        font-weight: 400;
                        padding: 0 0 12px 0;

                        &:nth-child(1) {
                            width: 15px;
                            text-align: start;
                        }

                        &:nth-child(2) {
                            text-align: start;
                            font-weight: 500;

                            @media screen and (min-width: 1200px) {
                                text-align: center;
                            }
                        }

                        &.right {
                            text-align: end;
                        }
                    }
                }
            }

            tbody {
                tr {
                    @media screen and (min-width: 1200px) {
                        background: white;
                        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.02);
                    }
                }
            }

            td {
                color: #0A011A;
                font-size: 14px;
                font-weight: 400;
                line-height: normal;
                padding: 14px 0;

                @media screen and (min-width: 1200px) {
                    &:first-child {
                        border-radius: 16px 0 0 16px;
                        padding-left: 21px;
                        font-size: 1rem;
                        line-height: normal;
                        position: relative;

                        &:before {
                            position: absolute;
                            left: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            content: '';
                            display: block;
                            width: 3px;
                            height: 28px;
                            background: linear-gradient(90deg, #AC70EF 0%, #F27FBE 50%, #FFB681 100%);
                        }
                    }

                    &:last-child {
                        border-radius: 0 16px 16px 0;
                    }
                }

                &.right {
                    text-align: end;
                }

                img {
                    width: auto;
                    height: auto;
                }

                .city {
                    font-size: 18px;
                    font-weight: 500;
                    line-height: normal;
                }
            }
        }
    }
}