/* Scroll Bar CSS Start */
::selection {
  background: var(--theme-color);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}

/* Scroll Bar CSS End */

/* Swiper Buttons and Paginations Start*/
.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #fff;
  color: #000;
  font-size: 1.25rem;
  transition: all 0.5s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0;
  color: var(--white);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.swiper-pagination-bullet-active {
  width: 25px;
}

.swiper-slide-shadow-left {
  display: none;
}

.swiper-slide-shadow-right {
  display: none;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}

/* Swiper Buttons and Paginations End*/

/* Preloader CSS Start */
/* loader */
.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 2s;
}

.preloader * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layers {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  transition-delay: 1.75s;
}

.preloader .layers span {
  width: 100%;
  height: 33.4%;
  position: absolute;
  left: 0;
  background: var(--primary);
}

.preloader .layers span:nth-child(1) {
  top: 0;
  transition-delay: 1s;
}

.preloader .layers span:nth-child(2) {
  top: 33.33333%;
  transition-delay: 1.25s;
}

.preloader .layers span:nth-child(3) {
  top: 66.66666%;
  transition-delay: 1.5s;
}

.preloader .container-fluid {
  position: relative;
  text-align: center;
  color: #fff;
}

.preloader .container-fluid small {
  display: inline-block;
  letter-spacing: 1px;
  transition-delay: 0.6s;
}

.preloader .container-fluid small .char {
  display: inline-block;
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(10ms * var(--char-index));
}

.preloader .container-fluid figure {
  margin-bottom: 5px;
  transition-delay: 0.5s;
}

.preloader .container-fluid figure img {
  /* height: 30px; */
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
}

.preloader .container-fluid .percentage {
  width: 100%;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  line-height: 1;
  font-size: 40vw;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  opacity: 0.1;
  transition-delay: 0.8s;
}

.preloader .container-fluid .percentage #percentage {
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: 0.3s;
}

/* PAGE TRANSITION */
.page-transition {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  visibility: hidden;
}

.page-transition * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition .layers {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background: var(--primary);
}

.page-transition .layers span {
  width: 100%;
  left: -100%;
  background: var(--theme-color);
}

.page-transition .layers span:nth-child(1) {
  height: 33.3333%;
  position: absolute;
  top: 0;
  transition-delay: 0.25s;
}

.page-transition .layers span:nth-child(2) {
  height: 33.3333%;
  position: absolute;
  top: 33.33333%;
  transition-delay: 0.5s;
}

.page-transition .layers span:nth-child(3) {
  height: 33.3333%;
  position: absolute;
  top: 66.66666%;
  transition-delay: 0.75s;
}

.page-transition.active {
  visibility: visible;
}

.page-transition.active .layers {
  left: 0;
}

.page-transition.active .layers span {
  left: 0;
}

/* PAGE LOADED */
.page-loaded {
  overflow: inherit;
  overflow-x: hidden;
}

.page-loaded .preloader {
  left: -100%;
}

.page-loaded .preloader .container-fluid figure {
  transform: translateY(-20px);
  opacity: 0;
}

.page-loaded .preloader .container-fluid small {
  transform: translateY(-10px);
  opacity: 0;
}

.page-loaded .preloader .container-fluid .percentage {
  opacity: 0;
  transform: translateY(-60%);
}

.page-loaded .preloader .layers {
  left: -100%;
}

.page-loaded .preloader .layers span {
  left: -100%;
}

.page-loaded .topbar {
  top: 0;
}

.page-loaded .bottombar {
  bottom: 0;
}

.page-loaded.header-ready .showcase-slider .swiper-wrapper {
  transform: translateX(0);
}

.page-loaded.header-ready .showcase-slider .swiper-slide.swiper-slide-active .slide-image {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition-delay: 0.8s;
}

