
body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #000;
}

a {
  color: #fff;
}

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

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

p {
	color: #fff;
}

.container-fluid {
	padding: 0 50px;
}

.yellow {
	color: #FFD800;
}
@media (max-width: 767px) {
	.container-fluid {
		padding: 0 20px;
	}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 90px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #FFD400;
  color: #000;
  transition: all 0.4s;
}

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FFD800;
  border-top-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
  padding: 12px 0;
}

#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;  
}

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

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

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

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

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

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

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  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;
  text-transform: none;
  color: #2c4964;
}

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

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

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #000;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  background-color: #fff;
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 55px 0 0;
    padding: 6px 18px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 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;
}

.nav-menu {
	margin: auto !important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: fit-content;
  background: #000;
  background-image: url(../img/hero-background.JPG);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#hero-content {
  padding-top: 120px;
}

#heromark-img {
	position: absolute;
    width: 120px !important;
    top: 20px;
    left: -70px;
}
#hero .mark-text {
	letter-spacing: 2px;
}

#hero img {
	width: 50%;
}
#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 0px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin-top: 30px;
  color: #000;
  background-color: #FFD800;
}

#hero .btn-get-started:hover {
}

#hero .icon-box {
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	margin-top: 30px;
}
#hero .icon-box img {
	width: 120px;
	margin-right: 10px;
}
#hero .icon-box {
	max-width: 500px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 68px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 60%;
  }
  #hero {
	  background-position: 75% 50%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

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

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;  
  padding-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #2c4964;
}

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

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

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5846f9;
}

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

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg, rgba(88, 70, 249, 0.5) 0%, rgba(123, 39, 216, 0.5) 100%), url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

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

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

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features {
	padding-bottom: 0px;
}

.features .feature {
	cursor: pointer;
}


#dollar-icon {
	position: absolute;
	width: 100px;
	left: 10%;
    top: 30px;
}

#stopwatch-icon {
	position: absolute;
	width: 100px;
	right: 10%;
    top: 0px;
}

#features .row {
	margin-bottom: 100px;
}
.features .feature .grey-feature {
	background-image: url(../img/features/Group\ 4.png);
	background-size: cover;
	background-position: left;
	padding: 0px 20px;
}

#features h6, #features p {
	mix-blend-mode: exclusion;
}

.features .section-title {
	margin-bottom: 100px;
}

.features .section-title p {
	width: 50%;
	margin: auto;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #5846f9;
}

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

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

.features .feature img {
	width: 150px;
}

.feature.show-detail {
	z-index: 10;
}

.feature.show-detail .grey-feature {
	display: none;
}

.feature.show-detail .color-feature {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 40px;
}
.feature.show-detail .color-feature h6 {
	font-size: 32px;
}
.feature.show-detail .color-feature img {
	position: absolute;
    right: -15%;
    top: -20%;
}
.color-feature {
	background-image: url(../img/features/feature-color-back.png);
	background-size: cover;
}
.feature .grey-feature {
	display: block;
}

.feature .color-feature {
	display: none;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #000;
}

.faq .container-fluid {
	padding-left: 0px;
	padding-right: 0px;
}

.faq .section-title {
	padding: 0 50px;
}
.faq .section-title p {
	width: 50%;
	margin: auto;
}
.faq .section-title h2, .faq .section-title p {
  color: #fff;
}

.faq .section-title h2::after {
  background: #FFD400;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li { 
  background: transparent;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 20px;
  padding-right: 20%;
  color: #000;
  background-color: #FFD400;
  outline: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq .faq-list a.collapsed {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8577fb;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 10px;
}

.faq .faq-list p {
  background-color: #fff;
  color: #000;
  margin-bottom: 0;
  padding: 20px;
  padding-right: 20%;
}



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

.faq .faq-list a.collapsed {
  color: #000;
}

.faq .faq-list a.collapsed:hover {
  color: #000;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.faq-list{
	background-image: url(../img/questions/Wave.png);
	background-size: cover;
	background-position: bottom	;
}

#faq-watch {
	position: absolute;
	top: -50px;
	left: 5%;
	width: 150px;
}
#faq-note {
	position: absolute;
	top: 50px;
	right: 5%;
	width: 150px;
}

.faq-list {
	padding-top: 100px;
	padding-left: 50px;
	padding-right: 50px;
}

#faq-icon3 {
	width: 150px;
    margin-right: 50px;
    margin-top: 20px;
    float: right;	
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
	background-color: #000;
}

.contact .container {
	margin: 0 0; 
	max-width: 100% !important;		
}
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #5846f9;
  border-radius: 50%;
  padding: 8px;
}

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

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

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 50px;
  background: #fff;
  border-top-left-radius: 30px;
  /* margin-top: 100px; */
}

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

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

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

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

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

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

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 30px;
  box-shadow: none;
  font-size: 14px;
  border: none;
  background-color: rgba(0, 0, 0, 0.02);
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5846f9;
}

