/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #cc1616;
}

a:hover {
  color: #e82d2d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: #cc1616;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #e72323;
  color: #fff;
}

/*--------------------------------------------------------------
# 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 #cc1616;
  border-top-color: #efefef;
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #FFF;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #FFF;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #FFF;
  padding-right: 4px;
}

#topbar .contact-info i.icofont-phone {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #FFF;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(158, 161, 164, 0.2);
  transition: all 0.5s;
  z-index: 997;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.9);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 50px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 15px 0;
    background: transparent;
  }
  #header .logo {
    font-size: 28px;
  }
}

.header-inner-pages {
  background: rgba(0, 0, 0, 0.9) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 18px 15px;
  margin-left: 5px;
  transition: 0.3s;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.nav-menu > ul > li:hover {
  background: #cc1616;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #191919;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e82d2d;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #191919;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e82d2d;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/banner.png') top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 70px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
  }
  #hero .container {
    padding-top: 40px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# other hero Section
--------------------------------------------------------------*/
#hero-contact {
  width: 100%;
  height: 80vh;
  background: url('../img/contact.png') top center;
  background-size: cover;
  position: relative;
}

#hero-contact:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-contact .container {
  padding-top: 70px;
}

#hero-contact h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-contact h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-contact .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-contact .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-contact {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-contact {
    text-align: center;
  }
  #hero-contact .container {
    padding-top: 40px;
  }
  #hero-contact h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-contact h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# About Us hero Section
--------------------------------------------------------------*/
#hero-about-us {
  width: 100%;
  height: 80vh;
  background: url('../img/01.png') top center;
  background-size: cover;
  position: relative;
}

#hero-about-us:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-about-us .container {
  padding-top: 70px;
}

#hero-about-us h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-about-us h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-about-us .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-about-us .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-about-us {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-about-us {
    text-align: center;
  }
  #hero-about-us .container {
    padding-top: 40px;
  }
  #hero-about-us h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-about-us h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Smart Hero Section
--------------------------------------------------------------*/
#hero-smart {
  width: 100%;
  height: 70vh;
  background: url('../img/smart.png') center;
  background-size: cover;
  position: relative;
}

#hero-smart:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-smart .container {
  padding-top: 70px;
}

#hero-smart h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-smart h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-smart .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-smart .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-smart {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-smart {
    text-align: center;
  }
  #hero-smart .container {
    padding-top: 40px;
  }
  #hero-smart h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-smart h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



/*--------------------------------------------------------------
# Smart Hero Section
--------------------------------------------------------------*/
#hero-career {
  width: 100%;
  height: 70vh;
  background: url('../img/career.png') center;
  background-size: cover;
  position: relative;
}

#hero-career:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-career .container {
  padding-top: 70px;
}

#hero-career h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-career h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-career .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-career .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-career {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-career {
    text-align: center;
  }
  #hero-career .container {
    padding-top: 40px;
  }
  #hero-career h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-career h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Kiosk hero Section
--------------------------------------------------------------*/
#hero-kiosk {
  width: 100%;
  height: 80vh;
  background: url('../img/banner-kiosk.jpg') top center;
  background-size: cover;
  position: relative;
}

#hero-kiosk:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-kiosk .container {
  padding-top: 70px;
}

#hero-kiosk h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-kiosk h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-kiosk .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-kiosk .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-contact {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-kiosk {
    text-align: center;
  }
  #hero-kiosk .container {
    padding-top: 40px;
  }
  #hero-kiosk h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-kiosk h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



/*--------------------------------------------------------------
# SMart Iot HERO Section
--------------------------------------------------------------*/
#hero-smartiot {
  width: 100%;
  height: 80vh;
  background: url('../img/smartiot.png') top center;
  background-size: cover;
  position: relative;
}

#hero-smartiot:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-smartiot .container {
  padding-top: 70px;
}

#hero-smartiot h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-smartiot h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-smartiot .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-smartiot .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-smartiot{
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-smartiot {
    text-align: center;
  }
  #hero-smartiot .container {
    padding-top: 40px;
  }
  #hero-smartiot h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-smartiot h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Smart display hero Section
--------------------------------------------------------------*/
#hero-smartdisplay {
  width: 100%;
  height: 80vh;
  background: url('../img/smartdisplay.png') top center;
  background-size: cover;
  position: relative;
}

#hero-smartdisplay:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-smartdisplay .container {
  padding-top: 70px;
}

#hero-smartdisplay h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-smartdisplay h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-smartdisplay .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-smartdisplay .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-smartdisplay {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-smartdisplay {
    text-align: center;
  }
  #hero-smartdisplay .container {
    padding-top: 40px;
  }
  #hero-smartdisplay h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-smartdisplay h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Video WALL hero Section
--------------------------------------------------------------*/
#hero-videowall {
  width: 100%;
  height: 80vh;
  background: url('../img/banner-videowall.png') top center;
  background-size: cover;
  position: relative;
}

#hero-videowall:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-videowall .container {
  padding-top: 70px;
}

#hero-videowall h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-videowall h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-videowall .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-videowall .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-videowall {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-videowall {
    text-align: center;
  }
  #hero-videowall .container {
    padding-top: 40px;
  }
  #hero-videowall h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-videowall h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Articles Section
--------------------------------------------------------------*/
#hero-articles {
  width: 100%;
  height: 80vh;
  background: url('../img/articles.png') top center;
  background-size: cover;
  position: relative;
}

#hero-articles:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-articles .container {
  padding-top: 70px;
}

#hero-articles h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-articles h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-articles .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-articles .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-articles {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-articles {
    text-align: center;
  }
  #hero-articles .container {
    padding-top: 40px;
  }
  #hero-articles h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-articles h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}


