/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  background-color: #ffffff;
}

a {
  color: #ff4a17;
  text-decoration: none;
}

a:hover {
  color: #ff724a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

.ptb-90{
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}
.ptb-40{
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}
/* Button 8: Shiny Glass */
.btn-glass {
  position: relative;
    padding: 8px 28px !important;
    font-size: 16px;
    font-weight: 600;
    /* font-family: "Outfit", sans-serif; */
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
    overflow: hidden;
}

.btn-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -34% !important;
    width: 150% !important;
    height: 150% !important;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
	background-color: transparent !important;
  transform: rotate(45deg);
  transition: all 0.6s ease !important;
}

.btn-glass:hover::before {
  left: 100%;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

 .video{
                  position: absolute;
                  top: 0%;
                  left: 0%;
                  min-width: 100%;
                  height: 100%; 
                  width: 100%;
                  z-index: 0;
                  background-size: cover;
                  overflow: hidden;
                  object-fit: cover;
                  }
.inner-video{
                  position: absolute;
            top: 0%;
            left: 0%;
            min-width: 100%;
            height: 85vh !important;
            width: 100%;
            z-index: 0;
            background-size: cover;
            overflow: hidden;
             object-fit: cover;
                  }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ea0000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff4a17;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  background: #000000;
  border-bottom: 1px solid #a1988e;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgb(0 0 0);
  padding: 10px 0;
  border-bottom: 1px solid #dfdfdf;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}


/* ========================= */
/* NAVBAR BASE */
/* ========================= */

.custom-nav {
  position: relative;
  padding: 15px 20px;
	background-color: #000000bd;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.menu-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  left: 0;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1){ top:0; }
.menu-toggle span:nth-child(2){ top:10px; }
.menu-toggle span:nth-child(3){ top:20px; }

.menu-toggle.active span:nth-child(1){
  transform: rotate(45deg);
  top:10px;
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform: rotate(-45deg);
  top:10px;
}

/* ========================= */
/* MENU DEFAULT (Mobile) */
/* ========================= */

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  padding: 80px 25px;
  z-index: 10000;
}

.side-menu.active {
  right: 0;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin: 15px 0;
  position: relative;
}

.menu-list a {
  text-decoration: none;
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
  display: block;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown-menu-custom {
  display: none;
  list-style: none;
  padding-left: 15px;
}

.dropdown-menu-custom li {
  margin: 8px 0;
	margin-right: 0 !important;
}

.dropdown.active > .dropdown-menu-custom {
  display: block;
}

/* ========================= */
/* DESKTOP (>1024px) */
/* ========================= */

@media (min-width: 1025px) {
	
	.custom-nav .desktop-menu{
		justify-content: center !important;
	}

  .side-menu {
    position: static;
    height: auto;
    width: auto;
    box-shadow: none;
    padding: 0;
    right: 0;
    display: block;
  }

  .menu-list {
    display: flex;
    align-items: center;
  }

  .menu-list li {
    margin: 0 20px 0 20px;
  }

  .menu-toggle {
    display: none;
  }

  /* Desktop dropdown */
  .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    padding: 15px;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
	.dropdown-menu-custom li{
		
	}

  .dropdown:hover > .dropdown-menu-custom {
    display: block;
  }

}

.login-btn-box .btn {
    color: #fff;
    font-size: 17px;
    background-color: #d90102;
    margin-right: 10px;
    margin-left: 20px;
    padding: 6px 22px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #000;
  /* background: url(../images/home-bg.jpg) top center; */
  background-size: cover;
  position: relative;
  padding: 0;
  top: 0;
}

#hero:before {
 content: '';
 position: absolute;
/* background: linear-gradient(360deg, #00000000 16%, #000000bf 100%);  */
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 z-index: 1;
 background-size: cover;
}

#hero .hero-container {
 position: relative;
 bottom: 0;
 top: 0;
 left: 0;
 right: 0;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 text-align: center;
 margin-top: 150px;
 margin-bottom: 90px;
 z-index: 1;
}
#hero .logo-box{
     width: 100%;
    display: flex;
    justify-content: center;
    /* min-height: 350px; */
    padding: 15px;
	
}

