/**
* Template Name: Rapid - v4.1.0
* Template URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham.otf");
}

@font-face {
  font-family: "Gotham_L";
  src: url("../../fonts/GothamLight.ttf");
}

@font-face {
  font-family: "Gotham_B";
  src: url("../../fonts/Gotham-Bold.otf");
}

@font-face {
  font-family: "Gotham_Book";
  src: url("../../fonts/Gotham-Book.ttf");
}
@font-face {
  font-family: "Gotham_M";
  src: url("../../fonts/Gotham-Medium.ttf");
}
@font-face {
  font-family: "FuturaNext-Book";
  src: url("../../fonts/FuturaNext-Book.otf");
}



body {
  background: #fff;
  color: #444;
  font-family: Gotham;
}

a {
  color: #1bb1dc;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Gotham;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
p {
  font-family: "Gotham", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.loader-wrapper {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #eeeeee4d;
  width: 100%;
  height: 100%;
}
.loader-wrapper img {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20%;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1bb1dc;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #39c0e7;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #fff;
  height: 70px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #413e66;
}

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

#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #555186;
  transition: 0.3s;
  line-height: 0;
  margin-left: 15px;
}

#header .social-links a i {
  line-height: 0;
}

#header .social-links a:hover {
  color: #1bb1dc;
}

@media (max-width: 992px) {
  #header .social-links {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 8px 24px;
  font-family: Gotham_L;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: normal;
  color: #413e66;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  margin-top: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #1bb1dc;
}

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

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  display: block;
  padding: 10px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #1bb1dc;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #413e66;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 43, 70, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 150px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #413e66;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #1bb1dc;
  background-color: #f3f3f3;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #1bb1dc;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/intro-bg.jpg") center top no-repeat;
  background-size: cover;
  padding-top: 90px;
}

#hero .intro-img {
  padding-top: 50px;
}

@media (min-width: 1400px) {
  #hero .intro-img {
    padding-top: 25px;
  }
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }
  #hero .container {
    height: auto !important;
  }
  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h2 {
  color: #ffffff;
  font-family: Gotham;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: normal;
}

#hero .intro-info h2 span {
  color: #1bb1dc;
}

@media (max-width: 991px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
  font-family: Gotham;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0px 0px;
  border-radius: 0px;
  transition: 0.5s;
  color: #fff;
  background: none;
  color: #fff;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
  background: none;
  color: #0a98c0;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #4e357f;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: Gotham;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

.section-header2 p {
  font-family: Gotham_L;
  /*  text-align: center;*/
  text-align: justify;
  margin: auto;
  font-size: 20px;
  padding-bottom: 60px;
  color: #fff;
  /*  width: 50%;*/
  width: 99%;
}

.section-header3 h3 {
  font-size: 36px;
  color: #4e357f;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: Gotham;
  margin-left: -10px;
}

.section-header-bandra h3 {
  font-size: 40px;
  letter-spacing: 1pt;
  color: #1ab3e8;
  text-align: center;
  font-weight: 700;
  padding-bottom: 0px;
  padding-top: 60px;
  position: relative;
  font-family: Gotham;
}

.section-header-bandra h4 {
  font-size: 40px;
  letter-spacing: 1pt;
  color: #1ab3e8;
  text-align: left;
  font-weight: 700;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  font-family: Gotham;
}

.section-header-bandra2 h4 {
  font-size: 40px;
  letter-spacing: 1pt;
  color: #1ab3e8;
  text-align: left;
  font-weight: 700;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  font-family: Gotham;
}

.section-header3 p {
  font-family: Gotham_L;
  /*  text-align: center;*/
  text-align: justify;
  margin: auto;
  font-size: 20px;
  padding-bottom: 30px;
  color: #fff;
  /*  width: 50%;*/
  width: 99%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f5f8fd;
}
.section-bg2 {
  background: #6a5d61;
}

.section-bg3 {
  background: #5d5155;
}

.section-bg-bandra {
  background: #e1e1d8;
}

.section-bg-bandra2 {
  background: #58595b;
}

/* Why Us Section
--------------------------------*/
#why-us {
  padding: 60px 0;
}

@media (max-width: 991px) {
  #why-us .why-us-content {
    padding-top: 30px;
  }
}

#why-us .why-us-content .features {
  margin: 0 0 15px 0;
  padding: 0;
}

#why-us .why-us-content .features i {
  font-size: 36px;
  float: left;
}

#why-us .why-us-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #ffffff;
  margin-bottom: 5px;
}

#why-us .why-us-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #ffffff;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: Gotham;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #555186;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #8a87b6;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #2d2b46;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1bb1dc;
  border: 3px solid #1bb1dc;
}

/* ----Iconic Platinum----Features Section 
--------------------------------*/
/*.vertical-line{
        display: inline-block;
        border-left: 5px solid #ccc;
        margin: 0 10px;
        height: 100%;
    }*/

#features {
  padding: 0px 30px 60px 30px;
  background-color: #210042;
}

#features .fea-text {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #abadb0;
}

#features .fea-text a {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#features .fea-text a:hover {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #1bb1dc;
}

#features h4 {
  font-family: Gotham;
  font-weight: normal;
  font-size: 28px;
  margin-top: 50px;
  letter-spacing: 1px;
  color: #abadb0;
}

@media (min-width: 320px) and (max-width: 991px) {
  #features {
    padding: 0px 30px 25px 30px;
  }

  #features h4 {
    font-family: Gotham;
    font-weight: normal;
    font-size: 28px;
    margin-top: 22px;
    letter-spacing: 1px;
    color: #abadb0;
  }
}

/* ----Timelin----Legacy Page Section 
--------------------------------*/
/*.vertical-line{
        display: inline-block;
        border-left: 5px solid #ccc;
        margin: 0 10px;
        height: 100%;
    }*/

#timeline_legacy {
  padding: 0px 30px 60px 30px;
  background-color: #00a7d5;
}

#timeline_legacy .fea-text {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #abadb0;
}

#timeline_legacy .fea-text a {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#timeline_legacy .fea-text a:hover {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #1bb1dc;
}

