html.noscroll,
body.noscroll {
    overflow: hidden;
}

@media (min-width: 1140px) {
    .bgcircles {
        user-select: none;
        pointer-events: none;
        z-index: -100;
        position: absolute;
    }

    .bgcircles>svg {
        position: absolute;
        z-index: -100;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #top-section+.bgcircles-wrap .bgcircles {
        top: -326px;
        right: 361px;
    }

    .bgcircles-wrap {
        max-width: 1392px;
        margin: auto;
        background: #000;
    }

    .bgcircles.bgstatic {
        width: 1920px;
        height: 1920px;
        transform: none;
    }
}


@media (max-width: 1139px) {
    .bgcircles {
        display: none !important;
    }
}

@media (min-width: 1921px) {
    #top-section+.bgcircles-wrap .bgcircles {
        top: -326px;
        right: 624px;
        transform: none;
    }
}

/* spinning animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Menu/Header */

header {
    z-index: 10;
    height: 116px;
    transition: background-color 0.2s, height .2s;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
}

.sticky header {
    border-bottom: 1px solid #EDEDED;
    height: 88px;
    background: #fff;
}

header.transition-active {
    transition: background-color 0.2s, top 0.2s;
}

#headerline {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: var(--primary600);
    transition: width 0.8s ease, opacity 1.3s ease;
}

.menu-item {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-left: 40px;
    padding: 43px 0;
    user-select: none;
}

.menu-item:not(.menu--item__special)::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary600);
    transition: 0.2s;
    transform: translateY(100%);
    z-index: 1;
}

.menu-item:not(.menu--item__special):hover::after,
.menu-item.active::after {
    width: 100%;
}

.sticky .menu-item {
    padding: 30px 0;
}

.menu--item__special,
.sticky .menu--item__special {
    padding: 13px 24px;
    background: var(--primary600);
    border-radius: 2px;
    margin-right: 12px;
    margin-left: 48px;

    transition: background-color 0.25s ease, color 0.25s ease;
}

.menu--item__special:hover {
    background-color: #0F0F0F;
    color: #fff;
}

.menucareer,
.sticky .menucareer {
    padding-right: 24px;
}

.menu-main--career {
    display: flex;
    background: var(--primary600);
    justify-content: center;
    align-items: center;
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-14px);
    padding: 2px 4px;
}

.locale-picker-current {
    border: 1px solid var(--grayscale200);
    padding: 13px;
    border-radius: 2px;
    transition: border-color 0.2s;
    background: #fff;
}

.locale-picker-current:hover {
    border-color: var(--primary600);
    cursor: pointer;
}

.locale-picker-current>.lpc-arrow {
    transition: transform 0.2s ease;
    transform: scaleY(1);
}

.locale-picker-current.active>.lpc-arrow {
    transform: scaleY(-1);
}

.lpc-code {
    margin-right: 16px;
    font-size: 15px;
    font-weight: 450;
    line-height: 24px;
    user-select: none;
}

.locale-picker-wrap {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    padding-top: 12px;
}

.locale-picker-items {
    border: 1px solid var(--grayscale200);
    padding: 0;
    border-radius: 2px;
    background: #fff;
}

.lpc-pickable {
    background-color: #fff;
    padding: 13px 14px;
    width: 100%;
    transition: background-color, 0.2s ease;
    margin-right: 0;
}

.lpc-pickable:hover {
    background-color: var(--secondaryGray);
}

.locale-picker-current.active+.locale-picker-wrap {
    display: block;
}

.fadeOut {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.fadeIn {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.submenu {
    background: #fff;
    position: absolute;
    left: 0;
    top: 115px;
    width: 100%;
    border-top: 1px solid #EDEDED;
}

.sticky .submenu {
    top: 88px;
}

.submenu-list {
    display: flex;
    justify-content: space-between;
}

.submenu-main-desc {
    padding: 48px 24px 28px 0;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    max-width: 348px;
}

.submenu-elements {
    flex-wrap: wrap;
    max-width: calc(100% - 464px);
    justify-content: flex-start;
    gap: 24px;
    padding: 48px 0;
}

@media (min-width: 1141px) and (max-width: 1440px) {
    .submenu-main-desc {
        font-size: 17px;
        line-height: 27px;
        max-width: 264px;
    }
    .submenu-elements {
        max-width: calc(100% - 264px);
    }
}

.submenu-element {
    flex: 0 0 calc(33.333% - 24px + (24px / 3));
    width: 100%;
}

.submenu-desc {
    flex-grow: 1;
    padding-bottom: 20px;
    color: var(--grayscale700);
}

.submenu-desc::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary600);
    transition: 0.2s;
    transform: translateY(100%);
}

.submenu-element:hover .submenu-desc::after {
    width: 100%;
}

/* /Menu/Header/SG CIRCLE */

.sungroup-circle circle {
    transition: stroke-dashoffset, 1s ease;
}

/* Teksty */
.smalltext {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.mediumtext {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.smalllead {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.mediumlead {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
}

/* Headlines */
.heading-wrap {
    max-width: 680px;
}

h1,
.h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: -0.02em;
}

h2,
.h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
}

h3,
.h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

h4,
.h4,
.h4 h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

h5,
.h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

h6,
.h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

@media (max-width: 1440px) {

    h1,
    .h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.23;
        letter-spacing: -0.02em;
    }
}

@media (max-width: 440px) {

    h1,
    .h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.38;
        letter-spacing: 0em;
    }
}

.overline {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    color: var(--grayscale600);
}

