/*===========================================================
 CUSTOM FONTS
============================================================*/
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@100..900&display=swap");

/*===========================================================
 CUSTOM VARIABLES 
============================================================*/
:root {
    /* Layout Variables */
    --container-max-width: 1280px;
    --container-padding: 12px;
    --grid-gutter: 24px;
    --header-height: 0;
    /* Hamburger Menu Variables */
    --ham-width: 40px;
    --ham-height: 4px;
    --ham-margin: 6px;
    --ham-translate: 10px;
    --ham-translate-negative: -10px;

    /*Colors*/
    --cool-blue: #4879bb;
    --black: #323232;
    --charcoal-grey: #333e48;
    --brownish-grey: #6c6c6c;
    --sandstone: #c6b371;
    --grey: #606060;
    --dark: #23232c;
    --brown-grey: #969696;
    --very-light-pink: #e1e1e1;
    --browngrey-2: #a3a3a3;
    --darkest: #000;
    --dark-blue-grey: #1d2b4f;
    --denim: #3d5a80;
    --white-2: #f5f5f5;
    --grey-4: #8c8c8c;
    --green: #28b536;
    --rusty-red: #bb271a;
    --grey: #f3f6f9;
    --pale-lilac: #e9eaf1;
    --pale-purple: #b790d9;
    --periwinkle-blue: #95a8ff;
    --light-peach: #f4c9c7;
    --very-light-pink: #ffe4e3;
    --pale-lilac-2: #dde2f9;
    --pale-lavender: #e9ddf3;
    --very-light-blue: #ecedf0;
    --pale-grey: #f3f4f9;
    --blue: #70c0f2;
    --black: #212121;
    --steel: #80808f;
    --pale-grey: #fcfcff;
    --light-yellow-green: #d6fe7d;
    --tomato: #e65b34;
    --light-blue-grey: #c5c6cd;
    --grey-dark: #b6b4c4;
    --background-black: #2e2e2e;
    --greyblue-10: rgba(88, 184, 203, 0.1);
    --purple-pink: #d92fd8;
    --lemon: #ffff54;
    --terracotta: #d75a36;
    --brand-gray: #61605b;
    --black: #1b1b1a;
    --light-gray: #f8f8f8;
    --brand-yellow: #e8d03c;
    --white: #fff;
    --accent: var(--brand-gray);
    --menu: var(--white);
    /* Typography Scale */
    --base: 16px;

    /* Font Family */
    --family-primary: "AlbertSans", sans-serif;
    --family-secondary: Arial, sans-serif;
}

/*===========================================================
 RESET & BASE STYLES
============================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--family-primary);
    font-size: var(--base);
    line-height: 1.25;
    font-weight: 400;
    color: var(--black);
    letter-spacing: normal;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px dashed var(--accent) !important;
    outline-offset: 2px;
}
.search-icon-btn:focus {
    border: 2px dashed var(--accent) !important;
}
/**:active,
*:focus {
    outline: none;
    border: 0;
}*/

/*===========================================================
 TYPOGRAPHY
============================================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: none;
}

/*===========================================================
 LINKS
============================================================*/
a {
    color: currentColor;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: none !important;
    outline: 2px dotted currentColor !important;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
}

/*===========================================================
 LAYOUT SYSTEM
============================================================*/
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.row {
    --gutter-x: var(--grid-gutter);
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
}

.col {
    flex: 1 0 0%;
}

/* Utility Classes */
.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

/*===========================================================
 IMAGES
============================================================*/
img {
    max-width: 100%;
    height: auto;
}

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

/*===========================================================
 BUTTONS
============================================================*/
button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn {
    transition: 0.3s ease;
}

.btn:hover {
    transition: 0.3s ease;
}

/*===========================================================
 MAIN LAYOUT
============================================================*/

/*===========================================================
HEADER & NAVIGATION Basic Setup - DESKTOP
============================================================*/

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.menu-left a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    border: 0;
}

/* Main Navigation */
.menu {
    display: flex;
    align-items: center;
}

.menu ul {
    margin: 0;
    list-style: none;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
}

/* Dropdown Menus Basic*/
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    position: relative;
}

.menu-toggle {
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    pointer-events: none;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
}

.menu .dropdown-menu li {
    display: block;
    position: relative;
}

