/* 1. BUTTONS & ICONS */
/* 2. SECTIONS */
/* 3. NAVIGATION */
/* 4. SLIDER */
/* 5. MENU */
/* 6. PAGES */
/* 7. FOOTER */
/* 8. ACCORDION */
/* 9. CUSTOM STYLES */
/* 10. MEDIA QUERIES */

@import url('https://fonts.googleapis.com/css2?family=Glegoo:wght@400;700&display=swap');

:root {
    /* --main-color: #00aeef; */
    --main-color: #10B7D5;
    --main-bg-color: #384e59;

    font-size: 16px;
}

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

html {
    scroll-behavior: smooth !important;
}

body {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--main-bg-color);
    font-family: 'Glegoo', serif !important;
}

/* 1. BUTTONS & ICONS */
/* Main button */
.main-button {
    position: relative;
    min-height: 50px;
    min-width: 180px;
    width: fit-content;
    margin: auto;
}

.main-button button,
.main-button a {
    background-color: transparent;
    display: block;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 20;
    position: relative;
    margin: auto;
    text-align: center;
    border: none;
}

.main-button-dark a { color: #000; }

.main-button .border-line {
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}

.main-button-dark .border-line { background-color: #333; }

.main-button .border-hover {
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--main-color);
    transition: all 300ms 200ms ease-in-out;
}

.main-button-dark .border-hover {
    background-color: #000;
}

.main-button .border-hover.border-hover-top {
    left: 0;
    top: 0;
}

.main-button .border-hover.border-hover-bottom {
    right: 0;
    bottom: 0;
}

.main-button .hover-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.hover-content .hover-bg {
    position: absolute;
    right: 0px;
    width: 0%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 15;
    transition: all 300ms ease-in-out;
}

.main-button-dark .hover-content .hover-bg {
    background-color: #000;
}

.main-button:hover button,
.main-button:hover a {
    color: #000 !important;
    transition: all 200ms 300ms ease-in-out;
}

.main-button-dark.main-button:hover a {
    color: #fff !important;
}

.main-button:hover .border-hover {
    width: 100%;
    transition: all 200ms ease-in-out;
}

.main-button:hover .hover-bg {
    width: 100%;
    transition: all 200ms 300ms ease-in-out;
}

/* Secondary button */
.secondary-button a,
.secondary-button button {
    background-color: transparent;
    display: block;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    padding: 12.5px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    z-index: 20;
    margin: auto;
    text-align: center;
    border: 1px solid var(--main-color);
}

.to_top {
    position: fixed;
    bottom: 20px;
    right: 32px;
    z-index: 500;
}

.to_top a {
    font-size: 0.75rem !important;
    padding: 15px 20px !important;
}

.to_top a,
.contact_button.secondary-button a {
    position: relative;
    background: #000000A3;
}

.to_top a::after,
.contact_button.secondary-button a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    z-index: -1;
    background-color: var(--main-color);
    transition: all 200ms ease-in-out;
}

.to_top a:hover::after,
.contact_button.secondary-button a:hover::after {
    width: 100%;
    z-index: -1;
    transition: all 200ms ease-in-out;
}

.custom-link {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--main-color);
    text-decoration: none;
    padding-bottom: 8px;
}

.custom-link:has(.custom-icon) span {
    padding-right: 5px;
}

.custom-link::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: rgba(16, 183, 213, 0.24);
}

.custom-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 1px;
    background: var(--main-color);
    transition: all 300ms ease-in-out;
}

.custom-link:hover::after {
    width: 100%;
    transition: all 300ms ease-in-out;
}

.custom-link:hover .custom-icon.icon-right-arrow-primary {
    background-image: url('../icons/right-arrow-primary-big.svg');
    width: 21px;
    margin-left: 3px;
    transition: all 300ms ease-in-out;
}