.caption {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grayscale500);
}

.submenu-desc-content {
    font-size: 14px;
}

/* Boxy ofertowe widget */

.offer-box-col {
    margin-bottom: 24px;
}

.offer-box {
    background-color: #F6F8FB;
    padding: 32px 32px 48px 32px;
    height: 100%;
    justify-content: flex-start;
}

.offer-box::before,
.offer-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 0;
    width: 50%;
    background-color: var(--primary600);
    z-index: 0;
}

.offer-box::before {
    transition: all 0.36s ease;
    left: 0;
}

.offer-box::after {
    transition: all 0.36s cubic-bezier(0.65, 0.16, 0.41, 0.84);
    left: 50%;
}

.offer-box:hover::before,
.offer-box:hover::after {
    height: 100%;
}

.offer-box:hover .overline,
.offer-box:hover .smalltext {
    color: var(--black);
}

.offer-box:hover .offer-icon::after {
    height: 64px;
    width: 64px;
}


.offer-box__bottom>.smalltext {
    color: var(--grayscale700);
}

.offer-box>.overline,
.offer-box__bottom>.smalltext {
    transition: color 0.36s ease;
}

.offer-box>.overline,
.offer-box__bottom {
    z-index: 1;
}

.offer-box__bottom {
    max-width: 340px;
    margin-top: 36px;
}

.offer-icon {
    height: 64px;
    width: 64px;
    margin-bottom: 12px;
    flex: 0 0 64px;
}

.offer-icon::before,
.offer-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.offer-icon::before {
    z-index: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) -40.62%, rgba(255, 255, 255, 0.2) 138.28%);
    opacity: 0.75;
    height: 64px;
    width: 64px;
}

.offer-icon::after {
    z-index: 0;
    border-radius: 50%;
    background: #FFFFFF;
    height: 52px;
    width: 52px;
    transition: all 0.36s ease;
}

.offer-icon svg,
.offer-icon img {
    z-index: 1;
}

@media (max-width: 991px) {
    .offer-box {
        aspect-ratio: unset;
        height: unset;
    }
}

@media (max-width:576px) {
    .offer-section-home .offer-box .offer-box-btn {
        transition: all.3s;
    }

    .offer-section-home .offer-box:hover::before,
    .offer-section-home .offer-box:hover::after {
        height: 0%;
    }

    .offer-box:hover .offer-box-btn {
        background-color: var(--black);
        color: var(--white);
    }
}

/* Greetings widget */
.greeting {
    gap: 24px;
    margin-bottom: 64px;
}

.greeting:last-child {
    margin-bottom: 0;
}

.greeting-heading {
    flex-grow: 1;
}

.greeting-content {
    flex: 0 0 788px;
    max-width: 788px;
}

/* Results widget */
.number__number {
    font-size: 52px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: 0.08em;
    color: #FFC000;
    padding-bottom: 8px;
}

.animated_number::after {
    content: "+";
    opacity: 0;
    margin-left: -50px;
    transition: all 0.35s ease;
}

.animated_number.finished::after {
    opacity: 1;
    margin-left: 0;
}

.number__desc {
    padding-right: 32px;
}

@media (max-width: 767px) {
    .number__number {
        font-size: 48px;
        font-weight: 600;
        line-height: 62px;
        letter-spacing: 0.04em;
    }

    .number__desc {
        font-size: 18px;
        font-weight: 600;
        line-height: 30px;
    }

    #results-section .row {
        gap: 24px 0;
    }
}

/* Big photos section */
#big-photos {
    padding: 224px 0;
}

@media (max-width: 1140px) {
    #big-photos {
        padding: 144px 0;
    }
}

.big-photo.st {
    transform: translateY(-64px);
}

.big-photo.sb {
    text-align: right;
    transform: translateY(64px);
}

.bpc {
    display: inline-block;
}

@media (max-width: 675px) {
    #big-photos {
        padding: 48px 0;
    }

    #big-photos .row {
        gap: 24px 0;
    }

    .big-photo.st,
    .big-photo.sb {
        transform: translateY(0);
    }

    .bpc::before,
    .bpc::after {
        display: none;
    }
}

.darkbg {
    background: var(--black);
    color: var(--white);
}

.graybg {
    background: var(--black);
}

.lightbg {
    background: var(--secondaryGray);
}

.csbtn-l.cspd {
    padding-top: 24px;
}

.arrow {
    height: 48px;
    width: 48px;
    transition: 0.2s ease;
    user-select: none;
}

.arrow:hover {
    color: #FFC000;
    cursor: pointer;
}

/* CASE STUDIES WIDGET */
.tag.caption {
    margin-right: 16px;
}

.oneside-container {
    max-width: calc(100% - (100% - 1392px) / 2);
    margin-left: auto;
    padding-left: 12px;
}

.oneside-container .splide__list {
    margin-right: 24px !important;
}

@media (max-width: 1366px) {
    .oneside-container {
        max-width: calc(100% - 12px);
        padding-left: 12px;
        padding-right: 0;
        margin: 0;
        margin-left: auto;
    }
}

@media (max-width: 1280px) {}

/* Referencje */
.rf-content {
    padding-right: 68px;
}

.rfa-details.rfa-details-padd {
    padding-left: 20px;
}

.rfa-img img {
    border-radius: 50%;
}

/* Technologie */
#technologies-section {
    padding-top: 160px;
}

@media (max-width: 1140px) {
    #technologies-section {
        padding-top: 80px;
    }
}

