header {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}

header .logo {
    position: relative;
    z-index: 3;
    transition: 0.3s all;
    height: 2.75rem;
}

.logo-dark {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: 0.3s all;
    z-index: 3;
    height: 5.5rem;
}

.logo.show-menu {
    opacity: 0;
}

.logo-dark.show-menu {
    opacity: 1;
}

.header-cta {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 3;
    height: 2.5rem;
}

#main-menu {
    display: flex;
}

ul.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}

.expended-menu ul.menu li a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.2s all;
    padding: 0;
    font-size: 2.5rem;
    line-height: 150%;
    position: relative;
    line-height: 118%;
    font-family: 'Gambetta';
    font-weight: 500;
    transition: 0.2s all;
    color: var(--lightColor);
}
.expended-menu ul.menu li a:hover, ul.menu li.current-menu-item > a {
    color: var(--secondaryColor);
}

.expended-menu ul.menu li a:hover:after, ul.menu li.current-menu-item > a:after {
    width: 100%;
}

.menu-btn {
    color: var(--primaryColor);
    background: white;
    transition: 0.3s all;
    height: 100%;
    padding: 4px 1.5rem 0;
    font-size: 0.95rem;
    border-radius: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.menu-btn:hover {
    background: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: white;
}
.home .menu-btn:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white;
}

.menu-btn.show-menu {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white;
}

.menu-btn.show-menu:hover {
    background: var(--secondaryColor);
    border-color: var(--secondaryColor);
}

/* EXPENDED MENU */
body.no-scroll {
    overflow: hidden;
}

.expended-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, var(--primaryColor) 55%, #eaede9 45%);
    transform: translateY(-100%);
    transition: 0.3s all;
    z-index: -1;
    opacity: 0;
    padding: 7rem 4rem 4rem;
}

.expended-menu.show-menu {
    transform: translateY(0);
    z-index: 2;
    opacity: 1;
}

.menu-wrap {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.menu-grid {
    flex: 0 0 55%;
}

.menu-featured h5 {
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: -1.44px;
}

.menu-blogs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 1rem 0;
}

.menu-blog {
    display: flex;
    gap: 20px;
}

.menu-blog:hover img {
    transform: scale(1.05);
}

.menu-blog:hover h4 {
    color: var(--primaryColor);
}

.menu-blog > a {
    display: flex;
    overflow: hidden;
    border-radius: 5px;
}

.menu-blog img {
    transition: 0.3s all;
    width: 140px;
    height: 96px;
    object-fit: cover;
    border-radius: 5px;
}

.menu-blog div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 50%;
}

.menu-blog div h4 {
    font-size: 0.85rem;
    line-height: 130%;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: 0;
}

.menu-blog div p, .menu-blog div a {
    font-size: 0.75rem;
    line-height: 1rem;
}
.menu-blog div a.read-more {
    text-decoration: underline;
}

.menu-featured {
    flex: 1;
    margin-top: -2rem;
}

.menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: var(--primaryColor);
}

.menu-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
}

.menu-footer .socials {
    width: auto;
    margin-top: 7px;
    display: flex;
    gap: 15px;
}

.menu-footer .socials a {
    transition: 0.2s all;
    color: white;
}

.menu-footer .socials a:hover {
    color: #ffffff;
}

.menu-footer a.menu-btn {
    background: none !important;
    color: white;
    padding: 0;
    border-radius: 0;
    font-size: 1rem;
    line-height: 150%;
    text-transform: uppercase;
    padding: 0;
    display: inline-block;
    height: auto;
    border-bottom: 1px solid transparent;
    transition: 0.2s all;
    margin-top: 7px;
}

.menu-footer a.menu-btn i {
    margin-left: 7px;
}

.menu-footer a.menu-btn:hover {
    border-bottom: 1px solid white;
}