#hero-inner {
  width: 100%;
  height: 85vh;
	background-color: #d84b3a;
	border-bottom: 1px solid #f4a8a8;
  /*background: url("../images/hero-bg.jpg") top center;*/
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero-inner:before {
  content: '';
 position: absolute;
/* background: linear-gradient(360deg, #00000000 16%, #000000bf 100%); */ 
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 z-index: 1;
 background-size: cover;
}

#hero-inner .hero-container {
 position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 110px;
	z-index: 1;
}
#hero-inner .logo-box{
      width: 100%;
    /* min-height: 350px; */
    display: flex;
    justify-content: center;
	
}

#hero .logo-text-box{
	width:100%;
	position:relative;

}

#hero p.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 31px;
    margin-bottom: 7px;
    text-align: right;
}

#hero .video-box{
width: 70%;
min-height: 550px;
position:relative;
overflow:hidden;
    padding: 15px;
    background-color: #ffffff;
}

#hero .video-box .carousel{
	width: 97%;
    height: 90%;
    position: absolute;
}
#hero .video-box .carousel .carousel-inner{
	width: 100%;
    height: 100%;
    position: absolute;
}

#hero .video-box .carousel .carousel-inner .carousel-item{
	width: 100%;
    height: 100%;
    position: absolute;
}
.carousel-control-next, .carousel-control-prev{
	    top: 50%;
    width: 40px;
    height: 40px;
	background-color: #ff4a17;
    opacity: 1;
}

#hero .video-box .home-video{
	width: 100%;
    height: 100%;
    position: absolute;
    display: block;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
    color: #ffffff;
    margin-bottom: 50px;
    font-size: 40px;
    font-weight: bold;
    line-height: 60px;
}

#hero h2.callfor-text{    
    color: #8c8c8c;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 44px;
    line-height: 34px;
    letter-spacing: 3px;
    text-align: right;
}
#hero h2.callfor-text span{
	font-size:28px;
}

#hero .video-box h3{
	font-size: 18px;
	    letter-spacing: 4px;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff4a17;
  border: 2px solid #ff4a17;
}

#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #ff4a17;
}
#hero .logo{
	width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4%;
  padding: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
  /* border-radius: 5px; */
  /* border: 5px double #000000; */
  /* box-shadow: 0px 0px 55px -1px #000000;*/}

#hero-inner .logo{
    width: 400px;
    margin: 0 auto;
    border-radius: 4%;
    padding: 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: #fff; margin-top: 80px;
}

@media (max-width: 767px) {
  .enba-btn{ font-size:17px !important; }
  .side-menu{ background:#000; }
	#hero .logo{
		        width: 300px;
        height: 230px;
	}
	#hero-inner .logo{
		        width: 300px;
        height: 230px;
	}
}

@media (min-width: 1600px) {
#hero .video-box .carousel{
	width: 98%;
}
#hero .logo{
	margin-top: 4%;
}
}



@media (min-width: 1024px) {

  #hero {
    background-attachment: ;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu{ background:#000; }
	#header .container-fluid .justify-content-end{
		justify-content: flex-end !important;
	}
 #hero{
		height: 40vh;
		top: 26px;
		background-color: #d84b3a;
	}
	#hero .hero-container {
    margin-top: 8%;
}
	
	#hero .logo {
    width: 300px;
    height: 300px;
	}
	
	#hero-inner .logo {
    width: 300px;
    height: 300px;
	}
	
	
	.video {
    height: ;
}
	.inner-video {
    height: 50vh !important;
}
	#hero-inner {
    height: 40vh;
	}
		#fixed-social {
    top: 15% !important;
}
	.features .nav-item {
    width: 50% !important;
}
	#hero h2 {
    font-size: 30px;
    line-height: 42px;
}
	.box-row {
    display: inline-block !important;
}
	.box {
    display: inline-flex !important;
		width: 30% !important;
}
	.box-label {
    margin-bottom: 25px;
}
}