.dropdown-menu li a {
    display: block;
    text-decoration: none;
}

/*===========================================================
Menu
============================================================*/
.header-area {
    padding: 25px 0;
}

/* Main Navigation */

.menu ul li a {
    color: var(--black);
    text-decoration: none;
    transition: 0.3s ease;
    border-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    color: var(--black);
}

.menu ul li a:hover {
    color: var(--charcoal-grey);
}

.menu-item-has-children {
    margin-bottom: 0 !important;
}
.menu-item-has-children > a {
    padding-right: 30px;
}

.menu-toggle {
    background-image: url(../img/angle-down.svg);
    background-position: right center;
    background-size: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
}
.dropdown-menu {
    min-width: auto;
    padding: 5px 0;
    margin: 0 !important;
    font-size: var(--base);
    color: var(--black);
    background-color: var(--white);
    /* border: 1px solid rgba(0, 0, 0, 0.15); */
    /* border-radius: 4px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
.dropdown-menu li {
    margin-bottom: 0 !important;
}
.menu .dropdown-menu li a {
    padding: 6px 16px;
    line-height: 1.4;
    color: var(--black);
    border-bottom: 0;
}
.dropdown-menu li:last-child a {
    border-bottom: 0;
}
.dropdown-menu li a:hover {
    color: var(--accent);
}

/*===========================================================
 MOBILE MENU & HAMBURGER
============================================================*/
.mobileMenuOpener {
    display: none;
    position: absolute;
    width: 20px;
    height: 100%;
    z-index: 10;
}

.panel-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    box-shadow: 0px 1px 3px #eeeeee;
    padding: 10px 15px;
}

.mobile-logo {
    width: 200px;
}

/* Hamburger Icon */
.btn-hamburger {
    cursor: pointer;
    padding: 10px;
}

.hamburger .line {
    width: var(--ham-width);
    height: var(--ham-height);
    background-color: var(--brand-gray);
    display: block;
    margin: var(--ham-margin) auto;
    transition: 0.3s ease;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

/* Hamburger Animation */
.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(var(--ham-translate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(var(--ham-translate-negative)) rotate(-45deg);
}

/* Slideout Menu */
.slideout-menu {
    position: fixed;
    top: 76px;
    bottom: 0;
    left: 0;
    width: 256px;
    height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
    background: var(--menu);
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li {
    display: block;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
}

.menu-section-list li a:hover {
    color: var(--accent);
}

/*===========================================================
 SCROLL TO TOP
============================================================*/
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--brand-gray);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.angle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
}

.menu::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.menu::-webkit-scrollbar-track {
    background: var(--brand-gray);
}

/* Handle */
.menu::-webkit-scrollbar-thumb {
    background: var(--brand-yellow);
}

/* Handle on hover */
.menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
/*===========================================================
 PRELOADER
============================================================*/
.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid var(--black);
    border-top: 3px solid var(--accent);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: var(--black);
    font-size: 0.8em;
}

/* ─── TOPBAR ─────────────────────────────────────── */
.topbar {
    height: 56px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Left side */
.topbar-left {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Right side */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── SDD PILL ───────────────────────────────────── */
.sdd-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 20px;
    cursor: pointer;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    background-color: var(--brand-yellow);
    color: var(--black);
    border: none;
    outline: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    border: 0 !important;
}

.sdd-label {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    transition: color 0.3s;
    flex-shrink: 0;
}

.sdd-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    flex-shrink: 0;
}

.sdd-arrow svg path {
    transition: stroke 0.3s;
}

.sdd-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}

.sdd-title {
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition:
        opacity 0.25s ease,
        max-width 0.35s ease;
    flex-shrink: 0;
    color: var(--white);
    white-space: nowrap;
}

.sdd-date-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition:
        opacity 0.25s ease,
        max-width 0.35s ease,
        margin-left 0.35s ease;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 0;
}

.sdd-date-line {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
}

