/*-------------------------------------- base.css --------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: var(--font-family-primary);
}

.content {
    min-height: 100%;
}

span {
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
    color: inherit;
}

/* VARIABLE DEFINITIONS */
html[data-theme="light"],
:root {
    --primary: #f8cd49;
    --secondary: #cbcdcd;
    --accent: #656667;
    --primary-fg: #1d1d1f;
    --accent-fg: #1d1d1f;

    --body-fg: #1d1d1f;
    --body-bg: #fbfbfd;
    --darkened-bg: #f5f5f7;

    --static-white: #fbfbfd;
    --static-black: #1d1d1f;
    --darkened-bg-static: #f5f5f7;

    --globalnav-backdrop-filter: saturate(180%) blur(20px);
    --globalnav-background: rgba(251, 251, 253, .7);

    --header-color: var(--body-fg);
    --header-border-color: var(--body-fg);
    --header-bg: var(--body-bg);
    --header-link-color: var(--body-fg);

    --breadcrumbs-fg: #c4dce8;
    --breadcrumbs-link-fg: var(--body-bg);
    --breadcrumbs-bg: var(--primary);

    --link-fg: #417893;
    --link-hover-color: #036;
    --link-selected-fg: #5b80b2;

    --border-color: var(--body-fg);

    --error-fg: #ba2121;

    --button-fg: #fff;
    --button-bg: var(--primary);
    --button-hover-bg: #609ab6;

    --swiper-theme-color: var(--primary) !important;

    --font-family-primary:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        system-ui,
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    --font-family-header:
        ui-monospace,
        Helvetica,
        Menlo,
        Monaco,
        "Cascadia Mono",
        "Segoe UI Mono",
        "Roboto Mono",
        "Oxygen Mono",
        "Ubuntu Monospace",
        "Source Code Pro",
        "Fira Mono",
        "Droid Sans Mono",
        monospace,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #f8cd49;
        --secondary: #020303;
        --accent: #b2b3b3;
        --primary-fg: #101010;
        --accent-fg: #101010;
    
        --body-fg: #f4f4f4;
        --body-bg: #101010;
        --darkened-bg: #1c1c1c;
    
        --header-color: var(--body-fg);
        --header-border-color: var(--body-fg);
        --header-bg: var(--body-bg);
        --header-link-color: var(--body-fg);
    
        --breadcrumbs-fg: #c4dce8;
        --breadcrumbs-link-fg: var(--body-bg);
        --breadcrumbs-bg: var(--primary);
    
        --link-fg: #417893;
        --link-hover-color: #036;
        --link-selected-fg: #5b80b2;
    
        --border-color: var(--body-fg);
    
        --error-fg: #e35f5f;
    
        --button-fg: #fff;
        --button-bg: var(--primary);
        --button-hover-bg: #609ab6;
    
        --swiper-theme-color: var(--primary);
        }
}


html[data-theme="dark"] {
    --primary: #f8cd49;
    --secondary: #020303;
    --accent: #b2b3b3;
    --primary-fg: #101010;
    --accent-fg: #101010;

    --body-fg: #f4f4f4;
    --body-bg: #101010;
    --darkened-bg: #1c1c1c;

    --header-color: var(--body-fg);
    --header-border-color: var(--body-fg);
    --header-bg: var(--body-bg);
    --header-link-color: var(--body-fg);

    --breadcrumbs-fg: #c4dce8;
    --breadcrumbs-link-fg: var(--body-bg);
    --breadcrumbs-bg: var(--primary);

    --link-fg: #417893;
    --link-hover-color: #036;
    --link-selected-fg: #5b80b2;

    --border-color: var(--body-fg);

    --error-fg: #e35f5f;

    --button-fg: #fff;
    --button-bg: var(--primary);
    --button-hover-bg: #609ab6;

    --swiper-theme-color: var(--primary);
}

.for-light, 
.for-dark{
    display: none;
}

html[data-theme="light"] .for-light,
:root .for-light{
    display: block;
}
html[data-theme="dark"] .for-dark,
:root .for-dark{
    display: none;
}

@media (prefers-color-scheme: dark) {
    html[data-theme="auto"] .for-dark {
        display: block;
    }
    html[data-theme="auto"] .for-light {
        display: none;
    }
}

html[data-theme="dark"] .for-dark {
    display: block;
}

html[data-theme="dark"] .for-light {
    display: none;
}

