/* HEADER */
body {
	padding: 0 !important;
}
@media (min-width: 75rem) {
    body:not(.home) {
        padding: 0 !important;
    }
}
.site-header {
    border-bottom: 1px solid black;
    background: white;
    height: 72px;
    left: 0;
    opacity: 1;
    padding: 0 0 0 20px;
    position: sticky;
    top: 0;
    transition: all .25s ease-in-out;
    visibility: visible;
    z-index: 3;
}
@media (min-width: 1024px){
	.site-header {
		padding: 0 20px !important;
	}
}
@media (min-width: 1450px) {
    .site-header {
        padding: 0 50px;
    }
}

.header-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    max-width: 100%;
}

.header-row {
    align-items: center;
    justify-content: space-between;
    -ms-flex-positive: 1;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    height: 100%;
}

/* LOGO */
.col_logo {
    padding-left: 20px;
    padding-right: 32px;
    border-right: 1px solid black;
    height: 72px;
    flex-basis: auto;
    -webkit-flex-basis: auto;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-grow: 0;
    -webkit-flex-grow: 0;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
}

@media (min-width: 768px) {
    .col_logo {
        padding-left: 1.25rem;
    }
}
@media (min-width: 1024px) {
    .col_logo {
        padding-right: 6rem;
    }
}

@media (max-width: 1023px) {
    .col_logo {
        border-right: 0;
        padding: 0;
    }
}

header .logo { 
	width: 6rem;
	height: 72px;
}
header .logo img,
header .logo svg {
    display: block;
    height: 100%;
    max-width: 100%;
}

@media (min-width: 440px) {
    header .logo {
        height: calc(100% - 3.33333vw + 14.66667px);
    }
}

@media (min-width: 1280px) {
    header .logo {
        height: 72px;
    }
}

/* NAV */
.col-nav {
	height: 100%;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    text-align: center;
    flex-basis: 0;
    -webkit-flex-basis: 0;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-shrink: 1;
    -webkit-flex-shrink: 1;
    max-width: 100%;
}
.contain-menu {
	height: 100%;
	width: 100%;
	padding-top: 0;
}
.nav {
    height: 100%;
    display: block;
    max-height: 100vh;
}
@media (max-width: 1023px) {
	.nav {
		background: #fff;
        bottom: 0;
        left: 0;
        opacity: 0;
        padding: 40px;
        position: fixed;
        right: 0;
        top: 0;
        visibility: hidden;
	}
}
@media (min-width: 1280px) {
    .nav {
        padding-right: 8px;
    }
}

@media (min-width: 1280px) {
    .nav {
        padding-left: 8px;
    }
}

.menu {
    list-style: none;
	display: flex;
	align-items: flex-start;
    /*gap: 24px;*/
    margin: 0;
    padding: 0;
    height: 100%;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .menu {
        align-items: center;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }
}

/* LINKS */
.menu li {
	height: 100%;
	width: 100%;
	text-align: start;
	flex-direction: row;
	display: flex;
	white-space: nowrap;
}
@media (min-width: 1024px) {
    .menu li {
        text-align: center;
        align-items: center;
    }
}

.menu li a.link {
    text-decoration: none;
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 5px;
    transition: all .25s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
}
.menu-element .item {
	gap: 1rem;
	align-items: center;
	width: 100%;
	height: 100%;
	display: flex;
}
/* HOVER */
.menu li.link:hover a {
    text-decoration: underline;
}

/* SUBMENU */
.has-submenu {
    position: relative;
}

.subMenus {
    top: 71px;
    right: -50px;
    background: white;
    border: 1px solid black;
    min-width: 200px;
    flex-direction: column;
    padding-right: .5rem;
    padding-left: .5rem;
    max-width: 100%;
}

.subMenus li {
    border-bottom: 1px solid #000;
    width: 100%;
    
    padding-bottom: 1rem;
    gap: 1rem;
    grid-column: span 1/span 1;
}
.subMenus li:first-child {
	padding-top: 1rem;
}
.subMenus li:last-child {
  border: 0;
  padding-bottom: 0;
}
.subMenus li a {
    line-height: 15px;
    padding-left: 0;
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0 5px;
    transition: all .25s ease-in-out;
}

@media (min-width: 1024px) {
    .subMenus {
        padding-bottom: 1rem;
        gap: 1rem;
        position: absolute;
    }
}

.square-marker {
    position: relative;
}

.subMenus a {
    padding: 12px;
}

/* SubMenusCorporate */
.has-megamenu {
    position: relative;
}

.subMenusCorporate {
    width: 100vw;
    background: white;
    max-width: 100%;
    overflow: hidden;
}

.subMenus.hidden,
.subMenusCorporate.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .subMenusCorporate {
		grid-template-columns: repeat(4, minmax(0, 1fr));
        display: grid;
    }
}

@media (min-width: 1024px) {
    .subMenusCorporate {
		border-bottom: 1px solid #000;
		position: fixed;           
		left: 0;                  
		right: 0;                  
		top: 72px;                 
		width: 100vw;
		max-width: 100vw;
		margin: 0;
		padding: 2rem 6rem;
		background: white;
		z-index: 1000; 
    }
}

