/*HEADER
-----------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 999;
    transition: transform 0.5s, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    transform: translate(0,0);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

header.md-card {
    padding: 0;
    z-index: 999;
	border-radius: 0;
}

.main-content-open header {
    padding-right: 64px;
    -webkit-transition: padding-right .5s!important;
    transition: padding-right .5s!important;
}

.header-languages {
    float: left;
    height: 100px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-languages a {
	width: 100%;
    text-decoration: none;
}

.header-languages li {
    width: 100%;
    text-align: center;
}

.header-languages li +li {
    margin-top: 5px;
    padding-top: 5px;
}

.header-top {
    float: none;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 20px;
    background-color: transparent;
    color: var(--main_text_color);
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.header-top-item:hover,
.header-top-item:focus {
    background-color: rgba(11, 42, 74, 0.06);
}

.top-search.header-top-item {
    border: 0;
    cursor: pointer;
}

.header-top-item:last-child {
    margin-right: 0;
}

.top-logo {
    float: left;
    height: 100px;
    width: 100%;
    text-align: left;
    color: var(--maincolor);
    padding: 5px 0;
}

.top-logo img {
	position: relative;
    float: left;
    max-height: 90px;
    padding: 5px;
    z-index: 9;
}

.top-logo-container {
    float: left;
    height: 90px;
    width: calc(100%);
    padding: 0 5px;
}

.top-logo-text {
    float: left;
    width: calc(100% - 95px);
    font-size: 40px;
    line-height: 48px;
    font-weight: normal;
    letter-spacing: -2px;
}

.first-logo-word {
    color: var(--main_text_color);
}

.top-logo-slogan {
    float: left;
    width: calc(100% - 95px);
    font-size: 20px;
    line-height: 22px;
    color: var(--main_text_color);
}

.top-logo img.top-slogan {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

#main-content {
    margin-top: 100px;
}

/* Full-width template: transparent header at top, solid on scroll; no main-content margin */
body.lf-fullwidth-header-transparent header {
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

body.lf-fullwidth-header-transparent header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* Transparent header: white text, links, buttons and images (text only, no background change) */
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-logo,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-logo-text,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-logo-slogan,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .first-logo-word {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-logo img.image-logo {
    filter: brightness(0) invert(1);
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-top-item,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-search {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-search i.md-icons svg {
    fill: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-favorites,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-favorites-text {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-favorites {
    background-color: transparent;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .top-favorites i.md-icons svg {
    fill: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-contact-container,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-contact-row-tel a {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-contact-row-tel i.md-icons svg {
    fill: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav a,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav span {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav li span:hover,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav li span:hover i,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav li a:hover,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav li a:hover i,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) nav li i:hover {
    color: rgba(255, 255, 255, 0.85);
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) li.menu-item i {
    color: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .menu-toggle,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .menu-toggle i.md-icons svg {
    color: #ffffff;
    fill: #ffffff;
}
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-top-item:hover,
body.lf-fullwidth-header-transparent header:not(.header-scrolled) .header-top-item:focus {
    background-color: rgba(255, 255, 255, 0.12);
}

body.lf-fullwidth-header-transparent #main-content {
    margin-top: 0;
}

#side-menu {
	display: none;
}

#logo {
    float: left;
    width: 200px;
    height: 60px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

#logo img {
    height: 54px;
}

.site-name {
    float: left;
    width: 100%;
    font-size: 35px;
    line-height: 35px;
}

.slogan {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
}

img.logo-img-mobile {
    display: none;
}

h1 {
    font-size: 26px;
    margin: 0px;
    font-weight: normal;
}

#title h1 {
	line-height: 64px;
}

#title {
    float: right;
    display: inline-block;
    height: 64px;
    width: 50%;
    line-height: 64px;
    color: white;
    margin-right: 60px;
}

.menu-toggle {
	display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.menu-toggle i {
    float: left;
    width: 50px;
    height: 50px;
    padding: 5px;
}

.menu-toggle i.md-icons svg {
    float: right;
    width: 40px;
    height: 40px;
    fill: #3a454b;
}

#dark-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: #000000c7;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}

#dark-screen.dark-screen-show {
    visibility: visible;
    opacity: 1;
    transition: 0.5s all;
}

.search-container:hover {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.header-logo {
	position: relative;
    float: left;
    width: 260px;
}

.header-main {
	position: relative;
    float: left;
    width: calc(100% - 260px);
	height: 100px;
	display: flex;
	flex-direction: column;
	padding-right: 50px;
}

.header-action-icon {
    float: right;
    width: 50px;
    margin: 0!important;
    outline: 0;
	display: none;
}

.header-action-icon .md-tooltip {
    top: 70px;
    right: 0;
    margin: 0;
    border-top: 10px solid transparent;
    background-color: transparent;
}

.header-action-icon .md-tooltip:before {
    right: 25px;
}

.header-action-icon .md-tooltip li {
	float: left;
	width: 100%;
    text-align: center;
	padding: 5px;
}

.header-action-icon .md-tooltip a {
    font-size: 18px;
    line-height: 20px;
    color: white;
}

.middle-header {
    float: right;
	width: 100%;
	padding-bottom: 10px;
}

.right-middle-col {
    float: right;
    width: 50%;
}

.left-middle-col {
    float: left;
    width: 50%;
    text-align: left;
    line-height: 50px;
}

.top-tel {
    float: left;
}

.top-tel span {
    float: left;
    font-size: 26px;
    line-height: 30px;
    text-decoration: none;
	color: var(--linker_main_color);
}

.top-tel i {
    float: left;
    font-size: 26px;
    line-height: 30px;
	color: #989898;
}

.top-search {
    position: relative;
    float: left;
    color: var(--main_text_color);
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 18px;
}

.top-search i {
    width: 60px;
    height: 60px;
}

.top-search i.md-icons svg {
    width: 50px;
    height: 50px;
    fill: var(--maincolor);
}

.top-favorites {
    position: relative;
    float: left;
    color: var(--main_text_color);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ed893642;
}

.top-favorites i {
    float: right;
    width: 30px;
    padding: 7px 2px;
}

.top-favorites i.md-icons svg {
    float: right;
    width: 26px;
    height: 26px;
    fill: var(--maincolor);
}

.top-favorites-text {
    position: relative;
    float: right;
    font-size: 18px;
    padding: 0 5px;
}

.top-favorites-count {
    text-align: center;
    position: absolute;
    top: -5px;
    left: -18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 20px;
    background-color: var(--main_text_color);
}

.header-contact-container {
    position: relative;
    float: left;
    font-size: 18px;
    color: var(--main_text_color);
    cursor: pointer;
    text-decoration: none;
    outline: 0;
}

.header-contact-row {
    float: left;
    width: 100%;
    overflow: hidden;
}


.header-contact-row-name {
    float: right;
    width: 40px;
    font-size: 18px;
}

.header-contact-row-name i.md-icons {
    float: right;
}

.header-contact-row-tel {
    float: right;
    font-size: 18px;
}

.header-contact-row-tel a {
    float: left;
    /* width: 100%; */
    font-size: 18px;
    line-height: 22px;
    color: var(--main_text_color);
    text-decoration: none;
}

.header-contact-row-tel i {
    float: right;
    width: 30px;
    padding: 7px 2px;
}

.header-contact-row-tel i.md-icons svg {
    float: right;
    width: 26px;
    height: 26px;
    fill: var(--maincolor);
}

.header-contact-row-whatsapp {
    float: right;
    width: 40px;
    height: 40px;
    padding: 5px;
}

.header-contact-row-whatsapp a {
    float: right;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 20px;
    box-shadow: 0 0 0 0 rgb(67 198 84);
	transform: scale(1);
	animation: pulse 2s infinite;
}

.header-contact-row-whatsapp svg {
    float: right;
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgb(67 198 84 / 70%);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgb(67 198 84 / 0%);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgb(67 198 84 / 0%);
	}
}

/*MENU
-----------------------*/

header nav {
    float: none;
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header ul {
    display: flex;
    gap: 20px;
}
header nav a, #side-menu nav a, header nav span, #side-menu nav span {
    float: left;
    font-size: 22px;
    line-height: 40px;
	padding: 0 5px;
    color: var(--main_text_color);
    text-decoration: none;
    outline: 0;
	/* transition: all 0.3s; */
}

header .menu-main-menu-container > ul > li > a,  header .menu-main-menu-container > ul > li > span {
    line-height: 45px;
}

#side-menu nav .sub-menu a, #side-menu nav .sub-menu span {
    color: var(--main_text_color);
}

header nav li {
    float: left;
    line-height: 50px;
}

header nav li span:hover,
header nav li span:hover i,
header nav li a:hover,
header nav .sub-menu li a:hover,
header nav li a:hover i,
header nav li i:hover {
	color: var(--maincolor);
}

header li.menu-item {
	position: relative;
    padding: 0;
}

#side-menu li.menu-item {
	position: relative;
    margin: 5px 0;
    padding: 0;
}

header li.menu-item i {
    float: right;
    font-size: 30px;
    line-height: 50px;
    padding: 0 10px;
    color: #174174;
    text-decoration: none;
    outline: 0;
}

header ul.menu > li.current-menu-parent .sub-menu .current-menu-item a,
header ul.menu > li.current-menu-parent .sub-menu .current-menu-item i {
	color: #ffffff;
}

header .sub-menu {
    display: none;
    position: absolute;
    top: 45px;
    width: 250px;
    border-top: 10px solid transparent;
}

header li.menu-item:hover > .sub-menu,
header li.menu-item:focus > .sub-menu,
header li.menu-item:focus-within > .sub-menu {
    display: block;
}

#side-menu .sub-menu {
    display: none;
    position: absolute;
    top: 40px;
}

header .sub-menu li {
    float: right;
    width: 100%;
    background-color: white;
}


header .sub-menu li a {
    float: right;
    width: 100%;
	font-size: 18px;
	line-height: 36px;
    color: var(--main_text_color)!important;
}

header .sub-menu li i {
    float: right;
	font-size: 22px;
	line-height: 30px;
}


.open-sub-menu, .close-sub-menu {
    display: none;
}

.app-button a {
   height: 40px;
   margin: 25px 0;
   line-height: 40px;
   background-color: #E89820;
   padding: 0 20px;
}
.app-button a:hover {
	color: #fff;
   background-color: #E89820;
}

/*----------------------------------responsive------------------------------------*/

@media screen and (max-width: 1160px) and (min-width: 950px) {

header nav a, header nav span {
    font-size: 18px;
}

.header-main {
    width: calc(100% - 150px);
}

.header-logo {
    width: 150px;
}

.top-logo {
    padding: 25px 0;
}

.top-logo img {
    max-height: 50px;
}

header ul.menu > li {
    margin: 5px 5px;
}

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

#main-content {
    margin-top: 50px;
}

body.lf-fullwidth-header-transparent #main-content {
    margin-top: 0;
}

#side-menu nav a, #side-menu nav span {
	color: #3a454b;
}

header {
    /* background-color: var(--maincolor)!important; */
    height: 50px;
}

header nav {
	display: none;
}

.header-logo {
    width: 100%;
}

.header-main {
	position: absolute;
	top: 0;
	right: 0;
    width: 100px;
    height: 50px;
}

.top-search {
    width: auto;
    margin: 0;
    border-radius: 17px;
    padding: 0 10px;
    overflow: visible;
    border: none;
    background: transparent;
}

.top-search i {
	display: none;
}

.top-search i.md-icons svg {
    width: 40px;
    height: 40px;
}

.header-action-icon {
	display: block;
}

.header-action-icon .md-tooltip {
    top: 50px;
    right: 0;
    margin: 0;
    border-top: 10px solid transparent;
    background-color: transparent;
}

.header-top {
    display: none;
}

.header-languages {
    display: none;
}

.top-tel span {
    display: none;
}

.top-tel i {
    width: 50px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
}

.top-logo {
    float: right;
    height: 50px;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    width: calc(100% - 150px);
    text-align: center;
}

.top-logo:active, .top-logo:focus {
	background-color: transparent;
}

.top-logo img {
    max-height: 50px;
}

.top-logo-container {
    float: left;
    height: 50px;
    width: calc(100%);
    padding: 0 5px;
}

.top-logo-text {
    float: left;
    width: calc(100% - 65px);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
}

.top-logo-slogan {
    float: left;
    width: calc(100% - 65px);
    font-size: 14px;
    line-height: 15px;
    color: var(--main_text_color);
}

#logo {
    position: absolute;
    top: 0;
    left: calc(50% - 90px);
    width: 180px;
    height: 50px;
}

