/* =================== CLEAR =================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

div {box-sizing: border-box;}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:hover {text-decoration:none;}


/* =================== HEADER =================== */


.gd-header {
    background: #FCFCFC;
    color: #000000;;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    margin-bottom:1.5rem;
}

.gd-header__content {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gd-header__menu {
}

.gd-header__brand img {
    width: 10rem;
    height: 2rem;
    min-width: 160px;
}

.gd-header__buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 2rem; /* added */
}

.gd-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gd-menu a {
    color: #000000;;
}

.gd-menu a:hover {
    color: #4880eb;
}

.gd-menu a:hover b {
    color: #000000;
}

.gd-menu__item {
    padding: 12px 24px;
    position: relative;
}

    .gd-menu__item:hover {
      
    }

.gd-menu__sub {
  
    visibility: hidden;
    opacity: 0;
    transition-property: opacity, visibility;
    transition-duration: .3s, 0s;
    transition-delay: 0s, .3s;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 24px;
    background-color: #fff;
    min-width: 12rem;
    /* border: 1px solid var(--border-color);*/
    border-radius: 5px;
    font-size: 0.875rem;
    z-index: 99;
    margin-top: 12px;
    box-sizing: border-box;
    box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.gd-menu__sub--wide {
    min-width: 700px;
    box-sizing: border-box;
}

.gd-menu__sub--wide > li {
    display: inline-block;
    width: 32%;
    box-sizing: border-box;
}

.gd-menu__sub--wide em {
    font-size: 0.875rem;
    font-style: normal;
}

.gd-menu__sub--wide b {
    display: block;
    padding-top: 0.3rem;
    font-size: 0.7rem;
    opacity: 0.5;
}

.gd-menu__sub > li {
    padding: 0.7rem 0;
}

.gd-menu__item:hover .gd-menu__sub {
   
    visibility: visible;
    opacity: 1;
    transition-delay: 0.25s;
}

.gd-lang {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    
}

.gd-lang__icon {
    width: 20px;
    height: 20px;
    fill: #568fff;
}

.gd-lang__name {
    padding-left: 0.25rem;
    text-transform:uppercase;
    opacity: 0.5;
}

.gd-header__menu-btn {
    display: none;
    font-size: 0;
}

.gd-menu-btn {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.gd-menu-btn:hover {
    opacity: 0.7;
}

.gd-menu-btn-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.gd-menu-btn-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.gd-menu-btn-inner, .gd-menu-btn-inner::before, .gd-menu-btn-inner::after {
    width: 24px;
    height: 2px;
    background-color: #000000;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.gd-menu-btn-inner::before, .gd-menu-btn-inner::after {
    content: "";
    display: block;
}

.gd-menu-btn-inner::before {
    top: -8px;
}

.gd-menu-btn-inner::after {
    bottom: -8px;
}

.gd-menu-btn--squeeze .gd-menu-btn-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.gd-menu-btn--squeeze .gd-menu-btn-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.gd-menu-btn--squeeze .gd-menu-btn-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.gd-menu-btn--squeeze.is-active .gd-menu-btn-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gd-menu-btn--squeeze.is-active .gd-menu-btn-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.gd-menu-btn--squeeze.is-active .gd-menu-btn-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.gd-mobile-menu {
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: calc(100vh - 4.35rem);
    padding: 1.5rem;
    overflow: scroll;
    background: #FCFCFC;
    border-top: 1px solid #EBEBEC;
}

.gd-mobile-menu.is-active {
display: block;
}

.gd-mobile-menu a {
color: #000000;
}

.gd-mobile-menu a:hover {
    color: #4880eb;
}

.gd-mobile-menu__list > li {
    padding: 1rem;
    font-size: 1.1rem;
}



@media screen and (max-width: 1024px) {

    .gd-header__menu {
        display: none;
    }

    .gd-header__menu-btn {
        display: block;
    }
}


@media screen and (min-width: 1025px) {

    .gd-mobile-menu.is-active {
        display: none;
    }
}




/* =================== FOOTER =================== */


.gd-footer {
    background-color: #14171D;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.gd-footer__content {
    width: 100%;
    max-width: 1300px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 0.875rem;
    margin: 0 auto;
}
.gd-footer a {
    color: #fff;
    white-space: nowrap;
    transition: all 0.2s;
}

.gd-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top:-0.7rem;
}
.gd-footer__social > li {
    padding: 0.7rem 1rem;
   
}
.gd-footer__social a {
    opacity: 0.8;
  
}

.gd-footer__social a:hover {
    opacity: 1;
}
.gd-footer__social svg {
    fill: #fff;
    width: 1.2rem;
    height: 1.2rem;
}

.gd-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
    margin-top:-0.7rem;
}

.gd-footer__links > li {
    padding: 0.7rem 0.9rem;
}

    .gd-footer__links a {opacity:0.8;}
    .gd-footer__links a:hover {
        opacity: 1;
    }

.gd-footer__copy {
    display: flex;
}
.gd-footer__copy-text {
    opacity: 0.5;
}

.gd-footer__copy-links {
    margin-left: 1rem;
    display: flex;
}

.gd-footer__copy-links > li {
    padding: 0 0.5rem;
}

.gd-footer__copy-links a {
opacity: 0.5;

}

.gd-footer__copy-links a:hover {
    opacity: 0.7
}


@media screen and (max-width: 1024px) {
   

    .gd-footer__copy {
        flex-direction: column;
    }

    .gd-footer__copy-text {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 750px) {
    .gd-footer__links {
        display: block;
        text-align: center;
    }
}

/* =================== ERROR =================== */


html {
    font-size: 16px;
}

body {
    background-color: #FCFCFC;
}

.err-container {
    width:100%;
    height: 100vh;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
   font-size: 16px;
   margin-top: -60px;
}

.err {
    width:100%;
    max-width: 700px;
  
    text-align: center;
    font-family: 'Inter','Helvetica', sans-serif;
    margin-top: -30px;
}
.err-img {
    width: 23em;
    height:23.75em;
    margin-bottom: 3em;
}

.err-header {
    font-weight: 800;
    font-size: 2.35em;
    margin: 0;
    color:#2B2B2B;
    margin-bottom: 0.5em;
}

.err-subheader {
    color:#7C7C7C;
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
    margin-bottom: 2em;
    padding: 0 1em;
}

.err-btn {
    
    display: inline-block;
  
    padding: 0.85em 1.8em;
    
    color: #fff;
    background-color: #558FFF;
    border-radius: 6px;
    font-weight: 400;
    font-size: .875em;
    outline: none;
   
    cursor: pointer;
    letter-spacing: .3px;
    transition: all .2s;
}

.err-btn:hover {
    background-color: #427ae7;
}


@media screen and (min-width: 1600px) {
    html {
        font-size: 18px;
    }
}


@media screen and (max-width: 1024px) {
    html {
        font-size: 14px;
    }

    .err {
        
        min-height: 400px;
    }

    .err-container {
        font-size: 14px;
    }
}

@media screen and (max-width: 750px) {
       
    .err-container {
        font-size: 12px;
    }

}

@media screen and (max-width: 320px) {
   
    

}