.new-custom-header {
	padding: 5px 0 0;
}

.new-custom-header .container {
	max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.new-custom-header  .header-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
	
}

.new-custom-header .logo-side .main-logo {
	display: inline-block;
	width: 196px;
	margin-bottom: 39px;
}

.new-custom-header .logo-side .main-logo img {
	max-width: 100%;
}

.new-custom-header ul.main-nav  {
	display: flex;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.new-custom-header ul.main-nav >li {
	margin-left: 40px;
	padding-bottom: 29px;
	position: relative;

}

.new-custom-header ul.main-nav li:hover ul {
	opacity: 1;
	visibility: visible;
}

.new-custom-header ul.main-nav  li a {
	color: #00205b;
}

.new-custom-header  ul.main-nav li a:hover {
	color: #78be20;
}

.new-custom-header ul.main-nav li > a {
	font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
    text-decoration: none;
    font-family: "Open Sans","sans-serif";
    padding-left: 20px;
	
}

.new-custom-header ul.main-nav >li > a:before {
	content: '';
	position: absolute;
	width: 11px;
	height: 7px;
	background-image: url(https://f.hubspotusercontent00.net/hubfs/5436902/drop-icon-blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	left: 0;
	top: 16px;
}

.new-custom-header ul.main-nav li ul {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	background: #fff;
    padding: 25px 30px;
    left: 0;
    top: 100%;
    min-width: 260px;
    list-style-type: none;
}

.new-custom-header ul.main-nav li:last-child ul {
	left: auto;
	right: 0;
}

.new-custom-header ul.main-nav  li ul:before {
	content: '';
	position: absolute;
    width: 100%;
    height: 1px;
    top: 0px;
    left: 0;
    background: #eee;
}

.new-custom-header ul.main-nav li ul li {
	margin-bottom: 13px;
}

.new-custom-header ul.main-nav li ul li:last-child {
	margin-bottom: 0;
}

.new-custom-header ul.main-nav li ul a {
	font-size: 14px;
	text-decoration: none;
	color: #00205b;
	font-family: "Open Sans","sans-serif";
	font-weight: 600;
	line-height: 1.2;
    display: inline-block;
}

.new-custom-header .request-block {
	text-align: right;
	margin-bottom: 16px;
}

.new-custom-header .request-block a {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
    line-height: 1.2;
	font-family: "Open Sans","sans-serif";
	color: #00a9ce;
	text-decoration: none;
}

.mobile-menu-icon {
	display: none;
}

.new-custom-header ul.main-nav li > span {
	display: none;
}

.new-custom-header .toggle-menu {
    display: none !important;
    width: 40px;
    height: 23px;
    padding: 3px;
    z-index: 100;
    border: none;
    left: 30px;
    right: auto;
    top: 56px;
    background-color: transparent;
    box-sizing: border-box;
    cursor: pointer;
}
.new-custom-header .toggle-menu #sandwich {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 200;
}
.new-custom-header .toggle-menu span {
    display: block;
}
.new-custom-header .toggle-menu .sw-topper {
    position: relative;
    top: 0;
    width: 34px;
    height: 3px;
    background: #00205b;
    border: none;
    border-radius: 4px 4px 4px 4px;
    transition: transform 0.5s, top 0.2s;
    /* transition-delay: 0.2s, 0s; */
}
.new-custom-header .toggle-menu .sw-bottom {
    position: relative;
    width: 34px;
    height: 3px;
    top: 6.6px;
    background: #00205b; 
    border: none;
    border-radius: 4px 4px 4px 4px;
    transition: transform 0.5s, top 0.2s;
    transition-delay: 0.2s, 0s;
}
.new-custom-header .toggle-menu .sw-footer {
    position: relative;
    width: 34px;
    height: 3px;
    top: 13.5px;
    background: #00205b;
    border: none;
    border-radius: 4px 4px 4px 4px;
    transition: all 0.5s;
    transition-delay: 0.1s;
}
.new-custom-header .toggle-menu:focus {
    outline: none;
}
.new-custom-header .toggle-menu.menu-active .sw-topper {
    top: 10px;
    transform: rotate(45deg);
}
.new-custom-header .toggle-menu.menu-active .sw-bottom {
    top: 6px;
    transform: rotate(-45deg);
}
.new-custom-header .toggle-menu.menu-active .sw-footer {
    opacity: 0;
    top: 0;
    transform: rotate(180deg);
} 

@media screen and (max-width: 991px) {
	.new-custom-header {
		padding: 0;
	}

	.new-custom-header .header-wrap {
		-webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
       	padding:  25px 0;
	}

	.new-custom-header .logo-side .main-logo {
		margin: 0;
	}

	.new-custom-header  .header-wrap .menu-side {
		position: absolute;
	    width: calc(100% + 30px);
	    top: 100%;
	    left: -15px;
	    background: #fff;
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: reverse;
	        -ms-flex-direction: column-reverse;
	            flex-direction: column-reverse;
	    -webkit-box-align: start;
	        -ms-flex-align: start;
	            align-items: flex-start;
	    border-top: 1px solid #ededed;
	    border-bottom: 1px solid #ededed;
	    padding: 35px 15px;
	    box-sizing: border-box;
	    opacity: 0;
    	visibility: hidden;
    	transition: all .3s;
	}

	.new-custom-header  .header-wrap .menu-side.active {
		opacity: 1;
		visibility: visible;
	}

	.new-custom-header ul.main-nav {
		display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	        -ms-flex-direction: column;
	            flex-direction: column;
	    -webkit-box-align: start;
	        -ms-flex-align: start;
	            align-items: flex-start;
	}

	.new-custom-header ul.main-nav>li {
		margin-left: 0;
		position: relative;
		padding-left: 30px;
		padding-bottom: 0;
    	margin-bottom: 25px;
	}

	.new-custom-header ul.main-nav li a br {
		display: none;
	}

	.new-custom-header ul.main-nav li ul {
		display: none;
		position: static;
		opacity: 1;
		visibility: visible;
		transition: none;
		min-width: auto;
	}

	.new-custom-header ul.main-nav li > a {
		padding-left: 0;
	}

	.new-custom-header ul.main-nav li > a:before {
		display: none;
	}

	.new-custom-header ul.main-nav li.menu-item-has-children::after {
		display: inline-block;
	    position: absolute;
		content: '+';
	    left: 0;
	    font-family: "Open Sans","sans-serif";
	    color: #00205b;
	    font-size: 24px;
	    line-height: 1;
	    top: 0;
	    cursor: pointer;
	}

	.new-custom-header ul.main-nav li.menu-item-has-children.is-active::after{
		color: #78be20;
		top: -2px;
    	left: 2px;
	}

	.new-custom-header li.main-nav__item li.menu-item-has-children.is-active::after:hover{
		color: #78be20;
	}

	.new-custom-header .request-block {
		margin: 0;
	    width: 100%;
	    text-align: left;
	    margin-top: 15px;
	    margin-bottom: 0;
	}

	.new-custom-header .request-block a {
		font-size: 16px;
	}

	.new-custom-header .toggle-menu {
		display: block !important;
	}

	.new-custom-header .main-nav__item ul {
		margin: 20px 0 10px;
		padding: 0;
	}

	.new-custom-header .main-nav__item ul:before {
		display: none;
	}
}