.technology-list {
    gap: 24px;
}

.technology-img {
    min-height: 88px;
    flex: 0 0 calc((100%/6) - 20px);
}

.td-content {
    color: #4D4D4D;
    max-width: 788px;
}

.technology-desc::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondaryGray);

    transition: all 0.5s ease;
}

.technology-desc.startTransition::after {
    width: 100%;
}

.technology-desc.endTransition::after {
    left: unset;
    right: 0;
    width: 0;
}

@media (max-width: 675px) {
    #technologies-section {
        padding-top: 48px;
    }
}

/* Contact person ---- GLOBALNE */
.contact-left {
    max-width: 672px;
    width: 100%;
}



.contact-number {
    gap: 48px;
}

.contact-number .h3 span {
    display: none;
}

.contact-socials {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.contact-socials-link {
    font-weight: 600;
    text-decoration-line: underline;
}

.cn-stretch {
    max-width: 384px;
    width: 100%;
}

.contact-right {
    max-width: 440px;
    width: 100%;
}

.contact-right .sungroup-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 64px);
}

.contact-position {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

.sociallink {
    width: 72px;
    height: 72px;
    display: inline-block;
    background: rgba(246, 248, 251, 0.08);
    border-radius: 50%;
    text-align: center;
    line-height: 72px;
}

.contact-left .sociallink {
    margin-right: 20px;
}

.cshow {
    display: none;
}

.chide {
    display: block;
}

@media (max-width: 1140px) {
    .cshow {
        display: block;
    }

    .chide {
        display: none;
    }

    .contact-flex {
        flex-direction: column;
    }

    .contact-left {
        margin-bottom: 32px;
    }

    .contact-left .pb32 {
        padding-bottom: 24px;
    }

    .contact-right {
        margin-bottom: 0;
    }

    .contact-right .sungroup-circle {
        position: absolute;
        bottom: 50%;
        left: 100%;
        transform: translate(-50%, 50%);
    }
}

/* footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--secondaryBlack);
}

.prefoot-menus {
    width: 100%;
    gap: 56px 37px;
}

.prefoot-menu {
    width: 100%;
    max-width: 176px;
}

.prefoot-link {
    margin-bottom: 8px;
}

.prefoot-link:last-child {
    margin-bottom: 0;
}

.prefoot-right {
    text-align: right;
}

.footericon {
    margin-right: 24px;
}

.fsl-link {
    width: 40px;
    height: 40px;
    background-color: var(--grayscale800);
    border-radius: 50%;
    margin-left: 16px;
}

.fsl-link,
.fsl-link path {
    transition: 0.2s ease;
}

.fsl-link:hover {
    background-color: var(--primary600);
}

.fsl-link:hover path {
    fill: #000;
}

.fsl-link:first-child {
    margin-left: 12px;
}

.fclink {
    margin-top: 8px;
}

#shadow-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000040;
    z-index: 1;
}

.showing-sub {
    background: #fff;
}

.sungroup-circle svg {
    display: block;
}


.cs-box-listing {
    flex: 0 0 640px;
    max-width: 640px;
    margin-bottom: 64px;
}

.cs-box-listing:nth-child(even) {
    margin-top: 128px;
}

#big-photos+#our-values {
    padding-top: 0;
}

@media (max-width: 1366px) {
    .cs-box-listing {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 920px) {
    .cs-box-listing {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .technology-img img {
        display: block;
        max-width: 120px;
    }

    .cs-box .cs-img img {
        width: 100%;
    }

    .cs-box-listing {
        margin-bottom: 64px;
    }

    .cs-box-listing:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .cs-box-listing {
        margin-bottom: 48px;
    }
}

@media (max-width: 575px) {
    .cs-box-listing {
        margin-bottom: 32px;
    }
}


.letstalk-section {
    padding: 128px 0;
    background: var(--black);
    color: var(--white);
}

.letstalk-section a {
    color: var(--white);
}

#prefoot-section .sungroup-circle {
    position: absolute;
    right: 0;
    top: -91px;
    transform: translateY(-50%);
}

@media (max-width: 1280px) {
    #prefoot-section .sungroup-circle {
        display: none;
    }
}

@media (max-width: 1140px) {
    .letstalk-section {
        padding: 64px 0;
    }
}

#prefoot-section {
    border-top: 1px solid var(--secondaryBlack);
}

@media (max-width: 1280px) {

    .menu-item,
    .sticky .menu-item {
        font-size: 12px;
        margin-left: 14px;
    }
}

header.fix {
    position: fixed;
    width: 100%;
    top: 0;
}

#hamburger {
    display: none;
}

.submenu-name {
    display: none;
}

@media (max-width: 1140px) {
    #hamburger {
        display: block;
        height: 60px;
        width: 60px;

        position: absolute;
        right: 68px;
        top: 50%;
        transform: translateY(-50%);
    }

    #hamburger::before,
    #hamburger::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 28px;
        height: 2px;
        background-color: var(--black);

        transition: all 0.3s ease;
    }

    #hamburger::before {
        transform: translate(-50%, -4px);
    }

    #hamburger::after {
        transform: translate(-50%, 4px);
    }

    #hamburger.active::before {
        transform: translate(-50%, -0px) rotate(45deg);
    }

    #hamburger.active::after {
        transform: translate(-50%, 0px) rotate(-45deg);
    }

    .menu-main {
        transition: all 0.45s ease;
        transform: translateX(-100%);
        position: fixed;
        top: 88px;
        left: 0;
        background: var(--white);
        width: 100%;
        padding: 48px 82px;
        flex-direction: column;
        align-items: flex-start;
        height: calc(100% - 88px);
    }

    .menu-main.active {
        transform: translateX(0);
    }

    .menu-item,
    .sticky .menu-item {
        margin-left: 0;
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        padding: 4px 0;
        margin-bottom: 4px;
        margin-left: 0;
    }

    .menu-item::after {
        display: none;
    }

    .menu-item.has-children {
        cursor: default;
    }

    .menu-item.has-children::before {
        content: "";
        width: 32px;
        height: 32px;
        position: absolute;
        right: 0;
        top: 9px;
        background-image: url(../img/arrow_menu.svg);
    }

    .menu-item:nth-child(-n+4) {
        font-size: 28px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: 0em;
        padding: 4px 0;
        margin-left: 0;
        margin-bottom: 4px;
        width: 100%;
    }

    .menu--item__special,
    .sticky .menu--item__special {
        padding: 14px 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        margin: 0;
        position: absolute;
        bottom: 24px;
        left: 24px;
        width: calc(100% - 159px);
        text-align: center;
    }

    #locale-picker {
        position: absolute;
        right: 24px;
        bottom: 24px;
    }

    .submenu {
        z-index: 1;
        position: fixed;
        left: 0;
        top: 0;
        border-top: 0;
        height: 100%;
        padding-top: 24px;
        overflow: auto;
    }

    .submenu-elements {
        gap: 4px;
        padding: 0;
        background: #fff;
        flex-direction: column;
    }

    .submenu-element {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 4px 0;
    }

    .submenu-desc-content {
        display: none;
    }

    .submenu-desc {
        padding: 0;
    }

    .submenu-desc a {
        padding: 0;
    }

    .submenu-element .offer-icon {
        display: none;
    }

    .submenu-name {
        display: block;
        font-size: 28px;
        font-weight: 600;
        line-height: 30px;
        padding-bottom: 14px;
        margin-top: 4px;
        margin-bottom: 4px;
    }
}

@media (max-width: 991px) {
    header {
        height: 88px;
    }
}

.btn-arrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    padding-right: 36px;
}

.btn-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../img/arrow_btn.svg);
}

.cn-number {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
}

.cn-mail {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
}

@media (max-width: 991px) {
    .prefoot-main {
        flex-direction: column;
    }

    .prefoot-right {
        padding-top: 24px;
        text-align: left;
    }

    .prefoot-menus {
        gap: 32px;
    }

    .letstalk-section {
        padding: 64px 0;
    }

    .padd90 {
        padding: 48px 0;
    }

    .footer-content {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer-copy {
        padding-top: 32px;
    }

    .menu-main {
        padding: 24px;
    }

    .contact-left .contact-socials,
    .contact-left .h3 {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .rf-content {
        padding-right: 24px;
    }

    .mediumtext {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .contact-number {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
    }

    .contact-number .h3 span {
        display: inline-block;
    }

    .contact-left .h3 {
        font-size: 18px;
        line-height: 32px;
    }

    .contact-left .contact-socials {
        font-size: 18px;
        line-height: 32px;
    }

    .contact-left .pb32 {
        padding-bottom: 16px;
    }

    .contact-details {
        padding-bottom: 12px;
    }

    .cn-stretch {
        padding-top: 12px;
    }

    .contact-right {
        flex-direction: column;
        gap: 32px !important;
    }

    .contact__person {
        display: flex;
        align-items: center;
        gap: 16px
    }

    .letstalk-section {
        padding: 48px 0;
    }
}

@media (max-width: 625px) {
    .padd100 {
        padding: 48px 0;
    }

    .pt90,
    .pt100 {
        padding-top: 48px;
    }

    .pb64 {
        padding-bottom: 48px;
    }

    h2,
    .h2 {
        font-size: 28px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: 0em;
    }

    h5,
    .h5 {
        font-size: 18px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0em;
    }

    .overline {
        padding-bottom: 12px;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0em;
    }

    .csbtn-l {
        padding-top: 32px;
        text-align: left;
    }

    .contact-right {
        max-width: 212px;
    }

    .contact-right .sungroup-circle>svg {
        max-width: 100px;
        max-height: 100px;
    }
}

@media (max-width: 575px) {
    #offer-section {
        padding-top: 160px;
    }

    .rf_arrows {
        display: none !important;
    }

    .footer-socials {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }

    .fsl-link {
        margin-left: 12px;
    }

    .fsl-link:first-child {
        margin-left: 0;
    }

    .offer-box {
        min-height: auto;
        padding: 24px 24px 32px 24px;
    }

    .references-list {
        padding-top: 0;
    }

    .contact-left{
        margin-bottom: 48px;
    }

    .contact-left .contact-socials,
    .contact-left .h3 {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (min-width: 1921px) {
    #page-top-section>picture>img {
        max-width: 2300px;
        width: 100%;
        display: block;
        margin: auto;
    }

    .header-container {
        max-width: 1920px;
    }

    .case-studies--header>picture>img {
        max-width: 2300px;
        width: 100%;
        display: block;
        margin: auto;
    }
}

#partner-slider {
    margin-top: 22px;
    margin-bottom: 22px;
    padding: 12px 0;
    max-width: calc(100% - (100% - 1392px) / 2);
    padding-left: 12px;
    margin-left: auto;
}

.mediumtext.bold {
    font-weight: 500;
}

@media (max-width: 991px) {
    #partner-slider {
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .offer-boxes {
        padding-top: 0;
    }

    .heading-wrap {
        padding-bottom: 48px;
    }

    .cs-box-listing {
        margin-bottom: 48px;
    }

    .csbtn-l.cspd {
        padding-top: 0;
    }
}

.newsletter-main {
    padding: 72px 0;
    background-color: #000;
    color: #CDCDCD;
}

.newsletter-main .form__element .form__label,
.newsletter-main input {
    color: #CDCDCD;
}

.newsletter-restrict {
    max-width: 672px;
    margin: auto;
    position: relative;
}

button.dib {
    display: inline-block;
}

.hidden {
    display: none;
}

.newsletter-restrict .sungroup-circle {
    position: absolute;
    right: -52px;
    bottom: 0;
    transform: translate(100%, 0);
}

.newsletter-main .form__element input {
    border-bottom: 1px solid var(--grayscale400);
    background: transparent;
}

.light .newsletter-main {
    background-color: #F6F8FB;
    color: var(--grayscale500);
}

.light .form__element .form__label,
.light input {
    color: #4D4D4D;
}

.light .newsletter-main .h2 {
    color: #0F0F0F;
}

#newsletter-widget.light {
    padding-top: 128px;
}

#blog-content+#newsletter-widget {
    padding-bottom: 128px;
}

.pagination {
    margin: 0;
    padding: 40px 0 160px;
    list-style-type: none;
}

@media (max-width: 1366px) {
    .pagination {
        padding: 0px 0 88px;
    }
}

@media (max-width: 767px) {
    .pagination {
        padding: 0px 0 88px;
    }
}

.pagination__link {
    height: 52px;
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 450;
    line-height: 22px;
    border: 1px solid #E0E0E0;
    border-radius: 50%;

    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.pagination__item {
    margin: 0 4px;
}

.pagination__item:first-child {
    margin-right: 16px;
    margin-left: 0;
}

.pagination__item:last-child {
    margin-left: 16px;
    margin-right: 0;
}

.pagination__link:hover {
    background: var(--primary600);
    border-color: var(--primary600);
}

.pagination__link.active,
.pagination__link.disabled {
    background: #F6F8FB;
    border-color: #E0E0E0;
    pointer-events: none;
}

.cs-img {
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 32px;
}

.cs-box img {
    transition: transform 0.4s ease;
}

.cs-box img:hover {
    transform: scale(1.025);
}

.btn-arrow::after {
    transition: right 0.25s ease;
}

.cs-box .btn-arrow:hover::after {
    right: -5px;
}

.pathAnim.init path {
    stroke-dashoffset: 0 !important;
    transition: stroke-dashoffset 1s ease-in-out !important;
}

/* rotate animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* animate dashoffset */
@keyframes dash {
    0% {
        stroke-dashoffset: 0px;
    }

    100% {
        stroke-dashoffset: 2294px;
    }
}

.home-animation .calcLength {
    stroke-dasharray: 1147px;
    animation: dash 240s linear infinite;
}

.page-header .sungroup-circle .calcLength {
    stroke-dasharray: 1147px;
    animation: dash 240s linear infinite;
}

.rellax video {
    aspect-ratio: 16/9;
    max-width: 100%;
}

/* Animacje observera */
@media (min-width: 1140px) {
    .fadeUp {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .fadeUp.init {
        opacity: 1;
        transform: translateY(0);
    }

    .fadeDown {
        opacity: 0;
        transform: translateY(-50px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .fadeDown.init {
        opacity: 1;
        transform: translateY(0);
    }

    .cascade>* {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .cascade>*.init {
        opacity: 1;
        transform: translateY(0);
    }
}

.form__element--error {
    color: #DA0025;
}

.form__element--error.form-check::before {
    border-color: #DA0025;
}

.form__info {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 8px;
}

.form__element--error input.form__field {
    border-color: #DA0025 !important;
}

div#JsResponse {
    background: #27AE60;
    color: #fff;
    padding: 8px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
}

svg.menucircle {
    position: absolute;
}

svg.menucircle.pathAnim path {
    transition: all 0.5s ease !important;
}

@media (max-width: 1140px) {
    .menucircle {
        display: none !important;
    }
}

.submenu-element:hover svg.menucircle.pathAnim path {
    stroke-dashoffset: 0 !important;
}

.title-padd {
    padding-bottom: 160px;
}

.sglist.catlist .checklist-custom li {
    padding-bottom: 12px;
}

.sglist.catlist .checklist-custom li:last-child {
    padding-bottom: 0;
}

.sglist.catlist .checklist-custom li::before,
#guide-sections .list li::before {
    top: 10px;
}

#submenuBack {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translate(-100%, -50%);
    transition: transform 0.25s ease;
    padding: 24px 254px 24px 14px;

    background: #fff;
}

@media (max-width: 600px) {
    #submenuBack {
        padding: 24px 154px 24px 14px;
    }
}

#submenuBack.active {
    transform: translate(0, -50%);
}

