.home-page {
  height: 100vh !important;
  background: #fff !important;
  overflow: hidden;
}

.home-page .Header-inner .menu {
  padding-top: 20px;
}

.home-page .shadow {
  display: block !important;
}

.Header .shadow {
  position: absolute;
  width: 100%;
  display: none;
  height: 27%;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, transparent 0, #020202fc 94%);
}

.trailer {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-bottom: -132px;
  top: -120px;
  text-align: center;
  box-shadow: inset 0px 5px 28px -5px #000000;
}
.trailer video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.Header {
  width: 100%;
  background: #790A00;
  position: -webkit-sticky;
  z-index: 999;
  position: sticky;
  top: 0;
  height: auto;
}
.Header .Header-inner {
  position: relative;
  /* padding: 10px 10% 0 10%; */
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}
.Header .Header-inner .search-area {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 999;
  left: 0;
  flex-direction: column;
  display: flex;
  top: 0;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.Header .Header-inner .search-area .input-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Header .Header-inner .search-area .search-title {
  margin-top: 8vh;
  object-fit: contain;
  width: 320px;
  display: none;
}
.Header .Header-inner .search-area input {
  width: 55vh;
  height: 59px;
  border-radius: 10px;
  transition: 0.3s;
  padding-right: 50px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
  top: 30px;
  border: 1px solid #212327;
  font-size: 1.3em;
  box-shadow: inset 0px 0px 14px 8px rgba(0, 0, 0, 0.1);
  color: black;
}
.Header .Header-inner .search-area input:focus, .Header .Header-inner .search-area input:hover, .Header .Header-inner .search-area input:active {
  box-shadow: inset 0px 0px 14px 8px rgba(0, 0, 0, 0.25);
}
.Header .Header-inner .search-area .submit-search {
  position: absolute;
  top: 31px;
  margin-left: 24%;
  display: flex;
  padding: 28px 14px;
  align-items: center;
  right: 0;
  background: transparent;
  border: none;
}
.Header .Header-inner .search-area .submit-search .fa-search {
  font-size: 28px;
  color: #333;
}
.Header .Header-inner .search-area .close-search {
  position: absolute;
  top: 10px;
  right: -30px;
  padding: 3px 6px;
  color: black;
}
.Header .Header-inner .search-area .close-search:hover i {
  transform: rotate(180deg);
}
.Header .Header-inner .search-area .close-search .fa-times {
  font-size: 23px;
  transition: 0.4s;
  color: #fff !important;
  -webkit-text-stroke: 1px black;
}
.Header .Header-inner .menu {
  display: flex;
  line-height: 100px;
  align-items: center;
  position: relative;
  max-width: 1200px;
  justify-content: space-between;
}
.Header .Header-inner .menu .main-logo img {
  height: 75px;
  transition: 0.3s;
}
.Header .Header-inner .menu .language {
  top: 10px;
  right: 20px;
  display: flex;
  height: 30px;
  color: #fff !important;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}
.Header .Header-inner .menu .language:first-child {
  margin-right: 3px;
  color: #fff;
}
.Header .Header-inner .menu .language:last-child {
  margin-left: 3px;
  color: #fff;
}
.Header .Header-inner .menu .language a {
  color: #fff;
}
.Header .Header-inner .menu .language a:hover {
  text-decoration: underline;
}
.Header .Header-inner .menu > ul {
  width: calc(100% - 180px);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.Header .Header-inner .menu > ul > li .mini-submenu {
  position: absolute;
  line-height: 28px;
  background: rgba(255, 255, 255, 0.98);
  padding: 4px;
  visibility: hidden;
  z-index: 2;
  opacity: 0;
  transition: 0.4s;
  top: 120px;
  pointer-events: none;
}
.Header .Header-inner .menu > ul > li .mini-submenu > li > a {
  display: block;
  transition: 0.3s;
  padding: 0px 12px;
}
.Header .Header-inner .menu > ul > li .mini-submenu > li > a:hover {
  background: #212327;
  color: #fff;
}
.Header .Header-inner .menu > ul > li:hover a:after {
  visibility: visible !important;
  -webkit-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
  transition: all 0.25s ease-out !important;
}
.Header .Header-inner .menu > ul > li > a {
  color: #fff !important;
  font-size: 1.3em;
  display: inline-block;
  line-height: 80px;
  position: relative;
  cursor: pointer;
}
.Header .Header-inner .menu > ul > li > a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 60px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: all 0.15s ease-in;
  z-index: 1;
}
.Header .Header-inner .menu > ul > li:hover .mini-submenu {
  top: 100px;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all;
}
.Header .Header-inner .menu > ul > li:hover .big-submenu {
  top: 100px;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all;
}
.Header .Header-inner .menu > ul > li .big-submenu {
  max-height: 81vh;
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  visibility: hidden;
  opacity: 0;
  width: 100%;
  transition: 0.4s;
  top: 120px;
  pointer-events: none;
  left: 0;
  line-height: 30px;
  /* height: auto !important; */
  padding: 30px 4% 10px 4%;
  display: flex;
  display: grid;
  overflow-x: hidden;
  overflow-y: scroll;
  grid-gap: 20px;
}
.Header .Header-inner .menu > ul > li .big-submenu > li {
  min-width: 23%;
}
.Header .Header-inner .menu > ul > li .big-submenu > li a {
  color: black;
  font-weight: 300;
  padding: 4px;
  transition: 0.1s;
}
.Header .Header-inner .menu > ul > li .big-submenu > li a:hover {
  color: #fff;
  background: #212327;
}
.Header .Header-inner .menu > ul > li .big-submenu > li a:hover i {
  transition: 0.1s;
  color: #fff;
}
.Header .Header-inner .menu > ul > li .big-submenu > li .d-flex {
  display: block;
}
.Header .Header-inner .menu > ul > li .big-submenu > li i {
  color: #818181;
  font-weight: 300;
  font-size: 10px;
  margin-right: 4px;
}
.Header .Header-inner .menu > ul > li .big-submenu > li > img {
  margin-right: 6px;
  width: 14px;
  margin-top: -4px;
}
.Header .Header-inner .menu > ul > li .big-submenu > li > span {
  color: #212327;
  font-weight: bold;
  font-size: 14px;
}
.Header .Header-inner .menu > ul > li .big-submenu > li > ul {
  margin-left: 20px;
  line-height: 1.9em;
}
.Header .Header-inner .menu .search-button {
  border: none;
  background: transparent;
  line-height: 0px;
  align-items: center;
}
.Header .Header-inner .menu .search-button:active {
  background: transparent;
}
.Header .Header-inner .menu .search-button i {
  font-size: 1.3em;
  margin-top: -4px;
}

.explore {
  display: inline-block;
  position: relative;
  text-align: center;
  top: 91vh;
  z-index: 0;
  color: #fff !important;
  font-family: "Trebuchet MS", sans-serif !important;
  line-height: 40px;
  letter-spacing: 8px;
  position: absolute;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}
.explore a {
  background: rgba(121, 10, 0, 0.7);
  padding: 2px 20px;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  font-weight: 400;
  border: 1.5px solid #4c0000;
  transition: 0.3s;
  font-family: revert !important;
}
.explore a:hover {
  border-radius: 8px;
  border-color: #790A00;
  background: rgba(255, 255, 255, 0.7);
  color: #790A00;
  padding: 2px 25px;
  font-weight: 800;
}
.explore button {
  padding: 2px 20px;
  height: 47px;
  transition: 0.3s;
  border-radius: 8px;
  background: rgba(121, 10, 0, 0.7);
  border: 1.5px solid #4c0000;
}
.explore button:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #790A00;
}
.explore button i {
  font-weight: 400;
}
.explore .arrow-down {
  margin-top: -3px;
  width: 13px;
  transition: 0.3s;
}

.home-page .menu .big-submenu {
  top: 130px;
}

.home-page .language {
  top: 28px !important;
}

.home-page .menu > ul > li:hover .big-submenu {
  top: 110px !important;
}

.home-page .menu .mini-submenu {
  top: 130px;
}

.home-page .menu > ul > li:hover .mini-submenu {
  top: 110px !important;
}

.bg-logo {
  position: absolute;
  width: 100%;
  height: 110%;
  top: 0;
  right: 0;
  display: flex;
  pointer-events: none;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.bg-logo img {
  pointer-events: none;
  width: auto;
  margin-left: auto;
  opacity: 0.07;
  height: 100%;
}

/*# sourceMappingURL=modern_header.css.map */