#timeline_legacy h4 {
  font-family: Gotham;
  font-weight: normal;
  font-size: 28px;
  margin-top: 50px;
  letter-spacing: 1px;
  color: #abadb0;
}

@media (min-width: 320px) and (max-width: 991px) {
  #timeline_legacy {
    padding: 0px 30px 25px 30px;
  }

  #timeline_legacy h4 {
    font-family: Gotham;
    font-weight: normal;
    font-size: 28px;
    margin-top: 22px;
    letter-spacing: 1px;
    color: #abadb0;
  }
}

/* -----OOH VALUE PACK----- About Us Section
--------------------------------*/

#about {
  padding: 0px 0;
  padding-bottom: 30px;
}

#about .about-content {
  padding-top: 0px;
}

#about .about-content h2 {
  color: #413e66;
  font-family: Gotham;
  font-weight: 700;
}

#about .about-content h4 {
  color: #413e66;
  font-family: Gotham;
  font-weight: 300;
}

#about .about-content p {
  color: #858789;
  font-family: Gotham;
  font-weight: normal;
}
.bilieve-para {
  font-size: 24.5px;
  color: #000 !important;
}
#about .fea-text a {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #000000;
}

#about .fea-text a:hover {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #1bb1dc;
}

#about .about-content h3 {
  color: #858789;
  font-weight: 400;
  font-size: 35px;
  font-style: normal;
}

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

#about .about-content ul li {
  padding-bottom: 10px;
}

#about .about-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #1bb1dc;
}

#about .about-img {
  position: relative;
  margin-top: 30px;
}

#about .about-img img {
  width: 100%;
  border: 0px solid #fff;
  transition: 0.5s;
}
#about .about-img2 .img-ooh {
  width: 70%;
}
/*#about .about-img img:hover {
  width: 100%;
  transform: scale(1.08);
}*/

#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ffffff;
  transition: 0.5s;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ffffff;
  transition: 0.5s;
}

#about .about-img2 {
  position: relative;
  margin-top: 30px;
}

#about .about-img2 img {
  width: 100%;
  border: 0px solid #fff;
  transition: 0.5s;
}

/* #about .about-img2 img:hover {
  width: 70%;
  transform: scale(1.08);
} */

@media (min-width: 320px) and (max-width: 991px) {
  #about .about-img {
    position: relative;
    margin-top: 56px;
    /*  margin: 30px 30px 30px 30px;*/
  }
}

/* ------HANUMAN VIDEO-----Services Section
--------------------------------*/
#hanuman_video {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  width: 100%;
  height: auto;
  position: relative;
  background-color: #0e0a0d;
}

/* Services Section---Classification Page Section-----
--------------------------------*/
#services {
  /* padding: 60px 0 40px 0;*/
  padding: 60px 0 0px 0;
}

.services h3 {
  font-size: 36px;
  padding-top: 5px;
  padding-left: 10px;
  color: #fff;
  text-align: left;
  font-weight: 300;
  position: relative;
  font-family: Gotham_L;
}

.services .or {
  font-size: 30px;
  padding-left: 10px;
  padding-top: 27px;
  color: #fff;
  text-align: left;
  font-weight: 300;
  position: relative;
  font-family: Gotham_L;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 10px 40px 10px;
  background: #f4b428;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

/*#services .box_test {
  padding: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 0px 20px 0px;
  background: #f4b428;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}*/

#services .box2 {
  padding: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 10px 40px 10px;
  background: #f4b428;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box3 {
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 10px 40px 10px;
  background: #f4b428;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box4 {
  padding: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin: 0 10px 40px 10px;
  background: #6a5d61;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .b {
  /*padding: 30px;*/
  margin-left: 10px;
  /*margin-right: 60px;*/
  border: solid;
  border-color: #f4b428;

  /*border-left: #f4b428;*/
}

#services .b_head {
  font-family: Gotham;
  font-size: 22px;
  line-height: 42px;
  color: #66555a;
  margin-left: 30px;
}

#services .b2 {
  /*padding: 30px;*/
  border-bottom: solid;
  border-color: #f4b428;
  font-family: Gotham;
  font-size: 20px;
  line-height: 40px;
  color: #f4b428;

  /*border-left: #f4b428;*/
}

/*Large Table*/

#services .b_L {
  padding: 0px;
  border: solid;
  border-color: #f4b428;

  /*border-left: #f4b428;*/
}

#services .b_L_head {
  font-family: Gotham;
  text-align: center;
  font-size: 10px;
  line-height: 42px;
  color: #66555a;
  margin-left: 0px;
}

#services .b_L2 {
  /*padding: 30px;*/
  border-bottom: solid;
  border-color: #f4b428;
  font-family: Gotham;
  text-align: center;
  font-size: 10px;
  line-height: 40px;
  color: #f4b428;

  /*border-left: #f4b428;*/
}

/*#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}*/

#services .icon {
  /* margin: 0 auto 15px auto;*/
  padding-top: 2px;
  display: inline-block;
  text-align: center;
}

#services .icon i {
  font-size: 36px;
  line-height: 0;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #66555a;
}

#services .title a {
  color: #66555a;
}

#services .box:hover .title a {
  color: #111;
}

#services .title a {
  color: #66555a;
}

#services .box:hover .title a {
  color: #111;
}

#services .description {
  font-family: Gotham_L;
  font-size: 20px;
  color: #000;
  line-height: 28px;
  margin-bottom: 0px;
  text-align: center;
}

#services .title2 {
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 22px;
  color: #66555a;
}

#services .title2 a {
  color: #66555a;
}

#services .box:hover .title2 a {
  color: #111;
}

#services .title2 a {
  color: #66555a;
}

#services .box:hover .title2 a {
  color: #111;
}

#services .description2 {
  font-family: Gotham_L;
  font-size: 20px;
  color: #000;
  line-height: 28px;
  margin-bottom: 10px;
  text-align: center;
}

@media (min-width: 320px) and (max-width: 991px) {
  #services2 .b_L {
    visibility: hidden;

    /*  margin: 30px 30px 30px 30px;*/
  }

  #services2 {
    visibility: hidden;

    /*  margin: 30px 30px 30px 30px;*/
  }
}

