/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #f68d1f;
}

a:hover {
  color: #e3621f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #f68d1f;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f68d1f;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f68d1f;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(10, 10, 10, 0.85);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
  margin-left: 170px;
}

@media (max-width: 1465px) {
  #header .logo img {
    max-height: 60px;
    margin-left: 80px;
  }
}

@media (max-width: 1165px) {
  #header .logo img {
    max-height: 60px;
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
  }
  #header .logo img {
    padding-left: 10px;
    max-height: 45px;
  }

}

@media (max-width: 420px) {
  #header .logo img {
    max-height: 45px;
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 379px){.nav-menu .get-started-btn {display: none;}}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 3px;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f68d1f;
  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: 12px;
  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: #15222b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f68d1f;
}

.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;
  margin-right: 170px;
  color: #fff;
  border-radius: 20px;
  padding: 6px 20px 7px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #fff;
  font-weight: 600;
}

.get-started-btn i{

}

.get-started-btn:hover {
  background: #f68d1f;
  color: #fff;
  border-color: #f68d1f;
}

@media (max-width: 1465px) {
  .get-started-btn {
    margin-right: 60px;
  }
}

@media (max-width: 1165px) {
  .get-started-btn {
    margin-right: 20px;
  }
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

@media only screen and (max-width: 788px){.get-started-btn {display: none;}}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  margin: auto;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 25px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

@media (max-width: 478px) {
.mobile-nav-toggle {
  position: fixed;
  margin: auto;
  right: 15px;
  top: 23px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 25px;
  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: #15222b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f68d1f;
  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(4, 7, 9, 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-bg2.png") top center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-bottom: 80px;
}

#hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 300px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 55px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

#hero h2 {
  color: #eee;
  font-size: 24px;
}

#hero strong{
  font-weight: bold;
  font-size: 28px;
}

#hero strong1{
  font-weight: bold;
  font-size: 28px;
  color: #f68d1f;
}

#hero strong2 {
  color: red;
}

#hero strong3 {
  color: #f68d1f;
}

#hero h3 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

#hero h4 {
  font-size: 20px;
  color: #eee;
  font-style: italic;
  margin-bottom: 40px;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  display: inline-block;
  padding: 10px 150px 10px 150px;
  border-radius: 0px;
  transition: 0.5s;
  color: #fff;
  background: #f68d1f;
  border: 2px solid #f68d1f;
}

#hero .btn-get-started:hover {
  border-color: #f68d1f;
  color: #f68d1f;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  padding: 10px 130px 8px 150px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  position: relative;
  border-radius: 0px;
  border: 2px solid #fff;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 100px;
  top: 7px;
  transition: 0.3s;
}


#hero .btn-watch-video:hover {
  background-color: #f68d1f;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 901px) {
  #hero h1 {
    font-size: 46px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero strong{
    font-weight: bold;
    font-size: 22px;
  }

  #hero h3 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
  }

  #hero h4 {
    font-size: 18px;
    color: #eee;
    font-style: italic;
    margin-bottom: 40px;
  }

  #hero .btn-get-started {
      padding: 10px 75px 10px 75px;
  }

  #hero .btn-watch-video {
      padding: 10px 55px 8px 75px;
  }

  #hero .btn-watch-video i {
      left: 30px;
  }
}

@media (max-width: 788px) {
  #hero h1 {
    font-size: 42px;
    line-height: 36px;
    margin-bottom: 50px;
  }
  #hero .d-flex {
    margin-bottom: 150px;
  } 
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 42px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 14px;
    line-height: 24px;
  }
  #hero strong{
    font-weight: bold;
    font-size: 18px;
  }

  #hero h3 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
  }

  #hero h4 {
    font-size: 14px;
    color: #eee;
    font-style: italic;
    margin-bottom: 40px;
  }

  #hero .btn-get-started {
      padding: 10px 35px 10px 35px;
  }

  #hero .btn-watch-video {
      padding: 10px 35px 8px 35px;
  }
}

@media (max-width: 555px) {
  #hero{
    margin-bottom: -70px;
  }
  #hero h1 {
    font-size: 47px;
    line-height: 50px;
  }
}