.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #cc1616;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about-tab .nav-tabs{
  border: none;
  padding: 20px;
  display: block;
  text-align: center;
}
.about-tab .nav-tabs > li{
  margin: 0px;
  display: inline-block;
  text-align: center;
  float: none;
}

.about-tab .nav-pills > li a{
  border-radius: 2px;
  border: none;
}

.about-tab .nav-pills > li > a.active{
  border: none;
  background: #ed2d46;
  color: #ffffff;
}

.about-tab .tab-content > .tab-pane{
  padding: 20px;
  text-align: center;
}
.about-tab .tab-content > .tab-pane ul li{
  display: inline-block;
  margin: 0px 10px;
}
.about-tab .tab-content > .tab-pane ul li i{
  margin-right: 10px;
}


/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.mission-vision {
  padding-top: 20px;
}

.mission-vision .row {
  overflow: hidden;
}

.mission-vision .content-item {
  padding: 40px;
  border-left: 1px solid #c1c1c1;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.mission-vision .content-item span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #ed2d46;
}

.mission-vision .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #2d405f;
}

.mission-vision .content-item p {
  color: #000;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .mission-vision .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 0;
}

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ed5b5b;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #191919;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cc1616;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}









/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f2f2f2;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #cc1616;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fce5e5;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #191919;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #cc1616;
  border-color: #cc1616;
  padding: 40px 20px 90px 20px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #cc1616;
}

.services .icon-box:hover .icon::before {
  background: #e82d2d;
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.whyus {
   padding: 140px 0;
  background: url("../img/whyus1.png") top center no-repeat;
  position: relative;
}

.whyus:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.whyus .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.whyus .icon-box i {
  font-size: 48px;
  float: left;
  color: #cc1616;
}

.whyus .icon-box p {
  font-size: 15px;
  color: #000;
  margin-left: 60px;
}

.whyus .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/covid.jpg") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.cta h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}

/*--------------------------------------------------------------
# Smart Kiosk
--------------------------------------------------------------*/
.smartkiosk #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.smartkiosk #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}

.smartkiosk #portfolio-flters li:hover, .smartkiosk#portfolio-flters li.filter-active {
  color: #e82d2d;
}

.smartkiosk #portfolio-flters li:last-child {
  margin-right: 0;
}

.smartkiosk .smartkiosk-item {
  margin-bottom: 30px;
}

.smartkiosk .smartkiosk-item .smartkiosk-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.smartkiosk .smartkiosk-item .smartkiosk-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #191919;
}

.smartkiosk .smartkiosk-item .smartkiosk-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}

.smartkiosk .smartkiosk-item .smartkiosk-info .preview-link, .smartkiosk .smartkiosk-item .smartkiosk-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.smartkiosk .smartkiosk-item .smartkiosk-info .preview-link:hover, .smartkiosk .smartkiosk-item .smartkiosk-info .details-link:hover {
  color: #cc1616;
}

.smartkiosk .smartkiosk-item .smartkiosk-info .details-link {
  right: 10px;
}

.smartkiosk .smartkiosk-item .smartkiosk-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.smartkiosk .smartkiosk-item .smartkiosk-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.smartkiosk .smartkiosk-item .smartkiosk-links a:hover {
  color: #e82d2d;
}

.smartkiosk .smartkiosk-item:hover .smartkiosk-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #cc1616;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f5a0a0;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #e43c5c;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #493c3e;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #000;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #e43c5c;
  color: #fff;
}

@-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: #efefef;
  margin-top: 98px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 50px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #cc1616 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  color: #fff;
  border-top: 4px solid #cc1616;
  text-align: center;
  padding: 30px 20px;
}
#footer .logo img {
  max-height: 60px;
}
#footer .footer-top .footer-info h3 {
  font-size: 36px;
  margin: 0 0 20px 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: "Poppins", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cc1616;
  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: #ed5b5b;
  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: #eb4444;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #cc1616;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #e82d2d;
}

#footer .copyright {
  border-top: 1px solid #262626;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #e82d2d;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.bg-overlay{
          background: rgba(0,0,0, .6);
          position: absolute;
          top: -60px;
          bottom: -100px;
          left: 0;
          right:0;
          z-index: 0;
}
video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -100;
            -moz-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            background: url(images/background-video.png) no-repeat;
            background-size: cover;
            -webkit-transition: 1s opacity;
            transition: 1s opacity;
            z-index: 0;
        }
.ov-hidden{
          overflow: hidden;
}



.modal-box{ font-family: 'Poppins', sans-serif; }
.modal-box .show-modal{
    color: #fff;
    background-color: #cc1616;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 15px;
    margin: 80px auto 0;
    border: none;
    box-shadow: -5px 5px 1px rgba(0, 0, 0, 0.3);
    display: block;
}
.modal-box .show-modal:hover{
    color: #fff;
    border: none;
}
.modal-box .modal{ top: 90px !important; }
.modal-box .modal-dialog{
    width: 1200px;
    margin: 10px auto 10px;
}
.modal-box .modal-dialog .modal-content{
    text-align: center;
    border-radius: 15px;
    border: none;
    overflow: hidden;
    position: relative;
}
.modal-box .modal-dialog .modal-content:before{
    content: "";
    background: #cc1616;
    width: 100%;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
}
.modal-box .modal-dialog .modal-content .close{
    color: #cc1616;
    background-color: #fff;
    font-size: 32px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 0 0 0 25px;
    box-shadow: -5px 5px 1px rgba(0, 0, 0, 0.1);
    opacity: 1;
    position: absolute;
    left: auto;
    right: -3px;
    top: 0;
    z-index: 1;
    transition: all 0.3s;
}
.modal-box .modal-dialog .modal-content .close span{
    margin: -7px 0 0 0;
    display: block;
}
.modal-box .modal-dialog .modal-content .close:hover{
    color: #fff;
    background-color: #333;
}
.modal-box .modal-dialog .modal-content .modal-body{  }
.modal-box .modal-dialog .modal-content .modal-body .icon{
    color: #cc1616;
    background: #fff;
    font-size: 50px;
    line-height: 100px;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: relative;
}
.modal-box .modal-dialog .modal-content .modal-body .icon:before{
    content: "";
    width: 130px;
    height: 130px;
    border: 2px solid #fff;
    border-radius: 100px;
    opacity: 0.2;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}
