/* Regular */
@font-face {
  font-family: "Joey-Regular";
  src: url("../fonts/Joey-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: "Joey-Light";
  src: url("../fonts/Joey-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Light Italic */
@font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Light Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: "Joey-Medium";
  src: url("../fonts/Joey-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Medium Italic */
@font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Medium Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Joey-Bold";
  src: url("../fonts/Joey-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Heavy */
@font-face {
  font-family: "Joey-Heavy";
  src: url("../fonts/Joey-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Heavy Italic */
@font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Heavy Italic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Regular */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
} */
/* Italic */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
} */
/* Medium */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
} */
/* Medium Italic */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Medium Italic.otf")
    format("opentype");
  font-weight: 500;
  font-style: italic;
} */
/* Bold */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
} */
/* Bold Italic */
/* @font-face {
  font-family: "Joey";
  src: url("../fonts/Joey-Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
} */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Joey", sans-serif;
}
.joey-bold {
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 0.375rem;
}
::-webkit-scrollbar-track {
  background: violet;
}
::-webkit-scrollbar-thumb {
  background: #0f003b;
}
h1,
h2,
h3,
strong {
  font-weight: bold;
}
.Mycontainer {
  max-width: 1366px;
  margin: auto;
  padding: 0 11px;
}
/* body {
  overflow: hidden;
} */

/* header section */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.header .menubar {
  display: flex;
  align-items: center;
/*   justify-content: space-between; */
  background-color: #fff;
  padding: 2px 5px;
  border-radius: 22px;
}
.header .menu .logo {
  display: none;
}
.header .menubar .logo {
  width: 21%;
}
.logo img {
  width: 100%;
}
.header .menu ul {
  list-style: none;
  padding: 0;
  margin: auto;
}
.header .menu ul li {
  display: inline-block;
  text-decoration: none;
}
.header .menu .dropdown {
  position: relative;
}
.header .menu a {
  text-decoration: none;
  color: #0f003b;
  font-size: 15px;
  font-family: "Joey-Bold";
  text-transform: capitalize;
  line-height: 1.5;
  display: block;
  font-weight: 700;
}
header .menu > ul > li > a {
  padding: 24px 0px;
}
.header .menu > ul > .dropdown > a {
  padding-right: 8px;
}
.header .menu i {
  font-size: 10px;
/* 	font-family: "Joey-Bold"; */
  pointer-events: auto;
  user-select: none;
  position: absolute;
  color: #0f003b;
  top: calc(50% - 5px);
}
.header .menu > ul > li > i {
  right: 0;
}
.header .menu ul li {
  padding: 0px 5px;
}
/* .header .menu ul li:not(:last-child) {
  margin-right: 40px;
} */
.level-1 {
  background-color: #fff;
}
.level-2 {
  background-color: #fff;
}
.menuUlLevel2 li {
  width: 100%;
}
.level-3 {
  background-color: #fff;
}
.level-4 {
  background-color: #fff;
}
.header .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 254px;
  /* background: gainsboro; */
  box-shadow: 0 0 5px rgba(0, 0%, 0%, 0.5);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}
.header .menu .sub-menu-right {
  left: 100%;
  top: 0;
}
.header .menu .sub-menu-left-level-2 {
  top: 100%;
  left: auto;
  right: 0%;
}
.header .menu .sub-menu-left-level-3 {
  top: 0;
  left: auto;
  right: 100%;
}
.header .menu li:hover > .sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}
.header .menu .sub-menu a {
  padding: 6px 24px;
}
.header .menu .sub-menu span {
  background-image: linear-gradient(rgb(237 236 236), rgb(237 233 233));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
	font-family: "Joey-Bold";
}
.header .menu .sub-menu li:hover > a > span {
  background-size: 100% 1px;
}
.header .menu .sub-menu i {
  transform: rotate(-90deg);
  right: 5%;
}
.header-right {
  display: flex;
}
.header-right > * {
  margin-left: 25px;
}
.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: rgb(237 233 233);
  font-size: 16px;
	font-family: "Joey-Bold";
}
.header-right .open-menu-btn {
  display: none;
}
.header .menu .close-menu-btn {
  display: none;
}