@media (max-width: 382px){
  #hero .btn-get-started {
      padding: 10px 25px 10px 25px;
      font-size: 14px;
      font-weight: 400;
  }
  #hero .btn-watch-video {
      padding: 10px 25px 8px 25px;
      font-size: 14px;
      font-weight: 400;
  }
}

#hero1 .background-video {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#hero1  .page-hero {
    position: relative;
    overflow: hidden;
}

#hero1  .background-video-content {
    position: relative;
    z-index: 1;
}

#hero1 video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#hero1 .videoContainer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

@media (max-width: 1015px){
  #hero1 .background-video {
    display: none;
  }
}

@media only screen and (max-width: 788px){#hero .btn-watch-video i::before, #hero .btn-watch-video i::after {display: none;}}
@media only screen and (max-width: 788px){#hero h2, #hero h3, #hero h4 {display: none;}}

@media only screen and (max-width: 788px){#hero btn-watch-video {display: none;}}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

section1 {
  padding: 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F8F8FF;

}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}


.section-title1 {
  text-align: center;
  padding-bottom: 30px;
}

.section-title1 h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title1 h2::before, .section-title1 h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #f68d1f;
  display: inline-block;
}

.section-title1 h2::before {
  margin: 0 15px 10px 0;
}

.section-title1 h2::after {
  margin: 0 0 10px 15px;
}

.section-title1 p {
  font-size: 26px;
  margin: 15px 0 0 0;
}

@media only screen and (max-width: 788px){.section-title1 h2::before, .section-title1 h2::after {display: none;}}

.section-title2 {
  text-align: center;
  padding-bottom: 30px;
}

.section-title2 h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2d405f;
}

.section-title2 h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title2 p {
  margin-bottom: 0;
}

.section-title3 {
  text-align: center;
  padding-bottom: 30px;
}

.section-title3 h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.public .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 10px 55px 10px 55px;
  border-radius: 0px;
  transition: 0.5s;
  color: #fff;
  background: #f68d1f;
  border: 2px solid #f68d1f;
  margin-top: -200px;
  margin-right: 80px;
}

.public .btn-get-started:hover {
  border-color: #f68d1f;
  color: #f68d1f;
  background: rgba(255, 255, 255, 0.1);
}

.img-fluid5 {
  width: 100%;
  margin-bottom: -120px;
  margin-top: 100px;
  position: relative;
}

.img-fluid06 {
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 688px){.img-fluid5, .public .btn-get-started {display: none;}}
@media only screen and (min-width: 688px){.img-fluid06 {display: none;}}

.img-fluid01 {
  display: block;
  margin: auto;

}

.img-fluid6 {
  max-width: 100%;
  position: relative;
}

@media (max-width: 993px) {
  .img-fluid6 {
    background-attachment: fixed;
    margin-top: 69px;
  }
}
@media (max-width: 385px) {
  .img-fluid6 {
    margin-top: 73px;
  }
}

@media (max-width: 1165px){
  .public .btn-get-started {
    margin-top: 0px;
    margin-right: 20px;
  }

  .img-fluid5 {
   margin-bottom: -110px;
   position: relative;
  }
}

@media (max-width: 1035px){
  .public .btn-get-started {
    margin-top: 0px;
    margin-right: 20px;
      padding: 10px 35px 10px 35px;
  }

  .img-fluid5 {
   margin-bottom: -100px;
   position: relative;
  }
}

@media (max-width: 992px){
  .public .btn-get-started {
    margin-top: 0px;
    margin-right: 100px;
    padding: 8px 35px 8px 35px;
    font-size: 12px;
  }

  .img-fluid5 {
   margin-bottom: -100px;
   position: relative;
  }
}

@media (max-width: 900px){
  .public .btn-get-started {
    margin-top: 20px;
  }
}

@media (max-width: 769px){
  .public .btn-get-started {
    margin-top: 20px;
    margin-right: 80px;
    padding: 6px 25px 6px 25px;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/
#clients .section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

#clients .section-title1 {
  padding-bottom: 40px;
}

#clients .section-header .section-title1 {
  font-size: 32px;
  color: #222222;
  text-align: center;

  margin-bottom: 5px;
}

#clients .section-title1 h4 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

#clients .section-title1 h4::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f2f9f8;
  margin: 4px 10px;
}

.clients .section-header h4::before, .clients .section-header h4::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #f68d1f;
  display: inline-block;
}