/* ----Vehicle Detection Tech-----ohhtraffic----Features Section 
--------------------------------*/

/*#ohhtraffic {
  padding: 0px 0;
  background: #200041;*/
/*background: #f5f8fd url("../img/ooh-traffic.png") center top no-repeat;
 width: 100%;
 height:100%;*/

/* background-image: url(../img/ooh-traffic.png);*/
/*  background-size: cover;*/

#ohhtraffic {
  width: 100%;
  height: auto;
  position: relative;
  /* background: #f5f8fd url("../img/oohtrafic_ligh_larget.png") center top no-repeat;
  background-size: cover; */
  padding-top: 0px;
}

#ohhtraffic .video-wrap,
.section .video-wrap,
.swiper-slide .yt-bg-player,
.section .yt-bg-player,
.swiper-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

#ohhtraffic .ohh-text {
  font-family: Gotham;
  font-size: 20px;
  letter-spacing: 1px;
  color: #abadb0;
}

#ohhtraffic .fea-text a {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#ohhtraffic .fea-text a:hover {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #1bb1dc;
}

#ohhtraffic .ohh-text2 {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#ohhtraffic h4 {
  font-family: Gotham_B;
  font-weight: Bold;
  font-size: 40px;
  letter-spacing: 1px;
  color: #ffffff;
}

@media (min-width: 320px) and (max-width: 991px) {
  #ohhtraffic {
    padding: 0px 30px 25px 30px;
  }
  #ohhtraffic h4 {
    font-family: Gotham_B;
    font-weight: Bold;
    font-size: 25px;
    letter-spacing: 1px;
    color: #ffffff;
  }

  #ohhtraffic .ohh-text {
    font-family: Gotham;
    font-size: 18px;
    letter-spacing: 1px;
    color: #abadb0;
  }

  #ohhtraffic {
    background-color: #0d0434 !important;
  }

  #ohhtraffic .video-wrap {
    visibility: hidden;
  }
}

/* Features Section ohhdigital
--------------------------------*/

/*#ohhdigital {
  padding: 0px 0;
  background: #ffffff url("../img/screen-2.png") center top no-repeat;*/
/*background: #cacaca;*/
/* background-size: cover;
 width: 100%;
 height:auto;       
}*/

#ohhdigital {
  /*  width: 100%;
  height: 100vh;
  position: relative;*/
  background: #c4c4c4;
  /*background-size: cover;*/
  padding: 30px 0;
}
#ohhdigital .digital-text {
  font-family: Gotham;
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 35px;
  color: #1b1b1b;
}

#ohhdigital .digital-text2 {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#ohhdigital h4 {
  font-family: Gotham_Book;
  font-weight: Bold;
  font-size: 55px;
  letter-spacing: 1px;
  color: #231f20;
}

@media (max-width: 991px) {
  #ohhdigital h4 {
    font-family: Gotham_B;
    font-weight: Bold;
    font-size: 30px;
    letter-spacing: 1px;
    color: #ffffff;
  }

  #ohhdigital {
    background-color: #0d0434 !important;
  }

  #ohhdigital .img {
    visibility: hidden;
  }
}

/* ---------Mumbai. Covered MAP SECTION----Features Section location
--------------------------------*/

/* Features Section location
--------------------------------*/

/*#location {
  padding: 0px 0;
  background: #7c6bbb url("../img/locations.png") center top no-repeat;*/
/*background: #cacaca;*/
/*background-size: cover;
 
         
}*/

/*#location { 
  width: 100%;
  height: 100vh;
  position: relative;
  background: #7c6bbb url("../img/locations.png") center top no-repeat;
  background-size: cover;
  padding-top: 10px;
}*/

#location {
  /* width: 100%;
  height: 110vh;
  position: relative;*/
  background: #7c6bbb;
  /*  background-size: cover;*/
  padding-top: 0px;
  padding-bottom: 30px;
}

#location .padd {
  padding: 20px;
}

#location {
  padding: 0px 30px 60px 30px;
}

@keyframes float {
  0% {
    /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px);
  }
  100% {
    /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px);
  }
}

._ani_up_down {
  /*width: 150px;
	height: 150px;
	box-sizing: border-box;
	border: 5px white solid;
	border-radius: 50%;*/
  overflow: hidden;
  /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

/*.location img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}*/

#location .location-text {
  font-family: Gotham_L;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 48px;
}

#location .location-text2 {
  font-family: Gotham;
  letter-spacing: 1px;
  color: #ffffff;
}

#location h4 {
  font-family: Gotham;
  font-weight: normal;
  font-size: 40px;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 60px 0 0px 0;
  padding: 0;
}

#location h3 {
  font-family: Gotham;
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Map Annimation*/

#location .location-img2 img {
  /* width: 100%;
  border: 0px solid #fff;*/
  transition: 0.5s;
}

#location .location-img2 img:hover {
  /* width: 100%;*/
  transform: scale(1.08);
}

/* Circle */
.hover15 figure {
  position: relative;
}
.hover15 figure::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.hover15 figure:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  #location h4 {
    font-family: Gotham;
    font-weight: normal;
    font-size: 40px;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 20px 0 0px 0;
    padding: 0;
  }
}

@media (min-width: 320px) and (max-width: 991px) {
  #location .location-text {
    font-family: Gotham_L;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
  }
}

/*@media (max-width: 767px) {
  #location {
    float: none;
    margin: auto;
	height:auto;
	background-image: url("../img/locations3.png");
	background-color: #7c6bbb;
	
	 
	
  }
}*/

/*@media (min-width: 1400px) {
  #location { 
  width: 100%;
  height: 80vh;
  position: relative;
  background: #7c6bbb;
 background-size: cover;
  padding-top: 0px;	 
	
  }
}*/

/* Features Section junaid
--------------------------------*/

#junaid .junaid-text {
  font-family: Gotham_L;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 20px 0 0 60px;
  color: #ffffff;
}

#junaid .junaid-text2 {
  font-family: Gotham;
  letter-spacing: 1px;
  margin: 0 0 0 60px;
  color: #ffffff;
}

