#top-marquee{
	width: 100%;
	z-index: 9;
	display: block;
	position: relative;
	color: #fff;
	background: #FB6514;
}
#top-marquee .marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 14px 0;
	text-decoration: none;
	outline: none;
	display: block;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 0.14px;
}
#top-marquee .marquee .marquee__inner {
	display: flex;
	width: max-content;
	will-change: transform;
}
#top-marquee .marquee .marquee__content {
	display: flex;
	gap: 24px;
	align-items: center;
	white-space: nowrap;
	margin-right: 24px;
}
#top-marquee .marquee .marquee__content svg{
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	display: block;
}

#menu-triger {
    display: none;
}
.hamburger {
	width: 28px;
	height: 20px;
	position: relative;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	float: left;
}
.hamburger,.hamburger span {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg)
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #131218;
	border-radius: 1.5px;
	opacity: 1;
	left: 0;
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out
}
.hamburger span:nth-child(1) {
	top: 0
}
.hamburger span:nth-child(2),.hamburger span:nth-child(3) {
	top: 8px
}
.hamburger span:nth-child(4) {
	top: 16px
}
body.open-menu .hamburger span:nth-child(1) {
	top: 8px;
	width: 0;
	left: 50%;
	opacity: 0;
}
body.open-menu .hamburger span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.open-menu .hamburger span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.open-menu .hamburger span:nth-child(4) {
	top: 8px;
	width: 0;
	left: 50%;
	opacity: 0;
}
header{
	position: relative;
    z-index: 19;
}
#block-mob-menu{
	display: none;
	position: fixed;
	left: -120%;
	top: 64px;
	border-top: 1px solid #EAEAEE;
	width: 100%;
	bottom: 0;
	overflow: auto;
	background: #fff;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.open-menu #block-mob-menu{
	left: 0;
}
#block-mob-menu .btns-text{
	color: #5E5B6B;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin: 0 0 8px;
	text-align: center;
}
#block-mob-menu .wrap-btns{
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#block-mob-menu .btn-link-apple-store,
#block-mob-menu .btn-link-google-play{
	display: block;
	text-decoration: none;
	outline: none;
}
#block-mob-menu .btn-link-apple-store img,
#block-mob-menu .btn-link-google-play img {
	height: 32px;
	width: auto;
	display: block;
}
#block-mob-menu .wrap-menu{
	color: #131218;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	display: block;
	width: 100%;
	text-align: center;
}
#block-mob-menu .wrap-menu ul{
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	justify-content: center;
	list-style: none;
}
#block-mob-menu .wrap-menu ul li{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
#block-mob-menu .wrap-menu ul li + li{
	margin-top: 20px;
}
#block-mob-menu .wrap-menu a{
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	outline: none;
	color: #131218;
	position: relative;
}
#block-mob-menu .wrap-menu a img{
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

nav .link-tracking-api{
	margin-left: 32px;
}
nav .link-tracking-api img {
    margin-right: 8px;
}

footer .container-right a:hover{
	color: #FB6514;
}

.open-menu header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}

@media (max-width: 767px) {
    #menu-triger {
        display: block;
        float: right;
        padding: 6px 0;
    }
    #block-mob-menu{
		display: flex;
	}
    header .link-language{
    	display: none;
    }
    nav .link-tracking-api {
        margin-left: 16px;
    }
}