.mobile-contact-button-wrap .mobile-contact-button {
    padding: 8px 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-contact-button-wrap .mobile-contact-button:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-contact-button-wrap .mobile-contact-button a {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
    transition: all 300ms ease-in-out;
}

.custom-icon.icon-right-arrow-primary {
    width: 15px;
    height: 10px;
    background-image: url('../icons/right-arrow-primary.svg');
}

.custom-icon.icon-right-arrow-primary-big {
    background-image: url('../icons/right-arrow-primary-big.svg');
}

.custom-icon.icon-mail-primary {
    width: 22px;
    height: 18px;
    background-image: url('../icons/mail-primary.svg');
}

.custom-icon.icon-wrench-primary {
    width: 22px;
    height: 22px;
    background-image: url('../icons/wrench-primary.svg');
}

.eu_logo-container {
    position: fixed;
    bottom: 20px;
    left: 32px;
    z-index: 850;
}

.eu_logo-container img {
    display: block;
}

.eu_logo-container .eu_logo-eu {
    width: 160px;
    height: 42px;
    margin-bottom: 24px;
}

.eu_logo-container .eu_logo-ifs {
    width: 96px;
    height: 48px;
}
/* END BUTTONS & ICONS */

/* 2. SECTIONS */
.section {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.999;
    pointer-events: all;
}

.video-container {
    height: 100%;
    width: 100%;
    position: relative;
    /* transform-style: preserve-3d; */
    filter: brightness(0.7);
    background-color: #000;
    box-shadow: 0px 0px 80px 10px #000;
}

.section video {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    transform-style: preserve-3d;
    opacity: 0.6;
}

.text-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    max-width: 85%;
    width: 600px;
    opacity: 0;
}

.text-container .text-title {
    line-height: 56px;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-container .text-subtitle {
    color: #fff;
    font-size: 1.5rem;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 4.5625rem;
}

.text-container .button-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* END SECTIONS */

/* 3. NAVIGATION */
.navigation-wrapper {
    position: fixed;
    top: 0;
    z-index: 600;
    width: 100%;
    padding: 24px 0px;
    pointer-events: none;
}

.navigation-bg {
    background-color: #fff;
}

.navigation-contaienr {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 72px;
}

.navigation-links {
    display: flex;
    flex-direction: column;
}

.navigation-links a {
    color: #fff;
    text-decoration: none;
}

.navigation-hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden !important;
    margin-left: 16px;
}

.navigation-hamburger,
.mobile-contact-button a {
    pointer-events: all;
}

.hamburger-line {
    background-color: var(--main-color);
    height: 2px;
    width: 36px;
    transform-origin: center;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 6px;
}

.logo {
    position: fixed;
    z-index: 300;
    top: 24px;
    left: 32px;
    max-width: 100%;
    height: 72px;
    isolation: isolate;
    color: #fff;
    mix-blend-mode: difference;
}

.logo_2 {
    position: fixed;
    z-index: 300;
    top: 24px;
    left: 32px;
    max-width: 100%;
    height: 72px;
}

.logo-link {
    position: fixed;
    z-index: 10000;
    top: 24px;
    left: 32px;
    width: 160px;
    max-width: 100%;
    height: 72px;
}
/* END NAVIGATION */

/* 4. SLIDER */
.slider__pagination {
    position: fixed;
    left: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 300;
    padding-left: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.slider__pagination-progress {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 2px;
    background-color: rgba(255,255,255,.3);
    overflow: hidden;
}

.slider__pagination-progress-line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background-color: var(--main-color);
}

.slider__pagination-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 0px;
    padding-left: 0px;
}

.slider__pagination-list ul li {
    color: rgba(255,255,255,.5);
    padding: 5px 0;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: color .25s cubic-bezier(.25,.46,.45,.94);
    transition: color .25s cubic-bezier(.25,.46,.45,.94);
}

.slider__pagination-list ul li:hover {
    color: #fff;
}

.slider__pagination-list ul li.active {
    color: #fff;
}

.slider__pagination-current span:first-child {
    margin-right: 10px;
}

.slider__pagination-current span {
    text-transform: uppercase;
    display: inline-block;
    line-height: 15px;
    letter-spacing: 1.6px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-variation-settings: "wght" 400,"slnt" 0;
}
/* END SLIDER */