.modal-box .modal-dialog .modal-content .modal-body .title{
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}
.modal-box .modal-dialog .modal-content .modal-body .description{
    color: #444;
    font-size: 16px;
    margin: 0 0 25px;
}
.modal-box .modal-dialog .modal-content .modal-body .subscribe{
    color: #fff;
    background: #333;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 8px 30px;
    margin: 0 auto 20px;
    border: none;
    border-radius: 50px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.modal-box .modal-dialog .modal-content .modal-body .subscribe:hover{
    box-shadow: -5px 5px 1px rgba(0, 0, 0, 0.2);
}
.modal-box .modal-dialog .modal-content .modal-body .subscribe:before,
.modal-box .modal-dialog .modal-content .modal-body .subscribe:after{
    content: "";
    background: #ee5a24;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: skew(-45deg) scaleX(0);
    position: absolute;
    top: 0;
    right: 70%;
    z-index: -1;
    transition: transform 0.3s ease-in-out 0s;
}
.modal-box .modal-dialog .modal-content .modal-body .subscribe:after{
    right: auto;
    left: 70%;
}
.modal-box .modal-dialog .modal-content .modal-body .subscribe:hover:before,
.modal-box .modal-dialog .modal-content .modal-body .subscribe:hover:after{
    transform: skew(-45deg) scaleX(1.5);
}



@media only screen and (max-width:414px) {

  modal-box .modal{ top: 50px !important; }
 .modal-box .modal-dialog{
    width: 350px;
    margin: 10px auto 10px;
}
  
  .modal-box .modal-dialog .modal-content .modal-body .title{
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}

}


 .help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}


.text-effect span{
    color: #cc00af;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
    position: relative;
    animation: animate 1s alternate linear infinite;
}
.text-effect span:before,
.text-effect span:after{
    content: attr(data-content);
    color: #fbf7f4;
    width: 100%;
    height: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.text-effect span:after{
    height: 100%;
    -webkit-clip-path: polygon(0 49%, 100% 49%, 100% 100%, 0% 100%);
    clip-path: polygon(0 49%, 100% 49%, 100% 100%, 0% 100%);
    animation: animate_1 1s alternate linear infinite;
}
@keyframes animate{
    0%{ filter: hue-rotate(0); }
    100%{ filter: hue-rotate(360deg); }
}
@keyframes animate_1{
    0%{
        color: #fbf7f4;
        transform: skew(0) scale(1, 1);
    }
    100%{
        color: #d3cfcc;
        transform: skew(-20deg) scale(1, 0.5);
    }
}
@media only screen and (max-width: 990px){
    .text-effect span{
        font-size: 80px;
        line-height: 100px;
    }
}
@media only screen and (max-width: 767px){
    .text-effect span{
        font-size: 55px;
        line-height: 67px;
    }
}
@media only screen and (max-width: 479px){
    .text-effect span{
        font-size: 40px;
        line-height: 48px;
    }
}
@media only screen and (max-width: 359px){
    .text-effect span{
        font-size: 35px;
        line-height: 42px;
    }
}



.b-0 {
    bottom: 0;
}
.bg-shadow {
    background: rgba(76, 76, 76, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(179, 171, 171, 0)), color-stop(49%, rgba(48, 48, 48, 0.37)), color-stop(100%, rgba(19, 19, 19, 0.8)));
    background: linear-gradient(to bottom, rgba(179, 171, 171, 0) 0%, rgba(48, 48, 48, 0.71) 49%, rgba(19, 19, 19, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );
}
.top-indicator {
    right: 0;
    top: 1rem;
    bottom: inherit;
    left: inherit;
    margin-right: 1rem;
}
.overflow {
    position: relative;
    overflow: hidden;
}
.zoom img {
    transition: all 0.2s linear;
}
.zoom:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



/*--------------------*/
/* COVID 19 */
/*--------------------*/

.covid img {
  max-height: 80px;
   text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;

}



/*--------------------*/
/* PARAGRAPH ABOUT US */
/*--------------------*/

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more {
  color: #fff !important;
}


.layout_padding {
  padding-top: 75px;
  padding-bottom: 75px;
}

.padding_left_right {
  padding-left: 30px;
  padding-right: 30px;
}

h3.small_heading {
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}
.dark_bg {
  background: #000;
}
.heading_main h2 {
    font-size: 40px;
    letter-spacing: -0.5px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.heading_main p.large {
    font-size: 20px;
    color: #605f5f;
    position: relative;
    padding: 0;
    font-weight: 500;
    margin: 0;
}

.heading_main p {
    font-family: 'Raleway', sans-serif;
}

.heading_main p.small_tag {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 2px;
    font-weight: 600;
    margin: 0;
}

.padding_0 {
  padding: 0;
}

.full {
  width: 100%;
}

.heading_main {
    float: left;
    display: flex;
}



/*--------------------------------------------------------------
# CONTACT US DIVIDER
--------------------------------------------------------------*/
.contact-divider {
  background: #f0f0f0;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #000;
}

.contact-divider .content {
  padding: 30px 30px 30px 0;
}

.contact-divider .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #000;
  margin-bottom: 30px;
}

.contact-divider .content p {
  margin-bottom: 30px;
}

.contact-divider .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.contact-divider .content .about-btn i {
  font-size: 14px;
}

.contact-divider .content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-divider .icon-boxes .icon-box {
  margin-top: 30px;
}

.contact-divider .icon-boxes .icon-box i {
  font-size: 40px;
  color: #e40000;
  margin-bottom: 10px;
}

.contact-divider .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.contact-divider.icon-boxes .icon-box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .contact-divider .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-divider {
    text-align: center;
  }
}