.sdd-location-line {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

/* Hover */
.sdd-pill.sdd-pill.is-active {
    gap: 20px;
}
.sdd-pill:hover {
    background-color: var(--charcoal-grey);
    color: var(--white);
    gap: 20px;
}
.sdd-pill:hover svg path {
    stroke: #ffffff;
}
.sdd-pill:hover .sdd-divider {
    opacity: 1;
}
.sdd-pill:hover .sdd-title {
    opacity: 1;
    max-width: 280px;
}
.sdd-pill:hover .sdd-date-block {
    opacity: 1;
    max-width: 180px;
}

/* Active */
.sdd-pill.is-active {
    background-color: var(--brand-yellow);
    color: var(--black);
}
.sdd-pill.is-active .sdd-label {
    color: var(--black);
}
.sdd-pill.is-active .sdd-divider {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}
.sdd-pill.is-active .sdd-title {
    opacity: 1;
    max-width: 280px;
    color: var(--black);
}
.sdd-pill.is-active .sdd-date-block {
    opacity: 1;
    max-width: 180px;
}
.sdd-pill.is-active .sdd-date-line,
.sdd-pill.is-active .sdd-location-line {
    color: var(--black);
}
.sdd-pill.is-active:hover {
    background-color: var(--brand-yellow);
    color: var(--black);
    position: relative;
    z-index: 3;
}
.sdd-pill.is-active:hover .sdd-title {
    color: var(--black);
}

/* ─── VERTICAL DIVIDER ───────────────────────────── */
.topbar-vdivider {
    width: 1px;
    height: 24px;
    background: var(--very-light-pink);
    margin: 0 20px;
    flex-shrink: 0;
    transition: opacity 0.3s;
    position: absolute;
    left: 50%;
}

/* ─── SEARCH ─────────────────────────────────────── */
.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* The icon button (always visible) */
.search-icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    flex-shrink: 0;
    z-index: 2;
}
.icon-btn img {
    width: 28px;
}
/* The expandable input area */
.search-expand {
    display: flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--black);
    margin-left: 0;
}

.search-expand.open {
    width: 336px;
    margin-left: 8px;
}

.search-expand input {
    border: none;
    outline: none;
    background: transparent;
    font-family: "Albert Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    width: 100%;
    padding: 4px 0;
}

.search-expand input::placeholder {
    color: var(--brand-gray);
}

.topbar.search-open .topbar-vdivider.left-divider {
    opacity: 1;
}

/* ─── ICON BUTTONS ───────────────────────────────── */
.icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 0.65;
}

/* bttn */
.yellow-bttn {
    background-color: var(--brand-yellow) !important;
}
.default-bttn {
    display: inline-flex;
    line-height: 37px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    border: solid 1px var(--brand-yellow) !important;
    text-align: center;
    text-decoration: none;
    padding: 0 20px;
    transition: 0.3s;
    align-items: center;
    gap: 10px;
}
.default-bttn:hover {
    background: var(--charcoal-grey) !important;
    color: var(--white) !important;
    border: solid 1px var(--charcoal-grey) !important;
}
.banner-text .default-bttn:hover svg {
    display: none;
}

.black-bttn {
    background-color: var(--brand-gray);
    border: 0 !important;
    color: var(--white);
}
/* header */
.header-top {
    padding: 15px 0;
    background-color: var(--light-gray);
}

/* banner area */
.banner-area {
    position: relative;
    display: flex;
    align-items: center;
}
.banner-text h4 {
}
.banner-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.banner-text {
    position: relative;
    max-width: 835px;
}
.banner-text h1 {
    color: var(--brand-yellow);
    margin: 0;
    margin-bottom: 5px;
}
.banner-text h1 span {
    font-size: 50px;
}
.banner-text h4 {
    color: var(--white);
    text-transform: uppercase;
    max-width: 650px;
    margin-bottom: 45px;
}