@media (max-width: 1140px) {
    .menu-main--career {
        right: -24px;
    }

    .submenu-desc::after {
        display: none;
    }

    .locale-picker-wrap {
        top: unset;
        bottom: 100%;
        width: 100%;
        padding-top: 0;
        padding-bottom: 12px;
    }
}

.footericon svg {
    display: block;
}

.prefoot-link:hover {
    color: #fff;
}

.fci-content .list .mediumtext {
    font-weight: 500;
}

.prefoot-menu-arrow {
    display: none;
}

.prefoot-menu-body {
    display: flex;
    flex-direction: column;
}

@media (max-width: 575px) {
    .mp32 {
        padding-bottom: 32px;
    }

    #partner-slider {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    #steps {
        padding-top: 64px;
    }

    #technologies-section {
        padding-top: 64px;
    }

    #big-photos {
        padding: 64px 0;
    }

    .prefoot-top {
        padding-bottom: 32px;
    }

    #prefoot-section {
        padding-bottom: 32px;
    }

    footer {
        padding: 32px 0;
    }

    .fsl-link {
        width: 48px;
        height: 48px;
    }

    .footer-copy {
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        padding-top: 24px;
    }

    .offer-box .h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .contact-position {
        font-size: 16px;
        line-height: 28px;
    }

    .cn-number,
    .cn-mail {
        font-size: 16px;
        line-height: 28px;
    }

    .prefoot-right .mediumlead.pb16 {
        padding-bottom: 4px;
    }

    .prefoot-menu .h6 {
        padding-bottom: 8px;
    }

    .prefoot-menu {
        max-width: unset;
    }

    .prefoot-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .prefoot-menu-arrow {
        display: block;
        transition: transform .3s ease-in;
    }

    .prefoot-menu-arrow--active {
        transform: rotate(180deg);
    }

    .prefoot-menus {
        gap: 16px;
    }

    .prefoot-menu-body {
        display: none;
    }

    .prefoot-menu-body a {
        display: block;
    }

    .prefoot-menu-body.active {
        margin-bottom: 32px;
    }

    .cs-box .h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        padding-bottom: 24px;
    }

    .pagination {
        justify-content: center;
    }

    .pagination__item:first-child {
        margin-right: 4px;
        margin-left: 0;
    }

    .pagination__item:last-child {
        margin-right: 0;
        margin-left: 4px;
    }

    .pagination__item {
        margin: 0 4px;
    }

    .pagination__link {
        height: 38px;
        width: 38px;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }
}