/*--------------------------------------------------------------
# DARK BG SMART GUARDING
--------------------------------------------------------------*/
.dark-bg-divider {
  background: #0f0042;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #FFF;
}

.dark-bg-divider .content {
  padding: 30px 30px 30px 0;
}

.dark-bg-divider .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #FFF;
  margin-bottom: 30px;
}

.dark-bg-divider .content p {
  margin-bottom: 30px;
}

.dark-bg-divider .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}
.dark-bg-divider .icon-boxes .box a {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  line-height: 1;
  color: #FFF;
  transition: 0.3s;
}

.dark-bg-divider .icon-boxes .box a:hover {
  color: #00ccf0;
}


.dark-bg-divider .icon-boxes .box h1 {
  font-size: 40px;
   font-weight: 700;
   color: #cc1616;
}

.dark-bg-divider.icon-boxes .box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .dark-bg-divider .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .dark-bg-divider {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta About
--------------------------------------------------------------*/
.cta-about {
  background: linear-gradient(rgba(2, 2, 2, 0.1), rgba(0, 0, 0, 0.2)), url("../img/divider-about.jpg") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.cta-about  h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.cta-about  p {
  color: #fff;
}

.cta-about  .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-about  .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}


.category {
  color: #cc1616;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
}



.smartguarding-fra {
    
        }
       .about-content {
            background: #FFF;
            display: -ms-flexbox;
            display: flex;
            flex-direction: row;
            -ms-flex-direction: row;
        }

        .img-content {
            width: 50%;
            font-size: 0;
            line-height: 0;
            position: relative;
            letter-spacing: 0;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 50%;
        }

        .img-content img {
            min-width: 100%;
            min-height: 100%;
            height: auto;
            object-fit: cover;
            width: 100%;
        }

        .text-block .title {
            max-width: 80%;
            font-size: 3rem;
            color: #3b3b3b;
            margin-bottom: 20px;
            font-weight: bold;
        }
        .text-block h3 {
            font-size: 2.5rem;
            color: #3b3b3b;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .text-block p {
            margin-bottom: 40px;
            font-size: 18px;
        }

        .text-block {
            padding: 80px 80px 60px 90px;
            display: -ms-flexbox;
            display: flex;
            flex-direction: column;
            width: 50%;
            padding: 50px 40px;
            -ms-flex-pack: center;
            justify-content: center;
            -ms-flex-direction: column;
            -ms-flex-align: start;
            align-items: flex-start;
        }

        @media only screen and (max-width: 767px) {
            .about-content {
                flex-direction: column;
                -ms-flex-direction: column;
            }
            .img-content {
                width: 100%;
            }
            .text-block {
                width: 100%;
            }

        }


.sm .content {
  padding: 30px;
  background: #e1e1e1;
  border-radius: 4px;
  color: #000;
}


.sm .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #ececec;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  transition: 0.3s;
}

.sm .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ce0000;
  margin-bottom: 30px;
}

.sm .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.sm .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

.sm .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}


.tabs {
  padding-top: 6.5rem;
  padding-bottom: 4.25rem;
}

.tabs h2 {
  margin-bottom: 1.125rem;
  text-align: center;
}

.tabs .p-heading {
  margin-bottom: 3.125rem;
}

.tabs .nav-tabs {
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  justify-content: center;
  border-bottom: none;
}

.tabs .nav-link {
  margin-bottom: 1rem;
  padding: 0.5rem 1.375rem 0.25rem 1.375rem;
  border: none;
  border-bottom: 0.1875rem solid #f1f1f8;
  border-radius: 0;
  color: #f1f1f8;
  font: 700 1rem/1.75rem "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tabs .nav-link.active,
.tabs .nav-link:hover {
  border-bottom: 0.1875rem solid #fff;
  background-color: transparent;
  color: #ff6a6a;
}

.tabs .nav-link .fas {
  margin-right: 0.375rem;
  font-size: 1rem;
}

.tabs .tab-content {
  width: 100%; /* for proper display in IE11 */
}

.tabs .card {
  border: none;
  background: transparent;
}

.tabs .card-body {
  padding: 1rem 0 1.25rem 0;
}

.tabs .card-title {
  margin-bottom: 0.5rem;
}

.tabs .card .card-icon {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #00c9db;
  text-align: center;
  vertical-align: top;
}

.tabs .card .card-icon .fas,
.tabs .card .card-icon .far {
  color: #fff;
  font-size: 1.75rem;
  line-height: 3.5rem;
}

.tabs #tab-1 .card.left-pane .text-wrapper {
  display: inline-block;
  width: 75%;
}

.tabs #tab-1 .card.left-pane .card-icon {
  float: left;
  margin-right: 1rem;
}

.tabs #tab-1 img {
  display: block;
  margin: 2rem auto 3rem auto;
}

.tabs #tab-1 .card.right-pane .text-wrapper {
  display: inline-block;
  width: 75%;
}

.tabs #tab-1 .card.right-pane .card-icon {
  margin-right: 1rem;
}

.tabs #tab-2 img {
  display: block;
  margin: 0 auto 2rem auto;
}

.tabs #tab-2 .text-area {
  margin-top: 1.5rem;
}

