*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: ;
  --bodyFont: ;
  --primaryColor: ;
  --secondaryColor: ;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

section {
  padding: 60px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}
/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}
.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 50px;
  right: 15px;
}
.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}
.mm-navbar {
  z-index: 123;
  background: #565656;
}
.mm-navbar__title > span {
  color: #fff;
}
.mm-listitem:after {
  left: 0;
}
/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}
.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}
.mm-listitem.active {
  background: #878787;
}
/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*=========================== banner end ===========================*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;

}

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
  padding: 0;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .coming-soon-text {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-family: Arial, sans-serif;
  z-index: 1;
}

/* ========================== responsive ========================== */
@media (min-width: 1440px) {
}
@media (max-width: 1199px) {
  .video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video .coming-soon-text {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: white;
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    z-index: 1;
}
}
@media (max-width: 1023px) {
  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }
  /* mmenu end */
}
@media (max-width: 767px) {
}
@media (max-width: 479px) {
}
