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

a {
  color: #eb5d1e;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Roboto", sans-serif;
}
p{font-family: "Roboto", sans-serif;font-size: 18px;}
ul li{font-family: "Roboto", sans-serif; font-size: 18px;}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background: #eb5d1e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

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

#main {
  margin-top: 72px;
}

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  color: #4e4039;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #eb5d1e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #eb5d1e;
  color: #fff;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ee7843;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 18px;
  text-transform: none;
}

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

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

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

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

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

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

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 18px;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 500px;
  background: #fef8f5;
  border-bottom: 2px solid #fcebe3;
  margin: 50px 0 -72px 0;
}

#hero-career {
  width: 100%;
  height: 70vh;
  background: white;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero-join {

  width: 100%;
  height: 70vh;
  background: #a3eff1;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
  
}

#hero h2 {
  color: #a08f86;
  margin: 18px 0 0 0;
  font-size: 24px;
}

#hero p {
font-family: 'Roboto', sans-serif;
 font-size: 18px;
 color: black;
}


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

#about .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #eb5d1e;
}

#hero-join .btn-get-knowmore {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #5803f5;
}

#hero .btn-get-started:hover {
  background: #ef7f4d;
}

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

@media (max-width: 991px) {
  #hero {
    width: 100%;
    background: #fef8f5;
    border-bottom: 2px solid #fcebe3;
    margin: 50px 0 -72px 0;
    height:auto; 
  }

  #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: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
    margin-top:30px;
  }
  #hero #hero-image{
    width: 90%;;
    margin:30px;
    padding-right: 20px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 100%;
  }
}

@-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
--------------------------------------------------------------*/


#section2 {
  padding: 60px 0;
  overflow: hidden;
  background-color: #c7a0ee;
  padding-bottom: 30px;
}

section {
  padding: 30px 0 10px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p {
  margin-bottom: 18px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
/* 
.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
} */

#section-joinus {
  background-color: rgb(85, 81, 81);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background-color: #fef5f1;
  min-height: 40px;
}

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

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

#about-us {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 30px 0
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}

.about i {
  font-size: 48px;
  margin-top: 18px;
  color: #f39e7a;
}

.about p {
 font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: black;
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 18px;
  text-align: center;
  border-bottom: 3px solid #fff;
  width: 100%;
}
.services h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}
.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #ef7f4d;
}
.services .icon-box:hover img{filter: brightness(0) saturate(100%)}
.services .icon-box:hover i{color:#000}
.services .icon-box:hover h4 a{color:#ef7f4d;}
.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 18px;
  color: #ef7f4d;
}

.services p {
 font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: black;
}

.services .title {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 18px;
}

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

.services .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Join Us
--------------------------------------------------------------*/
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

#wju {
  padding: 30px;
  
}
#wju h3{
  margin-top: 18px;
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
  text-align: center;
}
#wju h4{
  font-weight:bold;
  color: #000000;
  font-size:25px;

}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.section-head {
  margin-bottom: 10px;
  color: #111;
}

#wju p {
  color: black;
  font-size: 18px;
  margin-bottom: 0px;
  /* font-family:"Open-Sans" sans-serif; */
}

.section-head h4 {
  position: relative;
  padding: 0;
  color: #f91942;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: #2f2f2f
}

p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text span {
  font-weight: 700;
  color: #f91942;
}

.item {
  background: #fff;
  justify-content: center;
  text-align: start;
  height: 30vh;
  padding: 2px 2px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 18px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item-joinus {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item-joinus :hover {
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover {
  background: #db926b;
  color: white;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: white;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #f91942;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #f91942
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #f91942
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #f91942
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #f91942
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #f91942
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #f91942
}

.item p {
  font-size: 18px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.mission p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f91942;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f91942;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fef8f5;
  padding: 30px 0;
}

.team h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}
.team p{
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: black;
}


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

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

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

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

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(78, 64, 57, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 18px;
}

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

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

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(78, 64, 57, 0.95) 0%, rgba(78, 64, 57, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}


.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
} 

#clients{
  background-color: white;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

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

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

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eb5d1e;
}

 #clients .align-items-center1 .img-fluid {
  height: auto;
  flex-wrap: wrap;
  width:85%;
  
}
#clients .align-items-center1 {
    align-items: center!important;
    display: flex;
    width:26%;
    text-align: center;
} 

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact {
  /* background: #fef8f5; */
  background: #fff;
  padding: 30px 0;
}