.tabs #tab-2 h3 {
  margin-bottom: 0.75rem;
}

.tabs #tab-2 .icon-cards-area {
  margin-top: 2.5rem;
}

.tabs #tab-2 .icon-cards-area .card {
  width: 100%; /* for proper display in IE11 */
}

.tabs #tab-3 .icon-cards-area .card {
  width: 100%; /* for proper display in IE11 */
}

.tabs #tab-3 .text-area {
  margin-top: 0.75rem;
  margin-bottom: 4rem;
}

.tabs #tab-3 h3 {
  margin-bottom: 0.75rem;
}

.tabs #tab-3 img {
  margin: 0 auto 3rem auto;
}


/*--------------------------------------------------------------
# Video wall
--------------------------------------------------------------*/
.videowall #videowall-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.videowall #videowall-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  border-bottom: 3px solid red;
}

.videowall #videowall-flters li:hover, .videowall#videowall-flters li.filter-active {
  color: #e82d2d;
}

.videowall #videowall-flters li:last-child {
  margin-right: 0;
}

.videowall .videowall-item {
  margin-bottom: 30px;
}

.videowall .videowall-item .videowall-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.videowall .videowall-item .videowall-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #191919;
}

.videowall .videowall-item .videowall-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}

.videowall .videowall-item .videowall-info .preview-link, .videowall .videowall-item .videowall-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.videowall .videowall-item .videowall-info .preview-link:hover, .videowall .videowall-item .videowall-info .details-link:hover {
  color: #cc1616;
}

.videowall .videowall-item .videowall-info .details-link {
  right: 10px;
}

.videowall .videowall-item .videowall-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.videowall .videowall-item .videowall-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.videowall .videowall-item .videowall-links a:hover {
  color: #e82d2d;
}

.videowall .videowall-item:hover .videowall-info {
  opacity: 1;
  bottom: 20px;
}


/*--------------------------------------------------------------
# Category Video Wall
--------------------------------------------------------------*/
.category-videowall .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.category-videowall .icon-box i {
  float: left;
  color: #f62424;
  font-size: 60px;
}

.category-videowall .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.category-videowall .icon-box h4 a {
  color: #05579e;
  transition: 0.3s;
}

.category-videowall .icon-box h4 a:hover {
  color: #0880e8;
}

.category-videowall .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Cta smart display
--------------------------------------------------------------*/
.hologram {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hologram.png") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.hologram h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.hologram p {
  color: #fff;
}

.hologram.cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.hologram .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}


/*--------------------------------------------------------------
# Cta videowall - our video
--------------------------------------------------------------*/
.cta-videowall {
  background:  url("../img/background-specification.jpg") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.cta-videowall h3 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
}

.cta-videowall p {
  color: #fff;
}

.cta-videowall .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-videowall .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}



/*--------------------------------------------------------------
# Installation
--------------------------------------------------------------*/
.installation #installation-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.installation #installation-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  border-bottom: 3px solid red;
}

.installation #installation-flters li:hover, .installation#installation-flters li.filter-active {
  color: #e82d2d;
}

.installation #installation-flters li:last-child {
  margin-right: 0;
}

.installation .installation-item {
  margin-bottom: 30px;
}

.installation .installation-item .installation-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.installation .installation-item .installation-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #191919;
}

.installation .installation-item .installation-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}

.installation .installation-item .installation-info .preview-link, .installation .installation-item .installation-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.installation .installation-item .installation-info .preview-link:hover, .installation .installation-item .installation-info .details-link:hover {
  color: #cc1616;
}

.installation .installation-item .installation-info .details-link {
  right: 10px;
}

.installation .installation-item .installation-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.installation .installation-item .installation-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.installation .installation-item .installation-links a:hover {
  color: #e82d2d;
}

.installation .installation-item:hover .installation-info {
  opacity: 1;
  bottom: 20px;
}


/*--------------------------------------------------------------
# Smart Building 
--------------------------------------------------------------*/
.building {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/building.png") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.building h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.building p {
  color: #fff;
}

.building.cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.building .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}

.building ul {
  list-style: none;
  padding: 0;
  color: #FFF;
}

.building ul li {
  padding-left: 28px;
  position: relative;
}

.building ul li + li {
  margin-top: 10px;
}

.building ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #cc1616;
  line-height: 1;
}


/*--------------------------------------------------------------
# Smart Home
--------------------------------------------------------------*/
.smarthome .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.1s;
  background: #fff;
}

.smarthome .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #e60c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.1s;
  color: #e60c0c;
}

.smarthome .icon-box .icon i {
  font-size: 28px;
}

.smarthome .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.smarthome .icon-box h4 a {
  color: #000;
  transition: ease-in-out 0.3s;
}

.smarthome .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.smarthome .icon-box {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.smarthome .icon-box:hover h4 a {
  color: #e60c0c;
}

.smarthome .icon-box:hover .icon {
  color: #fff;
  background: #e60c0c;
}

.video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ee3131 50%, rgba(206, 176, 84, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.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);
}

.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(247, 1, 1, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
  border-left: 15px solid #fcba03;
  transform: scale(20);
}

.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;
}


.carousel-indicators{   
    top:105%;   
}
    