.site-name {
    font-size: 25px;
    line-height: 30px;
}

.slogan {
    font-size: 16px;
    line-height: 20px;
}

.menu-toggle {
	display: block;
	z-index: 999;
}

#side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -50px;
    width: 280px;
    height: 100%;
    background-color: var(--pagebackgroundcolor);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    z-index: 9999;
    -ms-transform: translateX(-280px);
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
    -webkit-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
}

.side-menu-open {
    -webkit-transition: transform 0.5s!important;
    transition: transform 0.5s!important;
    -ms-transform: translateX(0px)!important;
    -webkit-transform: translateX(0px)!important;
    transform: translateX(0px)!important;
}

.sub-menu {
    position: static!important;
}

.open-sub-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    width: 50px;
    height: 50px;
    background-color: var(--maincolor);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    line-height: 50px;
}

.close-sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0px;
    width: 50px;
    height: 50px;
    background-color: var(--maincolor);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    line-height: 50px;
}

.open-sub-menu i.md-icons , .close-sub-menu i.md-icons {
    width: 50px;
    height: 50px;
}

.open-sub-menu i.md-icons svg , .close-sub-menu i.md-icons svg {
    float: right;
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

#side-menu li.menu-item {
    position: relative;
    margin: 0;
    padding: 0;
}

#side-menu li.menu-item:hover .sub-menu {
    display: none;
}

#side-menu ul.sub-menu {
    float: right;
    width: 100%;
}

#side-menu .sub-menu li a {
	padding: 0 10px;
}

#side-menu nav {
    height: 100vh;
	overflow: auto;
    padding-left: 50px;
}

#side-menu nav a, #side-menu nav span {
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    font-size: 18px;
    line-height: 1;
    padding: 0 50px 0 10px;
}

#side-menu nav li {
	float: left;
	width: 100%;
	min-height: 50px;
}

#side-menu i {
    line-height: unset;
}

#side-menu .sub-menu {
    display: none;
    position: absolute;
    top: 60px;
    background-color: white;
    width: 250px;
	position: static!important;
}

#side-menu .sub-menu a {
    font-size: 16px;
}

#close-side-menu {
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#close-side-menu i {
    width: 50px;
    height: 50px;
}

#close-side-menu i svg {
    width: 40px;
    height: 40px;
	fill: var(--header_mobile_close_menu_toggle_color);
}

.app-button a {
    margin: 0;
}

.top-logo img.top-slogan {
    margin: 0 -15px;
}

.top-logo img {
    padding: 10px;
}

}