/* overview-area */
.overview-area {
    padding: 150px 0;
}
.overview-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.overview-card {
    max-width: calc((100% - 30px) / 3);
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}
.overview-card:hover {
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--brand-yellow);
}
.overview-top {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--brand-gray);
    padding: 10px 25px;
}
.overview-top h3 {
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
}
.overview-body {
    border: solid 1px var(--light-gray);
    background-color: var(--light-gray);
    padding: 30px 20px;
}
.overview-body h5 {
    margin-bottom: 20px;
}
.overview-body a {
    border-bottom: 0;
}
.overview-body .overview-arrow {
    display: flex;
    justify-content: center;
}
.overview-arrow a {
    width: 64px;
    height: 44px;
    align-items: center;
    border-radius: 100px;
    border: solid 1px var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-arrow a:hover {
    transform: translateX(5px);
    background: var(--brand-gray);
    border: solid 1px var(--charcoal-grey) !important;
}
.overview-arrow a:hover svg path {
    stroke: var(--white);
}

.overview-arrow a:hover img {
}
.overview-arrow img {
    display: flex;
    transition: 0.3s;
}
/* symposium */
.symposium-area {
    padding-bottom: 150px;
}
.symposium {
    display: flex;
    gap: 80px;
}
.symposium-text {
    max-width: 612px;
    width: 100%;
}
.symposium-text h1 {
    margin-bottom: 10px;
}
.symposium-text h2 {
    margin-bottom: 20px;
}
.symposium-text p {
    margin-bottom: 50px;
}
.text-center {
    text-align: center;
}
/* content-area */
.content-area {
    background-color: var(--brand-yellow);
    padding: 150px 0;
}
.content-top {
    padding-bottom: 100px;
}
.content-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}
.content-card {
    background: #fff;
    padding: 20px;
    max-width: calc((100% - 40px) / 3);
    width: 100%;
    position: relative;
}

.content-home-slider .slick-list.draggable {
    max-width: 600px;
}
.slick-slide {
    min-height: 260px;
}
.slick-dots li button:before {
    content: "";
    opacity: 1;
    background-color: var(--brand-gray);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}
.slick-dots {
    bottom: -30px;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: var(--white);
}
.slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
}

.content-top-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.slick-prev:before {
    background-image: url(../img/ArrowLeft.svg);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    left: 0;
    height: 48px;
    width: 44px;
    top: 0;
}
.slick-next:before {
    background-image: url(../img/Arrowright.svg);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 0;
    height: 48px;
    width: 49px;
    top: 0;
}
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
}
.slick-next {
    right: 0;
}
.slick-prev {
    left: 0;
}
.content-card {
    margin-left: 10px;
    margin-right: 10px;
}
.content-body p {
    margin-bottom: 40px;
}
.slick-dotted.slick-slider {
    padding-left: 60px;
    padding-right: 60px;
}
.zu-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: solid 1px var(--brand-yellow);
}
.content-body .zu-link {
    position: absolute;
    bottom: 20px;
}
.content-body .zu-link:hover {
    color: var(--brand-yellow);
}

.zu-link:hover {
    color: var(--brand-yellow);
}
.zu-link:hover svg {
    transform: translateX(5px);
}
.zu-link:hover svg path {
    stroke: var(--brand-yellow);
}