.carousel-indicators li{
    background-color:#FFF;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='red' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='red' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}
section{
  padding:100px 0px;
}

.view-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
}
.thumbnail
{
    margin-bottom: 30px;
    padding: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.item.list-group-item
{
    float: none;
    width: 100%;
    background-color: #fff;
    margin-bottom: 30px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 1rem;
    border: 0;
}
.item.list-group-item .img-event {
    float: left;
    width: 30%;
}

.item.list-group-item .list-group-image
{
    margin-right: 10px;
}
.item.list-group-item .thumbnail
{
    margin-bottom: 0px;
    display: inline-block;
}
.item.list-group-item .caption
{
    float: left;
    width: 70%;
    margin: 0;
}

.item.list-group-item:before, .item.list-group-item:after
{
    display: table;
    content: " ";
}

.item.list-group-item:after
{
    clear: both;
}



.benefit-career a {
  color: #5b7abb;
  display: block;
}

.benefit-career h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #56ceba;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.benefit-career-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width:100%;
  height: 300px;
}

.benefit-career {
  background: #fff;
  margin: 20px;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #e7e7e7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit-career:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.benefit-career i {
  font-size: 3.45rem;
  margin: 1rem 0;
}

.benefit-career1 i,
.benefit-career1 h4,
.benefit-career1 .cta {
  color: #42b7ca;
}

.benefit-career1:hover {
  border: 2px solid #42b7ca;
}

.benefit-career2 i,
.benefit-career2 h4,
.benefit-career2 .cta {
  color: #425fca;
}

.benefit-career2:hover {
  border: 2px solid #425fca;
}

.benefit-career3 i,
.benefit-career3 h4,
.benefit-career3 .cta {
  color: #9c42ca;
}

.benefit-career3:hover {
  border: 2px solid #9c42ca;
}

.benefit-career .cta span {
  font-size: 0.6rem;
}

.benefit-career > * {
  flex: 1 1 100%;
}

.benefit-career .cta {
  align-self: flex-end;
}

@media all and (max-width:900px) {
  .benefit-career-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}


.benefit-career ul li {
    height: 280px;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    float: left;
    margin-right: 5%;
    width: 45%;
    position: relative;
    margin-bottom: 5%;
    text-align: center;
    list-style:none;
}

.mob_posi {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

ul li span {
    width: 75px;
    height: 75px;
    border: 1px solid #CECECE;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 75px;
    margin-bottom: 25px;
    position: relative;
}

ul li span:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: -2px;
    left: -2px;
    padding: 0;
    z-index: 10;
    border: 2px dashed #ed1b24;
    opacity: 0;
}

ul li p {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    text-align: center;
    font-weight: 500;
        font-style: normal;
    margin-bottom: 22px;
}

ul li span i{
    font-family:fontawesome;
}

ul li:hover span:after {
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
    opacity: 1;
}



.btn-solid-reg {
  display: inline-block;
  padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  border: 0.125rem solid #000;
  width:60%;
  background-color: #FFF;
  color: #000;
  font: 700 0.75rem/0 "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
}

.btn-solid-reg:hover {
   border: 0.125rem solid #cc1616;
   background-color: #000;
  color: #FFF;
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid #00c9db;
  border-radius: 2rem;
  background-color: #00c9db;
  color: #fff;
  font: 700 0.75rem/0 "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  background-color: transparent;
  color: #00c9db;
  text-decoration: none;
}

.btn-solid-lg .fab {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  line-height: 0;
  vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
  font-size: 1rem;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  border: 0.125rem solid #00c9db;
  border-radius: 2rem;
  background-color: transparent;
  color: #00c9db;
  font: 700 0.75rem/0 "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #00c9db;
  color: #fff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid #00c9db;
  border-radius: 2rem;
  background-color: transparent;
  color: #00c9db;
  font: 700 0.75rem/0 "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #00c9db;
  color: #fff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.625rem 0.875rem 1.625rem;
  border: 0.125rem solid #00c9db;
  border-radius: 2rem;
  background-color: transparent;
  color: #00c9db;
  font: 700 0.625rem/0 "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #00c9db;
  color: #fff;
  text-decoration: none;
}


/* Fade-move Animation For Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0); 
  -ms-transform: translateY(0) perspective(37.5rem) rotateX(0); 
  transform: translateY(0) perspective(37.5rem) rotateX(0); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
  -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
  transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}
/* end of fade-move animation for lightbox - magnific popup */


/**********************************/
/*     11. Details Lightboxes     */
/**********************************/
.lightbox-basic {
  position: relative;
  max-width: 80rem;
  margin: 2.5rem auto;
  padding: 2rem 1rem;
  border-radius: 0.25rem;
  background-color: #FFF;
  text-align: left;
}

.lightbox-basic img {
  display: block;
  margin-right: auto;
  margin-bottom: 3rem;
  margin-left: auto;
}

.lightbox-basic h3 {
  margin-bottom: 0.625rem;
}

.lightbox-basic hr {
  width: 3.75rem;
  height: 0.125rem;
  margin-top: 0.125rem;
  margin-bottom: 1.125rem;
  margin-left: 0;
  border: 0;
  background-color: #00c9db;
  text-align: left;
}

.lightbox-basic h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.lightbox-basic table {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.lightbox-basic table tr {
  line-height: 1.75em;
}

.lightbox-basic table .icon-cell {
  width: 2rem;
  padding-right: 0.25rem;
  color: #00c9db;
  text-align: center;
}

.lightbox-basic a.mfp-close.as-button {
  position: relative;
  padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  width: auto;
  color: #00c9db;
  opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
  color: #f1f1f8;
}

.lightbox-basic button.mfp-close.x-button {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  width: 4rem;
  height: 3rem;
  color: #000;
}




/*--------------------------------------------------------------
# Cta smart display
--------------------------------------------------------------*/
.video-wall-smart-display {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/videowall.png") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.video-wall-smart-display h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.video-wall-smart-display p {
  color: #fff;
}

.video-wall-smart-display .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.video-wall-smart-display .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}




/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


.smartdisplay-vd  {
  background: #f5faff;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #000;
}
.smartdisplay-vd .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.smartdisplay-vd .content ul {
  list-style: none;
  padding: 0;
}