.clients .section-header h4::before {
  margin: 0 15px 10px 0;
}

.clients .section-header h4::after {
  margin: 0 0 10px 15px;
}

.clients {
  padding-top: 50px;
  margin-top: 200px;
  margin-bottom: 60px;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 90%;
  opacity: 0.5;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #f68d1f !important;
}

.clients  .get-link-btn {
  color: #f68d1f;
  border-radius: 4px;
  padding: 7px 115px 8px 115px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  border: 2px solid #f68d1f;
}

.clients  .get-link-btn:hover {
  background: #f68d1f;
  color: #fff;
}

@media (max-width: 768px) {
  .clients .owl-item img {
    width: 100%;
    opacity: 0.5;
    transition: 0.3s;
  }
}

@media (max-width: 688px){
  .clients {
    margin-top: 0px;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
  margin-left: 200px;
}

.why-us .content {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  color: #f68d1f;
}

.why-us .content strong {
  font-weight: 700;
  font-size: 20px;
  color: #f68d1f;
}

.why-us .content img {
  max-width: 65px;
  padding-bottom: 5px;
}

.why-us .content p {
  margin-bottom: 30px;
  color: #000;
  font-size: 17px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #f68d1f;
  border-radius: 50px;
  border: 2px solid #f68d1f;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #fff;
  border: 2px solid #f68d1f;
  background: #f68d1f;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ff5821;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}

@media (max-width: 995px) {
  .why-us {
    padding: 0 0 30px 0;
    position: relative;
    z-index: 3;
    margin: auto;
  }
}

.why-us .counter span {
  font-size: 30px;
  display: block;
  color: #f68d1f;
  line-height: 2;
  font-weight: bold;
}

.why-us .counter p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.why-us .icon i {
  color: #ff5821;
  font-size: 42px;
  line-height: 2;
}

span[data-toggle="counter-up"]::after {
  content: " K";
}

span[data-toggle="counter-up1"]::after {
  content: " K";
}

span[data-toggle="counter-up2"]::before {
  content: "MYR ";
}

span[data-toggle="counter-up3"]::after {
  content: " K";
}

span[data-toggle="counter-up2"]::after {
  content: " M";
}
span[data-toggle="counter-up4"]::before {
  content: "> ";
}


@media (max-width: 780px) {
  .why-us .counter span {
    font-size: 20px;
    display: block;
    color: #f68d1f;
    line-height: 2;
    font-weight: bold;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: .7px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  letter-spacing: .7px;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f68d1f;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 788px){.section-title1 p strong1 {display: none;}}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #f68d1f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #f68d1f;
}

.about .content .btn-learn-more:hover {
  background: #f68d1f;
  color: #fff;
  text-decoration: none;
}

.about img {
  max-width: 120px;
  padding-bottom: 5px;
  padding-left: 8px;
}

.about .img-fluid1 {
  max-width: 100px;
  padding-bottom: 5px;
  padding-right: 8px;
}

@media (max-width: 980px) {
  .about video {
    max-width: 500px;
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .about video {
    max-width: 380px;
    max-height: 260px;
  }
}

@media (max-width: 382px) {
  .about video {
    max-width: 300px;
    max-height: 200px;
  }
}


/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.about-boxes::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container, .about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

.about-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #f68d1f;
  border-radius: 4px;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: #f68d1f;
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #f68d1f;
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features  {
  padding: 0px;
}

.features .section-title1 {
  text-align: center;
  padding-bottom: 0px;
}

.features .content + .content {
  margin-top: 20px;
}

.features .content h3 {
  font-weight: 600;
  font-size: 26px;
  padding-top: 50px;
}

.features .content h3 strong {
  color: #f68d1f;
  font-size: 20px;
}

.features .content h4 {
  font-weight: 600;
  font-size: 26px;
  padding-top: 25px;
}

.features .content h4 strong {
  color: #f68d1f;
  font-size: 20px;
}

.content .img-fluid3 {
 margin-right: 200px;
 max-width: 20%;
 margin-top: -180px;
 margin-bottom: -150px;
 margin-right: 200px;
 position: relative;
}

.content .img-fluid4 {
 max-width: 7%;
 margin-left: 80px;
 margin-top: -100px;
 margin-bottom: -150px;
 position: relative;
}

.features .get-link-btn {
  color: #f68d1f;
  border-radius: 0px;
  padding: 8px 65px 8px 65px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #f68d1f;
}

.features .get-link-btn:hover {
  background: #f68d1f;
  color: #fff;
}

@media only screen and (max-width: 788px){.content .img-fluid3, .content .img-fluid4 {display: none;}}

.features .section-title1 h2 {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 20px;
  position: relative;
  color: #f68d1f;
}

.features .section-title1 h3 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

.features .section-title1 p {
  font-size: 16px;
  text-align: left;
}

.features .content .img-fluid1 {
  max-width: 70%;
  display: block;
  margin-top: 20px;
  margin-right: 140px;
  margin-left: auto;
  margin-bottom: 100px;
}

.features .content .img-fluid2 {
  max-width: 130%;
  margin-left: -210px;
  margin-bottom: 100px;
}

.features .content .img-fluid3 {
  max-width: 110%;
  display: block;
  margin-right: auto;
  margin-left: 40px;
  margin-bottom: 100px;
  margin-top: 30px;
}

.features .content .img-fluid4 {
  max-width: 100%;
  padding-top: 80px;
  margin-bottom: 10px;
  margin-bottom: 100px;
}

.features .content .img-fluid5 {
  max-width: 70%;
  display: block;
  margin-right: auto;
  margin-left: 140px;
  margin-bottom: 100px;
  margin-top: 50px;
}

.features .content .img-fluid6 {
  max-width: 70%;
  display: block;
  margin-top: 50px;
  margin-right: auto;
  margin-left: 140px;
  margin-bottom: 100px;
}

.features .content .img-fluid7 {
  max-width: 130%;
  display: block;
  margin-right: auto;
  margin-left: -120px;
}

.features .content .img-fluid8 {
  max-width: 130%;
  margin-left: -210px;
  margin-bottom: 100px;
}

.features .content .img-fluid9 {
  max-width: 100%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
}

.features .content .img-fluid10 {
  max-width: 120%;
  display: block;
  margin-right: auto;
  margin-left: 40px;
  margin-bottom: 100px;
  margin-top: 70px;
}

.features .content .img-fluid11 {
  max-width: 130%;
  display: block;
  margin-right: -200px;
  margin-left: auto;
  margin-bottom: 100px;
  margin-top: 120px;
}


.features .section-title1 p strong{
  color: #f68d1f;
}

.features .content ul {
  list-style: none;
  padding: 0;
}

.features .content ul li {
  padding-bottom: 10px;
}

.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3b4ef8;
}

.features .content p:last-child {
  margin-bottom: 0;
}

#features .white-button a {
	display: inline-block;
  border: 2px solid #f68d1f;
	background-color: #fff;
	padding: 8px 18px;
	color: #121212;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
	transition: all 0.5s;
}
#features .white-button a:hover {
	background-color: #f68d1f;
	color: #fff;
}

