.first-screen {
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

.first-screen::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.first-screen__content {
    z-index: 2;
}

.first-screen__logo {
    width: 167px;
    height: 50px;
    object-fit: cover;
}

.first-screen__title {
    font-weight: 265;
    font-size: 115px;
    letter-spacing: -5%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.first-screen__title p {
    width: 100%;
    text-align: center;
}

.first-screen-logo-screen {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.first-screen__title b {
    font-weight: 500;
    font-size: 110px;
}

.first-screen__desc {
    display: inline-block;
    margin: 20px 0 0 8rem;
}

.first-screen__desc p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
}

.first-screen__buttons {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
    flex-direction: column;
    position: fixed;
    right: 20px;
    z-index: 999;
    top: 73vh;
}

.first-screen__buttons .btn {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #989ca6;
    background-color: #232D3F;
    padding: 0;
    border-radius: 100%;
}

.first-screen__buttons .btn img {
    width: 15px;
    height: 15px;
    object-fit: fill;
}

.first-screen__buttons .btn.btn--secondary img {
    width: 18px;
    height: 24px;
    object-fit: fill;
}

.title-btn {
    position: relative;
    width: 200px;
    height: 200px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    margin: 0 17px 5px;
}

.title-btn:before {
    width: 53px;
    height: 50px;
    background-image: url('../../../images/icon.svg');
    background-position: center;
    background-size: contain;
    display: inline-block;
    content: '';
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 25px);
}


.politic-config .first-screen__title {
    font-size: 90px;
    letter-spacing: -4px;
}


.anchor-bottom {
    position: absolute;
    display: block;
    width: 110px;
    height: 110px;
    bottom: -55px;
    left: calc(50% - 55px);
    backdrop-filter: blur(38.5px);
    z-index: 9;
    ;
}

@media only screen and (max-width: 1340px) {

    .first-screen__title b,
    .first-screen__title {
        font-size: 60px;
    }

    .first-screen__desc {
        margin: 20px 0 0 13rem;

    }

    .first-screen__desc p {
        font-size: 14px;
    }

    .title-btn {
        width: 109px;
        height: 109px;
    }
}


@media only screen and (max-width: 1024px) {

    .des-header-left-bottom .lang-switcher {
        display: none;
    }

    .first-screen__logo {
        width: 167px;
        hyphenate-character: 50px;
    }

    .first-screen__buttons {
        display: none;
    }

    .first-screen__title b,
    .first-screen__title {
        font-size: 25px;
    }

    .first-screen__desc {
        margin: 20px 0 0 0;
    }

    .title-btn {
        width: 70px;
        height: 70px;
    }

    .first-screen__content {
        display: flex;
        flex-direction: column;
    }

    .politic-config .first-screen__title {
        font-size: 64px;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {

    .first-screen {
        height: 640px;
    }

    .anchor-bottom {
        width: 70px;
        height: 70px;
        bottom: -35px;
        left: calc(50% - 35px);
    }

    .title-btn {
        margin: 0 3px;
    }

    .first-screen__title {
        margin-top: 16px;
    }

    .first-screen__logo {
        width: 128px;
        object-fit: fill;
    }

    .title-btn:before {
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
    }

    .politic-config {
        padding: 0;
        height: 445px;
    }

    .politic-config .first-screen__title {
        font-size: 36px;
        line-height: 100%;
        font-weight: 400;
    }


}