.smartdisplay-vd .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.smartdisplay-vd .content ul li:first-child {
  margin-top: 35px;
}

.smartdisplay-vd .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #ea1010;
  border-radius: 50px;
}

.smartdisplay-vd .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.smartdisplay-vd .content ul p {
  font-size: 15px;
}

.smartdisplay-vd .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#herosmartdisplay-vd {
  background: #FFF;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #000;
}


#herosmartdisplay-vd:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#herosmartdisplay-vd .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#herosmartdisplay-vd h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #000;
  font-family: "Poppins", sans-serif;
}

#herosmartdisplay-vd h1 span {
  color: #ffc451;
}

#herosmartdisplay-vd h2 {
  color: rgba(26, 26, 26, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#herosmartdisplay-vd .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid #000;
  height: 100%;
  text-align: center;
}

#herosmartdisplay-vd .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#herosmartdisplay-vd .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#herosmartdisplay-vd .icon-box h3 a {
  color: #000;
  transition: ease-in-out 0.3s;
}

#herosmartdisplay-vd .icon-box h3 a:hover {
  color: #cc1616;
}

#herosmartdisplay-vd .icon-box:hover {
  border-color: #ffc451;
}

@media (min-width: 1024px) {
  #herosmartdisplay-vd {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herosmartdisplay-vd {
    height: auto;
  }
  #herosmartdisplay-vd h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #herosmartdisplay-vd h2 {
    font-size: 20px;
    line-height: 24px;
  }
}



/*--------------------------------------------------------------
# virtual-reality  DIVIDER
--------------------------------------------------------------*/
.virtual-reality {
  background: #FFF;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #000;
}

.virtual-reality .content {
  padding: 30px 30px 30px 0;
}

.virtual-reality .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #000;
  margin-bottom: 30px;
}

.virtual-reality .content p {
  margin-bottom: 30px;
}

.virtual-reality .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.virtual-reality .content .about-btn i {
  font-size: 14px;
}

.virtual-reality.content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.virtual-reality .icon-boxes .icon-box {
  margin-top: 30px;
}

.virtual-reality .icon-boxes .icon-box i {
  font-size: 40px;
  color: #e40000;
  margin-bottom: 10px;
}

.virtual-reality .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.virtual-reality .icon-boxes .icon-box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .virtual-reality .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .virtual-reality {
    text-align: center;
  }
}




/*--------------------------------------------------------------
# fun
--------------------------------------------------------------*/
.functions-features .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.functions-features .content ul {
  list-style: none;
  padding: 0;
}

.functions-features .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.functions-features .content ul li:first-child {
  margin-top: 35px;
}

.functions-features .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #cc1616;
  border-radius: 50px;
}

.functions-features .content ul h5 {
  font-size: 18px;
  color: #555555;
  font-weight: 700;
}

.functions-features .content ul p {
  font-size: 15px;
  text-align: left;
}

.functions-features .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# About Us hero Section
--------------------------------------------------------------*/
#hero-interactive-display {
  width: 100%;
  height: 80vh;
  background: url('../img/header-interactive-display.jpg') top center;
  background-size: cover;
  position: relative;
}

#hero-interactive-display:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-interactive-display .container {
  padding-top: 70px;
}

#hero-interactive-display h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-about-us h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-interactive-display .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-interactive-display .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-interactive-display {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-interactive-display {
    text-align: center;
  }
  #hero-interactive-display .container {
    padding-top: 40px;
  }
  #hero-interactive-display h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-interactive-display h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Cta APPLICATION IWB - our video
--------------------------------------------------------------*/
.cta-applicationIWB {
  background:  url("../img/application.png") fixed center center;
  background-size: cover;
  padding: 140px 0;
}

.cta-applicationIWB h3 {
  color: #FFF;
  font-size: 44px;
  font-weight: 700;
  text-shadow: 1px 1px 2px black;
}

.cta-applicationIWB p {
  color: #fff;
}

.cta-applicationIWB .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-applicationIWB .cta-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}

.iwb-title {
  color: #000;
  font-size: 70px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .iwb-title {
    color: #000;
    font-size: 40px;
    font-weight: 700;
  }
}

@media screen and (max-width: 414px) {
  .iwb-title {
    color: #000;
    font-size: 50px;
    font-weight: 700;
  }
}



.header-videowall {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.header-videowall video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100vh;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}


@media screen and (max-width: 420px) {
.header-videowall {
  position: relative;
  background-color: black;
  height: 25vh;
  min-height: 20rem;
  width: 100%;
  overflow: hidden;
}

  .header-videowall video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

}



.header-videowall01 {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.header-videowall01 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100vh;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}



.header-videowall02 {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.header-videowall02 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.header-videowall02 .container {
  position: relative;
  z-index: 2;
}

.header-videowall02 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}





.modal-backdrop {
    background: rgba(0, 0, 0, 10);
}