.contact .info {
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

#contact-us {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 30vh;
  background: white;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0
}


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

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: black;
 font-family: 'Roboto', sans-serif;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  /* color: #ab9d95; */
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

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

.contact .info .social-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

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

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 18px;
  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: 18px;
  font-weight: 600;
}

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


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

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type=submit] {
  background: #eb5d1e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef7f4d;
}

@-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: #fff;
  padding: 0 0 30px 0;
  color: #212529;
  font-size: 14px;
  background: #fef8f5;
}
#footer .footer-newsletter {
  padding: 22px 0;
  background: #114ccb;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fffefa;
  text-align: center;
  justify-content: center;
}


#footer .footer-newsletter .news-form {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fffefa;
  text-align: center;
  justify-content: center;
  width: 70%;
  margin-left: 200px;
}
@media(max-width:991px)
{
  
#footer .footer-newsletter .news-form {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fffefa;
  text-align: center;
  justify-content: center;
  width: 100%;
  
}
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #eb5d1e;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  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 {
  font-size: 15px;
  color: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #eb5d1e;
}

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

#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

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

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

.div365 {
  text-align: center;
  float: left;
  background-color: #333;
  display: flex;
}

.h1365 {
  color: white;
}

.img365 {
  width: 80%;
  box-sizing: border-box;
}

.ini {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.item-col {
  margin-bottom: 45px;
}

.ini-count {
  font-size: 1.0625rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 0.125rem;
  position: relative;
  z-index: 1;
  color: rgb(56, 56, 238);
  padding-right: 0.3125rem;
}


.items {
  margin-bottom: -45px;
}

.heading-center {
  text-align: center;
}

.section-heading {
  margin-bottom: 3.25rem;

}

.section-subheading {
  font-size: 1rem;
  margin-bottom: 0.3125rem;
  text-transform: uppercase;
  color: var(--main-color);
}

.ini {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.ini-info {
  padding-left: 2.75rem;
}

.item-heading-large {
  font-family: var(--heading-font-family), sans-serif;
  font-size: 1.5rem;
  font-weight: var(--heading-font-weight);
}

.ini-heading {
  font-weight: bold;
  /* margin-bottom: 1.25rem; */
}

.ini-desc {
  color: var(--text-secondary);
}

* {
  box-sizing: border-box;
}

.row-1 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -18px;
  margin-left: -18px;
}

.aboutsecjoin-bgc {
  background-color: rgb(159 156 163 / 31%);
}

.aboutsecjoin {
  position: relative;
  padding: 4.5rem 0;
  background-color: rgb(159 156 163 / 31%);
  color: var(--text-primary);
}

#services1 {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 40px 0px;
}



/* Sections
--------------------------------------------------------------*/
.section2 {
  padding: 40px 0;
  overflow: hidden;
}

/* Section2s Header
--------------------------------*/
.section2-header {
  margin-bottom: 30px;
}

.section2-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}


.section2-header p {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------

/* Services Section
--------------------------------*/

#services2 {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 0px 0 10px 0px;
}

#services2 .box {
  padding: 20px;
  box-shadow: 10px 10px 18px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
  height: 100%;
  border: solid 2px #fcebe3 ;
  border-radius: 18px;
 

}

#services2 .box img{
  height: auto;
  width: 70px;
}

#services2 .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}
#services2 .box:hover{color:#eb5d1e;}
#services2 .box .icon  h4,p{
  text-align:justify;
  margin-bottom: 10px;
  font-size: 18px;
}

#services2 .box .icon  h4,p{
  text-align:justify;
  margin-bottom: 10px;
  font-size: 18px;
}

.section-bg .section-title p{text-align:center !important;}
#services2 .box .icon i {
  color: #444;
  font-size: 18px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
  height: 20px;
  width: 20px;
}


#services9 {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 0px 0 10px 0px;
}

#services9 .box {
  padding: 20px;
  box-shadow: 10px 10px 18px rgba(73, 78, 92, 0.1);
  background: rgb(254, 255, 255);
  transition: 0.4s;
  height: 100%;
  border: solid 2px #fcebe3 ;
  border-radius: 18px;
 

}

#services9 .box .icon1 img {
  color: #444;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
  height: 250px;
  width: 250px;
  border-radius: 15px;
}