@media (max-width: 1200px) {
  .features .content .img-fluid1 {
    margin-top: 70px;
  }

  .features .content .img-fluid2 {
    margin-top: 60px;
    margin-left: -140px;
  }

  .features .content .img-fluid3 {
    max-width: 110%;
    margin-top: 100px;
  }

  .features .content .img-fluid4 {
    padding-top: 130px;
  }

  .features .content .img-fluid5 {
    margin-top: 70px;
  }

  .features .content .img-fluid6 {
    margin-top: 100px;
  }

  .features .content .img-fluid7 {
    margin-top: 50px;
  }

  .features .content .img-fluid8 {
    margin-top: 60px;
    margin-left: -140px;
  }
  .features .content .img-fluid9 {
    margin-top: 50px;
  }
  .features .content .img-fluid10 {
    max-width: 120%;
    margin-top: 100px;
  }
  .features .content .img-fluid11 {
    max-width: 130%;
    margin-top: 200px;
    margin-right: -130px;
  }
}

@media (max-width: 992px) {

  .features .content .img-fluid1 {
    max-width: 100%;
    margin-right: auto;
    margin-left: -50px;
    margin-top: 110px;
  }

  .features .content .img-fluid2 {
    margin-top: 160px;
    margin-left: -160px;
  }

  .features .content .img-fluid3 {
    max-width: 110%;
    margin-top: 180px;
  }

  .features .content .img-fluid4 {
    padding-top: 210px;
  }

  .features .content .img-fluid5 {
    max-width: 100%;
    margin-left: 50px;
    margin-top: 110px;
  }

  .features .content .img-fluid6 {
    max-width: 100%;
    margin-left: 50px;
    margin-top: 150px;
  }

  .features .content .img-fluid7 {
    max-width: 140%;
    margin-left: -100px;
    margin-top: 150px;
  }

  .features .content .img-fluid8 {
    margin-top: 150px;
    margin-left: -100px;
  }
  .features .content .img-fluid9 {
    max-width: 120%;
    margin-top: 100px;
  }
  .features .content .img-fluid10 {
    max-width: 150%;
    margin-top: 180px;
    margin-left: -50px;
  }
  .features .content .img-fluid11 {
    margin-top: 280px;
  }
}