/* 5. MENU */
.menu-container {
    z-index: 500;
    background-color: var(--main-bg-color);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.menu-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.menu-list {
    list-style: none;
    opacity: 0;
    max-height: 100%;
}

.menu-container > .menu-list > .menu-item:first-child {
    margin-top: 50px;
}

.menu-container > .menu-list > .menu-item:last-child {
    padding-bottom: 120px;
}

.menu-list .menu-item {
    position: relative;
}

.menu-list .menu-item span {
    font-size: 0.8125rem;
    line-height: 15px;
    letter-spacing: 1.6px;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    padding-top: 1.5em;
    opacity: .4;
    padding-right: 10px;
    /* transition: all .25s cubic-bezier(.25,.46,.45,.94); */
}

.menu-list .menu-item a {
    display: block;
    font-size: 2.1875rem;
    font-weight: 400;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
}
/* END MENU */

/* 6. PAGES */
.image-overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0, 0.5);
}

.page-body {
    background-color: #fff !important;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0px !important;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-section {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.page-title-container {
    padding: 100px 200px;
}

.page-main-title {
    position: relative;
    font-size: calc(1vw + 2.3125rem);
    font-weight: 600;
    font-style: normal;
    padding-left: 20px;
}

.page-main-title-blue {
    position: relative;
    font-size: 3.5rem !important;
    font-weight: 600;
    font-style: normal;
    color: rgb(0, 174, 239);
}

.page-main-title-white {
    position: relative;
    font-size: 3.5rem !important;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    margin-bottom: 24px;
}

.page-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    border-left: 2px solid rgb(182, 184, 186);
}

.page-main-subtitle {
    font-size: 40px !important;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 30px;
}

.page-big-title {
    font-size: calc(0.8vw + 4.375rem) !important;
}

.page-medium-title {
    font-size: calc(0.8vw + 2rem) !important;
}

.page-big-text {
    font-size: calc(0.8vw + 1.3125rem) !important;
    font-weight: 300 !important;
}

.page-medium-text {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
}

.page-title {
    font-size: calc(0.8vw + 0.9375rem) !important;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 50px;
}

.page-subtitle, .content_bigger h3 {
    font-size: calc(.8vw + 0.875rem);
    font-weight: 300;
    font-style: normal;
}

.page-wrapper p {
    font-size: calc(0.2vw + 1.125rem);
    font-style: normal;
    margin-bottom: 0px;
    position: relative;
}

.page-image-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.page-section-margin {
    margin-bottom: 150px;
}

.page-image-container img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    max-height: 100vh;
}

.page-video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
}

.page-video-title {
    font-size: calc(.83333vw + 1.875rem);
    font-weight: 300;
    font-style: normal;
    margin-bottom: 50px;
}

.page-video-text {
    font-size: calc(.83333vw + 0.625rem);
    font-weight: 300;
    font-style: normal;
}

/* page slider */
.page-slider__pagination {
    position: fixed;
    left: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 200;
    padding-left: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff !important;
}

.page-slider__pagination-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 0px;
    padding-left: 0px;
    list-style: none;
}

.page-slider__pagination-list ul:hover li {
    opacity: 0.5;
}

.page-slider__pagination-list ul li {
    color: inherit;
    cursor: pointer;
    -webkit-transition: color .25s cubic-bezier(.25,.46,.45,.94);
    transition: color .25s cubic-bezier(.25,.46,.45,.94);
    position: relative;
}

.page-slider__pagination-list ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    transform: scale(0);
    height: 100%;
    width: 2px;
    background-color: #fff;
}

.page-slider__pagination-list ul li:hover {
    opacity: 1 !important;
}

.page-slider__pagination-list ul li a {
    transition: all 0.2s ease;
}

.page-slider__pagination-list ul li:hover a{
    font-size: 0.8125rem !important;
}

.page-slider__pagination-list ul li.active {
    opacity: 1 !important;
}

.page-slider__pagination-list ul li.active::before {
    transform: scale(1);
    transition: all 300ms ease-in-out;
}

.page-slider__pagination-list ul li:hover::before {
    transform: scale(1);
    transition: all 300ms ease-in-out;
}

.page-slider__pagination-current a {
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 0.625rem;
    text-decoration: none;
    color: inherit;
}