.header-right .fa.fa-bars {
  display: none;
}
.header_wrapper .navbar {
  padding: 0.9375rem 0;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header {
    padding: 12px 0;
  }
  .header .menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    background-color: #252525;
    padding: 15px 11px 30px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .header .menu.open {
    transform: translateX(0) !important;
  }
  .header .menu .head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .header .menu .close-menu-btn {
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }
  .header .menu .close-menu-btn .fa-times {
    font-size: 30px;
/* 	  font-family: "Joey-Bold"; */
  }
  .header .menu > ul > li {
    display: block;
  }
  .header .menu > ul > li:not(:last-child) {
    margin-right: 0;
  }
  .header .menu ul li {
    border-bottom: 1px solid gray;
  }
  .header .menu li {
    border-bottom: 1px solid green;
  }
  .header .menu li:first-child {
    border-top: 1px solid green;
  }
  .header .menu > ul > li > a {
    padding: 12px 0;
  }
  .header .menu > ul > .dropdown > a {
    padding-right: 34px;
  }
  .header .menu i {
    height: 34px;
    width: 34px;
    border: 1px solid gray;
    display: inline-flex;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    margin-right: 7px;
  }
  .header .menu .dropdown.active > i {
    background-color: rgba(0, 0%, 100%, 0.2);
    transform: rotate(180deg);
  }
  .header .menu .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .header .menu .dropdown.active > .sub-menu {
    display: block;
  }
  .header .menu .dropdown.active {
    transition: 0.3s ease;
  }
  .header .menu .sub-menu li:last-child {
    border: none;
  }
  .header .menu .sub-menu a {
    padding: 12px 0 12px 15px;
  }
  .header .menu .sub-menu .sub-menu a {
    padding-left: 30px;
  }
  .header .menu .sub-menu .sub-menu .sub-menu a {
    padding-left: 45px;
  }
  .header .menu .sub-menu span {
    background-image: none;
  }
  .header .menu .sub-menu i {
    transform: none;
    right: 0;
  }
  .sub-menu li {
    width: 100%;
  }
  .header-right .open-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }
  .header-right .open-menu-btn .line {
    height: 2px;
    width: 30px;
    background-color: rgb(253, 253, 253);
    position: absolute;
  }
  .header-right .open-menu-btn .line-1 {
    transform: translateY(-8px);
  }
  .header-right .open-menu-btn .line-2 {
    transform: translateY(8px);
  }
  .header .menu .close-menu-btn {
    display: block;
  }

  .header-right .fa.fa-bars {
    display: block;
  }
  /* .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: aliceblue;
  } */
}
@media (max-width: 600px) {
	.header .menu .fa-chevron-down {
                font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
	}
  .header .menu .close-menu-btn {
    height: 51px;
    width: 51px;
  }
  .header .menu .close-menu-btn .fa-times {
    font-size: 31px;
	  color:#fff;
  }
  .header-right .fa.fa-bars {
    font-size: 21px;
    padding-right: 7px;
  }
	.header .menubar .logo {
    width: 50%;
}
}
.header_bg_image {
  min-height: 97px;
  background-image: url("../bg_gradient_image_header.webp");
  background-size: cover;
  background-position: 50% 1.79%;
}
/* hero section */

.hero {
  min-height: 95vh;
  background-image: url("../mainEpgiGateImg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutcontent-gradent-img {
  background-image: url("../bg_gradient_image_header.webp");
  background-size: cover;
  background-position: 95% 34.79%;
}
/* slider section  */
.hero-slider {
  position: relative;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
}
.slider {
  display: flex;
  /* position: relative; */
  width: 100%;
  height: 500px;
  transition: transform 0.5s ease-in-out;
}
.slide {
  /* position: absolute; */
  min-width: 100%;
  height: 100%;
  /* opacity: 0; */
  transition: opacity 1s ease;
}
/* .slide.active {
  opacity: 1;
  z-index: 1;
} */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
  /* transform: translateY(-50%); */
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 18px;
  z-index: 2;
  border-radius: 50%;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.dot.active {
  opacity: 1;
  background: #0f003b;
}
/* footer css start from here */
.footer-dark {
  background-color: #0f003b;
  color: #fff;
  padding: 40px 0;
}
.footer_logos_main_container {
  width: 91%;
}
.footer-links {
  padding: 4px;
}
.footer-dark li {
  list-style: none;
  line-height: 2;
}
.footer-dark a {
  color: #fff;
  text-decoration: none;
}
.footer-dark a:hover {
  color: #d10873;
  transition: 0.3s;
}
.accent-underline {
  width: 82px;
  border: 1px solid #d10873;
  margin: 10px 0;
}
.social-icons a {
  padding: 2px 7px;
  font-size: 21px;
}
.dimagkhrab_line {
  width: 100% !important;
  border: 1px solid #d10873;
}
.bottom-links a {
  padding: 0px 11px;
}