@media (max-width: 768px) {
  .features .content .img-fluid1 {
    max-width: 60%;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }

  .features .content .img-fluid2 {
    max-width: 100%;
    margin-top: 100px;
    margin-left: -0px;
    margin-bottom: 0px;
  }

  .features .content .img-fluid3 {
    max-width: 100%;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }

  .features .content .img-fluid4 {
    padding-top: 0px;
    display: block;
    margin-left: auto;
    margin-left: auto;
    margin-top: 100px;
    margin-bottom: -80px;
  }

  .features .content .img-fluid5 {
    max-width: 60%;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }

  .features .content .img-fluid6 {
    max-width: 60%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }

  .features .content .img-fluid7 {
    max-width: 100%;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }

  .features .content .img-fluid8 {
    max-width: 100%;
    margin-top: 100px;
    margin-left: -0px;
    margin-bottom: -100px;
  }
  .features .content .img-fluid9 {
    max-width: 100%;
    margin-bottom: -80px;
  }
  .features .content .img-fluid10 {
    max-width: 100%;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }
  .features .content .img-fluid11 {
    max-width: 100%;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -60px;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #f68d1f;
}

.features .nav-link.active {
  background: #f68d1f;
  color: #fff;
  border-color: #f68d1f;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #f68d1f;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*---------------------------------------------------
faq
---------------------------------------------*/
body #faq {
	background-color: #fff;
  padding: 0;

  /* .rich-accordian::before {
border: 1px solid #1abc9c;
content: "";
position: absolute;
height: 88%;
z-index: 1;
left: calc((66px + 22px) / 2);
left: -webkit-calc((66px + 22px) / 2);
top: 2px;
} */ }
body #faq .icon-circle {
	width: 60px;
	height: 60px;
	line-height: 60px;
	display: inline-block;
	border-radius: 100%;
	text-align: center;
}
body #faq .icon-circle i {
	color: #fff;
	font-size: 30px;
	margin-top: 15px;
}
body #faq .panel-group .panel {
	border-radius: 0;
	box-shadow: none;
	border-color: #fff;
	margin-bottom: 20px;
	border-bottom: 1px solid #f68d1f;
	padding-bottom: 20px;
}

body #faq .panel-default > .panel-heading {
	padding: 0;
	border-radius: 0;
	color: #777777;
	background: #fff;
	border-color: #fff;
}

body #faq .panel-title {
	font-size: 14px;
}

body #faq .panel-title a {
	display: inline-block;
	padding: 0px;
  margin-left: -50px;
	text-decoration: none;
	color: #f68d1f;
	text-transform: capitalize;
	font-size: 14px;
  font-family: "Poppins", sans-serif;
}

body #faq .panel-body {
	color: #A0A0A0;
	font-size: 17px;
  font-family: "avenir", sans-serif;
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 300;
}


body #faq .more-less {
	float: right;
	color: #777777;
}

body #faq .panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-top: 0px;
}

body #faq .get-link-btn {
  color: #f68d1f;
  border-radius: 0px;
  padding: 12px 155px 12px 155px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  border: 2px solid #f68d1f;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 30px;
}

body #faq .get-link-btn:hover {
  background: #f68d1f;
  color: #fff;
}

@media (max-width: 767px) {
  body #faq .get-link-btn {
    padding: 12px 105px 12px 105px;
  }
}

