@charset "UTF-8";
.after-before {
  position: absolute;
  content: "";
}

.img-default {
  float: left;
  width: 100%;
  height: auto;
}

.float-default, .menu-btn-bg .hamburger, .menu-btn-bg .title {
  float: left;
  width: 100%;
}

.left-menu-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 210px;
}
.left-menu-bg .left-menu {
  position: absolute;
  width: 100%;
  left: 20px;
  bottom: 75px;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform-origin: left bottom;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.left-menu-bg .left-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.2));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.left-menu-bg .left-menu.show {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  opacity: 1;
}

.menu_item_bg {
  position: relative;
  float: left;
  width: 100%;
}
.menu_item_bg .menu_item {
  float: left;
  width: 100%;
  height: 42px;
  line-height: 41px;
  /*text-transform: uppercase;*/
  padding: 0 8px 0 12px;
  font-family: "SVN-Gilroy", "Arial";
  text-transform: uppercase;
  -webkit-transition: all 180ms linear;
  -moz-transition: all 180ms linear;
  -o-transition: all 180ms linear;
  -ms-transition: all 180ms linear;
  transition: all 180ms linear;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  letter-spacing: 1px;
}
.menu_item_bg .menu_item.btm {
  letter-spacing: 0;
}
.menu_item_bg .menu_item span {
  font-size: 12px;
}
.menu_item_bg .menu_item i {
  position: relative;
  float: right;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  margin-right: 1px;
  /* color: #999; */
}
.menu_item_bg .menu_item i::before {
  position: absolute;
  content: "";
  z-index: 99;
  right: 0;
  bottom: 0;
  text-align: center;
  font-family: "Font Awesome 6 Pro";
  font-weight: 100;
}
.menu_item_bg:first-child .menu_item {
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.menu_item_bg:last-child .menu_item {
  -webkit-bottom-top-left-radius: 8px;
  -webkit-bottom-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.menu_item_bg:hover .menu_item,
.menu_item_bg .menu_item:hover {
  background: rgba(242, 97, 13, 0.6);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu_item_bg.active .menu_item,
.menu_item_bg .show_sub_menu .menu_item {
  background: #F2610D;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-btn-bg {
  position: fixed;
  left: 20px;
  bottom: 12px;
  width: 42px;
}
.menu-btn-bg .title {
  position: relative;
  height: 18px;
  margin-top: 0;
}
.menu-btn-bg .title:after {
  position: absolute;
  content: "MENU";
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
}
.menu-btn-bg.show .title:after {
  content: "CLOSE";
  letter-spacing: 1px;
}
.menu-btn-bg .hamburger {
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 6px 9px;
  background: rgba(242, 97, 13, 0.6);
  border: 1px solid rgba(242, 97, 13, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn-bg .hamburger div {
  position: relative;
  flex: none;
  width: 100%;
  height: 1px;
  background: white;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn-bg .hamburger div:before, .menu-btn-bg .hamburger div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: inherit;
  transition: all 0.4s ease;
}
.menu-btn-bg .hamburger div:after {
  top: 7px;
}
.menu-btn-bg .hamburger.show div {
  top: 50%;
  background: #FFF;
  transform: rotate(135deg);
}
.menu-btn-bg .hamburger.show div:before, .menu-btn-bg .hamburger.show div:after {
  top: 0;
  transform: rotate(90deg);
}
.menu-btn-bg .hamburger.show div:after {
  opacity: 0;
}
.menu-btn-bg .hamburger.show:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.menu-btn-bg .hamburger.show:hover div {
  transform: rotate(225deg);
}

/*=============================================Sub Menu=============================================*/
.sub_menu_bg {
  position: relative;
  position: absolute;
  /*height:232px;*/
  width: auto;
  /*padding:10px 20px 10px 0;*/
  right: -239px;
  top: 0;
  z-index: 9999;
  background: rgba(242, 97, 13, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: block;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  display: none;
}

.sub-menu-bg-f2 {
  position: relative;
  float: left;
  position: absolute;
  width: auto;
  right: -269px;
  bottom: 0;
  transform: translateY(50%);
  z-index: 9999;
  display: none;
}
.sub-menu-bg-f2 .sub-menu-box-f2 {
  float: left;
  width: 268px;
  margin: 0 0 0 0;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3 {
  position: relative;
  float: left;
  width: 100%;
  font-size: 14px;
  font-family: "SVN-Gilroy", "Arial";
  text-transform: none;
  line-height: 18px;
  color: #f2610d;
  background: white;
  padding: 11px 2px 12px 12px;
  border-bottom: 1px solid rgba(242, 97, 13, 0.1);
}
.sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Pro";
  color: #f2610d;
  font-size: 11px;
  width: 20px;
  height: 42px;
  line-height: 42px;
  right: 5px;
  top: 0;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3:hover {
  color: #ffffff;
  background: #050101;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3:hover::after, .sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3.active::after, .sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3.selected::after {
  color: #ffffff;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3.active, .sub-menu-bg-f2 .sub-menu-box-f2 .sub-menu-item-f3.selected {
  color: #ffffff;
  background: #f2610d;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .menu-thumb-bg-f3 {
  position: absolute;
  width: 380px;
  left: 269px;
  top: 0;
  background: white;
  padding: 8px 8px 0 8px;
  display: none;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .menu-thumb-bg-f3.bottom_thumb {
  top: auto;
  bottom: 0;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .menu-thumb-bg-f3 img {
  float: left;
  width: 100%;
  height: auto;
  background: #000;
}
.sub-menu-bg-f2 .sub-menu-box-f2 .menu-thumb-bg-f3 div {
  float: left;
  width: 100%;
  font-size: 14px;
  padding: 12px 2px 12px 2px;
  color: #f2610d;
  text-transform: none;
}

.sub_menu_box {
  position: relative;
  float: left;
  width: 238px;
  margin: 0 0 0 0;
}
.sub_menu_box .sub_menu_item {
  position: relative;
  float: left;
  width: 100%;
  height: 42px;
  font-size: 12px;
  font-family: "SVN-Gilroy", "Arial";
  font-weight: 500;
  color: white;
  padding: 0 2px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sub_menu_box .sub_menu_item span {
  position: absolute;
  width: 182px;
  line-height: 14px;
  top: 51%;
  transform: translate(0, -50%);
}
.sub_menu_box .sub_menu_item::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 300;
  width: 20px;
  height: 42px;
  line-height: 42px;
  right: 6px;
  top: 0;
}
.sub_menu_box .sub_menu_item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sub_menu_box .sub_menu_item:hover::after, .sub_menu_box .sub_menu_item.active::after, .sub_menu_box .sub_menu_item.selected::after {
  color: #ffffff;
}
.sub_menu_box .sub_menu_item.active, .sub_menu_box .sub_menu_item.selected {
  color: #ffffff;
  background: #f2610d;
}
.sub_menu_box .sub_menu_item.f2 {
  position: relative;
  cursor: pointer;
  font-family: "SVN-GilroySemiBold", "Arial";
  text-transform: uppercase;
  background: white;
}
.sub_menu_box .sub_menu_item.f2::after {
  font-size: 13px;
  content: "";
  font-weight: 500;
  right: 6px;
}
.sub_menu_box .sub_menu_item.f2 .menu-item-f2 {
  position: relative !important;
  color: #f2610d;
}
.sub_menu_box .sub_menu_item.f2:hover {
  background: #050101;
}
.sub_menu_box .sub_menu_item.f2:hover .menu-item-f2 {
  color: #ffffff;
}
.sub_menu_box .sub_menu_item.f2.active, .sub_menu_box .sub_menu_item.f2.selected {
  background: #f2610d;
}
.sub_menu_box .sub_menu_item.f2.active .menu-item-f2, .sub_menu_box .sub_menu_item.f2.selected .menu-item-f2 {
  color: #ffffff;
}
.sub_menu_box > .sub_menu_item:first-of-type {
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sub_menu_box > .sub_menu_item:last-of-type {
  -webkit-bottom-top-left-radius: 8px;
  -webkit-bottom-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.sub_menu_title {
  position: relative;
  float: left;
  width: 100%;
  font-size: 13px;
  line-height: 18px;
  color: white;
  background: #f2610d;
  font-weight: bold;
  padding: 12px 2px 13px 12px;
  border-bottom: 1px dotted rgba(242, 97, 13, 0.26);
  text-transform: uppercase;
}
.sub_menu_title::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Pro";
  color: white;
  font-size: 13px;
  width: 20px;
  height: 42px;
  line-height: 42px;
  right: 6px;
  top: 0;
  font-weight: 300;
}

.menu_thumb_bg {
  position: absolute;
  width: 380px;
  left: 269px;
  top: 0;
  background: white;
  padding: 8px 8px 0 8px;
  display: none;
}

.menu_thumb_bg.bottom_thumb {
  top: auto;
  bottom: 0;
}

/*.menu_thumb_bg.left{
	left:-381px;
}*/
/*.menu_thumb_bg:nth-child(5){
	margin-top:30px;
}*/
.menu_thumb_bg img {
  float: left;
  width: 100%;
  height: auto;
  background: #000;
}

.menu_thumb_bg div {
  float: left;
  width: 100%;
  /*height: 42px;
  line-height: 42px;*/
  font-size: 14px;
  padding: 12px 2px 12px 2px;
  color: #f2610d;
  /*text-transform: uppercase;*/
}

/*.menu_bg[lang="en"] .menu_thumb_bg div{
	font-size: 12px;
}*/
.hover_thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image:url(../thumbnail.jpg);*/
  background-size: cover;
  -webkit-transition: all 260ms linear;
  -moz-transition: all 260ms linear;
  -o-transition: all 260ms linear;
  -ms-transition: all 260ms linear;
  transition: all 260ms linear;
  -webkit-transition-delay: 110ms;
  /* Safari */
  -moz-transition-delay: 110ms;
  -o-transition-delay: 110ms;
  -ms-transition-delay: 110ms;
  transition-delay: 110ms;
  /*display:none;*/
}

.menu_bottom_bg {
  position: fixed;
  width: 318px;
  height: 60px;
  bottom: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 180ms linear;
  -moz-transition: all 180ms linear;
  -o-transition: all 180ms linear;
  -ms-transition: all 180ms linear;
  transition: all 180ms linear;
}

.menu_bottom_bg.bg {
  background: rgba(0, 0, 0, 0.48);
}