:root {
    --main-bg-color: #1A437E;
    --light-bg-color: #F0F7FF;

    --main-color: #ffffff;
    --brown-color: #D2723F;


    --topbar-box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

#topbar {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--main-bg-color);
    color: var(--main-color);
}

#top-navigation {
    background-color: var(--main-bg-color);
    list-style-type: none;
    display: flex;
    
}

#top-navigation .menu-item-type-custom{
	cursor: pointer;
}

#top-navigation .menu-item-type-custom a {
    text-decoration: none;
    color: var(--main-color);
    padding: 7px;
}

#menu-item-42, #menu-item-43{
    position: relative;
    padding-left: 20px;
}

#menu-item-43::before {
	position: absolute;
    top: 13px;
    left: 8px;
    content: '';
    height: 100%;
    width: 24px;
    background-image: url('./assets/icon/header-download-icon.svg');
    background-repeat: no-repeat;
}

#menu-item-42::before {
	position: absolute;
    top: 13px;
    left: 8px;
    content: '';
    height: 100%;
    width: 22px;
    background-image: url('./assets/icon/header-question-icon.svg');
    background-repeat: no-repeat;
}

.topbar__contact {
    position: absolute;
    width: 424px;
    height: 64px;
    right: 0;
    background-color: var(--light-bg-color);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    color: black;
    box-shadow: var(--topbar-box-shadow);
    padding-left: 40px
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__item .item__content {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact__item .item__content a {
    color: var(--brown-color);
    text-decoration: none;
}

.contact__item .item__content span {
    font-size: 12px;
    font-weight: 600;
    padding-top: 3px;
}