.zu-link svg {
    transition: 0.3s;
}
/* events-area */
.title h1 {
    font-weight: 500;
}
.events-area {
    padding: 150px 0;
    background-color: var(--light-gray);
}
.events-titlle {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
}
.title:before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
}
.events-titlle h1 {
    position: relative;
    text-transform: uppercase;
}
.events-titlle div {
    position: relative;
    padding-left: 100px;
}
.events-titlle div h3 {
    margin-top: 10px;
    text-transform: uppercase;
}
.events-titlle,
.events-text {
    width: 50%;
}
.events-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.events-inner {
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
/* qualinet-area */
.qualinet-area {
    background-color: var(--brand-yellow);
    padding: 20px;
    padding-bottom: 100px;
}
.qualinet-banner img {
    width: 100%;
}
.qualinet-bottom {
}
.qualinet-banner {
    margin-bottom: 50px;
}
.qualinet-bottom .events-text {
    max-width: 535px;
    width: 100%;
}
.title-white:before {
    background-color: var(--light-gray);
}
/* publications-area */
.publications-area {
    padding: 120px 0;
}
.publications-top {
    display: flex;
    justify-content: space-between;
}
.publications-top h3 {
    text-transform: uppercase;
    color: var(--brand-gray);
}
.publications-top h1 {
    margin-bottom: 20px;
}
.publications-inner {
    display: flex;
    padding-top: 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.publications-card {
    max-width: calc((100% - 30px) / 2);
    width: 100%;
    display: flex;
    background-color: var(--light-gray);
    justify-content: space-between;
}

.publications-card-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.publications-card-img {
    background-color: #0065b7;
    display: flex;
    align-items: center;
}
.publications-card-text h3 {
    text-transform: uppercase;
}
.publications-yellow-img {
    background-color: var(--brand-yellow);
}
.publications-card-text {
    padding: 20px 10px;
    max-width: calc(100% - 190px);
}
.publications-card-img {
    width: 190px;
}
s .line-34 {
    line-height: 34px;
}
.publications-card-text h6 {
    font-size: 12px;
    font-weight: normal;
    color: var(--black);
    margin-bottom: 18px;
}
.publication-bttn {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* events area */
.event-card {
    max-width: calc((100% - 30px) / 3);
    width: 100%;
    border: solid 1px var(--light-gray);
    background-color: var(--white);
}
.event-card-text {
    padding: 10px 20px;
}
.event-card {
    display: flex;
}
.event-date {
    padding: 30px 20px;
    background-color: var(--brand-yellow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-date h2 {
    font-size: 50px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}
.event-card-text h5 {
    padding: 20px 0;
}
.event-date h3 {
    text-transform: uppercase;
}
.event-card-text > span {
    padding: 4px 10px;
    background-color: var(--brand-gray);
    display: inline-block;
    color: var(--light-gray);
}
/* Footer Area */
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left {
    max-width: 400px;
    width: 100%;
}
.footer-left-card h3 {
    margin: 40px 0;
}
.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-right {
    max-width: calc(100% - 450px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-card {
    max-width: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.footer-card .default-bttn {
    line-height: 26px;
    padding: 0 10px;
}
.footer-mdl-card {
    max-width: 60%;
    width: 100%;
    display: flex;
    align-items: center;
}
.footer-menu li a {
    font-size: 12px;
    font-weight: normal;
    color: var(--white);
}
.footer-menu li a:hover {
    color: var(--brand-yellow);
}

.footer {
    color: var(--white);
}
.footer ul li {
    list-style: none;
}
.footer-menu h2 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--white);
    display: inline-block;
}
.Intern,
.pdy-4 {
    display: block;
    border-bottom: 1px solid var(--white);
    display: inline-block;
}
.pdy-4 {
    margin: 20px 0;
}
.footer-area {
    background-color: var(--brand-gray);
    padding: 100px 0;
}
.footer-bttm {
    background-color: var(--brand-gray);
    border-top: solid 1px var(--brand-yellow);
}
.footer-mdl-card .footer-mdl-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-area .default-bttn {
    margin-top: 5px;
}
.copyright-text {
    text-align: center;
    padding: 30px 0;
}
.copyright-text p {
    color: var(--white);
}
/*===========================================================
 RESPONSIVE DESIGN
============================================================*/

/* Desktop Navigation Behavior */
@media (min-width: 992px) {
    .menu-item-has-children:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown-menu .menu-item-has-children .menu-toggle {
        transform: translateY(-50%) rotate(-90deg);
        right: 10px;
        top: 50%;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .overview-body {
        border: solid 1px var(--light-gray);
        background-color: var(--light-gray);
        padding: 25px 10px;
    }
    .publications-card {
        max-width: calc((100% - 15px) / 2);
    }
    .events-area,
    .publications-area,
    .content-area,
    .overview-area {
        padding: 100px 0;
    }
    .symposium-area {
        padding-bottom: 100px;
    }

    .publications-card-text {
        padding: 20px 10px;
    }
    .qualinet-bottom .events-text {
        max-width: 425px;
    }
    .event-card-text {
        padding: 10px 10px;
    }
    .event-date h2 {
        font-size: 40px;
    }
    .content-slider {
        margin: 0;
        padding: 0 80px;
    }
    .footer-left {
        max-width: 320px;
    }
    .footer-right {
        max-width: calc(100% - 340px);
    }
    .footer-mdl-card {
        max-width: 40%;
    }

    .topbar-vdivider {
        display: none;
    }
    .publications-card-img {
        width: 160px;
    }
    .publications-card-text {
        max-width: calc(100% - 160px);
    }
}
@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }

    .header-area {
        display: none;
    }

    .mobileMenuOpener {
        display: block;
    }
    .publications-card {
        max-width: 100%;
    }
    .panel-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: var(--white);
    }
    .publications-inner {
        gap: 20px;
    }
    .content-slider {
        margin: 0;
        padding: 0 30px;
    }
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    .slick-prev:before {
        left: 0;
    }
    .slick-next:before {
        right: 0;
    }
    .slick-dotted.slick-slider {
        padding: 0;
    }
    .content-slider .content-card {
        margin: 0 5px;
    }
    .slick-slide {
        min-height: 280px;
    }
    .footer-left {
        max-width: 100%;
    }
    .menu ul li {
        display: block;
    }

    .menu ul li a {
        width: 100%;
        color: var(--black);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }
    .header-top {
        padding-top: 95px;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        border: none;
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
        color: var(--white);
    }

    .menu-toggle {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .content-card {
        max-width: calc((100% - 40px) / 2);
    }

    .event-card {
        max-width: calc((100% - 20px) / 2);
    }
    .qualinet-bottom .events-text {
        max-width: 100%;
    }
    .footer-right {
        max-width: 100%;
        margin-top: 50px;
    }
    .banner-text h1 span {
        font-size: 40px;
    }
    .topbar {
        padding: 0;
    }
    .events-titlle div {
        padding-left: 20px;
    }
    .events-titlle h1 {
        position: relative;
        font-size: 32px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .mobile-logo {
        width: 150px;
    }
}
@media (max-width: 767px) {
    .banner-text h1 span {
        font-size: 30px;
    }
    .sdd-pill.sdd-pill.is-active {
        gap: 10px;
    }

    .events-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .events-inner {
        gap: 20px;
    }
    .banner-area {
        height: 500px !important;
    }
    .overview-card {
        max-width: calc((100% - 15px) / 2);
    }
    .topbar {
        flex-direction: column;
        align-items: start;
        height: auto;
        padding: 0;
    }
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
    .overview-inner {
        gap: 20px 0;
    }
    .symposium {
        gap: 20px;
    }
    .content-card {
        max-width: 100%;
    }
    .publications-card {
        max-width: 100%;
    }
    .publications-inner {
        gap: 20px 0;
    }
    .events-titlle,
    .events-text {
        width: 100%;
    }
    .event-card {
        max-width: 100%;
    }
    .symposium-area {
        padding-bottom: 70px;
    }
    .footer-area,
    .events-area,
    .publications-area,
    .content-area,
    .overview-area {
        padding: 70px 0;
    }
    .publications-inner {
        padding-top: 70px;
    }
    .kontakt-bttn {
        position: absolute;
        top: 5px;
        z-index: 1;
    }
    .content-top-card img {
        max-width: 50px;
    }
}
@media (max-width: 575px) {
    .overview-card {
        max-width: 100%;
    }
    .publications-card-text,
    .publications-card-img,
    .symposium-text {
        max-width: 100%;
        width: 100%;
    }
    .publications-card-img {
        justify-content: center;
    }
    .events-titlle div {
        padding-left: 20px;
    }
    .symposium {
        flex-direction: column;
    }
    .publications-card {
        flex-direction: column-reverse;
    }
    .footer-right {
        flex-direction: column;
        gap: 20px;
    }

    .slick-slide {
    }
    .footer-card {
        max-width: 100%;
        width: 100%;
    }
    .footer-mdl-card {
        align-items: flex-start;
    }
    .footer-right {
        margin-top: 30px;
    }
    .content-slider {
        padding: 0 50px;
        margin: 0;
    }
    .events-titlle h1 {
        font-size: 28px;
    }
    .title:before {
        width: 120px;
        height: 120px;
    }
}
/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    .content-slider {
        padding: 0;
        margin: 0;
    }
    .slick-slide {
        min-height: auto;
    }

    .mobile-logo {
        width: 120px;
    }

    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 40px;
        width: 40px;
    }
}
/* SSD Button */
@media (max-width: 768px) {
    .sdd-pill:hover .sdd-divider,
    .sdd-pill.is-active .sdd-divider {
        opacity: 0;
    }

    .sdd-pill:hover .sdd-title,
    .sdd-pill.is-active .sdd-title {
        opacity: 0;
        max-width: 0;
    }

    .sdd-pill:hover .sdd-date-block,
    .sdd-pill.is-active .sdd-date-block {
        opacity: 0;
        max-width: 0;
        margin-left: 0;
    }
}
