@charset "utf-8";
:root {
    --color_green: #8cbf3f;
    --color_blue: #004a9a;
    --color_gray: #4c4e4d;
}

.top_contact_bar {
    display: none;
    width: 100%;
    height: 40px;
    background-color: var(--color_green);
}
.top_contact_bar p{
    padding: 0 16px;
}
.top_contact_bar.active{
    position: fixed;
    bottom: 0;
    z-index: 49;
}
.top_contact_bar_center {
    width: 100%;
    max-width: 1170px;
    margin: auto;
    display: flex;
    line-height: 40px;
    justify-content: flex-end;
}

.top_contact_bar_center a {
    flex-direction: row-reverse;
    display: flex;
    margin: auto 10px;
}

.top_contact_bar_center a:hover {
    cursor: pointer;
    opacity: .6;
    transition: all .3s;
}

.top_contact_bar_center p {
    color: white;
    font-size: 0.9em;
    background-color: var(--color_green);
}

.top_contact_bar_center img {
    width: 20px;
    height: 20px;
    margin: 10px;
}

/*HEADER*/

label {
    position: absolute;
    opacity: 0;
}

header {
    font-family: rubik;
    background-color: #fff;
    height: 80px;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    z-index: 105;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    top: 0;
}

.header_center {
    width: 100%;
    max-width: 1170px;
    height: 100%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.logo {
    position: absolute;
    z-index: 15;
    display: flex;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 70px;
    width: 185px;
    top: 6px;
    left: 0;
    right: 0;
    margin: auto;
}

.logo img {
    height: 60px;
    width: 150px;
    margin: 5px auto;
}

/*
.logo img{
	width: 142px;
	height: 50px;
	}
.phone_navbar{
	width: 160px;
	display: none;
	padding-top: 0;
	margin: auto;
}
.phone_navbar a{
	font-size: 1.4em;
	color: #444349;
	text-align: center;
	display: block;
	margin: auto;
}
.phone_navbar a:hover{
	color: #5038bc;
}
.phone_navbar p{
	color: #5038bc;
	text-align: center;
	font-size: 1em;
	line-height: 14px;
}
*/
.nav_sub_box {
    display: none;
    background-color: white;
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.nav_sub_box a {
    padding: 15px !important;
}

.open_nav_sub_box {
    position: relative;
}

.open_nav_sub_box:hover .nav_sub_box {
    display: block;
}

.call_icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
    margin: 28px 18px;
    cursor: pointer;
    background-image: url("../svg/call.svg");
}

.call_icon:hover {
    background-image: url("../svg/call_hover.svg");
}

/*END HEADER*/

/*MOBILE NAVBAR*/

.mobile_navbar {
    height: 80px;
    line-height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background-color: white;
}

.header_bg {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    lest: 0;
    z-index: 3;
    background: white;
}

.menu_mobile {
    width: 100%;
    z-index: 2;
    position: absolute;
    text-align: right;
    /*	top: 80px;*/
    transition: 0.4s;
    background-color: var(--color_gray);
    box-sizing: border-box;
    padding: 10px;
    /*	left: -1000px;*/
    top: -850px;
    display: block;
}

.menu_mobile > ul {
    border: 1px solid white;
}

.menu_mobile > ul li a {
    box-sizing: border-box;
    height: 50px;
    font-weight: bold;
    padding-right: 10px;
    display: block;
    background-color: var(--color_gray);
    font-size: 1em;
    /*	font-family: rubik !important;*/
    color: white;
    line-height: 45px;
    border-top: 1px solid white;
    /*	border-bottom: 1px solid #555;*/
}

.menu_mobile > ul:nth-child(1) > li:nth-child(1) > a:nth-child(1) {
    border-top: none;
}

.menu_mobile > ul li a.active {
    font-family: rubik_bold;
    background-color: var(--color_blue);
    /*	color: #970e05038bce;*/
}

.menu_mobile li a:hover {
    color: white;
}

.menu_mobile li > ul li a {
    text-transform: none;
    border: none;
    box-sizing: border-box;
}

.open_sub_menu svg {
    height: 6px;
    width: 10px;
    margin-left: 16px;
    margin-top: 22px;
    float: left;
    /*	left: 10px;*/
    transition: all 0.1s ease;
}

.menu_mobile.show_menu ul li.open_sub_menu svg {
    left: 10px !important;
}

.open_sub_menu svg path {
    fill: #fff;
}

.menu_mobile li:hover > svg path {
    fill: #fff;
    transition: all 2s ease;
}

.nav_search_mpbile {
    width: 100%;
    height: 84px;
    background-color: white;
    position: absolute;
    top: -20px;
    /*	padding: 0 20px;*/
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: .4s ease-in-out;
}

.nav_search_mpbile input {
    width: calc(100% - 40px);
    font-family: rubik;
    font-size: 1em;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 11px 20px;
    margin: 20px 20px;
    text-align: right;
}

.nav_search_mpbile button.nav_search_btn {
    left: 20px;
}

.show_search {
    transition: .4s ease-in-out;
    top: 60px;
}

/*MOBILE NAVBAR*/

/*SUB MENU*/

.sub_menu {
    width: 100%;
    display: none;
}

.show_sub_menu {
    display: block;
    text-transform: none;
    transition: .4s ease-in-out;
}

.show_menu {
    /*		left: 0px;*/
    /*		display: block;*/
    top: 80px;
}


/*SUB MENU*/

/*ICON_BURGER*/

.icon {
    position: absolute;
    top: 10px;
    /*	left: 0px;*/
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 4;
}

.burger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color_gray);
    height: 2px;
    width: 18px;
    transition: .3s;
}