html{
    background-color: var(--body-bg);
}

#skip-to-content-link a {
    display: block;
    position: absolute;
    top: -999px;
    left: -999px;
}
#skip-to-content-link a:focus {
    left: 0;
    top: 0;
    padding: 3px;
    background: var(--body-bg);
    color: var(--body-fg);
    border: 1px solid var(--border-color);
}

.noselect,
.material-symbols-outlined {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
.onepixel{
    max-width: 1px;
    max-height: 1px;
    overflow: hidden;
    opacity: 0;
}

#captcha-container.error{
    border: 1px solid red;
}

.base-svgs {
    display: none;
}

span, p, div, strong, button{
    font-family: var(--font-family-primary);
    color: var(--body-fg);
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--font-family-header);
    color: var(--body-fg);
}

span {
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
}
h1 {
    font-size: 30px;
    font-size: clamp(26px, 15.4366197183px + 1.6126760563vw, 32px);
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 40px;
}

h1.big-h1{
    font-size: clamp(1.875rem,6.7vw - 1rem,3.125rem);
    line-height: 115.2%;    
    font-weight: 500;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    font-size: clamp(20px, 12.8450704225px + 1.09859155vw, 30px);
    line-height: 130%;
    font-weight: 500;
}

h3 {
    font-size: 18px;
    font-size: clamp(18px, 12.8450704225px + 0.900vw, 28px);
    line-height: 120%;
    font-weight: 500;
}

h4 {
    font-size: 16px;
    font-size: clamp(16px, 15.8873239437px + 0.4225352113vw, 20px);
    line-height: 120%;
    font-weight: 500;
}

p {
    font-size: 18px;
    font-size: clamp(18px, 15.8873239437px + 0.4225352113vw, 24px);
    line-height: 150%;
}

p.small-p {
    font-size: 14px;
    font-size: clamp(14px, 15.8873239437px + 0.1225352113vw, 23px);
    line-height: 130%;
    font-weight: 300;
}
p.small-p strong{
    font-weight: 600;
}

p.big-p {
    font-size: 26px;
    font-size: calc(26px + 18 * ((100vw - 480px) / 1440));    
    font-weight: 400;
}

.small-span {
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.normal-span {
    font-size: 18px;
    font-size: clamp(18px, 15.8873239437px + 0.4225352113vw, 24px);
    line-height: 150%;
}

.big-span {
    font-size: 22px;
    font-size: clamp(22px, 12.8450704225px + 1.8309859155vw, 48px);
    line-height: 130%;
    font-weight: 400;
    margin-bottom: 40px;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
}

*::selection {
    background: var(--accent);
    color: var(--accent-fg);
    text-shadow: none;
}

.content {
    background-color: var(--body-bg);
    color: var(--body-fg);
}

#cookie-alert{
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 70%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    padding: 15px;
    background: var(--darkened-bg);
    border-radius: 20px;
    color: var(--body-fg);
    gap: 10px;
    z-index: 9999;
}

#cookie-alert p{
    min-width: 244px;
    max-width: 457px;
}

#cookie-accept{
    padding: 10px 20px 10px 20px;
    border: none;
    background-color: var(--accent);
    color: var(--secondary);
    height: fit-content;
    cursor: pointer;
    font-size: 15px;
}

#cookie-alert.show{
    display: flex;
}

@media screen and (max-width: 970px) {
    #cookie-alert{
        flex-direction: column;
        justify-content: flex-start;
        max-width: 95%;
        width: auto;
    }
    
    #cookie-alert p{
        flex: 1;
    }
}

.screen-container {
    position: relative;
    width: 100%;
    height: auto;
}

.fullscreen {
    height: 100vh;
    overflow: hidden;
}

.first-cont {
    padding-top: 80px;
}

.screen-fixed {
    max-width: 1200px;
    margin: 0 auto;
}

.block-darkened{
    background: var(--darkened-bg);
}

@media screen and (max-width: 1240px) {
    .screen-fixed{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 970px) {
    .first-cont {
        padding-top: 50px;
    }
}

.secondary-button,
.primary-button,
.blank-button {
    width: fit-content;
    padding: 0.8em 2em;
    transition: all ease 0.1s;
    display: inline-block;
    font-size: 18px;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--body-fg);
}

.primary-button {
    background-color: var(--body-fg);
    color: var(--body-bg);
}

