/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #505050;
}

a {
  color: #cda45e;
}

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

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

.btn-whatapp a:hover{
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  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);
  }
}

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

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #cda45e;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}

.back-to-top i:hover {
  background: #cda45e;
  color: #1a1814;
}

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



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

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

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

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

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding-left: 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.11px;
  color: #ffffff;
  transition: 0.3s;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #d9ba85;
}

.nav-menu .request-a-demo a {
  background: #00a0d1;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  transition: 0.3s;
}

.nav-menu .request-a-demo a:hover {
  background: #cda45e;
  color: #fff;
}

.phone-no{
  background: #fff !important;
  color: #00a0d1 !important;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  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: #1a1814;
}

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

.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: absolute;
  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;
  font-size: 38px;
}

.mobile-nav {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #1a1814;
  border: 2px solid rgba(255, 255, 255, 0.1);
  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 .mobile-nav-close {
  margin: 0 15px 0 auto;
  display: block;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav .mobile-nav-close:hover {
  color: #fff;
}

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

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #cda45e;
  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 .book-a-table a {
  color: #fff;
  border: 2px solid #cda45e;
  border-radius: 50px;
  margin: 20px 0 0 0;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #cda45e;
  color: #fff;
}

.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/hero-bg.gif") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

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

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 70px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -5.1px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

#hero h1 span {
  
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.48;
  letter-spacing: normal;
}


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


@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 60px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -3.51px;
  text-align: center;
  color: #505050;
  margin: 0;
}

.section-title p {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.29px;
  text-align: center;
  color: #505050;
  position: relative;
}

.section-title p::after {
  content: "";
  width: 162px;
  height: 1px;
  background: #505050;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translate(-50%, -50%);
}


/*--------------------------------------------------------------
# Challenges
--------------------------------------------------------------*/
.challenges{
  margin: 0 90px;
  border-left: 4px solid #efefef;
  overflow: visible;
}

.challenges .cont-block{
  padding-left: 40px; 
}

.challenges .cont-block .cont-item{
  margin-bottom: 35px;
  position: relative;
}

.challenges .cont-block .cont-item::before{
  content: "";
  position: absolute;
  border-radius: 50px;
  left: -63px;
  top: 7px;
  width: 12px;
  height: 12px;
  background-color: #728898;
}

.challenges .cont-block .cont-item h4{
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.41px;
  color: #505050;
  position: relative;
  cursor: pointer;
}

.challenges .cont-block .cont-item p{
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.17px;
  transition: ease-in-out 0.3s;
}


/*--------------------------------------------------------------
# Grey Head
--------------------------------------------------------------*/
.grey-head{
  background: #f4f6f8;
  padding: 60px 0;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.grey-head .grey-lg-heading{
  font-size: 55px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -3.22px;
}

.grey-head .grey-smll-heading{
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1.41px;
}

.grey-head p{
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.23px;
}

.pad-tb-40{
  padding: 40px 0;
}

/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
.solution{

}

.solution .cont-block{
  padding: 0 10px 0 20px;
  background-image: url('../img/shadow.png');
  background-repeat: no-repeat;
  height: 100%;
}


.solution .cont-block h4{
  font-size: 22px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.29px;
  color: #505050;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  height: 60px;
}

.solution .cont-block .cont-item{
 
}

.solution .cont-block .cont-item img{
  text-align: center;
  margin: 20px 0;
}

.solution .cont-block .cont-item ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.solution .cont-block .cont-item ul li{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.94px;
  color: #505050;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.solution .cont-block .cont-item ul li::before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #3e3e3e;
  left: 0;
  top: 7px;
}



/*--------------------------------------------------------------
# Live Map
--------------------------------------------------------------*/
.live-map{
  background-image: url("../img/live-map-bg.png");
  background-repeat: no-repeat;
  background-position: 90% -150px;
}

.live-map .cont-block{
  padding-left: 40px; 
  border-left: 1px solid #efefef;
}

.live-map .cont-block .cont-item{
  margin-bottom: 35px;
  position: relative;
}

.live-map .cont-block .cont-item::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid 2px #24ccb8;
  background-color: #ffffff;
  border-radius: 50%;
  left: -46px;
  top: 7px;
}

.live-map .cont-block .cont-item h4{
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.29px;
  color: #505050;
  position: relative;
}

.live-map .cont-block .cont-item p{
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.05px;
  color: #505050;
}




