
/* Navigation header */

#navigation-header {
	background-color: #4C8FFC;
	padding-top: 12px;
	padding-bottom: 12px;
}

#navigation-header .content {
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content a {
	text-decoration: none;
}

.content .phone-link	span{
	font-family: 'OpenSans-Regualar', sans-serif !important;
	margin-left: 8px;
	font-size: 16px !important;
	
	color:black;
}
.content .phone-link{
	text-decoration: none;
}
.content .phone i { font-size: 16px; color:black }


.content .right-block { display: flex; }

.content .right-block .search-input { display: flex; }

.right-block .label {
	position: relative;
	
	padding: 2px 15px 2px 11px;
	font-size: 17px;
	background-color: transparent;
	display: -webkit-box;
	display: flex;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
  }
  
  
  .right-block .input {
	border: 0;
	outline: 0;
	background: none;
	font: inherit;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	
	width: 0;
	-webkit-transition: width 0.3s;
	transition: width 0.3s;
	max-width: 257px;
	border-bottom: 1px solid white;
	color:white;
	-webkit-appearance: none;
  }
  
  .right-block .input::placeholder{
	  color:white;
  }
  .open .input {
	width: 70%;
	max-width: 300px;
  }
  
  .right-block .button {
	background: none;
	border: 0;
	outline: 0;
	padding: 4px;
	left: 19px;
	top:2px;
	width: 30px;
	height: 30px;
	margin-right: 4px;
	color: white;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	cursor: pointer;
  }
  
  .open .button {
	
  }

.content .right-block .login-btn button {
    padding: 6px;
    padding-left: 36px;
    padding-right: 36px;
    letter-spacing: 2px;
    border: 2px solid white;
    color: white;
    background-color: inherit;
    /*width: 80px;*/
    font-weight: normal;
    text-transform: uppercase;
	font-size: 14px;
	
	position: relative;
}

.content .right-block .login-btn button:hover {
	transition: all .2s linear;
    cursor: pointer;
    background-color: white;
    color: inherit;
}







/* Navigation */

#navigation { background-color: #2C346E; }

#navigation .navigation-content {
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navigation-content .navigation-title img {
	width: 200px;
    position: relative;
    top: 4px;
}

.navigation-content .navigation-title:hover { cursor: pointer; }

.navigation-content .navigation-list {
	display: flex;
	color: white;
}

.navigation-list .navigation-list-item:last-child { margin-right: 0; }

.navigation-list-item .title {
	/*height: 100%;*/
}

.navigation-list-item .title div {
	text-decoration: none;
	color: white;
	padding-right: 12px;
	padding-left: 12px;
	padding-bottom: 28px;
	padding-top: 28px;
	/*height: 100%;*/
}

.navigation-list-item .title i {
	font-size: 14px;
	margin-left: 12px;

	display: none;
}

.navigation-list-item:hover {
	transition: all .2s linear;
	background-color: #1E2242;
	cursor: pointer;
}

.navigation-list-item:hover .dropdown { display: block; }

.navigation-list-item .dropdown {
	display: none;
	position: absolute;
	min-width: 200px;
	z-index: 1000;
}

.navigation-list-item .dropdown:hover { cursor: default; }

.navigation-list-item .dropdown .real-dropdown {
    background-color: #2C346E;
    margin-top: 0px;
    
    padding-top: 0;
    padding-bottom: 0;

	box-shadow: 0px 0px 44px -7px rgba(0,0,0,0.4);
}

.navigation-list-item .dropdown .real-dropdown:hover { cursor: pointer; }

.navigation-list .navigation-list-item:last-child .dropdown { min-width: 160px; }

.dropdown .dropdown-item a {
	text-decoration: none;
	color: white;
	line-height: 18px;
	display: block;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 24px;
	padding-top: 24px;
	text-transform: uppercase;
	font-family: 'Raleway-Light', sans-serif;
	font-size: 14px;
}

li.dropdown-item :hover {
    background-color: #1e2242;;
}
/* .dropdown .dropdown-item a:hover { background-color: #1e2242; } */

.dropdown .dropdown-item:last-child a { border-bottom: 0; }

.dropdown .dropdown-item div {
	width: calc(100% - 20px * 2);
	margin: auto;
	border-bottom: 1px solid #3F488B;
}

.dropdown .dropdown-item:last-child div { display: none; }



#sandwichmenu {
	margin: 5px 0 0 0;  text-align: center;
	display: none;
}
.tpl_hamburger svg {
	/*height: 20px;*/
	/*width: 60px;*/
}