.subMenusCorporate .column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subMenusCorporate a {
    text-decoration: none;
    color: black;
}

.subMenusCorporate .title {
    margin-bottom: 15px;
    font-family: Quartus, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 1150px) {
    .subMenusCorporate .title {
        font-size: 26px;
        line-height: 33px;
    }
}
.subMenusCorporate .column {
	text-align: left;
}
.subMenusCorporate .column a {
	font-family: Open Sans, sans-serif;
	font-size: 14px !important;
    font-weight: 400;
    line-height: 24px;
    padding: 0 5px;
    transition: all .25s ease-in-out;
    padding-left: 0;
}
@media (min-width: 1201px) and (max-width: 1350px) {
    .subMenusCorporate .column a {
        font-size: 11px !important;
    }
}
@media (min-width: 1024px) {
	.subMenusCorporate .column ul {
		display: block;
	}
	.subMenusCorporate .column ul li {
		width: 100%;
		padding-top: .5rem;
		max-width: 100%;
		height: auto;
		text-align: left;
	}
	.subMenusCorporate .column ul li:first-child {
		padding-top: 1rem;
	}
}
.subMenusCorporate ul li {
    display: block;
    padding-left: 0 !important;
    height: auto;
}
.subMenusCorporate ul li a:hover {
	text-decoration: underline;
}
@media (min-width: 1280px) {
    .subMenusCorporate ul li {
        padding-right: 8px;
    }
}

/* BURGER */
.burger {
    display: none;
    padding-right: 20px;
    cursor: pointer;
    border-left: 1px solid #000;
    height: 72px;
    max-height: 72px;
    padding-left: 20px;
	align-items: center;
    flex-grow: 0;
    -webkit-flex-grow: 0;
    max-width: 100%;
}
.burger .toggle_nav {
	display: block;
}
.burger .toggle_nav .toggle {
    display: block;
    height: 19px;
    margin: auto;
    position: relative;
    width: 30px;
}

.burger span {
    background: #7a9bb4;
    border-radius: 2px;
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}
.burger .toggle_nav .toggle span:first-child {
    margin-top: -2px;
    top: 50%;
}
.burger .toggle_nav .toggle span:nth-child(2) {
    top: 0;
}
.burger .toggle_nav .toggle span:nth-child(3) {
    bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1023px) {

	.contain-menu {
		height: auto;
	}
    .menu {
		padding-top: 2rem;
		z-index: 1;
        background: white;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .menu li:not(:first-child) {
        margin-top: 24px;
    }
    
    header .nav {
		padding: 40px;
    } 
    header .nav .menu li a {
        font-family: Open Sans, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        display: block;
        width: 100%;
    }
    
    header .nav .menu li li a {
        font-family: Open Sans, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        display: block;
        width: 100%;
    }

    .burger {
        display: flex;
    }
    
    .close_nav {
		position : absolute;
		z-index  : 3;
		opacity  : 0.6;
		cursor   : pointer;
		overflow : hidden;
		top      : 16px;
		right    : 16px;
		width    : 32px;
		height   : 32px;
	}
	
	.close_nav:before {
		content   : '+';
		position  : absolute;
		top       : 50%;
		left      : 50%;
		left: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) translateX(-50%) rotate(45deg);
		color     : #000;
		font-size : 32px;
	}
	
	.subMenus .square-marker {
        font-size: 16px !important;
        padding-left: 16px !important;
    }
	
	.square-marker::before {
		content: '';
		width: 8px;
		height: 8px;
		background-color: #7a9bb4;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.subMenusCorporate .title.square-marker:before {
        top: 31%;
    }

	.square-marker {
		padding-left: 16px;
		font-size: 16px;
	}
}

.nav {
	@media(max-width: 1023px){
		overflow-y: auto;
		overflow-x: hidden;
	}
	@media(max-width: 360px){
		padding: 30px;
	}
}
.closeSubMenu {
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    text-align: right;
}
.chevron {
	display: inline-block;
    float: right;
    height: 10px;
    margin-top: 7px;
    vertical-align: middle;
    width: 12px;
}
.chevron.chevron--flip {
	transform: rotate(-180deg) translateY(0);
}
@media (min-width: 1024px) {
    .closeSubMenu {
        display: none;
    }
}
.parent {
	height: 100%;
}

.hidden { display: none; }