.quot-mark svg {
    display: block;
}

#references-slider {
    transition: height 0.25s ease;
}

.parallax {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.parallax video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .cs-img {
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .header-container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    #hamburger {
        right: 8px;
    }
}

.sizerule,
.typerule {
    display: none;
}

.typeerror .typerule,
.weighterror .sizerule {
    display: block;
}

.footer-copy a {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grayscale300);
    padding-left: 16px;
}

@media (max-width: 1440px) {
    .oneside-container {
        max-width: 100%;
        margin-left: auto;
        padding-left: 40px;
    }
}

@media (min-width: 1281px) and (max-width: 1430px) {
    .menu-item,
    .menu-item.menu--item__special {
        margin-left: 22px;
    }
}

@media (min-width: 768px) and (max-width: 1140px) {
    .menu-item:nth-child(-n+4) {
        margin-bottom: 12px;
    }
    .menu-item:nth-child(5) {
        margin-top: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .menu-item {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .offer-box {
        background-color: #F6F8FB;
        min-height: unset;
    }

    .container {
        padding-left: 82px;
        padding-right: 82px;
    }

    .oneside-container {
        max-width: calc(100% - 82px);
        padding-left: 0;
    }

    #partner-slider {
        max-width: 100%;
        padding-left: 82px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .pt128,
    .pt160,
    #technologies-section {
        padding-top: 88px;
    }

    #big-photos {
        padding: 152px 0;
    }

    .pb88 {
        padding-bottom: 64px;
    }

    .pt88 {
        padding-top: 64px;
    }

    .padd160 {
        padding: 88px 0;
    }

    .letstalk-section {
        padding: 88px 0;
    }

    .contact-right {
        max-width: 355px;
    }

    .contact-right .sungroup-circle svg {
        max-width: 140px;
        max-height: 140px;
    }

    .padd90 {
        padding: 64px 0;
    }

    .pb64 {
        padding-bottom: 48px;
    }

    .prefoot-menus {
        width: 100%;
        gap: 27px;
    }

    .prefoot-right .mediumlead {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
        padding-bottom: 12px;
    }

    .prefoot-right .h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .h2 {
        font-size: 32px;
        font-weight: 600;
        line-height: 44px;
    }

    .h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .h5 {
        font-size: 18px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0em;
    }

    .h6 {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
    }

    .pb24 {
        padding-bottom: 16px;
    }

    .pt90 {
        padding-top: 64px;
    }

    .pt100 {
        padding-top: 88px;
    }

    .prefoot-link {
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
    }

    .overline,
    .caption {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .heading-wrap {
        max-width: 620px;
        padding-bottom: 64px;
    }

    #references-section .heading-wrap,
    #offer-section .heading-wrap,
    .related-cases .heading-wrap {
        padding-bottom: 0;
    }

    .offer-box .smalltext {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
    }

    .mediumtext.bold {
        font-size: 16px;
        font-weight: 500;
        line-height: 28px;
    }

    .cs-box-listing {
        margin-bottom: 48px;
    }

    .csbtn-l.cspd {
        padding-top: 16px;
    }

    .rf-content {
        padding-right: 64px;
    }

    .rf-content .mediumtext {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .contact-left .h1 {
        font-size: 48px;
        font-weight: 600;
        line-height: 62px;
        letter-spacing: -0.02em;
    }

    .cn-text {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
    }

    .cn-number {
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
    }

    .cn-mail {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        color: var(--grayscale200);
    }

    .smalltext {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }

    .mediumtext {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .submenu-desc {
        flex-grow: 1;
        color: var(--grayscale700);
    }

    .submenu-desc .h6 {
        padding-bottom: 8px;
    }

    .cs-box-listing {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    #big-photos .container .row {
        margin-right: -30px;
        margin-left: -30px;
    }

    #big-photos .container .row>div {
        padding: 0 30px;
    }

    .contact-position {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .submenu .offer-icon,
    .menucircle {
        display: none;
    }
}

@media (max-width: 1225px) {
    #spy-bar {
        display: none;
    }
}

@media (min-width: 1141px) and (max-width: 1280px) {
    .menu-item {
        font-size: 12px;
        margin-left: 14px;
    }
    .menu-main--career {
        font-size: 8px;
        right: -6px;
        line-height: 12px;
    }
}

@media (max-width:1141px) {
    .menu-main--career {
        right: unset;
        left: 104px;
    }
}

/* lap */
@media (min-width: 1281px) and (max-width: 1600px) {
    .parallax {
        max-height: 700px;
    }
}

#results-section .heading-wrap {
    max-width: 740px;
}

.konkursy-i-loterie .page-header-content {
    max-width: 840px;
}

.o-nas .page-header-content {
    max-width: 1000px;
}

.kariera .page-header-content.wider {
    max-width: 1000px;
}

@media (max-width: 991px) {
    .oneside-container {
        padding-left: 24px;
    }

    .footer-copy a {
        display: block;
        padding-left: 0;
    }


    .footer-copy .links-left {
        margin-top: 5px;
    }
}

#playbutton-menu {
    margin-right: 12px;
    background: #fff;
}