.modal-dialog .modal-content{ border-radius: 30px; }
.modal-dialog .modal-content .close{
    color:#000;
    background-color: #e7e7e7;
    font-size: 30px;
    text-shadow: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    left: auto;
    top: 8px;
    right: 8px;
    z-index: 1;
    transition: all 0.3s;
}
.modal-dialog .modal-content .close span{
    margin: -2px 0 0 0;
    display: block;
}
.modal-dialog .modal-content .close:hover{ color: #888; }
.modal-dialog .modal-content .modal-body{ padding: 0 0 !important; }
.modal-dialog .modal-content .modal-body:after{
    content: '';
    display: block;
    clear: both;
}

.modal-dialog .modal-content .modal-body {
   background-image: url(../img/video-wall.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.modal-dialog .modal-content .modal-body .modal-left-content{
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    width: 40%;
    min-height: 500px;
    padding: 80px 0;
    display: inline-block;
    float: left;
}
.modal-dialog .modal-content .modal-body .modal-left-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.modal-dialog .modal-content .modal-body .modal-left-content ul li{
    font-size: 40px;
    display: inline-block;
}
.modal-dialog .modal-content .modal-body .modal-left-content ul li:first-child,
.modal-dialog .modal-content .modal-body .modal-left-content ul li:last-child{
    font-size: 20px;
}
.modal-dialog .modal-content .modal-body .modal-left-content .title{
    font-size: 30px;
    font-weight: 800;
    line-height: 35px;
    font-family: "Montserrat", sans-serif;
    margin-top:80px;
}
 .modal-dialog .modal-content .modal-body .modal-left-content .title span{
    font-size: 40px;
    font-weight: 900;
    color: #ff0000;
}
.modal-dialog .modal-content .modal-body .modal-main-content{
    width: 60%;
    padding: 28px 20px;
    display: inline-block;
    background: ;
    min-height: 500px;

}
.modal-dialog .modal-content .modal-body .sub-title{
    color: #ff790a;
    font-size: 50px;
    font-weight: 900;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.modal-dialog .modal-content .modal-body .description{
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.modal-dialog .modal-content .modal-body .form-group{ margin: 0 0 15px; }
.modal-dialog .modal-content .modal-body .form-control{
    color: #000;
    background: #dee2e6;
    font-size: 16px;
    letter-spacing: 1px;
    height: 40px;
    padding: 2px 15px 2px 15px;
    margin: 0 auto;
    box-shadow: none;
    border: none;
    display: inline-block;
    transition: all 0.3s;
}
.modal-dialog .modal-content .modal-body .form-control::placeholder{
    color: #909090;
    font-size: 14px;
}
.modal-dialog .modal-content .modal-body .form-control:focus{
    box-shadow: none;
    border: none;
}

.modal-dialog .modal-content .modal-body .form-control-message{
    color: #000;
    background: #dee2e6;
    font-size: 16px;
    letter-spacing: 1px;
    height: 100px;
    width: 100%;
    padding: 2px 15px 2px 15px;
    margin: 0 auto;
    box-shadow: none;
    border: none;
    display: inline-block;
    transition: all 0.3s;
}
.modal-dialog .modal-content .modal-body .form-control-message::placeholder{
    color: #909090;
    font-size: 14px;
}
.modal-dialog .modal-content .modal-body .form-control-message:focus{
    box-shadow: none;
    border: none;
}
.modal-dialog .modal-content .modal-body .submit-enquiry{
    color: #fff;
    background-color: #dc3545;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 30px;
    margin: 0 auto;
    border:0 solid transparent;
    display: block;
    transition: all 0.3s ease-in-out;
}
.modal-dialog .modal-content .modal-body .submit-enquiry:hover{
    text-shadow: 3px 3px 0 #888;
    box-shadow: 0 0 15px rgba(0,0,0,0.4) inset;
}
@media only screen and (max-width: 576px){
    .modal-dialog{ width: 95% !important;  margin-top: 80px;}
     .modal-dialog .modal-content .modal-body .modal-left-content,
     .modal-dialog .modal-content .modal-body .modal-main-content{
        width: 100%;
        display: block;
        float: none;
        padding: 40px 20px;
        min-height: auto;

    }
    .modal-dialog .modal-content .modal-body .modal-left-content .title span{
        font-size: 30px;
    }
}

.post-slide{margin:0 10px;box-shadow:0 1px 2px rgba(43,59,93,.3);margin-bottom:2em}
.post-slide .post-img{position:relative;overflow:hidden}
.post-slide .post-img img{width:100%;height:auto}
.post-slide .category{padding:0;margin:0;list-style:none}
.post-slide .category li,.post-slide6 .post-date{display:inline-block;font-size:16px;color:#fff;text-transform:capitalize}
.post-slide .category li:after{content:" /"}
.post-slide .category li:last-child:after{content:""}
.post-slide .category li a{color:#fff;transition:all .4s linear}
.post-slide .category li a:hover{color:#555;text-decoration:none}
.post-slide .post-review{padding:35px 20px 25px;background:#fff;position:relative}
.post-slide .post-title{margin:0 0 25px 0}
.post-slide .post-title a{font-size:20px;font-weight:700;color:#000;display:inline-block;text-transform:uppercase;transition:all .3s linear 0s}
.post-slide .post-title a:hover{text-decoration:none;color:#0031a5}
.post-slide .post-description{color:#555;font-size:15px;line-height:26px;margin-bottom:20px}
.post-slide .read{font-size:16px; font-weight: 700;color:#555;display:block;text-align:right;text-transform:uppercase;}
.post-slide .read:hover{text-decoration:none;color:#1dcfd1}


.mega-menu{width: 800px; overflow: hidden; padding: 10px;}
.mega-menu a{text-decoration: none; color: cadetblue;}
.mega-menu .sub-menu-heading{ color: darkcyan;}
@media(max-width:500px){
  .mega-menu{width: 300px;}
}




/*--------------------------------------------------------------
# other hero Section
--------------------------------------------------------------*/
#hero-privacy {
  width: 100%;
  height: 80vh;
  background: url('../img/privacy.jpg') top center;
  background-size: cover;
  position: relative;
}

#hero-privacy:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-privacy .container {
  padding-top: 70px;
}

#hero-privacy h1 {
  margin: 0 0 10px 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

#hero-privacy h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero-privacy .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-privacy .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero-privacy {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero-privacy {
    text-align: center;
  }
  #hero-privacy .container {
    padding-top: 40px;
  }
  #hero-privacy h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-privacy h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}