.primary-button:hover {
    background-color: var(--body-bg);
    color: var(--body-fg);
}

.secondary-button {
    background-color: var(--body-bg);
    color: var(--body-fg);
}

.secondary-button:hover {
    background-color: var(--body-fg);
    color: var(--body-bg);
}

.blank-button {
    background-color: transparent;
    color: inherit;
    border-color: transparent;
}

.blank-button:hover {
    border-color: var(--border-color);
}

.small-button {
    padding: 0.5em 1.5em;
    background-color: var(--darkened-bg);
    color: var(--body-fg);
    border-radius: 6px;
    transition: transform ease 0.2s, box-shadow ease 0.2s;
    display: inline-block;
    font-size: 18px;
    z-index: 2;
    text-decoration: none;
}

.small-button:hover {
    transform: translate(0, -3px);
    box-shadow: 0 20px 80px -10px var(--darkened-bg);
}

#breadcrumbs{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
#change-object{
    padding: 5px 10px 5px 10px;
    height: 100%;
    text-align: center;
    align-self: center;
    color: var(--accent-fg);
    background: var(--accent);
    text-decoration: none;
    border-radius: 10px;
    white-space: nowrap;
}

.breadcrumb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    padding: 10px 0 10px 0;
}

.breadcrumb-dash {
    display: block;
    width: auto;
    height: auto;
}

.breadcrumb-item {
    color: var(--body-fg);
}

.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 10px;
}

.breadcrumb-item a:hover {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-category{
    position: relative;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    padding: 10px;
}

.breadcrumb-category-menu {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    background: var(--darkened-bg);
    z-index: 3;
    white-space: nowrap;
    pointer-events: none;
}

.breadcrumb-item-link{
    padding: 10px;
}

.breadcrumb-category:hover .breadcrumb-category-menu,
.breadcrumb-category-menu:hover{
    opacity: 1;
    pointer-events: all;
}
.breadcrumb-category:hover{
    background: var(--darkened-bg);
}

/*-------------------------------------- Header --------------------------------*/

header {
    z-index: 5;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: var(--header-link-color);
    transition: height 0.3s ease;
}

.header-small {
    height: 60px;
    transition: height 0.3s ease;
}

nav {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-logo-cont{
    position: relative;
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.nav-logo{
    opacity: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    width: fit-content;
    min-width: 315px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    pointer-events: all;
    background: var(--header-bg);
}

.header-small .nav-logo{
    background: var(--globalnav-background);
    backdrop-filter: var(--globalnav-backdrop-filter);
    -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
}

.nav-logo-extention{
    height: 100%;
    width: 100%;
    background: var(--header-bg);
    transition: width 0.3s ease, height 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-small .nav-logo-extention{
    height: 0;
    transition: width 0.3s ease, height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo object,
.nav-logo-mini object {
    width: auto;
    height: 34px;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo object img {
    height: 34px;
    width: auto;
}

.nav-links {
    position: relative;
    flex: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: inherit;
}

.nav-link {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0 20px 0 20px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), margin 0.2s ease 0s;
    color: var(--header-color);
    font-size: 20px;
    opacity: 1;
    background-color: var(--header-bg);
}
.nav-link::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    transform: translateY(-100%);
    background: var(--primary);
}
.nav-link::after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    transition: all 0.1s ease;
}

.nav-link.active::after{
    height: 3px;
}
.nav-link.active:hover::after{
    height: 0;
}

.header-small .nav-link{
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(2) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.03s, margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(3) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.06s, margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(4) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.09s, margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(5) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(6) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, margin 0.2s ease 0s;
}
.header-small .nav-link:nth-of-type(7) {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s, margin 0.2s ease 0s;
}

.nav-link:nth-of-type(2) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.03s, margin 0.2s ease 0s;
}
.nav-link:nth-of-type(3) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.06s, margin 0.2s ease 0s;
}
.nav-link:nth-of-type(4) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.09s, margin 0.2s ease 0s;
}
.nav-link:nth-of-type(5) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s, margin 0.2s ease 0s;
}
.nav-link:nth-of-type(6) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s, margin 0.2s ease 0s;
}
.nav-link:nth-of-type(7) {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s, margin 0.2s ease 0s;
}

.nav-link:hover{
    margin-top: 20px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.03s, margin 0.1s ease 0s;
}


.nav-buttons .nav-logo-extention{
    transition: width 0.3s ease, height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s;
}