.page-loaded.header-ready .page-header .video-bg {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

.page-loaded.header-ready .page-header h1 {
  text-indent: inherit;
}

.page-loaded.header-ready .page-header h1 .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded.header-ready .page-header p {
  text-indent: inherit;
  opacity: 0.6;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small:after {
  width: 120px;
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner h1 .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner .link {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-controls {
  left: 25px;
}

.page-loaded .showcase-slider .swiper-pagination {
  right: 25px;
}

/* loader */
/* Preloader CSS End */

/* Cursor CSS Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  z-index: 10000001;
  background-color: var(--theme-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner:before {
  content: "Click Me";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 1rem;
  top: 8px;
  left: 2px;
  display: flex;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.active::before {
  opacity: 1;
  top: 0;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}

.cursor-inner.cursor-hover.active {
  margin-left: -40px;
  margin-top: -40px;
  width: 120px;
  height: 120px;
  opacity: 1;
  background-color: #53be8470;
}

/* Cursor CSS End */

/* RoleBack Button CSS Start */
.roleBackBtn .button {
  width: 50px;
  height: 50px;
  border-radius: 50px !important;
  background-color: var(--primary) !important;
  border: none !important;
  font-weight: 600;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden !important;
  position: fixed !important;
  right: 1rem;
  bottom: 2rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.roleBackBtn .svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.roleBackBtn .svgIcon path {
  fill: white;
}

.roleBackBtn .button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--theme-color);
  align-items: center;
}

.roleBackBtn .button:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.roleBackBtn .button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}

/* RoleBack Button CSS End*/

/* Scroll Down Button CSS Start*/
.container_mouse {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.container_mouse span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.mouse-btn {
  margin: 10px auto;
  width: 20px;
  height: 30px;
  border: 2px solid rgb(255 255 255 / 92%);
  border-radius: 20px;
  display: flex;
}

.mouse-scroll {
  display: block;
  width: 8px;
  height: 8px;
  background: linear-gradient(170deg, rgb(255 255 255 / 92%), rgb(255 255 255));
  border-radius: 50%;
  margin: auto;
  animation: scrolling13 1s linear infinite;
}

@keyframes scrolling13 {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }

  100% {
    opacity: 1;
    transform: translateY(12px);
  }
}

/* Scroll Down Button CSS End*/

/* ThemeBtn CSS Start */
.themeBtn {
  background: var(--theme-color);
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.63;
  color: var(--white);
  display: inline-block;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.themeBtn:before,
.themeBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.themeBtn:before {
  background: #1a3e38;
  transform: scaleX(0);
  transform-origin: right center;
}

.themeBtn:after {
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
}

.themeBtn:hover {
  color: var(--white);
  transform: scale(1.05);
}

.themeBtn:hover:before {
  transform: scaleX(1);
}

.themeBtn:hover:after {
  transform: scaleX(1);
}

/* ThemeBtn CSS End */

/* Image Reveal Start*/
.reveal {
  visibility: hidden;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.reveal img {
  width: 100%;
}

.reveal .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: 2;
}

/* Image Reveal End*/

/* Header CSS Start */

/* TopBar CSS Start */
.hdr-opt {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip .tooltiptext {
  font-size: 12px;
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-right: 15px;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

.search-bar button {
  cursor: pointer;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  background-color: #3498db;
  /* Change to your theme color */
  padding: 18px 20px;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.search-bar button:hover {
  background-color: #000;
}

.search-bar .search-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.my-search {
  display: none;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 99;
  background-color: #fff;
  padding: 30px 3% 18px 35px;
  top: 0;
}

.top-rel {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.top-rel p {
  margin: 0;
}

.top-header.spad {
  background: var(--theme-color);
  padding: 12px 0;
}

.hdr-opt li a {
  font-size: 1.25rem;
  color: #fff;
}

.top-header.spad ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-header.spad ul li a {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-header.spad ul li a i {
  font-size: 1rem;
}

.lang select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
}

.top-rel ul {
  gap: 1rem !important;
}

.top-header.spad ul li a:hover {
  color: var(--primary);
}

/* TopBar CSS End */
.main-header {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.main-header:before {
  content: none;
  position: absolute;
  top: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  z-index: -1;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.5s ease-in-out;
  background: #ffffff00;
}

header.fixed.sticky {
  backdrop-filter: blur(4px);
  background: #6d8662b5;
  padding: 0;
}

header.fixed.sticky .top-header {
  display: none;
}

/* Hamburger Menu */

.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--theme-color);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #b70404;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Menu Css */
.menuWrap .menu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: initial;
  gap: 2.5rem;
}

.main_nav {
  background: var(--theme-color);
}

.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}

.menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.menu li:last-child {
  padding-right: 0;
}

.menu li a {
  font-size: 1.25rem;
  color: #fff;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

.menu>li.active>a,
.menu>li:hover>a {
  color: var(--theme-color);
}

/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
  position: relative;
  z-index: 1;
}

.dropdown,
.sub-menu {
  position: absolute;
  background: #1c7347;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 190px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}

.dropdown .dropdown,
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.dropdown ul li a,
.sub-menu li a {
  font-size: 1.125rem;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}

.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.chev.rotate {
  transform: rotate(180deg);
}

.chev {
  transition: 0.5s ease;
}

.dropdown-toggle::after {
  display: none;
}

.menuWrap .menu a i.fa-angle-down {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -2px;
}

.menu li.dropitem {
  position: relative;
  display: block;
  opacity: 0;
  cursor: pointer;
}

.menu>li.dropitem>.dropdownHover {
  position: absolute;
  pointer-events: none;
}

.menu>li.dropitem>.dropdownHover>li {
  transition: transform 0.6s, opacity 0.6s;
  transform: translateY(150%);
  opacity: 0;
  width: 210px;
}

.menu>li.dropitem:hover>.dropdownHover {
  pointer-events: initial;
}

.menu>li.dropitem:hover>.dropdownHover>li.dropitem {
  transform: translateY(0%);
  opacity: 1;
  background: var(--black);
  /* width: 210px; */
}

.menu>li.dropitem {
  opacity: 1;
}

.dropdownHover>li a {
  padding: 8px 10px;
  font-size: 16px;
  border-bottom: 1px solid #2c2c2c59;
  color: var(--white);
}

.dropdownHover>li:hover>a {
  background: var(--white);
  color: var(--black);
}

/* Dropdown CSS*/
.serchBar form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 620px;
  background: #D9D9D9;
  border: 1px solid #D9D9D9;
  padding: 5px;
  border-radius: 50px;
}

.serchBar form input {
  background: transparent;
  border: none;
  height: 2.5rem;
  padding: 1rem;
  outline: none;
  width: 100%;
}

.serchBar form button {
  background: var(--theme-color);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
}

.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-bottom: -4rem;
}

header.fixed.sticky .menu li a {
  color: #fff;
}

/* Header CSS End */

/* Footer CSS Start */
footer {
  background: #2A2A2A;
  padding-top: 4rem;
  position: relative;
}

footer h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

footer form {
  border: 1px solid #ffffff4d;
  padding: 5px;
  border-radius: 50px;
}

footer form input[type="email"] {
  width: 90%;
  border-radius: 50px;
  height: 3rem;
  padding: 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}
.gjs-row {
    margin-bottom: 0 !important;
}

.gjs-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer form input[type="submit"] {
  background: var(--primary);
  border: none;
  width: 180px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
}

.links li a {
  color: #828282;
  font-size: 1.125rem;
  padding: 4px 0;
  display: inline-block;
}

.links li a:hover {
  color: var(--primary);
}

.contactInfo li a {
  display: flex;
  align-items: start;
  gap: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contactInfo li a i {
  font-size: 1.5rem;
}

.contactInfo li a h6 {
  color: #fff;
  font-family: 'Dallas Print Shop Serif';
  font-size: 1.25rem;
  line-height: 1.5;
}

.contactInfo li a h6 span {
  font-size: 1.125rem;
  font-weight: 400;
  color: #828282;
  font-family: "Roboto", sans-serif;
  display: block;
}

.copyRight p {
  margin: 0;
  text-align: center;
}

.copyRight {
  border-top: 1px solid #828282;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footerImg {
  position: absolute;
  right: -5rem;
  bottom: 6rem;
  width: 25%;
}

footer .row+.row {
  margin-top: 3rem;
}

/* Footer CSS End */