#playbutton-menu:hover {
    cursor: pointer;
}

#playbutton-menu rect {
    transition: stroke 0.2s ease-in-out;
}

#playbutton-menu:hover rect {
    stroke: var(--primary600);
}

#playbutton-menu path {
    transition: fill 0.2s ease-in-out;
}

#playbutton-menu:hover path {
    fill: var(--primary600);
}

.video-container,
.video-container video {
    width: 100%;
    height: 100%;
}

.video-container {
    background-color: #000;
}

#videoplayer {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;

    transition: opacity 0.3s ease-in-out;
}

#videoplayer.active {
    opacity: 1;
}

#video-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;

    background-color: #000;
    transition: background-color 0.3s ease-in-out;
}

#video-close:hover {
    background-color: #fff;
    cursor: pointer;
}

#video-close svg>path {
    transition: all 0.3s ease-in-out;
}

#video-close:hover svg>path {
    fill: #000;
}

#video-close svg {
    display: block;
}

#playbutton-mobile {
    display: none;
}

#playbutton-menu {
    display: block;
}

@media (max-width: 1140px) {
    #playbutton-mobile {
        display: block;
    }

    #playbutton-menu {
        display: none;
    }

    .submenu-list {
        flex-direction: column;
    }
    .submenu-elements {
        max-width: none;
    }
    .submenu-main-desc {
        padding: 0 0 18px;
        max-width: 324px;
        font-size: 22px;
        line-height: 34px;
    }
}