@media (max-width: 767px) {
	#hero{
		height: 75vh;
		/* background-color: #d84a3a !important; */
		background: none;
		top: 0;
	}
	#hero .hero-container {
    margin-top: 100px;
}
	#hero-inner {
    height: 65vh;
		padding-top: 0px;
}
	.video {
    /* height: 50vh !important; */
    /* display: none; */
}
	.inner-video {
    height: 50vh !important;
}
	#fixed-social {
    top: 15% !important;
}
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
            font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
        margin-top: 25px;
  }
  #hero .video-box {
    width: 70%;
    min-height: 250px;
    padding: 4px;
}
#hero .video-box .carousel {
    width: 97%;
    height: 85%;
}
#hero .logo-box {
    min-height: 250px;
}
  #hero p.logo-text {
    font-size: 14px;
    line-height: 16px;
}
#hero h2.callfor-text {
    font-size: 32px;
    line-height: 28px;
}
#hero h2.callfor-text span {
    font-size: 20px;
}
	.section-title h1 {
    font-size: 26px;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #000000;
  color: #fff;
  line-height: 28px;
}

.section-title {
  padding-bottom: 40px;
	    padding-top: 20px;
}
.section-title h1 {
  font-size: 38px;
  font-weight: 600;
  padding: 0;
  line-height: 30px;
  margin: 0 0 5px 0;
  color: #000000;
  /* position: absolute; */
  font-family: "Poppins", sans-serif;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 600;
  padding: 0;
  line-height: 30px;
  margin: 0 0 5px 0;
  color: #000000;
  /* position: absolute; */
  font-family: "Poppins", sans-serif;
}

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 3px;
  display: inline-block;
  background: #2480b1;
  margin: 4px 10px;
  position: absolute;
  left: 45%;
    bottom: -2%;
} 
 .section-title h2::before {
  content: "";
    width: 148px;
    height: 3px;
    display: inline-block;
    background: #2480b1;
    margin: 4px 10px;
    position: absolute;
    left: 44%;
    bottom: -1%;
} */


@media screen and (min-width: 1400px) {
	 .section-title h2::after {
		 bottom: 2%;
        left: 45%;
	 }
	.section-title h2::before{
		bottom: 3%;
        left: 45%;
	}
}


.section-title-foot {
	margin-bottom:40px;
}

.section-title-foot h2 {
  font-size: 28px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  /* position: absolute; */
  font-family: "Poppins", sans-serif;
}

/* .section-title-foot h2::after {
  content: "";
  width: 120px;
  height: 3px;
  display: inline-block;
  background: #2480b1;
  margin: 4px 10px;
  position: absolute;
  left: 44%;
    bottom: -30px;
} 
 .section-title-foot h2::before {
  content: "";
    width: 148px;
    height: 3px;
    display: inline-block;
    background: #2480b1;
    margin: 4px 10px;
    position: absolute;
    left: 43%;
    bottom: -24px;
} */


.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
  padding-bottom: 15px;
}

.about .count-box {
  padding: 60px 0;
  width: 100%;
}

.about .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #365870;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
  color: #477392;
}

.about .content {
  font-size: 15px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ea0000;
  letter-spacing: 1px;
}

