.notification-popup {
    display: none !important;
}

/* Header Landing */

.header-landing {
    position: relative;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

.header-landing.hideheader {
    top: -100%;
}

.header-landing.js-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    .header-landing__inner {
        justify-content: space-between;
        height: auto;
        padding: 5px 0;
    }

    .header-landing__left {
        position: static;
    }

    /* .header-landing__logo {
        width: auto;
        height: 72px;
    } */
}

.header-landing__inner {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 16px 0;
}

.header-landing__left {
    position: relative;
    max-width: 82px;
}

.header-landing__logo {
    display: block;
    /* width: auto;
    height: 72px; */
}

.header-landing__logo img {
	width: 100%;
	height: 100%;
}

.header-landing__right {
    position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-landing__right .btn {
    margin: 0;
}

.btn-search {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;

    span {
        top: unset !important;
        left: unset !important;
        right: unset !important;
        transform: none !important;
        margin: 0;
    }
}

.header-landing__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-landing__buttons__btn {
    width: 50%;
    font-weight: 600;
    background-color: var(--color-bg-primary);
    color: var(--color-white);
    border-bottom: 2px solid rgba(255,255,255,.15);
    text-align: center;
    text-decoration: none;
    padding: 10px;
}

.header-landing__buttons__btn-secondary {
    width: 50%;
    font-weight: 600;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    border-bottom: 2px solid rgba(38,41,110,.15);
    text-align: center;
    text-decoration: none;
    padding: 10px;
}

.header-landing__buttons__btn:after,
.header-landing__buttons__btn-secondary:after {
    content: "";
    display: inline-block;
    position: relative;
    top: -2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 2px solid currentColor;
    border-bottom: 0;
    border-left: 0;
    width: 5px;
    height: 5px;
}

@media (min-width: 1200px) {
    .header-landing__inner {
        justify-content: flex-end;
        height: 120px;
        padding: 32px 0;
    }

    .header-landing__left {
        position: absolute;
        top: 4px;
        left: 0;
    }

    .header-landing__logo {
        width: 210px;
        height: 178px;
    }
}

/* Footer Landing */

.footer-landing {
    position: relative;
    background-color: #FFFFFF;
    z-index: 100;
}

.footer-landing__inner {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    gap: 20px;
    padding: 60px 0;
}

.footer-landing__left {
    position: relative;
}

.footer-landing__logo {
    display: block;
    width: auto;
    height: 125px;
}

.footer-landing__logo img {
	width: 100%;
	height: 100%;
}

.footer-landing__right {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-landing__right .btn {
    margin: 0;
}

@media (min-width: 768px) {
    .footer-landing__right {
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .footer-landing__inner {
        flex-direction: row;
        justify-content: space-between;
        height: 190px;
    }
}