@media (max-width: 488px) {
  body #faq .get-link-btn {
    padding: 12px 75px 12px 75px;
  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #5c8eb0;
  font-size: 40px;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #365870;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #f68d1f;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #f68d1f;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    margin-top: 5em;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 550px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;

}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: white;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #3b4ef8 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# testimonials1
--------------------------------------------------------------*/
.testimonials1 .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: auto;
}

.testimonials1 .member .pic {
  overflow: hidden;
  width: 140%;
  border-radius: 60%;
}

.testimonials1 .member .pic1 {
  max-width: 25%;
  overflow: hidden;
  border-radius: 60%;
}

.testimonials1 .member .pic2 {
  max-width: 22%;
  overflow: hidden;
  border-radius: 60%;
}

.testimonials1 .member .pic3 {
  overflow: hidden;
  width: 140%;
  border-radius: 60%;
}

@media (max-width: 521px) {
  .testimonials1 .member .pic3 {
    width: 180%;
  }
}

@media (max-width: 435px) {
  .testimonials1 .member .pic3 {
    width: 220%;
  }
}

.testimonials1 .member .pic img {
  transition: ease-in-out 0.3s;
}

.testimonials1 .member:hover {
  transform: translateY(-10px);
}

.testimonials1 .member .member-info {
  padding-left: 30px;
}

.testimonials1 .member .member-info1 {
  padding-left: 30px;
  padding-bottom: 24px;
}

.testimonials1 .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.testimonials1 .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.testimonials1 .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.testimonials1 .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.testimonials1 .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.testimonials1 .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.testimonials1 .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.testimonials1 .member .social a:hover {
  background: #47b2e4;
}

.testimonials1 .member .social a:hover i {
  color: #fff;
}

.testimonials1 .member .social a + a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #f68d1f;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #f68d1f;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: .8;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member img{
  max-width: 120%;
  max-height: 400px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #f68d1f;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(239, 102, 3, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #fc8129;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}

.team .member .member-info a {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}

.team .member .member-info a:hover {
  color: #f68d1f;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.team .services-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s;
  margin: 10px;
  border-radius: 30px;
  border: 2px solid #f68d1f;
  color: #f68d1f;
  background: #fff;
}

.team .services-btn:hover {
  background: #f68d1f;
  color: #fff;
}

@media (min-width: 769px) {
  .team .services-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Team1
--------------------------------------------------------------*/
.team1 .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team1 .member img {
  max-width: 65%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team1 .member .img-fluid {
  max-width: 61%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team1 .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 22px;
}

.team1 .member span {
  font-style: italic;
  display: block;
  font-size: 16px;
}

.team1 .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #A0A0A0;
}

.team1 .member .social {
  margin-top: 15px;
}

.team1 .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team1 .member .social a:hover {
  color: #cc1616;
}

.team1 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-top: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: #f68d1f;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-top: 30px;
}

.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: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #f68d1f;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #f68d1f;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f68d1f;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
#subscribe {
  padding: 60px;
  padding-bottom: 43px;
  background: url(../img/grey.png) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}

#subscribe .img-fluid {
  max-width: 110%;
  margin-left: 50px;
  margin-top: -10px;
}

#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #subscribe {
    background-attachment: fixed;
  }
}

#subscribe .section-header h2, #subscribe p {
  color: #fff;
}

#subscribe .section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

/*----------
#subscribe .section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f68d1f;
  bottom: 0;
  left: calc(50% - 25px);
}
-----------*/

#subscribe .section-header h2 {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

#subscribe .section-header h2 strong {
  color: #f79938;
  font-family: 'Lora', serif;
}

#subscribe .section-header h4 {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: -40px;
  color: white;
}

#subscribe .section-header h4 strong {
  color: #f79938;
}

@media only screen and (min-width: 688px){#subscribe .section-header h4 {display: none;}}
@media only screen and (max-width: 688px){#subscribe .section-header h2, #subscribe .section-header p {display: none;}}

#subscribe h3 {
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 30px;
  color: #fff;
  letter-spacing: 4px;
}

#subscribe .section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-bottom: -30px;
}

#subscribe img {
  max-width: 125%;
  padding-bottom: 5px;
  padding-left: 8px;
}