.tpl_hamburger svg {
	cursor: pointer;  
	height: 30px;  
	transform: translate3d(0px, 0px, 0px);  

	width: 36px;
}

svg:not(:root) {overflow: hidden;}

.tpl_hamburger path.top, .tpl_hamburger path.bottom {
    stroke-dasharray: 240px, 950px;
}

.tpl_hamburger path {
    fill: none; 
    stroke: #fff; 
    stroke-dashoffset: 0; 
    stroke-linecap: round; 
    stroke-width: 40px;
    transition: stroke-dashoffset 0.4s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s, 
    	stroke-dasharray 0.4s cubic-bezier(0.25, -0.25, 0.75, 1.25) 0s;
}

.tpl_hamburger path.middle {stroke-dasharray: 240px, 240px;}



.tpl_hamburger.active path.top, .tpl_hamburger.active path.bottom {
    stroke-dashoffset: -650px;
}

.tpl_hamburger path.top, .tpl_hamburger path.bottom {
    stroke-dasharray: 240px, 950px;
}

.tpl_hamburger.active path.middle {
    stroke-dasharray: 1px, 220px;
    stroke-dashoffset: -115px;
}

.js_menu { display: none; }
.js_menu.active { display: block; }


@media screen and (max-width: 1200px) 
{
	#navigation-header .content  {
		width: 100%;
		margin: 0;
		padding-left: 40px;
		padding-right: 40px;
	}

	#navigation .navigation-content {
		width: 100%;
		margin: 0;
		padding: 40px;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-right: 28px;
	}

	.content .phone span { display: none; }

	.navigation-list-item .title {
		padding: 12px;
		padding-left: 40px;
		padding-right: 40px;
		/*text-align: center;*/
	}

	.navigation-list-item .title div {
		display: inline;
		padding: 0;
	}

	.navigation-list-item .title i.fa-angle-down { display: inline; }

	.navigation-list-item .title i.fa-angle-down,
	.navigation-list-item .title i.fa-angle-up { float: right; }


	.navigation-list-item .dropdown .real-dropdown { margin-top: 0; }

	.content .phone i {
		color: white;
		font-size: 18px;
		position: relative;
	    top: 2px;
	}

	.content .right-block { justify-content: flex-end; }

	/* .content .right-block .search-input input {
	    width: 140px;
		font-size: 10px;
		-webkit-appearance: none;
		-webkit-border-radius: 0;
	} */

	.content .right-block .login-btn button { font-size: 10px; }

	/* navigation menu */

	#sandwichmenu { display: block; }

	.navigation-content .navigation-list {
		position: absolute;
		top: 114px;
		left: 0;
		width: 100%;
		z-index: 10;
		flex-direction: column;
		background-color: #2C346E;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s linear;
	}

	.navigation-list .navigation-list-item { width: 100%; }

	.navigation-list .navigation-list-item:last-child { margin-right: 0; }


	.navigation-list-item .title div {
		width: 100%;
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.navigation-list-item:hover, .navigation-list-item:active {
		transition: max-height 0.25s linear;	
		background-color: #1E2242;
	}

	.navigation-list-item .dropdown {
		display: block;
		position: inherit;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s linear;
	}

	.dropdown .dropdown-item a {
		text-decoration: none;
		display: block;

		/* border-bottom: 1px solid #2C346E; */
		padding-bottom: 16px;
		padding-top: 16px;
		font-size: 10px;
		/*text-transform: uppercase;*/
		/*font-family: 'Raleway-Light', sans-serif;*/
	}

	.dropdown .dropdown-item:last-child a { border-bottom: 0; }
}

@media screen and (max-width: 475px)
{
	#navigation .navigation-content { padding: 12px; padding-right: 0; }
	.content .phone span { display: none; }

	#navigation-header .content  {
		padding-left: 12px;
		padding-right: 12px;
	}

	#navigation .navigation-content .navigation-title img { max-width: 140px; }

	.navigation-list-item .title {
		padding-left: 12px;
		padding-right: 12px;
	}
	.content .right-block .login-btn button {
		margin-top: 3px;
	}
}

@media screen and (max-width: 375px)
{
	.content .right-block .login-btn button { 
		padding-left: 8px; 
		padding-right: 8px;  
	}
	
	.content .right-block .search-input button { font-size: 10px; }
	.content .right-block .search-input button i { font-size: 10px; } 
}


#searchform {
    margin: auto;
	margin-top: auto;
}