#junaid h4 {
  font-family: Gotham_L;
  font-weight: Bold;
  font-size: 55px;
  letter-spacing: 1px;
  margin: 0 0 0 60px;
  color: #ffffff;
}

#junaid h3 {
  font-family: Gotham_L;
  font-weight: Bold;
  font-size: 35px;
  margin: 0 0 0 60px;
  letter-spacing: 1px;
  color: #ffffff;
}

/*.section .container { z-index: 2; }

.section .container + .video-wrap { z-index: 1; }

.revealer-image {
	position: relative;
	bottom: -100px;
	transition: bottom .3s ease-in-out;
	-webkit-transition: bottom .3s ease-in-out;
	-o-transition: bottom .3s ease-in-out;
}

.section:hover .revealer-image { bottom: -50px; }*/

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 20px;
  color: #413e66;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #1bb1dc;
}

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

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #1bb1dc;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #f8fcff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #1bb1dc;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #42c3e8;
}

#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-preview:hover
  i,
#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-details:hover
  i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #282646;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

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

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(65, 62, 102, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

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

/* Bandra_Focal page Section
--------------------------------*/
#bandrafocal {
  padding: 0px 0;
}

#bandrafocal .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Bandra_Focal page Section2
--------------------------------*/
#bandrafocal2 {
  padding: 30px 0;
}

#bandrafocal2 .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#bandrafocal3 {
  padding: 60px 0;
}

#bandrafocal3 .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
#bandrafocal2 h3 {
  font-size: 30px;
  letter-spacing: 1pt;
  color: #1ab3e8;
  text-align: center;
  font-weight: 700;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  font-family: Gotham_L;
}

#bandrafocal2 .para1 {
  font-size: 26px;
  letter-spacing: 1pt;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  font-family: Gotham;
}

#bandrafocal2 .para2 {
  font-size: 12px;
  letter-spacing: 1pt;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding-bottom: 30px;
  margin-bottom: 30px;
  padding-top: 0px;
  position: relative;
  font-family: Gotham;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
  background-color: #7c6bbb;
}

#testimonials .section-header {
  margin-bottom: 0px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 0%;
  border: 0px solid #fff;
  float: left;
}

#testimonials .testimonial-item .testimonial-img2 {
  width: 120px;
  border-radius: 0%;
  border: 0px solid #fff;
  float: right;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    /*float: left;*/
    margin: 0px;
    visibility: visible;
    width: 50px !important;
  }

  #testimonials .testimonial-item .testimonial-img2 {
    /*float: right;*/
    margin: 0px;
    visibility: visible;
    width: 50px !important;
  }

  #testimonials .testimonial-item p {
    padding: 0px 60px 0px 60px;
  }

  #testimonials .section-header h3 {
    font-family: Gotham;
    letter-spacing: 1px;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #ffffff;
    margin-left: 0px;
  }
}

/*#testimonials .testimonial-item h3 {
  font-family: Gotham; 
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  margin-left: 140px;
}*/

#testimonials .section-header h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: Gotham;
}

#testimonials .testimonial-item h4 {
  font-family: Gotham;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-family: Gotham_L;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    font-family: Gotham_L;
    color: #fff;
    width: 80%;
  }
}

@media (max-width: 767px) {
  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}

/*@media (min-width: 992px) {
  #oohdigital .digital-text p {
    width: 80%;
  }
}

@media (max-width: 767px) {
  #oohdigital .ohdigital-img {
    float: none;
    margin: auto;
	
  }
}

@media (max-width: 767px) {
  #testimonials .testimonial-item h3, #testimonials .testimonial-item h4, #testimonials .testimonial-item p {
    margin-left: 0;
  }
}
*/
/* Team Section
--------------------------------*/
#team {
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#team .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  padding: 15px 0;
  background: rgba(29, 28, 41, 0.6);
}

#team .member .member-info-content {
  transition: margin 0.2s;
  height: 36px;
  transition: height 0.4s;
}

#team .member:hover .member-info {
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  height: 70px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #1bb1dc;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background-color: #210042;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 20px 10;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 80px 0;
}

@media (max-width: 991px) {
  #pricing {
    padding-bottom: 30px;
  }
}

#pricing .card {
  border: 0;
  border-radius: 0px;
  box-shadow: 0 3px 0px 0 rgba(65, 62, 102, 0.08);
  transition: all 0.3s ease-in-out;
  padding: 36px 0;
  position: relative;
}

@media (max-width: 991px) {
  #pricing .card {
    margin-bottom: 50px;
  }
}

#pricing .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background-color: #1bb1dc;
  transition: 0.5s;
}

#pricing .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08);
}

#pricing .card:hover:after {
  width: 100%;
}

#pricing .card .card-header {
  background-color: white;
  border-bottom: 0px;
  -moz-text-align-last: center;
  text-align-last: center;
}

#pricing .card .card-title {
  margin-bottom: 16px;
  color: #535074;
}

#pricing .card .card-block {
  padding-top: 0;
  text-align: center;
}

#pricing .card .list-group-item {
  border: 0px;
  padding: 6px;
  color: #413e66;
  font-weight: 300;
}

#pricing .card h3 {
  font-size: 64px;
  margin-bottom: 0px;
  color: #535074;
}

#pricing .card h3 .currency {
  font-size: 30px;
  position: relative;
  font-weight: 400;
  top: -30px;
  letter-spacing: 0px;
}

#pricing .card h3 .period {
  font-size: 16px;
  color: #6c67a3;
  letter-spacing: 0px;
}

#pricing .card .list-group {
  margin-bottom: 15px;
}

#pricing .card .btn {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: #5f5b96;
  border-radius: 0;
  padding: 10px 24px;
  letter-spacing: 1px;
  border-radius: 3px;
  display: inline-block;
  background: #1bb1dc;
  color: #fff;
}

#pricing .card .btn:hover {
  background: #0a98c0;
}

/* PRESS Page  Frequently Asked Questions Section
--------------------------------*/
#faq {
  background-color: #e8e8e0;
  padding: 60px 0;
  overflow: hidden;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq h3 {
  font-family: Gotham_L;
  font-weight: normal;
  font-size: 50px;
  color: #97948f;
  text-align: left;
  margin-bottom: 40px;
  padding: 0px 0 0 25px;
  /*  text-align:left;*/
}

