body
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header .notification-panel
{
    color: var(--orange-color-1);
    background: var(--primary-dark-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    position: relative; 
    overflow: hidden; 
}

header .notification-panel .notification-text
{
    flex: 1;
    text-align: center;
    position: absolute; 
    top: 6px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; 
    opacity: 0; 
    left: 50%;
}

header .notification-panel .notification-text.first
{
    transform: translate(-50%, 100%);
}

header .notification-panel .notification-text.second
{
    transform: translate(-50%, -100%);
}

header .notification-panel .notification-text.active
{
    opacity: 1; 
    transform: translate(-50%, 0); 
}

header .notification-panel .button-container
{
    display: flex;
    gap: 0;
}

@media only screen and (max-width: 668px)
{
    header .notification-panel
    {
        flex-direction: column;
        height: 75px;
    }
    header .notification-panel .notification-text
    {
        width: 100%;
    }
}

@media only screen and (max-width: 768px){
    header .notification-panel .notification-text .jky-link
    {
        margin-left: 0;
    }
    header .jky-header .logo-container
    {
        width: 100%;
    }
}

header .notification-panel .button-container .notification-text.active
{
    background: var(--primary-color-end);
}

header .notification-panel .button-container div
{
    padding: 7px 15px;
}

header .notification-panel .button-container .langauge-container
{
    position: relative;
}

header .notification-panel .button-container .langauge-container .langauge-dropdown
{
    position: absolute;
    min-width: 107px;
    z-index: 10;
    background-color: white;
    top: 100%;
    right: 0;
    color: var(--primary-dark-color);
    padding: 0;

    max-height: 0;
    overflow: hidden;
    transition: 0.3s;

    /* display: none; */
}

header .notification-panel .button-container .langauge-container:hover .langauge-dropdown
{
    /* display: block; */
    max-height: 75px;
}

header .notification-panel .button-container .langauge-container .langauge-dropdown>form>button
{
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    width: 100%;
}

header .notification-panel .button-container .langauge-container .langauge-dropdown>form>button:hover
{
    background-color: var(--gray-color-1);
}

header .jky-header
{
    color: white;
    background: linear-gradient(135deg, #180E56 0%, #2A16A7 100%);
    padding: 15px 20px;
}

header .jky-header .logo-container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .jky-header .logo-container img
{
    height: 64px;
    width: auto;
}

header .jky-header .extra-button-container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .jky-header .extra-button-container div
{
    padding: 10px 10px;
}

header .jky-header .menu-container
{
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
}

/* header .jky-header .menu-container div
{
    padding: 10px 15px;
} */

header .jky-header .menu-container a
{
    text-decoration: none;
    color: inherit;
    min-width: 88px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .jky-header .bars-container
{
    position: absolute;
    left: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 99;
    transition: 0.3s;
    transform: translateX(0px) translateY(0px);
}

header .jky-header .bars-container .bar
{
    width: 20px;
    height: 1px;
    background: white;
    margin-bottom: 5px;
    transition: 0.3s;
    transform-origin: top left;
}

header .responsive-menu
{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #180E56 0%, #2A16A7 100%);
    z-index: 99;
    display: none;
}

header .responsive-menu a
{
    text-decoration: none;
    color: white;
}

header .responsive-menu .responsive-menu-wrapper,
header .responsive-menu .responsive-menu-wrapper .responsive-menu-wrapper-div
{
    display: flex;
    flex-direction: column;
}

header .responsive-menu .responsive-menu-wrapper
{
    height: 90vh;
    overflow: auto;
}

header .responsive-menu .responsive-menu-wrapper .logo-container
{
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
header .responsive-menu .responsive-menu-wrapper .menu-container
{
    align-items: center;
    font-size: 1.7em;
}

header .responsive-menu .responsive-menu-wrapper .menu-container a
{
    padding: 10px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.3s;
}

header .responsive-menu-opened .responsive-menu-wrapper .menu-container a
{
    opacity: 1;
    transform: translateX(0px);
}

header .responsive-menu-opened ~ .jky-header .bars-container
{
    transform: translateX(0px) translateY(-30px);
}

header .responsive-menu-opened ~ .jky-header .bars-container .bar-1
{
    width: 18px;
    transform: rotate(45deg);
}

header .responsive-menu-opened ~ .jky-header .bars-container .bar-3
{
    width: 18px;
    transform: rotate(-45deg);
}

header .responsive-menu-opened ~ .jky-header .bars-container .bar-2
{
    opacity: 0;
}

.jky-subheader, .jky-responsive-subheader
{
    padding: 7px 0;
    background: linear-gradient(135deg, var(--subheader-linear-backcolor-1) 0%, var(--subheader-linear-backcolor-2) 100%);
    display: flex;
    justify-content: center;
}

.jky-subheader a
{
    margin: 0 10px;
}

.jky-subheader a.active
{
    font-weight: bold;
}


.main-content-container
{
    flex: 1;
}


footer
{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer .jky-footer .responsive-footer-header
{
    display: none;
    margin-bottom: 20px;
}

footer .upper-bar
{
    width: 100%;
    height: 10px;
    background-color: var(--primary-dark-color);
}

footer .footer-container
{
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--primary-dark-color);
}

footer .jky-footer
{
    width: 1176px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .jky-footer .link-continer
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-weight: bold;
}

footer .jky-footer .link-continer a
{
    margin: 2px 0;
}

footer .jky-footer .footer-social-logo-container
{
    display: flex;
    height: 100%;
    flex-direction: column;
    /* align-items: flex-end; */
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;

}

footer .jky-footer .footer-social-logo-container .social-container
{
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    align-items: center;
}

footer .jky-footer .footer-social-logo-container .social-container .social-link-container
{
    display: flex;
}

footer .jky-footer .footer-social-logo-container .social-container .social-link-container a
{
    margin: 0 10px;
    font-size: 2em;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

footer .jky-footer .external-link-container
{
    display: flex;
    font-size: 1.3em;
    margin-top: 35px;
}

footer .jky-footer .external-link-container a
{
    padding: 0 2px;
    margin: 0 10px;
}

footer .jky-footer .external-link-container .divider
{
    height: 100%;
    background-color: var(--primary-dark-color);
    width: 1px;
}

footer .lower-bar
{
    width: 100%;
    background-color: var(--primary-dark-color);
    padding: 10px 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .lower-bar a
{
    color: white;
}

footer .lower-bar .divider
{
    height: 18px;
    width: 1px;
    background-color: white;
    margin: 0 7px;
}

/* footer .jky-footer a
{
    text-decoration: none;
    color: inherit;
} */

@media only screen and (max-width: 1200px)
{
    footer .jky-footer
    {
        width: 90%;
    }
}

@media only screen  and (max-width: 767px)
{
    footer .jky-footer .responsive-footer-header
    {
        display: block;
    }

    footer .jky-footer .footer-social-logo-container  .footer-logo-container
    {
        display: none;
    }

    footer .jky-footer .link-continer
    {
        align-items: center;
    }


    footer .jky-footer .footer-social-logo-container
    {
        align-items: center;
        margin-top: 25px;
    }

    footer .jky-footer .footer-social-logo-container .social-container
    {
        align-items: center;
    }
}

@media only screen  and (max-width: 640px)
{
    footer .lower-bar
    {
        flex-direction: column;
    }

    footer .lower-bar .divider
    {
        display: none;
    }

    footer .jky-footer .external-link-container
    {
        flex-direction: column;
        text-align: center;
    }

    footer .jky-footer .external-link-container .divider
    {
        display: none;
    }

    .jky-subheader
    {
        justify-content: flex-start;
    }

    .jky-subheader.connect-subheader
    {
        justify-content: center;
    }
}

.cookie_consent
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark-color);
  z-index: 9999;
  font-size: 11px;
}

.cookie_consent .content_container
{
  padding: 8px 10px;
  color: white;
  text-align: center;
}

.cookie_consent .content_container .jky-button
{
    margin: 5px 0 0 0;
    width: 100px;
    font-size: 14px;
}

.cookie_consent .content_container a
{
  text-decoration: underline;
  color: inherit;
}

@media only screen and (max-width: 470px)
{
    .cookie_consent .content_container .jky-button
    {
        width: 80%;
    }
}
/* 
footer
{
    background-color: var(--primary-dark-color);
    color: white;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

footer .jky-footer .logo-container
{
    margin-bottom: 10px;
}

footer .jky-footer .address-link-container div
{
    margin-bottom: 10px;
}

footer .jky-footer .link-container
{
    display: flex;
    flex-direction: column;
}

footer .jky-footer .social-link-container
{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 30px;
}

footer .jky-footer .social-link-container a
{
    margin-right: 10px;
}

footer .jky-footer .seperater
{
    margin: 10px 0;
}

footer .jky-footer .footer-contact-details
{
    text-align: right;
    color: var(--orange-color-1);
}

@media only screen and (max-width: 575px)
{
    footer .jky-footer .social-link-container
    {
        justify-content: flex-start;
    }
} */