.header-small .nav-buttons .nav-logo-extention{
    transition: width 0.3s ease, height 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.nav-buttons{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    flex-grow: 1;
}

.nav-buttons-cont{
    padding-left: 10px;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    position: relative;
    background: var(--header-bg);
    transition: all 0.3s ease;
}

.header-small .nav-buttons-cont{
    background: var(--globalnav-background);
    backdrop-filter: var(--globalnav-backdrop-filter);
    -webkit-backdrop-filter: var(--globalnav-backdrop-filter);
}

.nav-phone-cont{
    height: 50px;
    width: fit-content;
}

.nav-phone-block{
    height: 50px;
    width: fit-content;
    overflow-y: hidden;
    transition: height 0.2s ease;
}

.nav-phone-block:hover{
    height: 105px;
}

.nav-order-call{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    margin-top: 5px;
    width: 100%;
    height: 50px;
    background-color: var(--header-bg);
    cursor: pointer;
    opacity: 0;
    font-size: 18px;
    color: var(--header-color);
    transition: opacity 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

.nav-order-call:hover{
    background-color: var(--primary);
    color: var(--primary-fg);
}

.nav-phone-block:hover .nav-order-call{
    opacity: 1;
}

.nav-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--header-color);
    position: relative;
    cursor: pointer;
    height: 50px;
    width: fit-content;
    transition: all 0.3s ease;
    font-size: 18px;
    white-space: nowrap;
}

.nav-phone .nav-phone-icon{
    padding-right: 5px;
}

.theme-toggle {
    cursor: pointer;
    border: none;
    padding: 0;
    background: transparent;
    vertical-align: middle;
    padding: 10px;
    height: 50px;
    transition: all 0.3s ease;
}

.theme-toggle svg {
    vertical-align: middle;
    height: 24px;
    width: 24px;
    display: none;
}

html[data-theme="auto"] .theme-toggle svg.theme-icon-when-auto {
    display: block;
}

html[data-theme="dark"] .theme-toggle svg.theme-icon-when-dark {
    display: block;
}

html[data-theme="light"] .theme-toggle svg.theme-icon-when-light {
    display: block;
}

.theme-toggle svg.theme-icon-when-auto,
.theme-toggle svg.theme-icon-when-dark,
.theme-toggle svg.theme-icon-when-light {
    fill: var(--body-fg);
    color: transparent;
}