#services9 .box:hover{
  color:rgb(0, 0, 0);
  box-shadow: 0px 0px 30px rgba(30, 62, 175, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
}

#services9 .box .icon h4 {
font-size: 22px;
font-weight: 600;
}

#services9 .box .icon p{
  text-align:justify;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

#services2 .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services2 .box h4 {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 22px;
}

#services2 .box h4 a {
  color: #444;
}

#services2 .box p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #services2 .box .box {
    margin-bottom: 20px;
  }

  #services2 .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 18px;
  }

  #services2 .box h4,
  #services2 .box p {
    margin-left: 0;
    text-align: center;
  }
}

.Card {
  background: #fff;
  text-align: center;
  height: 100%  ;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;

}

.Card:hover {
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
  /* background-color: gray; */
}

#services .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #eb5d1e;
}


#header-price {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 0px 0px;
}



.section3-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;

}


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

.section-title1 h2 {
  font-family: "Roboto", Sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 40px;
  padding: 0px 0px 0px 0px;
  color: #f34409;
}

.section-title1 p {
  padding-bottom: 18px;
  margin-bottom: 18px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}
/* 
.section-title1 p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
} */

#services4 {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: #fef8f5;
  border-bottom: 0 solid white;
  margin: 72px 0 40px 0px;
}

#services4 .box {
  padding: 40px;
  box-shadow: 10px 10px 18px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#services4 .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services4 .box .icon {
  float: left;
}

#services4 .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#services4 .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services4 .box h4 {

  font-weight: 700;
  margin-bottom: 18px;
  font-size: 22px;
}

#services4 .box h4 a {
  color: #444;
}

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

@media (max-width: 767px) {
  #services4 .box .box {
    margin-bottom: 20px;
  }

  #services4 .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 18px;
  }

  #services4 .box h4,
  #services4 .box p {
    margin-left: 0;
    text-align: center;
  }
}

#header-FO {
  /* justify-content: center; */
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 0px 0px;
}

.section4-header h2 {
  font-size: 32px;
  color: #8e0ede;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.section4-header p {
  font-size: large;
  text-align: start;
}

.section4-header li {
  text-align: start;
  list-style-type: square;
}

#header-crm{
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 0px 0px;
}
.section5-header h2 {
  font-size: 20px;
  color: #050405;
  position: relative;
}

#title-FO{
  font-size: large;
  font-weight: 700;

}
#title-FO p {
font-size: large;
font-weight: 900;
text-align: start;
}

#services-fo{
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: #fef8f5;
  border-bottom: 10 solid white;
  margin: 72px 0 0 0;
}

.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

#about-us {
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  background: white;
  border-bottom: 0 solid white;
  margin: 72px 0 30px 0
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}

.about i {
  font-size: 48px;
  margin-top: 18px;
  color: #f39e7a;
}
#about-about {
  margin-top: 10px;
}
#about-about p {
  margin-top: 50px;
  font-size: 18px;
  color: #000000;
}
#about-about ul li{text-align: justify; font-size: 18px;}

#about .whychooseus{
  justify-content: center;
  text-align: center;

}

.MuiGrid-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.contact h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

.contact p{
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: black;
}

#services2 h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}


#services9 h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}


#services2 .section2-header p{
  font-family:"Roboto", sans-serif;
  font-size: 18px;
  color: black;
  text-align:center;
}


#clients h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

#clients p{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: black;
}

#wju li{
list-style-type: square;
}


#hero-about {
  width: 100%;
  height: 550px;
  background: #fef8f5;
  border-bottom: 2px solid #fcebe3;
  /* margin: 50px 0 -72px 0; */
}

#hero-about-career {
  width: 100%;
  background: white;
  border-bottom: 2px solid #fcebe3;
  /* height: 70vh;
  margin: 72px 0 -72px 0; */
}

#hero-about-join {

  width: 100%;
  background: #a3eff1;
  border-bottom: 2px solid #fcebe3;
  /* height: 70vh;
  margin: 72px 0 -72px 0; */
}

#hero-about h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
  
}

#hero-about h2 {
  color: #a08f86;
  margin: 18px 0 0 0;
  font-size: 24px;
}

#hero-about p {
font-family: 'Roboto', sans-serif;
 font-size: 18px;
 color: black;
}


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

#about .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #eb5d1e;
}