#faq h4 {
  font-family: Gotham_L;
  font-weight: normal;
  font-size: 28px;
  color: #44515c;
  margin-bottom: 0;
  /*  padding: 0px 0 0 25px;*/
  padding: 5px 0 0 0px;
}

#faq .faq-list li {
  border-bottom: 1px solid #858581;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-left: 30px;
  /*margin-left: 10px;
  margin-right: 10px;*/
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: Gotham_B;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  /* padding-left: 25px;*/
  padding-left: 0px;
  /* cursor: pointer;*/
  color: #3c3c3b;
  /*  transition: 0.3s;*/
}

/*#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}*/

#faq .faq-list p {
  font-family: Gotham_L;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 0;
  padding-top: 5px;
  /*  padding: 5px 0 0 25px;*/
  padding-left: 0px;
  padding-right: 5px;
}

@media (max-width: 574px) {
  #faq .faq-list p {
    font-family: Gotham_L;
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 0;
    padding-top: 5px;
    /*  padding: 5px 0 0 25px;*/
    padding-left: 0px;
    padding-right: 15px;
    word-break: break-word;
  }

  #faq .faq-list li {
    border-bottom: 1px solid #858581;
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    /*margin-left: 10px;
  margin-right: 10px;*/
  }

  #faq h3 {
    font-family: Gotham_L;
    font-weight: normal;
    font-size: 50px;
    color: #97948f;
    text-align: left;
    margin-bottom: 40px;
    padding: 0px 0 0 12px;
    /*  text-align:left;*/
  }
}

#faq a {
  color: #3c3c3b;
}

#faq hover {
  color: #3c3c3b;
}

.faq .faq-pagination {
  color: #816a6e;
}

.faq .faq-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq .faq-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.faq .faq-pagination li a {
  color: #493c3e;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq .faq-pagination li.active,
.faq .faq-pagination li:hover {
  background: #58a747;
}

.faq .faq-pagination li.active a,
.faq .faq-pagination li:hover a {
  color: #fff;
}

/*#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #1bb1dc;
}*/

/*#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}*/

/* Frequently Asked Questions Section
--------------------------------
#faq {
  padding: 60px 0;
  overflow: hidden;
}



#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq h3 {
	font-family: Gotham;
	font-weight:bold;
	font-size:18px;
	color:#333;
  
}

#faq .date2 {
  border-bottom: 1px solid #edecf4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list li {
  border-bottom: 1px solid #edecf4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #1bb1dc;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #158caf;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
 padding: 10px 0 0 25px;
  padding: 0px 0 0 0px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #1bb1dc;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fb;
  min-height: 40px;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.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: #555186;
  content: "/";
}

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

#footer .menu {
  font-size: 14px;
  font-family: Gotham;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1px;
  padding-top: 25px;
}

#footer .menu a {
  /*  color: #696592;*/
  color: #fff;
}

#footer .menu a:hover {
  /*  color: #1bb1dc;*/

  color: #1bb1dc;
}

#footer .menu2 {
  font-size: 14px;
  font-family: Gotham;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1px;
  padding-top: 52px;
}

#footer .menu2 a {
  /*  color: #696592;*/
  color: #fff;
}

#footer .menu2 a:hover {
  /*  color: #1bb1dc;*/

  color: #1bb1dc;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: Gotham;
  color: #413e66;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: Gotham;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1bb1dc;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #0a98c0;
  color: #fff;
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }

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

  #footer .menu {
    font-size: 14px;
    font-family: Gotham;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    text-transform: none;
    position: relative;
    padding-bottom: 1px;
    padding-top: 0px;
  }

  #footer .menu a {
    /*  color: #696592;*/
    color: #fff;
  }

  #footer .menu a:hover {
    /*  color: #1bb1dc;*/

    color: #1bb1dc;
  }

  #footer .menu2 {
    font-size: 14px;
    font-family: Gotham;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    text-transform: none;
    position: relative;
    padding-bottom: 1px;
    padding-top: 15px;
  }

  #footer .menu2 a {
    /*  color: #696592;*/
    color: #fff;
  }

  #footer .menu2 a:hover {
    /*  color: #1bb1dc;*/

    color: #1bb1dc;
  }
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top p {
  font-size: 14px;
  font-family: Gotham;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1px;
}

#footer .footer-top .footer-links p {
  font-size: 12.3px;
  font-family: Gotham;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1px;
}

#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 li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  /*  color: #696592;*/
  color: #fff;
}

#footer .footer-top .footer-links ul a:hover {
  /*  color: #1bb1dc;*/

  color: #1bb1dc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border: 1px solid #d9dde6;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #1bb1dc;
  border: 1px solid #1bb1dc;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

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

#footer .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#footer .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .error-message br + br {
  margin-top: 25px;
}

#footer .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#footer .php-email-form input,
#footer .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer .php-email-form input:focus,
#footer .php-email-form textarea:focus {
  border-color: #1bb1dc;
}

#footer .php-email-form input {
  padding: 10px 15px;
}

#footer .php-email-form textarea {
  padding: 12px 15px;
}

#footer .php-email-form button[type="submit"] {
  background: #1bb1dc;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer .php-email-form button[type="submit"]:hover {
  background: #0a98c0;
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #535074;
  font-size: 15px;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #8582a8;
}

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

#footer .credits a:hover {
  color: #0a98c0;
}

/*--------------------------------------------------------------
# Footer_f
--------------------------------------------------------------*/
#footer_f {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: #fff;
}

#footer_f .footer_f-top {
  padding: 60px 0 30px 0;
  background: #f5f8fd;
}

#footer_f .footer_f-top .footer_f-info {
  margin-bottom: 30px;
}

#footer_f .footer_f-top .footer_f-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: Gotham;
  color: #413e66;
  font-weight: 400;
  /* letter-spacing: 3px;*/
  text-transform: None;
}

#footer_f .footer_f-top .footer_f-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #535074;
}

#footer_f .footer_f-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1bb1dc;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer_f .footer_f-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer_f .footer_f-top .social-links a:hover {
  background: #0a98c0;
  color: #fff;
}