.portfolio .nav li button {
    font-size: 1.25rem;
}

.manufacturer-logo-wrapper,
.portfolio-image-wrapper {
    height: 100vh;
    display: flex;
}

.portfolio-image-wrapper img {
    object-fit: cover;
}

.manufacturer-logo-wrapper img {
    object-fit: contain;
}

/* END PAGES */

/* 7. FOOTER */
footer {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.footer-top {
    padding-top: 96px;
    padding-bottom: 88px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 55px;
    padding-bottom: 64px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.logo-footer  {
    width: 160px;
    max-width: 100%;
    margin-bottom: 32px;
}

footer .logos-container {
    display: flex;
    flex-wrap: wrap;
}

footer .logo-footer-secondary {
    max-width: 50%;
}

footer .logo-footer-secondary:not(:last-child) {
    margin-right: 24px;
}

footer h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 27px;
}

footer ul {
    list-style: none;
    padding-left: 0px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main-color);
}

/* .footer-link:hover {
    color: var(--main-color);
} */

.footer-border-line {
    border-top: 1px solid #FFFFFF14;
}
/* END FOOTER */

/* 8. ACCORDION */
.page-wrapper .accordion {
    position: relative;
    z-index: 200;
    border-radius: var(--bs-accordion-border-radius) !important;
    border: none !important;
}

.page-wrapper .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.page-wrapper .accordion-button:focus {
    box-shadow: none;
}

.page-wrapper .accordion .accordion-item {
    border: none !important;
    color: #fff;
    background-color: transparent;
}

.page-wrapper .accordion p {
    font-size: 1rem;
    line-height: normal;
    letter-spacing: normal;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-wrapper .accordion .accordion-item .accordion-header button {
    font-weight: bold;
}

.x-accordion {
    display: flex;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    min-height: 500px;
    height: 70vh;
    position: relative;
    z-index: 705;
}

.x-accordion-panel {
    flex: initial;
    min-width: 40px;
    position: relative;
    width: 5%;
    will-change: width;
    transition: all 400ms ease;
    overflow: hidden;
    background-color: #212529;
}

.x-accordion-panel.is-active {
    transition: all 400ms ease;
    width: 100%;
    max-width: 100%;
}

.is-active .x-schedule-trigger {
    display: none;
}

.x-schedule-trigger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none;
    /* color: var(--main-color); */
    color: #fff;
    z-index: 1;
    font-weight: bold;
    background-color: #000;
    width: 100%;
}

.x-schedule-trigger span {
    display: block;
    transform: translateY(50%) rotate(-90deg);
    white-space: nowrap;
}

.x-content-group {
    will-change: opacity, transform;
    opacity: 1;
    transform: translateX(0);
}
/* END ACCORDION */

/* 9. CUSTOM STYLES */
.container-fluid {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.horizontal_scroll_wrapper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.horizontal_scroll_container {
    height: 100vh;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
}

.horizontal_scroll_container .panel {
    width: 100vw;
    position: relative;
    z-index: 55;
}

.vertical_scroll_container {
    height: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.vertical_scroll_container .panel {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 55;
    max-width: 100%;
}

.animate-text strong {
    font-weight: bold !important;
}

.background-for-scroll-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    z-index: 40;
    background-color: #000;
    filter: brightness(1);
}

.hero-1 {
    background-size: cover;
    position: relative;
    z-index: 200;
}

.hero-small {
    padding-top: 150px;
    padding-bottom: 150px;
    background: rgba(16, 53, 75, 0.5);
    color: white;
}

.boxes {
    min-height: 50vh;
}

.scroll-indicator,
.horizontal-scroll-indicator {
    position: absolute;
    z-index: 200;
    bottom: 20px;
    background-color: var(--main-color);
}

.scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    z-index: 300;
}

.horizontal-scroll-indicator {
    left: 85%;
    height: 3px;
    width: 60px;
}