.about .content h4{
	    font-size: 20px;
	    color: #ea0000;
	    font-weight: 600;
}
.about .content .small-head{
	color: #000000;
    font-weight: 600;
    font-size: 18px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

.about .content ul i {
  font-size: 24px;
  color: #ea0000;
  position: absolute;
  left: 0;
  top: -2px;
}
/*
.about .content p:last-child {
  margin-bottom: 0;
  width: 60%;
    margin: auto;
	font-size: 18px;
    line-height: 30px;
} */
.about .content p {
  margin-bottom: 0;
  width: 100%;
    margin: auto;
	font-size: 18px;
    line-height: 30px;
}

.inner-page .content p {
  margin-bottom: 0;
  width: 100%;
    margin: auto;
	font-size: 16px;
    line-height: 30px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff4a17 50%, rgba(255, 74, 23, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 74, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ff4a17;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  background: url("../images/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.about-boxes::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container, .about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

.about-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #ff4a17;
  border-radius: 4px;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: #ff4a17;
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #ff4a17;
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-item{
	margin-top:15px;
	width: 25%;
}

.features .nav-link {
  border: 1px solid #000000;
  padding: 15px;
  transition: 0.3s;
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101010
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ff4a17;
}

.features .nav-link.active {
  background: #ea0000;
  color: #fff;
  border-color: #004062
}

@media (max-width: 767px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
	.features .nav-item {
    width: 100%;

}
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane h2{
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;
	padding-bottom: 6px;
	color: #ea0000;
	border-bottom: 1px dotted #ea0000;
}

.features .tab-pane h3 {
      font-weight: 600;
      font-size: 19px;
      color: #101010;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 0px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff4a17;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #5c8eb0;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #365870;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #ff4a17;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #ff4a17;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("https://storage.googleapis.com/e4mevents/enba-2025/images/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: .5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #ff4a17;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ff4a17;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff4a17;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 34, 43, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #477392;
}

.team .member .social a:hover {
  color: #ff4a17;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h2.heading-text{
	font-size:26px;
	color: white;
}

.contact .info-box {
  color: #ffffff;
  /* text-align: left; */
	    background-image: linear-gradient(135deg, #031e46 88%, rgb(255 255 255 / 26%) 50% 50%);
 /* background-color: #005c8d;
   border: 1px solid #ccc; */
  /* box-shadow: 0 0 30px rgb(214 215 216 / 60%); */
  padding: 22px 25px;
  position:relative;
}
.contact .info-box:before{content: "";position: absolute;top: 0%;left: 0%;width: 0px;height: 0px;border-bottom: 15px solid #002c6c;border-left: 15px solid #01183a;-webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);-moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);display: block;width: 0;}

.contact .info-box i {
  font-size: 32px;
  color: #ff4a17;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 10px 0 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 26px;
  font-size: 14px;
  margin-bottom: 0;
	word-break: break-all;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff4a17;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #ff4a17;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff5e31;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f0f4f8;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 52px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
.contact{
	background-color: #01183a;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #00132e;
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff4a17;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5e31;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff4a17;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff4a17;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
}

#footer .credits {
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
  font-size: 14px;
  color: #fff;
}


/* fixed social*/
#fixed-social {
    position: absolute;
    top: 40%; z-index: 99; left: 0px;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
    border: 1px solid #005c8d;
}
#fixed-social a:hover>span{
    visibility: visible;
    left: 41px;
    opacity: 1; color: #fff;
}
#fixed-social a span {
    line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}
.fixed-home span{
    background-color: #8945ac;
}
.fixed-facebook{
    background-color: #0c0b3b;
}
.fixed-facebook span{
    background-color: #3b5998;
}
.fixed-twitter{
    background-color: #0c0b3b;
}
.fixed-twitter span{
    background-color: #00acee;
}
.fixed-linkedin{
    background-color: #0c0b3b;
}
.fixed-linkedin span{
    background-color: #0e76a8;
}
.fixed-instagrem{
    background-color: #0c0b3b;
}
.fixed-instagrem span{
    background-color: #ED2B29;
}
/*end fixed social*/


/*************** login *****************/	
	.login {
  padding: 15px;
}
.login .heading {
  text-align: center;
  margin-top: 1%;
}
.login .heading h2 {
  font-size: 3em;
    font-weight: 300;
    color: rgb(0 0 0 / 70%);
    display: inline-block;
    padding-bottom: 5px;
    text-shadow: 1px 1px 3px #828282;
}
.login form .input-group {
  /* border-bottom: 1px solid rgb(88 88 88 / 64%); */
  /* border-top: 1px solid rgb(88 88 88 / 64%); */
  border: 1px solid rgb(234 0 0);
  margin-bottom: 20px;
}
.login form .input-group:last-of-type {
}
.login form .input-group span {
  background: transparent;
  min-width: 45px;
  border: none;
}
.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.login form .input-group span i {
  font-size: 1.5em;
  color: #000;
  padding: 15px;
}
.login form input.form-control {
  display: block;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 0px;
  padding: 10px;
  font-size: 18px;
  width: 80%;
  background: transparent;
  color: #000000;
}
.login form input.form-control:focus {
  border: none;
}
.login form button {
    margin-top: 20px;
    background: #000000;
    border: none;
    font-size: 1.6em;
    font-weight: 400;
    padding: 5px 0;
    width: 100%;
    border-radius: 3px;
    color: #ffffff;
    border-bottom: 4px solid #ea0000;
}
.login form button:hover {
  background: #1f1f1f;
  -webkit-animation: hop 1s;
  animation: hop 1s;
}

.float {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.float:hover, .float:focus, .float:active {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.login-signtup-text{
font-size: 16px;
    font-weight: 400;
}
.login-signtup-text a.login-signtup{
color:#ea0000;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  .login {
    width: 600px;
    font-size: 2em;
  }
}
@media only screen and (max-width: 1100px) {
  .login {
    margin-top: 2%;
    width: 100%;
    font-size: 1.7em;
  }
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .login {
    margin-top: 1%;
    width: 100% !important;
    font-size: 1.7em;
    min-height: 0;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .login {
    margin-top: 0;
    width: 500px;
    font-size: 1.3em;
    min-height: 0;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .login {
    margin-top: 0;
    width: 100%;
    font-size: 1em;
    min-height: 0;
  }
  .login h2 {
    margin-top: 0;
  }
  .exp-header-text .logo-img{
  width:350px !important;
  }
}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  .login {
    margin-top: 0;
    width: 200px;
    font-size: 0.7em;
    min-height: 0;
  }

}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
    font-size: 16px;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #c1c1c1;
}

.about .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #000000;
  border: 2px solid #d84b3a;
}

.about .btn-get-started:hover {
  border-color: #000000;
  background: rgba(255, 255, 255, 0.1);
  color:#000000;
}

/*** 

====================================================================
		register Page Section
====================================================================

***/

.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}
.contact-form .form-group input, 
.contact-form .form-group input, 
.contact-form .form-group input, 
.contact-form .form-group textarea, 
.contact-form .form-group select
{
	position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    color: #000000;
    line-height: 13px;
    padding: 4px 15px;
    border: none;
    background-color: #ffffff;
    font-weight: 400;
    height: 45px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #ea0000;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
	border-color:#cecece;
}

.contact-form .form-group textarea{
	height: 100px;
	resize: none;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

.contact-form .form-group span{
	color:#F00;
}

/*.contact-form .form-group button{
	    text-transform: capitalize;
    background-color: #fd680e;
    color: #fff;
    padding: 5px 25px;
    border: 1px solid #e65c09;
    border-radius: 20px;
	
}*/

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus{
	border-color:#ff0000;	
}

.button-form {
  font-size: 1em;
    padding: 5px 10px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #081638;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-weight: 500;
    text-transform: uppercase;

}
.button-form:hover {
  background: #ffffff;
  color:#081638;
}

.icon-d{
	color:#081638;
}
[type=radio], [type=checkbox] {
    position: initial;
    visibility: visible;
    width: 15px;
    height: 15px;
	margin-right:10px;
}
input[type="checkbox"] {
  width: 15px;
  height: 15px;
  outline: 1px solid #138cd4;
}





.required{ color: #bf0000; }
#register{ font-size: 14px; }
#register h3 {
    font-size: 20px;
    color: #ea0000;
    font-weight: 600;
    border-bottom: 1px dotted #ea0000;
    padding-bottom: 5px;
}
.entry-form label { font-size: 14px; }
.entry-form label.cat-text{
	margin-top:10px;
}
.chk-box{ width:13px; height:13px; padding-right:15px; margin-right: 8px; }

.sub-cat-sap-line{
	border-bottom: 1px dotted #000000;
    margin: 0;
	margin-bottom:5px;
    background-color: transparent;
}


.table {
	background-color: #ffffff;
	color: #000000;
}
.table-striped>tbody>tr:nth-of-type(odd){
	color: #000;
}

/******************  slide start   ***************/


.cb-slideshow {float: left;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
	    overflow: hidden;
}

.cb-slideshow ul{
	list-style:none;
}







.cb-slideshow li span {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: -20px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
}

@media (max-width: 768px) {
	.cb-slideshow{
		height: 70vh;
	}
	.cb-slideshow li span{
		height: 70vh;
	}
}

.cb-slideshow li:nth-child(1) span { background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-01.jpg) }
.cb-slideshow li:nth-child(2) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-02.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-03.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-04.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-05.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-06.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-07.jpg);
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}
.cb-slideshow li:nth-child(8) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-08.jpg);
    -webkit-animation-delay: 42s;
    -moz-animation-delay: 42s;
    -o-animation-delay: 42s;
    -ms-animation-delay: 42s;
    animation-delay: 42s;
}
.cb-slideshow li:nth-child(9) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-09.jpg);
    -webkit-animation-delay: 48s;
    -moz-animation-delay: 48s;
    -o-animation-delay: 48s;
    -ms-animation-delay: 48s;
    animation-delay: 48s;
}
.cb-slideshow li:nth-child(10) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-10.jpg);
    -webkit-animation-delay: 54s;
    -moz-animation-delay: 54s;
    -o-animation-delay: 54s;
    -ms-animation-delay: 54s;
    animation-delay: 54s;
}
.cb-slideshow li:nth-child(11) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-11.jpg);
    -webkit-animation-delay: 60s;
    -moz-animation-delay: 60s;
    -o-animation-delay: 60s;
    -ms-animation-delay: 60s;
    animation-delay: 60s;
}
.cb-slideshow li:nth-child(12) span {
    background-image: url(https://storage.googleapis.com/e4mevents/enba-2025/images/slide-12.jpg);
    -webkit-animation-delay: 66s;
    -moz-animation-delay: 66s;
    -o-animation-delay: 66s;
    -ms-animation-delay: 66s;
    animation-delay: 66s;
}
.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) div {
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}
.cb-slideshow li:nth-child(8) div {
    -webkit-animation-delay: 42s;
    -moz-animation-delay: 42s;
    -o-animation-delay: 42s;
    -ms-animation-delay: 42s;
    animation-delay: 42s;
}
.cb-slideshow li:nth-child(9) div {
    -webkit-animation-delay: 48s;
    -moz-animation-delay: 48s;
    -o-animation-delay: 48s;
    -ms-animation-delay: 48s;
    animation-delay: 48s;
}
.cb-slideshow li:nth-child(10) div {
    -webkit-animation-delay: 54s;
    -moz-animation-delay: 54s;
    -o-animation-delay: 54s;
    -ms-animation-delay: 54s;
    animation-delay: 54s;
}
.cb-slideshow li:nth-child(11) div {
    -webkit-animation-delay: 60s;
    -moz-animation-delay: 60s;
    -o-animation-delay: 60s;
    -ms-animation-delay: 60s;
    animation-delay: 60s;
}
.cb-slideshow li:nth-child(12) div {
    -webkit-animation-delay: 66s;
    -moz-animation-delay: 66s;
    -o-animation-delay: 66s;
    -ms-animation-delay: 66s;
    animation-delay: 66s;
}
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}

	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}

