@charset "UTF-8";

/* Header */
.header-menu .menu { display: block !important; }
.header-menu .wrap-nav-icon { display: none; }
.header-menu .menu li.selected > a { border-color: #fff; }
.header-menu .menu .has-submenu a:after { display: none; }
.header-menu .menu li .submenu.show {
	position: absolute;
	top: 42px;
	padding: .75em .5em;
	background: #fff;
	box-shadow: 0 6px 10px #333;
}
.header-menu.small-header .menu li .submenu { top: 55px; box-shadow: 0 6px 10px #dedede; }
.header-menu .menu li .submenu:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 40px;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;	
}
.header-menu .menu li .submenu li a { min-width: 215px; line-height: 20px; text-align: left; text-transform: inherit; }
.header-menu .menu li .submenu li a:hover { opacity: .8; }

.logo-img {
  width: 100px;
  height:100px;
  position: relative;
  right: 100px;
}

/* Footer */
.wrap-copyright .container a { position: relative; display: inline-block; }

/* Go to top btn */
.go-top {
    display: none;
    z-index: 10;
    position: fixed;
    right: 2em;
    top: calc(50% - 50px);
    padding: 1.75em;
    background: rgba(0,0,0,.95) url('../../img/icons/arrow.svg') center center no-repeat;
    background-size: 50%;
    border-radius: 50%;
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
}
.go-top.show { display: block; }

/* Exception for small desktop */
@media only screen and (min-width : 1024px) and (max-width : 1409px) {
	.header-menu .wrap-nav-icon { display: block; }
	.header-menu .menu { display: none !important; }
	.header-menu .menu {
	    position: fixed;
	    right: 0;
		top: 0 !important;
	    transform: none;
	    height: 100vh;
	    min-height: 100vh;
	    padding: 8em 2.5em 1em 2.5em;
	    background: #fff;
	    box-shadow: 0 0 5px #dadfe3;
	}
	.header-menu .menu.show { display: block !important; }
	.header-menu .menu li {
	    display: block;
	    margin-bottom: 1.5em;
	    text-align: center;
	}
	.header-menu .wrap-nav-icon {
		z-index: 2;
	    position: absolute;
	    right: 20px;
	    top: 50%;
	    transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	}
}

@media only screen and (max-width : 1409px) {
	.menu-open .small-header.header-menu { padding: 0; }
	.header-menu .menu {
		position: fixed;
		right: 0;
		top: 86px;
		transform: none;
		height: 100vh;
		min-height: 100vh;
		padding: 1em 2.5em 1em 2.5em;
		background: #fff;
		box-shadow: 0 0 5px #dadfe3;
	}
	.header-menu .menu.show { top: 0; width: 100%; padding-top: 12em; }
	.small-header.header-menu > .container { padding-top: 0; padding-bottom: 0; }
	.header-menu .menu li { display: block; margin-bottom: 1.5em; text-align: center; }
	.header-menu .menu li a { display: inline-block;  font-size: 19px; color: #000; }
	.home .header-menu .menu li a { color: #000; }
	.header-menu .menu li.selected > a { color: #000; border: none; font-weight: 700; }
	.header-menu .menu li .submenu { margin-top: 1em; }
	.header-menu .menu li .submenu.show {
		position: inherit;
		top: inherit;
		padding: 0;
		background: #fff;
		box-shadow: none;
	}
	.header-menu .menu li .submenu li a { text-transform: inherit; font-size: 16px; text-align: center; }
	.header-menu .menu .has-submenu > a:after { width: 17px; height: 14px; margin-top: -3px; }
	.header-menu .menu .has-submenu > a:after {
		content: '';
		display: inline-block;
		vertical-align: middle;
		width: 17px;
		height: 14px;
		margin-left: 5px;
		margin-top: -3px;
		background: url('../../img/icons/arrow-submenu.svg') center center no-repeat;
		background-size: 100%;
	}
	.header-menu .menu .has-submenu.move-arrow > a:after { -webkit-transform: rotate(90deg); transform: rotate(90deg); }