@media (max-width: 574px) {
  #footer_f .footer_f-top .social-links a {
    margin-bottom: 25px;
  }
}

#footer_f .footer_f-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer_f .footer_f-top .footer_f-links {
  margin-bottom: 30px;
}

#footer_f .footer_f-top .footer_f-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer_f .footer_f-top .footer_f-links ul li {
  padding: 8px 0;
}

#footer_f .footer_f-top .footer_f-links ul li:first-child {
  padding-top: 0;
}

#footer_f .footer_f-top .footer_f-links ul a {
  color: #696592;
}

#footer_f .footer_f-top .footer_f-links ul a:hover {
  color: #1bb1dc;
}

#footer_f .footer_f-top .footer_f-contact {
  margin-bottom: 30px;
}

#footer_f .footer_f-top .footer_f-contact p {
  line-height: 26px;
}

#footer_f .footer_f-top .footer_f-newsletter {
  margin-bottom: 30px;
}

#footer_f .footer_f-top .footer_f-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border: 1px solid #d9dde6;
}

#footer_f .footer_f-top .footer_f-newsletter input[type="submit"] {
  background: #1bb1dc;
  border: 1px solid #1bb1dc;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer_f .footer_f-top .footer_f-newsletter input[type="submit"]:hover {
  background: #0a98c0;
}

#footer_f .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#footer_f .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#footer_f .php-email-form .error-message br + br {
  margin-top: 25px;
}

#footer_f .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer_f .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#footer_f .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#footer_f .php-email-form input,
#footer_f .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer_f .php-email-form input:focus,
#footer_f .php-email-form textarea:focus {
  border-color: #1bb1dc;
}

#footer_f .php-email-form input {
  padding: 10px 15px;
}

#footer_f .php-email-form textarea {
  padding: 12px 15px;
}

#footer_f .php-email-form button[type="submit"] {
  background: #8eb248;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer_f .php-email-form button[type="submit"]:hover {
  background: #81a934;
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer_f .copyright {
  text-align: center;
  padding-top: 30px;
  color: #535074;
  font-size: 15px;
}

#footer_f .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #8582a8;
}

#footer_f .credits a {
  color: #1bb1dc;
}

#footer_f .credits a:hover {
  color: #0a98c0;
}
.swiper-hoardings-header h2 {
  color: #ffffff;
  margin: 40px 0;
}
.hoarding-slider img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.transforming-mediums {
  margin: 60px 0;
}
.transforming-mediums h2 {
  margin-bottom: 70px;
  color: #808080;
}
.transforming-mediums .header-left-img {
  width: 50%;
}
.transforming-mediums img {
  width: 95%;
}
.transform_img {
  width: 100%;
}
.para_img_transform {
  width: 100%;
}
.edge-outer-wrapper {
  margin-top: 40px;
}
.transforming-mediums p {
  font-family: "Gotham", sans-serif;
  color: #808080;
  font-size: 19px;
}
.loc-btn-wrapper {
  margin-top: 40px;
}
.loc-btn-wrapper button {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-family: "Gotham", sans-serif;
}
.loc-btn-wrapper button:hover {
  color: #210042;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background-color: #ffffff;
}

/*Career Page HTML Starts here*/
.career-slider {
  margin-top: 87px;
}
.searching-candidates {
  margin: 70px 0;
}
.searching-candidate-wrapper h2,
.searching-candidate-wrapper p {
  color: #a0a4a6;
}
.searching-candidate-wrapper p > strong {
  font-family: "Gotham_B", sans-serif;
}
.searching-candidate-wrapper p > strong a {
  color: #a0a4a6;
  text-decoration: none;
  text-emphasis: none;
}
.searching-candidate-wrapper .vacancy-wrapper {
  width: 100%;
}
.vacancy-wrapper .form-check label {
  color: #a0a4a6;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  position: relative;
}
.vacancy-wrapper .form-check-input:checked {
  background-color: #18d26e;
  border-color: #18d26e;
}
.searching-candidate-wrapper .vacancy-wrapper {
  width: 100%;
}
.form-parent-wrapper {
  width: 70%;
  margin: 0 auto;
  font-family: "Gotham", sans-serif;
  margin-top: 50px;
}
.button-parent-flex {
  margin-bottom: 10px;
}