/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

/**************************  slider end  *************************/

 .waves > use {
  animation: move-forever 2s -2s linear infinite;
}

.waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 6s;
}
.waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30vw;
  max-height: 200px;
}
	
	
	
	
	/*****************************   Procces ***********************/
	
	 .step-process {
  background-color: #FCF8E8;
    width: 150px;
    height: 150px;
    float: left;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 35px;
    /* border: 1px solid black; */
    box-shadow: -7px -6px 0px 0px #2480b1, 7px 6px #c4362c;
    counter-increment: num-circle;
    position: relative;
}

.step-process::after {
  content: counter(num-circle);
    background-color: #2480b1;
    color: white;
    padding: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 124px;
}

/* div::before {
    content: "Element";
    position: absolute;
    top: 0px;
    left: 0px;
} */

.step-process span {
  position: relative;
    top: 40px;
   /* left: 9px;*/
   font-size:20px;
   font-weight: 600;
    text-align: center;
}
.step-process span i{
	font-size:30px;
}


/***********************  Procces end *************************/


.innerpage-box{
	    box-shadow: 0 0 3px #979797;
    padding: 15px;
}

.form-control{
	border: 1px solid #ea0000;
}
.categ-check{
	display: table-cell;
    position: relative;
    padding-right: 15px;
}