@media (max-width: 1023px) {
    header.nav_open .nav {
        height: auto;
        opacity: 1;
        visibility: visible;
    }

	header.nav_open .nav {
		height: auto;
		opacity    : 1;
		visibility : visible;
	}
	
	.nav {
		z-index: 1;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.nav a {
		font-weight: 400;
	}
	.parent {
		width: 100%;
	}
	.parent .link {
		position: relative;
	}
	.parent.clicked a {
		font-weight: 700 !important;
	}
	
	.menu li {
		display: grid;
	}
	header .nav li .subMenus,
	header .nav li .subMenusCorporate {
		padding-right: .5rem;
		padding-left: .5rem;
		border: 0;
		flex-direction: column;
		display: flex;
	}
	header .nav li .subMenusCorporate {
		width: 100%;
	}
	header .nav li .subMenus li {
		margin-top: 10px;
        padding-bottom: 0;
        border-bottom: 0;
	}
	.subMenus li:first-child {
		padding-top: 0;
	}
	
	.subMenusCorporate .title {
        font-family: Open Sans, sans-serif;
        font-size: 16px;
        font-weight: 400;
        font-weight: 400 !important;
        line-height: 15px;
        margin-top: 10px;
        padding-bottom: 10px;
        text-transform: none;
    }
    
    .subMenusCorporate .title.square-marker.clicked {
	    font-family: Open Sans, sans-serif;
		font-weight: 700 !important;
	}
    
    .subMenusCorporate .column {
		gap: 0;
    }
	

}
@media(max-width: 360px){
	.nav {
		padding: 30px;
	}
}
.grid {
	display: grid;
}


@media (max-width: 1023px) {
    .subMenusCorporate ul li {
        padding-left: 40px;
    }
    
    header .nav li .subMenusCorporate { 
		margin-top: 8px;
    }
}

@media (max-width: 992px) {
	header .nav li .subMenusCorporate li {
        margin-top: 10px;
        padding-bottom: 10px;
        margin-top: 0;
    }
    header .nav li .subMenus {
        /*margin-top: 8px;*/
    }
}

@media (max-width: 360px) {
    .subMenusCorporate ul li {
        padding-left: 25px;
    }
}

.fake-right-block {
	height: 72px;
}
.cta-menu .separ {
    background-color: #e3e3e3;
    height: 40px;
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
}
.cta-menu {
	margin: 0 !important;
    padding: 0 5px !important;
    position: relative;
    transition: all;
}
.cta-menu.menu-account:hover:before {
    width: 100%;
}
.cta-menu:before {
	background-color: #7a9bb4;
    content: "";
    height: 7px;
    position: absolute;
    right: 0;
    top: 0;
    transition: width .3s ease;
    width: 0;
}

@media (min-width: 1280px) {
    header .nav li.menu-element {
        padding-right: 8px;
        padding-left: 8px;
    }
}
.fake-right-block ul {
	display: flex;
	height: 100%;
}
@media (max-width: 1023px) {
	.fake-right-block { display: none; }
}
.nav.nav2 {
    padding: 0 !important;
}
li.cta-menu {
	text-align: center;
	align-items: center;
	margin: 0 !important;
    padding: 0 5px !important;
    position: relative;
    transition: all;
    white-space: nowrap;
}
li.cta-menu.menu-account::before {
	background-color: #7a9bb4;
    content: "";
    height: 7px;
    position: absolute;
    right: 0;
    top: 0;
    transition: width .3s ease;
    width: 0;
}
li.cta-menu .cta-content {
	gap: 1rem;
	align-items: center;
	width: 100%;
	height: 100%;
	display: flex;
}
li.cta-menu .cta-content a {
	color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 5px;
    transition: all .25s ease-in-out;
    height: 100%;
    align-items: center;
    display: flex;
    gap: .5rem;

}

.menu-account img {
    width: 13px;
}
.menu-account.menu-account-mobile {
	display: none !important;
}
@media (max-width: 1023px){
	.menu-account.menu-account-mobile {
		display: block !important;
	}
}
.menu-account.menu-account-mobile a {
	position: relative;
}
.menu-account.menu-account-mobile a svg {
	position: absolute;
	right: 0;
	top: 0;
}

.nav.nav2 {
    padding: 0 !important;
}
/* temp while buttons not displayed */
.cta-menu.menu-call,
.cta-menu.menu-callback {
	width: 122px;
}
.cta-menu.menu-call .cta-content,
.cta-menu.menu-callback .cta-content {
	display: none;
}
/* end temp */

.cta-menu.menu-call img, 
.cta-menu.menu-callback img {
    width: 16px;
}
@media(max-width: 1023px){
	.menu-callback, .menu-call {
		display: none;
	}
}


@media (min-width : 1024px) and (max-width : 1128px) {
	header { 
		padding-right: 3rem !important;
	}
	header .nav li {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	header .nav li a {
		font-size: 10px !important;
	}
}

@media (min-width : 1129px) and (max-width : 1300px) {
	header .col_logo { 
		padding-right: 3rem !important;
	}
	header .nav li a {
		font-size: 10px !important;
	}
}

@media (min-width : 1201px) and (max-width : 1350px) {
	header .nav li a {
		font-size: 11px !important;
	}
}

@media (min-width : 1351px) and (max-width : 1372px) {
	header .nav li a {
		font-size: 12px !important;
	}
}

@media (min-width : 1450px) {
	header {
		padding : 0 50px;
	}
	header .nav {
		padding : 0 18px;
	}
}

@media (min-width: 440px) {
    header .nav li {
        padding-right: calc(-4.19048px + .95238vw);
        padding-left: calc(-4.19048px + .95238vw);
    }
    
    header .menu-element .subMenus li {
        max-width: 95%;
    }
}

@media (min-width: 768px) {
    header .col_logo {
        padding-left: 1.25rem;
    }
}

/* end HEADER */