.custom-drag-cursor {
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid #fff;
    opacity: .8;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.custom-drag-cursor::after {
    content: "Povleci";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    mix-blend-mode: difference;
}

.contact_button {
    z-index: 500;
}

.image-object {
    position: absolute;
    height: 15px;
    background-color: #fff;
    z-index: 20;
    max-width: 100%;
}

.image-object.object-top {
    width: 75%;
    right: 0;
    top: 0;
}

.image-object.object-bottom {
    width: 35%;
    left: 0;
    bottom: 0;
}

.image-object.object-top::before {
    content: "";
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    display: block;
    height: 0px;
    width: 0px;
    position: absolute;
    left: -15px;
}

.image-object.object-bottom::after {
    content: "";
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid transparent;
    display: block;
    height: 0px;
    width: 0px;
    position: absolute;
    right: -15px;
    bottom: 0;
}

.other-systems-title {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.cms_content {
    font-size: 18px !important;
    font-weight: 400;
    line-height: 36px;
}

.content_bigger p {
    margin-bottom: 3rem;
}

.bottom_logo {
    margin-bottom: 3px;
    width: 75px;
}

.font-size-10 {
    font-size: 0.75rem;
}

.menu-items-sub {
    justify-content: space-evenly;
}

.custom_blue_button {
    background-color: var(--main-color);
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 15px;
    letter-spacing: 1.6px;
    cursor: pointer;
    margin: auto;
    text-align: center;
}

.list_securityadvice #search-box {
    position: relative;
}

.page-medium-margin {
    margin-bottom: 73px;
}

.breadcrumb-container {
    margin-bottom: 56px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.breadcrumb-list li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-list li a {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    opacity: 0.48;
}

.breadcrumb-list li i {
    background-image: url('/media/icons/breadcrumb-arrow.svg');
    width: 12px;
    height: 12px;
    margin-left: 10px;
    margin-right: 10px;
}

.image-cover {
    width: 100%;
    object-fit: cover;
    max-height: 100vh;
}

.main-container {
    width: 100%;
    height: 100vh;
    perspective: 1000px;
    position: relative;
    z-index: 200;
}

.background_blur_top,
#background_video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.background_blur_top {
    background-color: #101214;
}

.blurred-top {
    position: absolute;
    max-width: 100%;
    width: 62.5vw;
    height: 62.5vw;
    left: calc(50% - 62.5vw/2 - 10.4vw);
    top: -48.75vw;
    background: #10B7D5;
    filter: blur(14.6vw);
}

.blurred-helper-left {
    position: absolute;
    max-width: 100%;
    width: 37.5vw;
    height: 37.5vw;
    left: -10.83vw;
    top: 5vw;
    background: #101214;
    filter: blur(12.5vw);
}

.blurred-helper-right {
    position: absolute;
    max-width: 100%;
    width: 45vw;
    height: 33.33vw;
    left: 41vw;
    top: 3vw;
    background: #101214;
    filter: blur(12.5vw);
}

#chessboard_video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 100;
}

#cube {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.bg-dark {
    background-color: rgb(33,37,41);
    color: #fff;
}

.bg-white {
    background-color: #fff;
    color: #000 !important;
}

.nav-link {
    opacity: 0.5;
    color: #fff !important;
}

.nav-link.active {
    opacity: 1;
}

.competence-image {
    cursor: pointer;
}

img {
    max-width: 100%;
}

.modal-content {
    background-color: #384e59ea !important;
}

.modal-header {
    border-bottom: none !important;
}

.modal-backdrop.show {
    position: relative;
}

.modal-body {
    display: flex;
    align-items: center;
}

.modal-video {
    max-height: 90vh;
    width: 100%;
    aspect-ratio: 16/9;
}