.highlights{
	   /* background-color: #07033d; */
	background: url("https://storage.googleapis.com/e4mevents/enba-2025/images/highlights-bg.jpg") center center;
		background-size: cover;
}

.highlights .owl-nav{
    display: none;
}

.highlights .item img{     background-color: #ffffff;
    border: 4px solid #ea0000;}


/*@media only screen and (min-width: 1025px) and (max-width: 1600px) {
	
	#hero .hero-container {
    margin-top: 11%;
}
} */


.cat-box{
	   padding: 20px;
    border: 1px solid #d90102;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
    background-image: linear-gradient(135deg, #ffffff 88%, rgb(217 1 2) 50% 50%);
    /* background-color: #ffffff; */
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 500ms ease;
    min-height: 230px;
    margin-bottom: 30px; border-radius: 8px;
}
.cat-box:hover{
	box-shadow: none;
}
.cat-box h3{
	font-size: 20px;
    font-weight: 600;
    color: #000;
}
.cat-box h3 span{
	background-color: #d90102;
    color: #fff;
    padding: 0 7px;
    border-radius: 50%;
    font-size: 28px;
    display: inline-flex;
    width: 34px;
    height: 34px;
}
.cat-box p{
	color: #000;
	margin-bottom: 0;
}



/* ------ proccess  --------*/

.box-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

.box-button {
  display: flex;
  align-items: center;
}

.box-label {
  text-align: center;
  word-break: normal;
  padding: 5px;
  font-weight: 600;
}

.box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 15%;
}

.box-icon {
  width: 80px;
  height: 80px;
  padding: 15px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 4px solid black;
}
.box-icon i{
	
font-size: 40px;
}

@media (max-width: 767px) {
	.box-row {
    width: 100%;
		display: block;
}
	.box:first-child .box-tag-left {
    background-color: #000000 !important;
}
	.box:last-child .box-tag-right {
    background-color: #000000 !important;
}
  .box {
    width: 50%;
	  height: auto;
        margin: 10px auto;
  }

  .box-icon {
    width: $small;
    height: $small;
  }

  svg {
    width: $small;
    height: $small;
  }

  
}

.box-tag {
  flex-grow: 1;
  min-width: 20px;
  height: 4px;
  background-color: black;
}

.box:first-child .box-tag-left {
  background-color: white;
}

.box:last-child .box-tag-right {
  background-color: white;
}
.categ-box{ background:#f1f1f1; }
.journey{ padding:0px; margin:0px; position: relative;
  /*background:url(../images/journey-bg.jpg) no-repeat top center;*/
 background-size:cover; }
.enba-btn {
    background: #fff;
    border: solid 2px;
    background: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    position: relative;
    z-index: 99;
}
.enba-btn:hover{ color:#d90102 }



.video2 {
    position: absolute;
    top: 0%;
    left: 0%;
    min-width: 100%;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: cover;
    overflow: hidden;
    object-fit: cover;
}
.journey::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000a3;
    /* z-index: 1; */
}
.journey img{ position:relative; z-index:2 }