#hero-about-join .btn-get-knowmore {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #5803f5;
}

#hero-about .btn-get-started:hover {
  background: #ef7f4d;
}

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


  #hero-about .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-about .hero-about-img {
    text-align: center;
  }

  #hero-about .hero-about-img img {
    width: 50%;
  }


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

  #hero-about h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-about .hero-about-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero-about .hero-about-img img {
    width: 80%;
  }
  #about-about {
    margin-top: 0px;
  }
  section {
    padding: 10px 0;
    overflow: hidden;
    }
    .contact{padding: 65px 0px;;}
  }

@media (max-width: 700px){
  .pt-5 {
    padding-top: 1rem!important;
}
}

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

  100% {
    transform: translateY(-10px);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}


#micro-ti {
  padding: 30px 0;
  overflow: hidden;
  background-color: white;
  padding-bottom: 30px;
}

#micro-ti h3{
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
  text-align: center;
  margin-bottom: 40px;
}


#micro-ti .box .icon {
  float: left;
}

#micro-ti .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#micro-ti .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#micro-ti .box h4 {
  margin-left: 100px;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 22px;
  color: #000000;
  text-align: start;
}

#micro-ti .section2-header p{
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 18px;
    margin-bottom: 18px;
    position: relative;
}

#micro-ti .box h4 a {
  color: #444;
}

#micro-ti .box p {
  font-size: 18px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #micro-ti .box .box {
    margin-bottom: 20px;
  }

  #micro-ti .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 18px;
  }

  #micro-ti .box h4,
  #micro-ti .box p {
    margin-left: 0;
    text-align: center;
  }
}

#hero-md {
  width: 100%;
  /* height: 70vh; */
  background: #fef8f5;
  border-bottom: 2px solid #fcebe3;
  margin:0px;
}

#hero-md-career {
  width: 100%;
  height: 70vh;
  background: white;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero-md-join {

  width: 100%;
  height: 70vh;
  background: #a3eff1;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero-md h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
  
}

#hero-md h2 {
  color: #a08f86;
  margin: 18px 0 0 0;
  font-size: 24px;
}

#hero-md p {
font-family: 'Roboto', sans-serif;
 font-size: 18px;
 color: black;
}


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


#hero-md-join .btn-get-knowmore {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #5803f5;
}

#hero-md .btn-get-started:hover {
  background: #ef7f4d;
}

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

@media (max-width: 991px) {
  #hero-md {
    height: calc(120vh - 72px);
  }

  #hero-md .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-md .hero-md-img {
    text-align: center;
  }

  #hero-md .hero-md-img img {
    width: 50%;
  }
}

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

  #hero-md h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-md .hero-md-img img {
    width: 70%;
  }
}

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

@media (max-height: 600px) {
  /* #hero-md {height: 120vh;} */
}

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

  100% {
    transform: translateY(-10px);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}


#about-fo{
padding:30px ;
/* border: solid 1px #fcebe3; */
}

.about-fo {
  margin-top: 10px;
}
#about-fo h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
  text-align: center;
}

.about-fo h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}

.about-fo i {
  font-size: 48px;
  margin-top: 18px;
  color: #f39e7a;
}

.about-fo p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: black;
}
#about-fo ol li{font-size: 18px; font-family: "Roboto", sans-serif}
@media (max-width: 991px) {
  .about-fo .about-fo-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about-fo .about-fo-img img {
    max-width: 90%;
  }
}

.new-sec{
  background-color: rgb(69, 62, 69);
  padding-top: 18px;
}

.new-sec p{
  text-align: center; 
  font-size: 18px;
  font-weight:600; 
  font-family:'Roboto', sans-serif;
  line-height: 1.5rem;
  color: white;
  font-style: italic;
}

.clients-data{
  display: flex; 
  flex-wrap: wrap;
   text-align: center;
    padding-right: 50px;
}
.clients-data .clients-span{
  margin-left: 200px;
  display: flex;
}


@media (max-width: 700px) {
.clients-data{display: block; padding: 0px;}
.clients-data .clients-span { display:block; margin: 0px 0px 20px 0px;  }
}

@media(max-width: 991px){
  #hero-about {
    width: 100%;
    background: #fef8f5;
    border-bottom: 2px solid #fcebe3;
    margin: 50px 0 0 0;
    height: auto;
    
}
.Card {
  background: #fff;
  text-align: center;
  height: 52vh;
  -webkit-box-shadow: 0 0px 25px rgb(0 0 0 / 7%);
  box-shadow: 0 0px 25px rgb(0 0 0 / 7%);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}
}