/* cookies */
.cookie-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 32px;
    max-height: calc(100% - 64px);
    overflow: auto;
    scrollbar-color: var(--primary600) #FFF;
    scrollbar-width: thin;
}

.cookie-info::-webkit-scrollbar {
    width: 9px;
}

.cookie-info::-webkit-scrollbar-track {
    background: #FFF;
}

.cookie-info::-webkit-scrollbar-thumb {
    background-color: var(--primary600);
    border-radius: 6px;
    border: 2px solid var(--primary600);
}

.cookie-info__title {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 16px;
    color: #282828;
}

.cookie-info__content {
    margin: 0 0 24px;
    line-height: 24px;
    font-size: 14px;
}

.cookie-info__buttons {
    gap: 16px;
    display: flex;
}

.cookie-backdrop,
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
}

.cookie-settings__inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    width: 752px;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
    overflow: hidden;
}

.cookie-settings__scrollable {
    padding: 40px 32px 0;
    overflow: auto;
    height: 577px;
    max-height: calc(100vh - 32px - 175px);
    scrollbar-color: var(--primary600) #FFF;
    scrollbar-width: thin;
}

.cookie-settings__scrollable::-webkit-scrollbar {
    width: 9px;
}

.cookie-settings__scrollable::-webkit-scrollbar-track {
    background: #FFF;
}

.cookie-settings__scrollable::-webkit-scrollbar-thumb {
    background-color: var(--grayscale200);
    border-radius: 6px;
    border: 2px solid var(--grayscale200);
}

.cookie-settings__footer {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-top: 1px solid var(--grayscale200);
}

.cookie-settings__title {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 16px;
    color: #282828;
}

.cookie-settings__content {
    margin: 0 0 40px;
    font-size: 14px;
}

.cookie-settings__content p:not(:last-of-type) {
    margin: 0 0 16px;
}

.cookie-group {
    font-size: 14px;
    margin: 0 0 20px;
}

.cookie-group__header {
    display: flex;
    align-items: center;
}

.cookie-group__name {
    margin-right: auto;
    color: #282828;
    cursor: pointer;
}

.cookie-group__content {
    overflow: hidden;
    transition: max-height .2s;
}

.cookie-group__content p {
    padding: 16px 0 0;
}

.cookie-group__chevron {
    margin-left: 24px;
    padding: 4px 0 4px 8px;
    display: flex;
    align-items: center;
    transition: transform .2s;
    border: 0;
    background: none;
}