.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: none;
    background: transparent;
    vertical-align: middle;
    position: relative;
    padding: 10px;
    height: 50px;
    transition: opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.header-small .menu-toggle{
    pointer-events: all;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.menu-toggle span {
    vertical-align: middle;
    height: 24px;
    width: 24px;
    line-height: 24px;
    color: var(--body-fg);
}


.menu-button {
    z-index: 4;
    position: fixed;
    top: 50px;
    right: 50px;
    transform: translate(0, -50%);
    width: 90px;
    height: 35px;
    border: 1px solid gray;
    border-radius: 35px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-button span,
.menu-button span {
    font-family: var(--font-family-primary);
    color: var(--header-link-color);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.header-small .for-light{
    display: block !important;
}
.header-small .for-dark{
    display: none !important;
}
.header-small .material-symbols-outlined{
    color: #1d1d1f;
}
.header-small .theme-toggle svg{
    fill: #1d1d1f !important;
}
.header-small .nav-phone-number{
    color: #1d1d1f;
}

@media screen and (max-width: 1340px) {
    .nav-phone-cont{
        display: none;
    }
    .nav-logo{
        min-width: unset;
    }
    .nav-link{
        padding: 0 15px;
    }
}

@media screen and (max-width: 970px) {
    .nav-logo-extention{
        display: none;
    }
    .nav-logo{
        flex: 1;
        justify-content: flex-start;
    }
    .nav-logo-cont{
        z-index: 2;
    }
    .nav-buttons{
        flex-grow: 0;
    }
    .menu-toggle{
        opacity: 1;
        pointer-events: all;
    }
    .nav-buttons-cont{
        flex-direction: row-reverse;
        gap: 0;
    }

    .nav-link::after{
        display: none;
    }
    .nav-link{
        flex: 0;
        min-width: 50%;
        padding: 10px 20px;
        width: 100%;
    }
    .nav-link:hover{
        margin-top: unset;
        margin-left: 20px;
    }
    .nav-link::before{
        height: 100%;
        width: 40px;
        transform: translateX(-100%);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    .header-small .nav-links{
        opacity: 0;
        pointer-events: none;
    }
    .header-small .nav-link{
        transform: translateX(-100%);
    }
}

.header-opened .nav-links{
    transition: opacity 0.3s ease;
    pointer-events: all;
    opacity: 1;
}

/*-------------------------------------- footer --------------------------------*/

footer {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--static-black);
    color: var(--static-white);
    padding: 20px;
    border-top: 1px solid var(--static-white);
}
footer * {
    color: inherit;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    column-gap: 4em;
    row-gap: 2em;
}

.links-blocks-cont{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    column-gap: 4em;
    row-gap: 2em;
}

.footer-logo-part{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    padding-bottom: 10px;
    position: relative;
    display: block;
    cursor: pointer;
    height: 50px;
    width: auto;
}

.footer-logo object {
    width: auto;
    height: 100%;
    pointer-events: none;
}

.links-block {
    position: relative;
}

.links-block:hover .footer-link {
    opacity: 0.5;
}

.links-block h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
}

.links-block-line {
    background-color: var(--darkened-bg-static);
    margin: 15px 0;
    height: 1px;
    width: 100%;
}

@media screen and (max-width: 970px) {
    .footer-logo{
        width: 100%;
    }
    .footer-logo-part{
        align-items: flex-start;
        text-align: left;
    }
}

.footer-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0 0 16px 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-link::before{
    content: 'arrow_right_alt';
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    text-transform: none !important;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}

.footer-link-title::before {
    content: none;
}

.footer-link .material-symbols-outlined{
    font-size: 20px;
    line-height: 16px;
}

.footer-link:hover{
    opacity: 1 !important;
}

.footer-link:hover span{
    text-decoration: underline;
}
.footer-link:hover .material-symbols-outlined{
    text-decoration: none;
}

.footer-email{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0 0 16px 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    opacity: 1;
}

.footer-address{
    font-size: 14px;
    line-height: 16px;
    padding: 0 0 16px 0;
}

.footer-tel {
    padding: 0 0 16px 0;
    font-weight: 600;
    line-height: 16px;
}

.footer-tel a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.footer-tel a:hover,
.footer-email a:hover{
    color: var(--primary);
    transition: all 0.2s ease;
}

.footer-messagers{
    display: flex;
    flex-direction: row;
    gap: 0;
}

.footer-messagers a{
    display: block;
    padding: 8px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    transition: all ease 0.2s;
}

.footer-messagers a img {
    max-width: 100%;
    max-height: 100%;
}

.footer-messagers a:hover{
    transform: scale(1.1);
    transition: all ease 0.2s;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2));
}

.footer-addition {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--darkened-bg-static);
    align-items: center;
}
.footer-addition p,
.footer-addition a{
    display: block;
    color: inherit;
    opacity: 0.5;
    font-size: 15px;
    line-height: 15px;
    width: fit-content;
}
.footer-addition a:hover{
    color: var(--primary);
    opacity: 1;
}
.company-copyright a{
    opacity: 1;
    display: inline;
}



.swiper {
    margin: 50px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.swiper .article-slide {
    max-width: 400px;
    height: auto;
    max-height: 270px;
    padding: 10px;
    background: var(--body-bg);
    border-radius: 0;
    text-decoration: none;
    color: var(--body-fg);
    display: flex !important;
    flex-direction: column;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    overflow: hidden;
}

.swiper .article-slide:hover {
    border: 1px solid var(--primary);
    transition: all 0.2s ease;
}

.swiper .article-slide-image {
    width: 100%;
    height: auto;
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    margin-bottom: 10px;
}

.swiper .article-slide-image img {
    width: 100%;
    height: auto;
}

.swiper .article-slide-title {
    display: block;
    flex-shrink: 0;
    text-align: left;
}

.swiper .artical-info{
    flex-shrink: 0;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 0;
}

.swiper .artical-info .info-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.swiper .artical-info .info-item .material-symbols-outlined{
    font-size: 20px;
}

.swiper .article-slide p {
    width: 100%;
    flex: 1;
    overflow: hidden;
    text-align: left;
    position: relative;
    border-radius: 0 0 5px 5px;
}
.swiper .article-slide p::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--darkened-bg) 0%, rgba(255,255,255,0) 100%);
}

.swiper .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.swiper .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}