.burger:before,
.burger:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 18px;
    background-color: var(--color_gray);
    transition: .3s;
}

.burger:before {
    top: -6px;
}

.burger:after {
    top: 6px;
}

.icon.active .burger {
    background: rgba(0, 0, 0, 0);
}

.icon.active .burger:before {
    transform: rotate(45deg);
    background-color: var(--color_blue);
    top: 0;
}

.icon.active .burger:after {
    transform: rotate(135deg);
    background-color: var(--color_blue);
    top: 0;
}

/*
.icon:hover{
	opacity: 0.5;
}
*/
/*ICON_BURGER*/

/*NAVBAR*/

.navbar {
    display: none;
    z-index: 10;
    height: 40px;
}

.navbar > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar > ul li a {
    display: block;
    padding: 32px 10px;
    font-size: 0.9em;
    cursor: pointer;
    text-align: center;
    color: var(--color_gray);
    text-decoration: none;
    box-sizing: border-box;
}

.navbar > ul li a.active {
    font-weight: bold;
    color: var(--color_blue);
}

.navbar li a:hover {
    color: var(--color_blue);
    transition: all 0.1s ease;
}

.navbar li ul {
    list-style: none;
    z-index: 30;
    padding-right: 0;
    display: none;
    position: absolute;
    top: 120px;
}

.navbar li > ul li a {
    padding: 10px 20px 10px;
    height: 40px;
    color: white;
    text-transform: none;
    background-color: var(--color_gray);
    text-align: center;
}

.navbar li > ul li a:hover {
    color: white;
    text-decoration: underline;
}

.navbar li:hover > ul {
    display: block;
}

.navbar ul li a svg {
    height: 6px;
    width: 10px;
    margin-right: 7px;
    float: left;
    margin-top: 7px;
}

.navbar li a svg path {
    fill: var(--color_gray);
}

.navbar li a:hover > svg path {
    fill: var(--color_blue);
    transition: all 0.1s ease;
}

/*END NAVBAR*/
.contact_btn {
    font-weight: bold;
    /*background-color: var(--color_green);*/
    border: 1px solid var(--color_green);
    /*color: white;*/
    padding: 10px;
    border-radius: 8px;
    transition: .3s;
}

.contact_btn:hover {
    background-color: var(--color_green);
    color: white;
}

@media (min-width: 768px) {
    .navbar, .nav_search, .phone_navbar {
        display: block;
    }

    .icon, .menu_mobile, .header_bg, .mobile_navbar {
        display: none;
    }

    .top_contact_bar {
        display: block;
    }

    .logo {
        position: unset;
        margin: unset;
        font-weight: bold;
        font-size: 1.9em;
        line-height: 80px;
        width: unset;
    }

    .logo img {
        height: 60px;
        width: 150px;
        margin: 10px 20px;
    }
}

@media (min-width: 992px) {
    .navbar > ul li a {
        display: block;
        padding: 30px 15px;
        font-size: 1em;
        cursor: pointer;
        text-align: center;
        color: var(--color_gray);
        text-decoration: none;
        box-sizing: border-box;
    }
}