.send-btn-wrapper{
  background-color: #81a934;
  border-radius: 15px;
  outline: none;
  color: #ffffff;
  text-align: center;
  width: 150px;
  position: relative;
  font-size: 1rem;
  padding: 7px;
  border: none;
  margin-top: 10px;
}
.button-parent-flex button,
.attach-btn-wrapper label{
  border:none;
  background-color: #545456;
  border-radius: 5px;
  outline: none;
  color: #ffffff;
  text-align: center;
  width: 150px;
  position: relative;
  font-size: 1rem;
  padding: 4px;
}
.attach-btn-wrapper label{
  padding: 4px;
  top: 0;
  left: 0;
  margin: 0;
  display: inline-block;
  font-size: 1rem;
  transform: none;
}
.attach-cv-condition-wrapper {
  margin-bottom: 50px;
}
.attach-btn-wrapper input[type="file"] {
  display: none;
}
.parent-flex-vacancy {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 70%;
}
.parent-flex-vacancy > * {
  width: 100%;
}
.tp-para {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .form-parent-wrapper {
    width: 100%;
  }
  .button-parent-flex div {
    margin: 0 auto;
  }
  .transform_img {
    width: 100%;
  }
  /* .para_img_transform{
    max-width: 150px;
  } */
  .parent-flex-vacancy {
    flex-direction: column;
    width: 100%;
  }
}
#overlay,
#overlay2,
#overlay3,
#overlay4,
#overlay5,#overlay6, #propdigiOverlay,#propdigiOverlay1,#propdigiOverlay2 {
  position: fixed;
  display: none;
  width: 100;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  z-index: 999;
  cursor: pointer;
}
#overlay video,
#overlay2 video,
#overlay3 video,
#overlay4 video,
#overlay5 video, #overlay6 video, #propdigiOverlay video,#propdigiOverlay1 video,#propdigiOverlay2 video{
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: translate(50%, 50%);
  -webkit-transform: translate(50%, 50%);
}
.choose-select-wrapper p {
  background-color: #00b2e7;
  font-family: "Gotham_B", sans-serif;
  padding: 5px 8px;
}
.dots-change-div .carousel-indicators li {
  border-radius: 0px;
  background-color: #8c8f91;
  border: none;
}
.carousel-indicators li:nth-child(2) {
  margin: 0 5px;
}
.outer-details-wrapper {
  background-color: #00a7d5;
  margin-top: 1rem;
  padding: 25px 0 50px;
}
.bold-details-text-wrapper p {
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Gotham_B", sans-serif;
}
.outer-details-text-wrapper p {
  margin-bottom: 0;
  color: #ffffff;
}
.label-text-wrapper p {
  color: #ffffff;
  margin-bottom: 0;
}
.vehicular-flex {
  padding: 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.label-text-wrapper p > strong {
  color: #ffffff;
  font-family: "Gotham_B", sans-serif;
}
.classification-section h2 {
  color: #808080;
}
.choose-code-text-wrapper p {
  color: #808080;
}
.custom-select2 .select2-container--default .select2-selection--single {
  border: none;
}
.custom-select2 .select2 {
  width: 100% !important;
  font-family: "Gotham", sans-serif;
  font-size: 20px;
  height: 52px;
}
.custom-select2
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
  line-height: 52px;
  background: #808080;
  height: 52px;
}
.custom-select2
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #ffffff transparent transparent transparent;
}
.custom-select2
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #ffffff transparent;
}
.custom-select2
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 12px;
}
.select2-container .select2-choice {
  padding: 5px 10px;
  height: 40px;
}
.show-details-btn {
  border: none;
  background: #0a98c0;
  width: 100%;
  padding: 11px;
  color: #ffffff;
  font-family: 'Gotham',sans-serif;
  font-size: 20px;
}
@media only screen and (min-width: 1600px) {
  .bilieve-para {
    font-size: 19px;
  }
}
@media only screen and (max-width: 993px) {
  .attach-btn-wrapper label {
    padding: 8px 4px;
  }
  .outer-details-text-wrapper {
    margin-top: 1rem;
  }
}

/** propdigi**/
/**Slider**/
section.slider.propdigi-slider .carousel-indicators li {
    width: 12px !important;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}
	section.propdigi-inner {
    background: black;
}
.prodigi-slider-inner
{
	position:relative;
}
section.slider.propdigi-slider {
    /* padding: 100px; */
}
.propdigi-features-inner p {
    font-size: 16px;
    color: #fff;
    font-family: 'Gotham_L';
    font-style: normal;
}
p.propdigi-highlight {
    color: #2bc3f2 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    font-family: 'FuturaNext-Book';
    font-size: 20px !important;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}
/** propdigi-feature1**/
.propdigi-feature1
{
	background: #000 url(../../assets/img/propdigi/4.png) ;
	background-position:right;
  background-size: auto 100%;
    background-repeat: no-repeat;
    padding: 150px 0px 150px 0px;
  margin-bottom: -88px;  
  width: 107%;
}
.carousel-caption
{
	position:absolute;
	top:50% !important;
	transform:translate(0%,-50%);
	    width: 25% !important;
		left:10%;
}
.carousel-caption img {
    width: 200px;
    margin-bottom: 40px;
}
/* .prodigi-slider-inner .carousel-caption h1 {
    font-size: 50px;
    font-family: 'Gotham_L';
    margin-bottom: 15px;
}
.prodigi-slider-inner .carousel-caption p {
    font-size: 18px;
    font-family: 'Gotham_L';
} */
.carousel-caption.slider-text-first.text-left {
  height: 250px;
}
/**Features**/
p.propdigi-highlight {
    color:  #2bc3f2;
    text-transform: uppercase;
    font-size: 13px;
}
.propdigi-feature ul li {
    float: left;
}

.propdigi-feature {
    background: #000 url(../../assets/img/prodigi_dooh.png);
    background-repeat: no-repeat;
    padding: 70px 0px 0px 0px;
    /* padding: 150px 0px 0px 0px; */
    /* background-size: 100% 100%; */
}
.propdigi-features-inner {
    width: 40% !important;
    margin: 0px auto;
}
.propdigi-features ul {
    list-style: none;
    padding-left: 0px;
    float: left;
}
.propdigi-features-inner ul li {
    float: left;
}
/* .propdigi-feature ul li:first-child {
    color: #FFFFFF;
    font-size: 25px;
    font-style: "Gotham_Book" !important;
} */

.propdigi-features-inner ul li img {
    width: 100px;
}
.propdigi-feature1 h3 {
    font-size: 47px;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 300;
    font-family: "Gotham_L";
}
.propdigi-feature1 h5 {
    color: #F228BA;
    font-size: 30px;
    margin-top: 20px;
    font-family: "Gotham_L";
}
.propdigi-feature1 p {
  font-family: "Gotham_M";
}
.propdigi-feature ul {
    list-style: none;
    padding-left: 0px;
	margin:20px 0px;
	float:left;
	display: flex;
    align-items: center;
    font-style: "Gotham_Book";
}
.propdigi-feature ul li
{
	padding-right:12px;
  font-style: "Gotham_Book";
}
.propdigi-feature1 ul li {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
    font-family: 'Gotham_L';
}
.propdigi-feature1 p {
    font-size: 22px;
    color: #fff;
}
p.partn {
  font-size: 20px;
}
li.partners {
  display: flex;
  height: 42px;
}
/**Video**/
.propdigi-video {
    padding: 50px 0px;
}
p#alarmmsg {
  color: white;
  display: flex;
  justify-content: center;
  position: relative;
  top: 10px;
}
.inner-media {
  display: flex;
  position: relative;
  width: 50%;
  background: white;
  top: 10px;
  justify-content: space-around;
  border-radius: 5px;
  padding: 10px;
}
.mediaicons{
  display: none;
}
/**Content**/
.propdigi-content {
    background-color: #1e0f48;
	padding: 30px 0px;
    margin-top: 70px;
}
.propdigi-content p {
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Gotham_L';
	margin-bottom:30px
}
/**Text**/
.propdogi-text {
    font-size: 38px;
    color: #ffffff;
    /* font-weight: 300; */
    font-family: 'Gotham_L';
    text-align: center;
    padding: 3%;
}
.propdogi-text p {
    margin: 0px;
    font-family: "Gotham_L";
    display: flex;
    align-items: center;
    justify-content: center;
}
/**About**/
.propdigi-about 
{
	 background: url(../../assets/img/propdigi/5.png);
	 background-size:cover;
	 padding:150px 0px;

}
.propdigi-about p {
    font-size: 33px;
    line-height: 42px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Gotham_L';
}
/**Conatct**/
.propdigi-contact {
    background: url(../../assets/img/propdigi/contact-bg.png);
    background-size: cover;
    background-position: top right;
    background-size: 100% 100%;
    height: 100vh;
}
.propdigi-contact-left 
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.propdigi-contact p {
    font-size: 37px;
    color: #ffffff;
    text-align: center;
    padding-top: 220px;
    font-family: FuturaNext-Book;
    /* background: black; */
    line-height: 45px;
}
.propdigi-contact a {
    color: #2bc3f2;
    text-decoration: none;
}
.mobile-banner
{
	display:none;
}
.propdigi-feature1 ul {
    padding-left: 15px;
    font-family: 'Gotham_L';
}
.shareIcon {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0px auto;
    margin-top: 20px;
    cursor: pointer;
}