.modal-header .btn-close {
    filter: invert(100%) sepia(91%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

.blend-mode {
    mix-blend-mode: difference;
}

.loading-screen {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.loading-scree-logo {
    background-image: url('/media/images/logo-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 100px;
    width: 200px;
}

.loading-screen-helper {
    position: absolute;
    z-index: 505;
    background-color: rgb(33,37,41);
    height: 100px;
    width: 200px;
}

.form-label {
    font-weight: bold;
    font-size: 1.0625rem;
}

.form-check-input:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
/* END CUSTOM STYLES */

/* 10. MEDIA QUERIES */

/* xl */
@media screen and (max-width: 1399px) {
    :root {
        font-size: 15.5px;
    }
}

/* lg */
@media screen and (max-width: 1199px) {
    :root {
        font-size: 15px;
    }

    .slider__pagination {
        display: none;
    }
}

/* md */
@media screen and (max-width: 991px) {
    :root {
        font-size: 14.5px;
    }

    .page-title-container {
        padding: 80px 100px;
    }

    .x-accordion {
        flex-direction: column;
        height: auto;
    }

    .x-accordion-panel {
        min-width: auto;
        width: 100%;
        height: 50px;
    }

    .x-schedule-trigger {
        bottom: auto;
        min-height: 50px;
    }

    .x-schedule-trigger span {
        transform: none;
    }

    .x-accordion-panel.is-active {
        height: auto;
    }

    .footer-top {
        padding-top: 80px;
        padding-bottom: 32px;
    }

    .footer-content {
        padding-bottom: 32px;
        margin-bottom: 32px;
        border-bottom: 1px solid #FFFFFF14;
    }

    footer .logos-container {
        justify-content: center;
        padding-top: 31px;
        border-top: 1px solid #FFFFFF14;
        margin-top: 27px;
    }

    .footer-bottom {
        padding-top: 47px;
        padding-bottom: 48px;
        flex-direction: column;
        align-items: center;
    }

    footer .footer-copyrights {
        margin-bottom: 24px;
    }
}

/* sm */
@media screen and (max-width: 767px) {
    :root {
        font-size: 14px;
    }

    .container-fluid {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .logo {
        top: 16px;
        left: 24px;
        width: 104px;
        height: 47px;
    }

    .logo_2 {
        top: 16px;
        left: 24px;
        width: 104px;
        height: 47px;
    }

    .logo-link {
        top: 16px;
        left: 24px;
        width: 104px;
        height: 47px;
    }

    .to_top {
        right: 24px;
    }

    .eu_logo-container {
        left: 24px;
        position: absolute;
        display: flex;
    }

    .eu_logo-container .eu_logo-eu {
        width: 136px;
        height: 36px;
        margin-bottom: 0px;
        margin-right: 8px;
    }

    .eu_logo-container .eu_logo-ifs {
        width: 72px;
        height: 36px;
    }

    .hamburger-line {
        width: 28px;
    }

    .navigation-wrapper {
        padding: 16px 0px;
    }

    .navigation-contaienr {
        min-height: 47px;
    }

    .menu-list .menu-item a {
        font-size: 1.375rem;
        line-height: 40px;
    }

    .menu-list .menu-item span {
        padding-top: 1em;
    }

    .hero-small {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .horizontal-drag-section.drag-partners {
        width: 35vw;
    }

    .partner-container {
        margin-right: 50px;
        margin-left: 50px;
    }

    .partner-container .horizontal-drag-section:first-child {
        margin-left: 50px;
    }

    .partner-container .horizontal-drag-section:last-child{
        margin-right: 50px;
    }

    .other-systems-title {
        left: 5%;
    }

    body > .secondary-button a,
    body > .secondary-button button {
        font-size: 0.5625rem !important;
        line-height: 10px;
        letter-spacing: 1.2px;
        padding: 10px 10px !important;
    }

    .table>:not(caption)>*>* {
        padding: .2rem .2rem !important;
        font-size: 0.625rem !important;
    }

    .table>:not(caption)>*>*>h3 {
        font-size: 0.6875rem !important;
    }

    .hero-small {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .portfolio-wrapper {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .text-container .text-title {
        font-size: 36px;
        line-height: 44px;
    }

    .text-container .text-subtitle {
        font-size: 18px;
    }

    .breadcrumb-container {
        margin-bottom: 26px;
    }

    .page-medium-margin {
        margin-bottom: 30px;
    }

    .page-main-title-white {
        font-size: 2.5rem !important;
        margin-bottom: 14px;
    }
}

/* xs */
@media screen and (max-width: 575px) {
    :root {
        font-size: 13.5px;
    }
}

/* END MEDIA QUERIES */