.cookie-group__chevron.active {
    transform: rotateX(180deg);
}

.cookie-group__checkbox {
    font-size: 0;
}

.cookie-checkbox {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
    opacity: 0;
}

.cookie-checkbox[name="necessary"]+label {
    cursor: not-allowed;
}

.cookie-checkbox__label {
    cursor: pointer;
    width: 36px;
    height: 20px;
    background: #E2E5E8;
    display: block;
    border-radius: 100px;
    position: relative;
    transition: background-color .2s;
    margin: 0;
}

.cookie-checkbox__label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: left .2s;
}

.cookie-checkbox:checked+.cookie-checkbox__label {
    background: var(--primary600);
}

.cookie-checkbox:checked+.cookie-checkbox__label::after {
    left: calc(100% - 18px);
}

.btn-cookie-primary {
    background: var(--primary600);
    border: 1px solid transparent;
    color: var(--black)
}

.btn-cookie-secondary {
    border: 1px solid var(--grayscale200);
    background: transparent;
    color: var(--black)
}

.btn-cookie-primary:hover {
    background-color: #0f0f0f;
    color: #fff;
}

.btn-cookie-secondary:hover {
    border-color: var(--primary600);
}

@media (max-width: 767px) {
    .cookie-info {
        padding: 24px;
    }

    .cookie-settings__footer .btn,
    .cookie-info__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .cookie-info__buttons {
        flex-direction: column;
    }

    .cookie-settings__footer {
        flex-direction: column-reverse;
        gap: 16px;
        padding: 16px;
    }

    .cookie-settings__inner {
        height: unset;
    }

    .cookie-info {
        max-height: calc(100% - 32px);
    }

    .cookie-settings__scrollable {
        padding: 24px 16px 0;
        max-height: calc(100vh - 32px - 260px);
    }

    .cookie-group__content p {
        font-size: 12px;
    }
}

.cookie-middle {
    display: none
}

@media (max-width: 500px) or (max-height: 500px) {
    .cookie-middle {
        display: block;
        margin-bottom: 16px;
    }

    .cookie-info__content {
        margin: 0;
    }

    .cookie-toggle {
        display: inline-block;
        padding: 9px 0;
        font-size: 13px;
        font-weight: 500;
        color: black;
    }

    .cookie-short {
        position: relative;
        max-height: 150px;
        overflow: hidden;
        padding-bottom: 12px;
    }

    .cookie-short.active {
        max-height: 320px;
        overflow-y: auto;
    }

    /* bottom gradient */
    .cookie-short:not(.active)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 80%);
    }
}

@media (max-width: 440px) {
    .cookie-info__buttons .btn,
    .cookie-settings__footer .btn {
        font-size: 15px;
        padding: 0 16px;
    }

    .menu--item__special,
    .sticky .menu--item__special {
        font-size: 14px;
        line-height: 23px;
        width: calc(100% - 150px);
    }
}

.contact-right {
    max-width: 600px;
    width: 100%;
    justify-content: flex-end;
    gap: 24px;
}

.contact__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    padding-top: 16px;
}

.contact__position {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 4px;
}

.contact__phone {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 1140px) {
    .contact-right {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .contact__person img {
        width: 192px;
    }
}

.tag-categories {
    gap: 16px;
}

.tag-categories-link {
    padding: 14px 32px;
    background: #F6F8FB;
    border-radius: 26px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #0F0F0F;

    transition: background .2s;
}

/* hover */
.tag-categories-link:hover {
    background: var(--primary600);
}

.tag-categories-link--current {
    background: var(--primary600);
}

.tags-title+.list {
    margin-bottom: 36px;
}

@media (min-width: 1921px) {
    .newpage .mb-content {
        max-width: 676px;
    }

    .newpage .mb-img {
        margin-left: 355px;
    }
}

.clutch-review-score {
    position: absolute;
    top: 11px;
    right: 39px;
    font-size: 13px;
    background: #fff;
    font-weight: 600;
}

.footer-badges{
    max-width: 245px;
}

@media (max-width: 575px) {
    .prefoot-right {
        display: flex;
        justify-content: center;
    }

    .footer-badges{
        max-width: 225px;
    }
}

@media (max-width:1199px) {
    .similar-pb32 {
        padding-bottom: 32px;
    }

    .similar-pb32:last-of-type {
        padding-bottom: 0;
    }
}

.sgOffline {
    max-width: 427px;
    width: 100%;
    margin: 54px auto 0;
}

.lang-off {
    pointer-events: none;
}

.lang-off .lpc-pickable {
    background: #ddd;
}

.blogCategorySelect {
    position: relative !important;
    right: unset !important;
    bottom: unset !important;
    margin-bottom: 48px;
}

.blogCategorySelectList {
    top: unset;
    bottom: unset;
    padding: 4px 0 0;
}

.blogCategorySelectListItems {
    max-height: 480px;
    overflow: auto;
}

.blogCategorySelectList a {
    font-size: 14px;
    line-height: 16px;
}

.blogCategorySelectListItems::-webkit-scrollbar {
    width: 4px;
}

.blogCategorySelectListItems::-webkit-scrollbar-track {
    background: #FFF;
}

.blogCategorySelectListItems::-webkit-scrollbar-thumb {
    background-color: var(--primary600);
    border-radius: 6px;
    border: 2px solid var(--primary600);
}

#blog-content.mod {
    padding-top: 0 !important;
}

@media(min-width:992px) {
    .blogCategorySelect {
        display: none;
    }
}