.contact .php-email-form input {
  padding: 30px 15px;
}

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

.contact .php-email-form button {
  background: #000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 20px;
}

.contact  .col-lg-6 {
	padding-left: 0px;
	padding-right: 0px;
}

.contact .php-email-form button:hover {
  background: #000;
}

#footer_text {
	display: none;
}
#contact-background {
	background-image: url(../img/contact/banner.png);
	background-size: cover;
	background-position-x: 0%;
	background-position-y: 50%;
}
@media screen and (min-width: 1200px) {
	#contact-background {
		background-size: contain;
		background-repeat: no-repeat;
		background-position-x: center;
	}
}

.contact h3, .contact_heading {
	color: #000;
}

.contact h3 {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 4px;
    margin: 40px 0px;
}

#contact_form {
	background-color: #FFD400;
}

.contact_heading {
	margin-bottom: 40px;
}

.contact {
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: initial;
}

#contact_cloud {
	position: absolute;
    width: 320px;
    right: -35px;
    top: -35px;
}
#contact > div > div.row {
	padding-top: 100px;
	overflow: hidden;
	background-color: #FFD400;
}
#contact .section-title p {
	width: 50%;
	margin: auto;
}

#contact_cake {
	position: absolute;
	top: -50px;
	left: 5%;
	width: 150px;
	
	z-index: 1;
}

#contact_dollor {
	position: absolute;
	top: -30px;
	right: 5%;
	width: 150px;	
	z-index: 1;
}

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

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

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


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

  
  
  .footer-menu ul li {
	list-style: none;
	padding: 0px 10px;
  }
  #footer .credits {
	padding-top: 5px;
	font-size: 13px;
	color: #fff;
  }
  
  #footer .credits a {
	color: #fff;
  }
  #footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	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 .logo img {
	  margin-right: 20px;
  }
  #footer .social-links a:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-decoration: none;
  }
  #footer .social-links .contact {
	  font-size: 18px;
	  display: inline-block;
	   background: none;
	  color: #fff;
	  line-height: 1;
	  padding: 8px 0;
	  margin-right: 4px;
	  border-radius: 0; 
	  text-align: center;
	  width: 75px;
	  height: 36px;
	  transition: 0.3s;
  }
  @media (max-width: 991px){
	.footer-menu ul {
	  flex-direction: column;   
	  padding-left: 0px; 
	}
	.footer-menu ul li {
	  margin-top: 20px;
	  text-align: center;
	}
	.footer-menu {
	  justify-content: center;
	}
  .about {
	  padding: 0px 0 !important;
	  background-color: #0C0932;
  }
  }
  #footer > div > div.container > div > div.col-lg-6.col-md-12.col-sm-12.footer-menu.d-flex.justify-content-center.align-items-center > ul {
	padding-left: 0px;

  }
  
@media (min-width: 992px) {
	#footer .row>div:first-child {
		text-align: left !important;
	}
	#footer .row>div:last-child {
		text-align: right !important;
	}
}
@media (max-width: 767px) {
	#footer .row>div:first-child {
		text-align: center !important;
	}
	#footer .row>div:last-child {
		text-align: center !important;
	}
}


@media (max-width: 992px) {
	#hero {
		background-position: 75% 50%;
	}
	.features .section-title p {
		width: 100%;
	}
	.features .feature {
		margin-bottom: 20px;
	}
	#features .row {
		margin-bottom: 0px;
	}
	.features .section-title {
		margin-bottom: 50px;
	}
	#dollar-icon, #faq-watch, #contact_cake {
		/* position: absolute;
		width: 100px;
		left: -30px;
		top: -25px; */
		display: none;
	}
	#stopwatch-icon, #faq-note, #contact_dollor {
		/* position: absolute;
		width: 100px;
		right: -30px;
		top: -25px; */
		display: none;
	}
	.faq .section-title p, #contact .section-title p {
		width: 100% !important;
	}
	.faq .section-title {
		padding-bottom:50px;
	}
	.faq-list {
		padding: 0px 20px !important;
	}
	#contact > div > div.row {
		padding-top: 50px;
	}
	#contact_form {
		padding: 0px 20px; 
	}
	.contact .php-email-form {
		padding: 20px 10px;
		border-radius: 30px;
	}
	#header .logo {
		font-size: 18px;
	}
	#header > div > div > div > a.get-started-btn {
		position: absolute;
		right: 0px;
	}
	#hero-content > div.icon-box.d-flex.justify-content-center.align-items-center.data-aos\= {
		margin: auto;
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.feature {
		flex-direction: column-reverse !important;
	}
}