/* all */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* html */
html {
	font-size: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/* body */
body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    color: #121212;
    background: #fafafa;
}

/* container and classes */

.container {
    position: relative;
    max-width: 100rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}

#primarie {
    font-family: inherit;
	text-wrap: wrap;
    font-size: 1rem;
    font-weight: 700;
    color: #1a73e8;
    border: none;
    outline: none;
    line-height: 30px !important;
}
.menu {
	display:inline-flex
}
.header .menu .menu-section {
	display: inline-flex;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

.header {
    position: fixed;
	display: block;
	top: 120px;
	left: 0;
	width: 100%;
	height: auto;
	padding: 0.6rem 0;
	margin: 0 auto;
	z-index: 1;
	border: none;
	outline: none;
	background: #fafafa;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

}
@media (max-width: 768px) {
	.header {
		position: fixed;
		display: block;
		top: 70px;
		left: 0;
		width: 100%;
		height: auto;
		padding: 0.9rem;
		margin: -90px auto;
		z-index: 1;
		border: none;
		outline: none;
		background: #fafafa;
		-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	}
	.header .menu .menu-section {
		display: none !important;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
	}
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	flex-wrap: wrap;

}

.header-left-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
}

.navbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 82%;
	flex: 0 0 82%;
}

.header-right-trigger {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header .menu > ul > li {
	display: inline-block;
	line-height: 3.125rem;
	margin-left: 1.5rem;
}

.header .menu > ul > li > a {
	position: relative;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .dropdown-menu {
	position: absolute;
	width: 100%;
	height: auto;
	margin-top: 1.75rem;
	padding: 1rem 2rem;
	border: none;
	outline: none;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	border-radius: 0.25rem;
	border-top: 3px solid #1a73e8;
	background: #fafafa;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

}

.header .menu > ul > li .dropdown-menu > ul > li {
	line-height: 1;
}

.header .menu > ul > li .dropdown-menu > ul > li > a {
	width:14rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: #121212;
	text-rendering: optimizeLegibility;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-1-column {
	min-width: 16rem;
	max-width: 20rem;
	margin: auto;
}

.header .menu > ul > li .dropdown-menu.card-menu {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.header .menu > ul > li .dropdown-menu.card-menu > .item > ul > li {
	display: block;
	line-height: 1;
}

.header .menu > ul > li .dropdown-menu.card-menu > .item > ul > li > a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.3rem 0;
	color: #121212;
	text-rendering: optimizeLegibility;
	transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .dropdown-menu.menu-4-column {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 68rem;
    width: 100%;
    padding: 1.25rem 1rem;

}

.header .menu > ul > li .dropdown-menu.menu-4-column > .item {
	flex: 0 0 25%;
	padding: 0 1rem;
}

.header .menu > ul > li .dropdown-menu.menu-4-column > .item .title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.75rem 0;
	color: #1a73e8;
	text-transform: uppercase;
	text-rendering: optimizeLegibility;
	transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .dropdown-menu.menu-4-column > .item.text-center .title {
	text-align: center;
}

.header .menu > ul > li .dropdown-menu.menu-4-column > .item img.responsive {
	max-width: 100%;
	height: auto;
	margin-top: 0.75rem;
	object-fit: cover;
	vertical-align: middle;
}

.header .menu > ul > li .dropdown-menu.card-menu > .item > ul > li > a:hover,
.header .menu > ul > li .dropdown-menu > ul > li > a:hover,
.header-right-trigger a:hover,
.header .menu > ul > li:hover > a {
	color: #1a73e8;
}

.menu-mobile-header,
.menu-mobile-trigger {
	display: none;
}

/* elements */
a,
button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	border: none;
	background: none;
	text-decoration: none;
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

header {
	padding-top: 500px;
	width: 100%;
	height: 800px;
	position: relative;
	object-fit: cover;
}


/* media */
/* media */
@media (max-width:768px) {
	.menu-section {
		display: none;
	}
}

	@media(max-width:768px) {
		.menu-section {
			display: none;
		}
}
@media only screen and (max-width: 496px) {
	.search-bar,
	.facebook-icon,
	.asista-icon {
		display: none;
	}
}

@media only screen and (min-width: 993px) {
	.header .menu > ul > li.menu-item:hover .dropdown-menu {
		margin-top: 0.5rem;
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1200px) {
	.header-right-trigger {
		display: none;
	}
}

@media only screen and (max-width: 1200px) {
	.menu > ul > li > a {
		font-size: 0.9rem;
	}
	.navbar {
		flex: 0 0 50%;
	}
	.header-right-trigger {
		flex: 0 0 50%;
		font-size: 1rem;
	}
	.header .menu > ul > li {
		margin-left: 1rem;
	}
	.header .menu > ul > li .dropdown-menu.card-menu {
		left: 50%;
		transform: translateX(-50%);
	}
	.header .menu > ul > li .dropdown-menu.menu-4-column {
		max-width: 60rem;
	}
	.header .menu > ul > li .dropdown-menu.menu-4-column > .item {
		padding: 0 0.75rem;
	}
}

@media (max-width: 992px) {
	.menu-mobile-trigger {
		display: block;
	}
	.menu-mobile-header {
		display: flex;
		width: 100%;
		padding: 0.5rem 0;
		align-items: center;
		justify-content: space-between;
		background: #fafafa;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	}
	.menu-mobile-header .title {
		font-family: inherit;
		font-size: 1.1rem;
		font-weight: 700;
		line-height: 1.5;
		color: #121212;
	}
	.menu-mobile-header .menu-mobile-trigger {
		font-size: 1.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		color: #121212;
		transition: all 0.3s ease;
	}
	.menu-mobile-header .menu-mobile-trigger .icon-menu,
	.menu-mobile-header .menu-mobile-trigger .icon-close {
		font-size: 2rem;
	}
	.menu-mobile {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100vh;
		padding: 2rem;
		background: #fafafa;
		z-index: 999;
		overflow-y: auto;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	}
	.menu-mobile.active {
		display: block;
	}
	.menu-mobile ul {
		list-style: none;
	}
	.menu-mobile ul li {
		margin-bottom: 1rem;
	}
	.menu-mobile ul li a {
		font-family: inherit;
		font-size: 1.1rem;
		font-weight: 500;
		line-height: 1.5;
		color: #121212;
		text-decoration: none;
	}
}


.header .menu > ul > li .dropdown-menu.menu-4-column > .item .title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.75rem 0;
	color: #1a73e8 !important;
	text-transform: uppercase;
	text-rendering: optimizeLegibility;
	transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .dropdown-menu.menu-4-column > .item .title a {
	color: #1a73e8 !important;
}

.item.title a {
	color: #1a73e8 !important;
}

.bordered {
	border-top: 2px solid rgba(0,0,0,0.411);
}

.openbtn {
	display: none;
}

.openbtn {
            margin: 15px 30px;
            cursor: pointer;
            background: var(--brand);
            color: #fff;
            padding: .5rem .8rem;
            border: none;
            border-radius: .75rem;
            box-shadow: 0 4px 10px rgba(26, 115, 232, .25);
            transition: transform .15s ease, box-shadow .15s ease, background .2s;
        }