/*--------------------------------------------------------------
# Key Features
--------------------------------------------------------------*/
.key-features{
  background-image: url("../img/key-features-bg.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.key-features .col-lg-5{
  background-image: url("../img/key-features-bg1.png");
  background-repeat: no-repeat;
  background-position: 10% 0;
}

.key-features .col-lg-2{
  background-image: url("../img/key-features-bg1.png");
  background-repeat: no-repeat;
  background-position: -32% -286px;
}

.key-features .round1-grid h4{
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.41px;
  color: #505050;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}

.key-features .round1-grid p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.94px;
  color: #505050;
  font-family: "Open Sans", sans-serif;
}

.key-features .round1-grid p span{
  display: block;
  padding: 0 0 10px 20px;
  position: relative;
}

.key-features .round1-grid p span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #3e3e3e;
  left: 0;
  top: 7px;
}

.round1-grid{
  border-radius: 115px;
  padding: 30px 35px;
  height: 290px;
}

.grid-clr1{
  background: #ffe8e8;
}

.grid-clr2{
  background: #dbf4f2;
}

.grid-clr3{
  background: #f4f5db;
}

.grid-clr4{
  background: #e4fbff;
}

.grid-clr5{
  background: #eae3c8;
}

.grid-clr6{
  background: #d3e0ea;
}

.grid-clr7{
  background: #e8fbec;
}

.grid-clr8{
  background: #eae3f3;
}

.grid-clr9{
  background: #e9ebf5;
}

.grid-clr10{
  background: #f3f3ea;
}

.key-features .col-lg-9 .row{
  margin-left: 200px;
}

.grid-clr11{
  background: #ebf9df;
}

.grid-clr12{
  background: #e4d3d6;
}

.grid-clr13{
  background: #dbe4e6;
}

.grid-clr14{
  background: #ffede4
}

.grid-clr15{
  background: #ead5c8
}

.grid-clr16{
  background: #ead3ea;
}


.key-features .col-lg-10 .row{
  float: right;
  margin-top: 30px;
}

.key-features .col-lg-10 .row .col-lg-3{
  max-width: 280px;
}




/*--------------------------------------------------------------
# Business Values
--------------------------------------------------------------*/
.business-values{
  background-image: url("../img/business-values-bg.png");
  background-repeat: no-repeat;
  background-position: 50% 210%;
}

.business-values .business-values-item{
  border-radius: 50%;
  padding: 50px 15px;
  height: 230px;
}

.business-values .business-values-item h4{
  font-size: 21.6px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.27px;
  text-align: center;
  color: #505050;
  font-family: "Open Sans", sans-serif;
  display: block;
}

.business-values .business-values-item p{
  margin: 15px 0 0;
  font-family: OpenSans;
  font-size: 14.4px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.84px;
  text-align: center;
  color: #505050;
  font-family: "Open Sans", sans-serif;
  padding: 0 15px;
}


/*--------------------------------------------------------------
# Success
--------------------------------------------------------------*/
.client-success{
  background-image: url('../img/success-bg.png');
  background-repeat: no-repeat;
  background-position: left 200px;
}

.client-success .brand-item{
  width: 165px;
  height: 165px;
  border-radius: 12px;
  box-shadow: 0 0 14px 11px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  position: relative;
}

.client-success .brand-item img{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  max-height: 100%;;
  padding: 10px;
}

.testimonials-carousel{
  margin-left: 450px;
}

.owl-stage-outer{
  padding: 30px 0;
}




/*--------------------------------------------------------------
# Let’s Start a Conversation
--------------------------------------------------------------*/
.conversation{

}

.conversation .section-title{
  padding-bottom: 20px;
}

.conversation .content{
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -1.23px;
  text-align: center;
  color: #505050;
}

.conversation .content b{
  font-size: 40px;
  letter-spacing: -1.5px;
}

.conversation .block-heading{
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: -2.11px;
  text-align: center;
  color: #505050;
  margin: 50px 0;
}

.conversation .inquiry-block{
  max-width: 280px;
  margin: 0 auto;
}