#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 0px;
  font-size: 16px;
  margin-bottom: 10px;
}

@media (min-width: 993px) {
  #subscribe input {
    min-width: 400px;
  }
}

@media (max-width: 1350px) {
  #subscribe .img-fluid {
    max-width: 140%;
    display: block;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1200px) {
  #subscribe .img-fluid {
    max-width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  #subscribe input {
    max-width: 350px;
  }
  #subscribe .img-fluid {
    max-width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  #subscribe input {
    max-width: 280px;
  }
  #subscribe .img-fluid {
    max-width: 50%;
  }
}

@media (max-width: 528px) {
  #subscribe .img-fluid {
    max-width: 70%;
  }
}

@media (max-width: 458px) {
  #subscribe .img-fluid {
    max-width: 80%;
  }
}

#subscribe button {
  border: 0;
  padding: 6px 25px;
  cursor: pointer;
  background: #f68d1f;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 0px;
}

#subscribe button:hover {
  background: #e3621f;
}

@media (max-width: 542px) {
  #subscribe button {
    margin-top: 10px;
    padding: 5px 25px;
  }
}

#subscribe .social-links a {
  font-size: 30px;
  display: inline-block;
  background: #f68d1f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 44px;
  margin-left: 44px;
  margin-top: 10px;
  border-radius: 4px;
  text-align: center;
  width: 68px;
  height: 68px;
  transition: 0.3s;
}

#subscribe .social-links i {
  font-size: 50px;
}

#subscribe .social-links a:hover {
  background: #e3621f;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  #subscribe .social-links i {
    font-size: 40px;
  }
  #subscribe .social-links a {
    font-size: 30px;
    display: inline-block;
    background: #f68d1f;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 24px;
    margin-left: 24px;
    margin-top: 10px;
    border-radius: 4px;
    text-align: center;
    width: 58px;
    height: 58px;
    transition: 0.3s;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f0f4f8;
  min-height: 40px;
  margin-top: 100px;
}

.breadcrumbs img{
  max-height: 60px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .breadcrumbs img{
    max-height: 60px;
    margin-bottom: 20px;
  }
  .breadcrumbs {
    margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #f68d1f !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
  font-size: 20px;
}

.portfolio-details .portfolio-description strong1 {
  color: #f68d1f;
}

.portfolio-details .portfolio-description img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.portfolio-details .portfolio-description a {
  color: #f68d1f;
  font-size: 20px;
}

.portfolio-details .portfolio-description a:hover {
  color: #e3621f;
  font-size: 20px;
}

.portfolio-details .portfolio-description blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.portfolio-details .portfolio-description blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.portfolio-details .portfolio-description blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.portfolio-details .portfolio-description blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.portfolio-details .portfolio-description blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.portfolio-details .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.portfolio-details .blog-author img {
  max-width: 11%;
  max-height: 10%;
}

.portfolio-details .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.portfolio-details .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.portfolio-details .blog-author .social-links a {
  color: #777777;
}

.portfolio-details .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #b7b7b7;
}

@media (max-width: 1041px) {
  .portfolio-details .blog-author img {
    max-width: 15%;
    max-height: 15%;
  }
}

@media (max-width: 992px) {
  .portfolio-details .blog-author img {
    max-width: 20%;
    max-height: 20%;
  }
}

@media (max-width: 769px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
  .portfolio-details .blog-author img {
    max-width: 20%;
    max-height: 20%;
  }
}

@media (max-width: 767px) {
  .portfolio-details .blog-author img {
    max-width: 25%;
    max-height: 25%;
  }
}

@media (max-width: 570px) {
  .portfolio-details .blog-author img {
    max-width: 26%;
    max-height: 26%;
  }
}

@media (max-width: 420px) {
  .portfolio-details .blog-author img {
    max-width: 37%;
    max-height: 37%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #202020;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #202020;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

#footer .footer-top .footer-info a:hover {
  color: #f68d1f;
  transition: 0.3s;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f68d1f;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top img {
  max-width: 70%;
  max-height: 70%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #footer .footer-top img {
    max-width: 50%;
    max-height: 50%;
    margin-bottom: 20px;
  }
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f68d1f;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f68d1f;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f68d1f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #f68d1f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}
