
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: "Lexend-Regular";
  src: url('../fonts/Lexend-Regular.ttf');
}
@font-face {
  font-family: "Lexend-Extrabold";
  src: url('../fonts/Lexend-ExtraBold.ttf');
}
@font-face {
  font-family: "Lexend-bold";
  src: url('../fonts/Lexend-Bold.ttf');
}
@font-face {
  font-family: "Lexend-Extralight";
  src: url('../fonts/Lexend-ExtraLight.ttf');
}
body {
  font-family: "Lexend-Regular";
  color: #1B1B1B;
  background-color: #ffff;
}
h1{
  font-family: "Lexend-Extrabold";
  font-size: 76px;
}
.sub-title{
  font-family: "Lexend-Extralight";
}
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend-bold";
}
a {
  text-decoration: none;
}
p{
  font-size: 20px;
  color: #000000;
  line-height: normal;
}
h2{
  color: #1B1B1B;
  font-size: 48px;
  line-height: 54px;
  margin-bottom: 20px;
}
h5{
  color: #000000;
  font-size: 24px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# 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 #7522DB;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5BBC96;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #5BBC96;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top svg {
  color: #fff;
}

/*--------------------------------------------------------------
# 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;
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#header.fixed-top {
  height: 70px;
  background-color: #E9E4DE;
}

#header a.logo,#header a.fixed-logo {
    width: 200px;
    height: 40px;
}

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

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

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

/* .scrolled-offset {
  margin-top: 70px;
} */

#header .fixed-logo {
  display: none;
}

#header.fixed-top .logo {
  display: none;
}

#header.fixed-top .fixed-logo {
  display: block;
}

section.solving-scalability img {
    border-radius: 50px;
}
section.auditfirms img {
    border-radius: 30px;
}
section.globle-telent img {
    border-radius: 30px;
}
/*--------------------------------------------------------------
# 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>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 500;
  color: #282828;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

#header.fixed-top .navbar a, #header.fixed-top .navbar a:focus {
  color: #282828;
  transition: 0.3s;
}

#header.fixed-top .navbar a:hover,
#header.fixed-top .navbar .active,
#header.fixed-top .navbar .active:focus,
#header.fixed-top .navbar li:hover>a {
  color: #7522DB;
  transition: 0.3s;
}
nav#navbar i {
    display: none;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #282828;
  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(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero{
  background-color: #E9E4DE;
}
#from-performance{
 background-color: #5BBC96; 
}
#from-performance .section-title p{
  color: #fff;
}
#transformation{
  background-color: #F1F1F1;
}
.backed-main {
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 30px;
  background-color: #F1F1F1;
  transition: 0.8s ease;
}
.backed-main .backed-number p{
  padding: 10px 40px;
  border: 1px solid;
  width: fit-content;
  border-radius: 50px;
}
.backed-main:hover{
  background-color: #B9D93F;
  transition: 0.8s ease;
  
}
.athletes-text{
  position: absolute;
    top: 0;
    bottom: 0;
    left: 122px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}
#methodologies{
  background-color: #b9d93f;
  border-radius: 30px 30px 0 0;
}
.athletes-text p{
  color: #fff;
}
.poisedfit-content .number-box p{
  padding: 20px;
    background-color: #5BBC96;
    color: #fff;
    border-radius: 10px;
    font-size: 24px;
}
.deserve {
  width: 50%;
  margin: 0 auto;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-top {
  padding: 40px;
}

.footer-logo img {
  max-height: 45px;
}

.footer-about-us {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  width: 80%;
}

#menu-footer-menu li a, #menu-footer-menu-service li a{
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.social-media {
  padding-top: 10px;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.social-media li {
  list-style-type: none;
  padding: 0 5px;
}

.social-media li a {
      border: 1px solid #5BBC96;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5BBC96;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.social-media li a:hover {
  background-color: #5BBC96;
  transition: all 0.3s;
  border-color: #5BBC96;
}

.footer-email {
  padding-left: 10px;
  padding-top: 10px;
}

.footer-email a {
  display: flex;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  margin-top: 15px;
  gap:10px;
}

.footer-common p{
  margin-bottom: 0;
}
.footer-email a i {    
  border: 1px solid #5BBC96;
  padding: 15px;
  align-items: center;
  border-radius: 50%;
  background-color: #5BBC96;
  color: #fff;
  transition: all 0.3s;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
}
.copyright{
  background-color: #E3E3E3;
}
.copyright p{
  margin: 0;
}

#generalInquiry {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 1px 26px -13px;
    background-color: #fff;
}
h3.from-title{
  color: #5BBC96;
  margin-bottom: 20px;

 font-family: "Lexend-Regular";
}
.form-control-m {
    width: 100%;
    padding: 10px;
    background-color: #F9F9F9;
    border-radius: 10px;
    border: 1px solid #E3E3E3;
}
.form-control-m::placeholder {
  color: #333333;
}
.wpcf7 form.invalid .wpcf7-response-output,
 .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #fff;
    color: #fff;
}
.btn-submit {
    background-color: #5BBC96;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: none;
    padding: 10px 30px;
    border: none;
}
.top-fitness-text{
  position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}
.top-fitness-text h2{
  color: #B9D93F;
}