#card-id{
    background: rgb(239, 220, 220);
    text-align: center;
    height: auto;
    -webkit-box-shadow: 0 0px 25px rgb(0 0 0 / 7%);
    box-shadow: 0 0px 25px rgb(0 0 0 / 7%);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}


@media (max-width: 700px){
  #services2 {
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    background: white;
    border-bottom: 0 solid white;
    margin: 2px 0 10px 0px;
}
}
@media (max-width: 700px){
  .pb-5 {
    padding-bottom: 0rem!important;
}
}

@media(max-width: 700px){
  .about-fo{
    margin-top: 100px;
    padding-top: 0px;
  }
}


#hero-nav {
  width: 100%;
  height: 500px;
  background: #fef8f5;
  border-bottom: 2px solid #fcebe3;
  margin-top:60px;
}

#hero-nav-career {
  width: 100%;
  height: 70vh;
  background: white;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero-nav-join {

  width: 100%;
  height: 70vh;
  background: #a3eff1;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}

#hero-nav h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
  
}

#hero-nav h2 {
  color: #a08f86;
  margin: 18px 0 0 0;
  font-size: 24px;
}

#hero-nav p {
font-family: 'Roboto', sans-serif;
 font-size: 18px;
 color: black;
}


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


#hero-nav-join .btn-get-knowmore {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #5803f5;
}

#hero-nav .btn-get-started:hover {
  background: #ef7f4d;
}

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

@media (max-width: 991px) {
  #hero-nav {
    width: 100%;
    background: #fef8f5;
    border-bottom: 2px solid #fcebe3;
    margin:0;
    height: auto;
    padding: 25% 0 10% 0;
  }

  #hero-nav .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero-nav .hero-nav-img {
    text-align: center;
  }

  #hero-nav .hero-nav-img img {
    width: 50%;
  }
}

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

  #hero-nav h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero-nav .hero-nav-img img {
    width: 70%;
  }
}

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


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

  100% {
    transform: translateY(-10px);
  }
}

#fo-image{
  height: 270px;
}

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

  100% {
    transform: translateY(-10px);
  }
}
@media(max-width:1024px){
  .Card{height: 100%; padding: 18px;}
  .order-mobile .about-img{order: 1;}
  .order-mobile .aos-animate{order:2;}
 #hero-nav #md365-image{height:auto; width: 100%;}
 #hero-nav #fo-image{height: auto; width: 100%;}
}
@media (min-width:320px) and (max-width:767px){
  #about-fo{padding: 0px;;}
  #wju{padding: 0px;}
  .Card{margin-bottom: 18px; height: auto;}
  #services2 h3{font-size: 30px;}
  #about-fo h3{font-size: 30px;}
  .order-mobile .about-img{order: 1;}
  .order-mobile .aos-animate{order:2;}
  #clients .align-items-center1{display:block; width: 100%;}
  #clients .align-items-center1 .img-fluid{margin:30px auto;}
}
.ceo-card-panel{width: 250px; height: 250px; border-radius: 50%; overflow: hidden}

.font-footer {font-size: 15px !important;}

.card-sectoin {height: 100%; padding: 0px 0px; -webkit-box-shadow: 0 0px 25px rgb(0 0 0 / 7%); border-radius:25px;
  box-shadow: 0 0px 25px rgb(0 0 0 / 7%); border: 2px solid rgba(0, 0, 0, 0.07); text-align: center; overflow: auto;
  margin-bottom: 15px; -webkit-transition: all .5s ease 0; transition: all .5s ease 0; transition: all 0.5s ease 0s;
}
.card-sectoin:hover{box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2); -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0; transition: all 0.5s ease 0s;
}
.card-heading{padding: 15px; background:#002051;}
.card-heading h3{color: #fff !important; margin: 0px !important; font-size: 20px !important;}
.card-body-panel{padding: 15px;  text-align: center;}
.card-body-panel p{text-align: center;}

#hero-image{
  max-width: 450px;
          margin-top: 30px;
          height: auto;
          margin-bottom: 30px;
          margin-left: 82px;
}

#md365-image{
  height: 260px;
  width: 100%;
}