.sharethis-inline-share-buttons{
  margin-top: 30px;
}
.mobile-maps{
  display: none;
}
/**Responsive**/

@media (min-width:320px) and (max-width:500px){
  
  .mobile-maps{
    display: block;

  }
  .propdigi-feature1{
    background:none;
  }
}
@media (min-width:320px) and (max-width:767px)
{
  .propdogi-text p {
    margin-bottom: 0px;
    font-family: "Gotham_L";
    /* width: 245px; */
    display: inline-block;
    font-size: 20px;
}
.inner-media{
  width: 100%;
}
	section.slider.propdigi-slider
	/* {             150   150px 15px 20px 15px;                                       */
    {
		padding:110px 15px 20px 15px;                     
	}
  .mobile-banner{
    display: block;
  }
	.carousel-caption
	{
		position:initial !important;
		width:100% !important;
	}
	.propdigi-feature1,.propdigi-about,.propdigi-feature
	{
		padding: 50px 0px 50px 0px;
    margin-bottom: -50px;
    width: 100%;
	}
	.propdogi-text
	{
		padding:20px 0px;
	}
	.propdigi-features-inner
	{
		width:100% !important;
	}
	.propdigi-feature
	{
		background-image:none;
		
	}
	.propdigi-contact,.propdigi-about
	{
		background-size:cover;
	}
	.propdigi-contact p
	{
    font-size: 26px;
    margin-bottom: 160%;
    line-height: 37px;
}
	.desktop-banner
	{
		display:none;
	}

/* .carousel-caption.text-left
{
	display:none;
} */
#overlay video, #overlay2 video, #overlay3 video, #overlay4 video, #overlay5 video, #overlay6 video, #propdigiOverlay video, #propdigiOverlay1 video, #propdigiOverlay2 video
{
	width: 100% !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.propdigi-feature
{
	padding-bottom:0px;
}
.carousel-indicators
{
	bottom: -45px !important;
}
section.slider.propdigi-slider .carousel-indicators li
{
	width:10px !important;
	height:10px !important;
}
/* .propdigi-contact-left
{
	    /* background: rgba(0,0,0,0.4);} */

.propdigi-about{
  background: url(../../assets/img/propdigi/5.png);
}
}
@media (min-width:768px) and (max-width:1024px)
{
  .slider{
    /* margin-top: 5%; */
  }
	section.slider.propdigi-slider
	{
		padding:100px 0px 0px 0px;
	}
	.propdogi-text p
	{
		font-size:35px;
	}
	.propdigi-feature
	{
		background-image:none;
	}
	.propdigi-features-inner 
	{
		width:80% !important;;
	}
  .propdigi-contact {
    background: url(../../assets/img/propdigi/contact-bg.png);
    background-size: 127% 110%;
  }
}
@media(min-width:1024px)and (max-width:1400px)
{
	.propdigi-feature
	{
		    background-size: 85% 100%;
	}
  .slider{
    margin-top: 4%;
  }
}
@media(min-width:1400px)and (max-width:2560px)
{
  /* background-size: 100% 100%; */
	.propdigi-feature
	{
		    background-size: 100% ;
	}
  .propdigi-features-inner {
    width: 40% !important;
    margin: 0px 500px;
}
.slider{
  margin-top: 3%;
}
}


/* styles for parallax in prodigi */

#feature2 {
	background: url('../../assets/img/propdigi/5.png') 100% 0 repeat-y fixed;
  background-size: cover;
  /* background-position: center center; */
}
@media (min-width: 320px) and (max-width: 991px){
	
	#feature2	{
	padding: 0px 30px 60px 30px;
	
	}
  #feature2 {
    background: url('../../assets/img/propdigi/5.png') 30% 0 repeat-y fixed;
	  background-color:#bcc3c9 !important; 
    background-size: cover;
    background-position: center center;
}
}


/*Style for AI Chat Bot*/
  .dio-chat-button { position:fixed;
    width:80px;
    height:80px;
    bottom:40px;
    right:40px;
    background-color: #fff;
    color:#FFF;
    border-radius:50px;
    border: none;
    text-align:center;
    font-size:30px;
    margin: 0px;
    padding: 0px; 
    z-index:100;
  }
  .chat-bubble-message {
    position: fixed;
    bottom: 128px;
    right: 44px;
    margin: auto;
    max-width: 215px;
    box-shadow: 1px 1px 10px -1px #aaa;
    border-radius: 5px;
    padding: 0px 15px;
    height: 60px;
    color: #333;
    line-height: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    z-index:100;
  }
  .chat-bubble-img {
    width:80px;
    height:80px;
    border-radius:50px;
    object-fit: cover;
    vertical-align: top;
  }