.conversation .inquiry-block .cap{
  padding: 25px 10px 50px 10px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.conversation .inquiry-block .cap h4{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.17px;
  font-family: "Open Sans", sans-serif;
}

.conversation .inquiry-block .cap p{
  font-size: 17.8px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.04px;
  height: 72px;
}

.conversation .inquiry-block .cap button{
  padding: 12px 25px;
  border-radius: 8px;
  background-color: #00a2d6;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.41px;
  text-align: center;
  color: #ffffff;
}

    .conversation .inquiry-block .cap .submit-button {
        padding: 12px 25px;
        border-radius: 8px;
        background-color: #00a2d6;
        font-size: 24px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -1.41px;
        text-align: center;
        color: #ffffff;
    }



/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us{
  
}

.contact-us h4{
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1.41px;
  font-family: "Open Sans", sans-serif;
}

.contact-us p{
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.05;
  letter-spacing: -1.17px;
  font-family: "Open Sans", sans-serif;
}

.contact-us p span{
  display: block;
}


/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/


.modal-content{
  background: #f4f6f8;
  border-radius: 8px;
}

.modal-title{
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.94px;
}

.modal-body .form-group label{
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.82px;
}






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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 36px;
  letter-spacing: -0.94px;
  font-family: "Open Sans", sans-serif;

}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  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 .social-links a:hover {
  background: #cda45e;
  color: #fff;
  text-decoration: none;
}

#footer .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-links ul a:hover {
  color: #cda45e;
}



/*--------------------------------------------------------------
# Owl Carousel
--------------------------------------------------------------*/
.owl-carousel button.owl-dot{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 10px;
  background: #fff;
}

.owl-carousel button.owl-dot.active{
  background: #ffd15c;
  height: 16px;
  width: 32px;
  border-radius: 8px;
}

.client-success .owl-carousel button.owl-dot{
  display: none;
}

@media(max-width:650px) {	
  #hero{	
    background: url("../img/hero-bg.gif") top center;	
  }

  #hero h1{
    letter-spacing: inherit;
  }

  section{
    padding: 30px 0;
  }

  .client-success .container{
    padding: 0;
  }
  
  .section-title{
    padding-bottom: 20px;
  }

  .section-title h2{
    font-size: 40px;
  }

  .challenges{
    margin: 0 10px;
  }

  .challenges .cont-block {
    padding-left: 10px;
  }

  .challenges .cont-block .cont-item{
    margin-bottom: 20px;
  }

  .challenges .cont-block .cont-item::before{
    left: -33px;
  }

  .grey-head{
    padding: 40px 0;
  }

  .grey-head .grey-lg-heading{
    font-size: 40px;
  }

  .solution .cont-block h4{
    float: left;
    width: 150px;
  }

  .solution .cont-block{
    padding: 20px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: inherit;
  }

  .solution .col-lg-2{
    margin-bottom: 10px;
  }

  .solution .cont-block h4{
    float: left;
    width: 150px;
    margin: 5px 0 0 0;
  }

  .solution .cont-block .cont-item img{
    margin: 0 0 0 160px;
    text-align: inherit;
  }

  .solution .cont-block .cont-item ul{
    margin-top: 20px;
  }

  .solution .cont-block .cont-item ul li{
    margin-bottom: 15px;
  }

  .solution .cont-block .cont-item ul li::before{
    top: 6px;
  }

  .live-map .col-lg-4, .key-features .col-lg-5, .client-success, .live-map, .key-features{
    text-align: center;
    background: inherit;
  }

  .live-map .col-lg-4 img, .key-features .col-lg-5 img{
    max-width: 80%;
  }

  .live-map .cont-block{
    padding-left: 20px;
  }

  .live-map .cont-block .cont-item::before{
    left: -25px;
    top: 10;
  }

  .key-features .col-lg-4, .key-features .col-lg-3{
    padding: 0;
    margin-top: 10px;
    border-radius: inherit;
    max-width: inherit !important;
  }

  .key-features .col-lg-10 .row{
    margin-top: 0;
  }

  .round1-grid{
    border-radius: inherit;
    padding: 20px 15px 10px;
   
  }

  .key-features .round1-grid p{
    margin: 0;
  }

  .key-features .round1-grid h4, .key-features .round1-grid p span{
    text-align: left;
  }

  .testimonials-carousel{
    margin-left: inherit;
  }

  .business-values .col-lg-2{
    padding: 0;
  }

  .business-values .business-values-item{
    border-radius: inherit;
    height: inherit;
    padding: 20px 10px;
    margin-bottom: 10px;
  }

  .conversation .block-heading{
    font-size: 25px;
    margin: 25px 0;
  }

  .conversation .inquiry-block{
    margin-bottom: 20px;
  }

  .contact-us .col-lg-6{
    text-align: center;
  }

  #footer{
    line-height: inherit;
  }

  #footer .row{
    margin: 0;
    text-align: center;
  }

  #footer .social-links{
    margin: 10px auto;
  }



}

