/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
  @font-face {
    font-family: "HostGrotesk-Regular";
    src: url('../font/HankenGrotesk-VariableFont_wght.ttf');
  }

  @font-face {
    font-family: "AeonikTRIAL-Bold";
    src: url('../font/AeonikTRIAL-Bold.ttf');
  }
  
  @font-face {
    font-family: "AeonikTRIAL-Regular";
    src: url('../font/AeonikTRIAL-Regular.ttf');
  }
  
  @font-face {
    font-family: "AeonikTRIAL-Light";
    src: url('../font/AeonikTRIAL-Light.ttf');
  }
  
  body {
    font-family: "HostGrotesk-Regular";
    color: #444444;
    background-color: #fff;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "AeonikTRIAL-Bold";
    letter-spacing: 1px;
  }

  a {
    text-decoration: none;
  }
  p{
    font-size: 20px;
    font-family: "HostGrotesk-Regular";
  }

  /*--------------------------------------------------------------
  # 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 #FE5249;
    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: 60px;
    z-index: 996;
    background: #FE5249;
    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: #FE5249;
    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: height 0.3s ease; /* Only animate height */
  z-index: 997;
  height: 116px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.fixed-top {
  height: 60px;
  background-color: #fff; /* No delay in background change */
  transition: background-color 0s; /* Instantly apply white background */
}
header#header svg {
    width: 200px;
    height: 100px;
}
  
  /* #header a.logo,#header a.fixed-logo {
      width: 150px;
      height: 30px;
  } */
  
  #header .logo a {
    color: #222222;
  }
  a.fixed-logo svg,a.logo svg  {
      width: 100%;
       height: 100%;
  }
 
  #header .logo a span {
    color: #8257CF;
  }
  
  #header .logo img {
    max-height: 30px;
  }
  
  #header .fixed-logo img {
    max-height: 30px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }
  
  #header .fixed-logo {
    display: none;
  }
  
  #header.fixed-top .logo {
    display: none;
  }
  
  #header.fixed-top .fixed-logo {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    display: flex;
    gap:40px;
  }
  
  .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;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
        font-family: HostGrotesk-Regular;
  }
  
  #header.fixed-top .navbar a, #header.fixed-top .navbar a:focus {
    color: #000;
    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: #FE5249;
    transition: 0.3s;
  }
  nav#navbar i {
      display: none;
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #fff;
    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;
    }
  }

  .fixed-top i{
    color: #000;
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -13px;
    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: 26px;
    right: 24px;
    color: #fff;
}
  
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 24px;
  bottom: 18px;
  left: 20px;
  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:#8257CF;
  }
  
  /* .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: #8257CF;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}
 .section-title h2 {
    color: #FE5249;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 18px;
} 

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
    width: 100%; /* Ensures space from edges */
    height: 100vh; /* Keeps full height but with spacing */
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% auto; /* Ensures full image coverage */
    background-position: top;
    box-sizing: border-box;
}



.get-in-touch {
    border: 1px solid #FFFFFF;
    padding: 10px 30px;
    border-radius: 30px;
    color: #fff;

}
.form-control:focus {
    color: unset;
    background-color: unset;
    border-color: unset;
    outline: unset;
    box-shadow: unset;
}
#header.fixed-top a.get-in-touch {
    padding: 10px 30px;
    border-radius: 30px;
    color: #111;
    position: relative;
}

#header.fixed-top a.get-in-touch::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(95.25deg, #FE5249 37.95%, rgba(94, 38, 151, 0) 119.03%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.inner-hero {
  position: absolute;
  padding: 50px 0;
  width: 43%;
  left: 132px;
  top: 63%;
  transform: translateY(-60%);
}

.inner-hero h1{
  color: #fff;
  font-size: 82px;
  line-height: 86px;
  margin-bottom: 20px;
}



.inner-hero p {
  color: #ffff;
  font-size: 40px;
  font-family: 'HostGrotesk-Regular';
  line-height: normal;
  font-weight: 500;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Audit Changing
--------------------------------------------------------------*/
.audit-changing-title h2 {
    color: #7e4c9e;
    /* -webkit-text-stroke: 0.7px #FE5249; */
    text-transform: capitalize;
    font-size: 96px;
}

/*--------------------------------------------------------------
# Global Stage 
--------------------------------------------------------------*/

.global-stage-content p {
    font-size: 24px;
    letter-spacing: 0.1px;
    color: #000;
}

.global-stage-form {
  background-color: #5156CE;
  border: 3px solid #FE5249;
  padding: 30px;
  border-radius: 20px;
} 
#global-stage .form-control::placeholder {
 color: #fff !important;
}

.global-stage-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem 1rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-bottom: 1px solid #C8CBD3;
}

.global-stage-form .form-control::placeholder {
  color: #111; /* Change this to your desired color */
  opacity: 1; /* Ensure the color is fully visible */
}

.global-stage-form .submit-btn {
    background-color: #FE5249;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 10px;
}

.global-stage-form .form-control:focus {
    color: unset;
    background-color: unset;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

/*--------------------------------------------------------------
# Career Opportunities
--------------------------------------------------------------*/
.career-opportunities-content h2 {
    font-size: 32px;
    color: #fff;
}

.career-opportunities-content p {
    color: #fff;
}

section#career-opportunities .row {
    border-radius: 20px;
}

section#career-opportunities .section-title h2 {
    margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Audit Academy
--------------------------------------------------------------*/
section#audit-academy .container {
    background-color: #5B5BD6;
    padding: 40px;
    border-radius: 40px;
    color: #fff;
}

section#audit-academy .section-title h2 {
    color: #FF9800;
    margin-bottom: 50px;
}

.audit-academy-box {
    border-top: 2px solid #fff;
    padding-top: 20px;
}

.audit-academy-box h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    color: #00BCD4;
}
.audit-academy-box p {
  font-size: 18px;
}

/* Container Styling */
.skyrocket-audit {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100vh;
    padding: 20px;
    margin-bottom: 20px;
}

/* Background Image */
.skyrocket-background {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    border-radius: 20px; /* Apply rounded corners to the image */
}

/* Content on Top of Image */
.skyrocket-content {
    position: absolute;
    left: 20px;
    width: 700px;
    bottom: 20px;
    background-color: #fff;
    padding: 20px 20px 0px 70px;
    border-radius: 0px 40px 0px 0;
}

.skyrocket-content p {
    color: #111;
    margin-bottom: 0;
}
/* Mobile Background */
@media (max-width: 768px) {
    .skyrocket-background {
        content: url('<?php echo esc_url( $mobile_background['url'] );?>');
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-top {
    background-color: #F3F5FA;
    padding: 40px 0;
}

.footer-top img {
  width: 250px;
}

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

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

p.footer-about-us {
  /* font-style: italic; */
  /* color: #000; */
  background-image: linear-gradient(to right, #f00090, #861fed, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

ul.social-media {
    padding: 0;
    display: flex;
    margin-bottom: 30px;
}

ul#menu-main-menu-1 li {
    line-height: 40px;
}

ul#menu-main-menu-1 li a {
    color: #000;
    font-size: 20px;
}

ul#menu-main-menu-1 li::marker {
    color: #FE5249;
    font-size: 28px;
}

.footer-email{
  display: flex;
  align-items: center;
  gap:10px;
}

.footer-email a {
    color: #000;
    font-size: 22px;
    width: fit-content;
}
.fa-regular, .far{
  font-size: 25px;
}

.copyright {
    background-color: #FE5249;
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
}
.content-list-main img{
  margin-right: 10px;
}
.content-list-main p{
  margin: 0;
}
#potential{
  background-color: #F3F5FA;
}
.potential-box h3{
  color: #FE5249;
  margin-top: 10px;
  margin-bottom: 0;
}
.potential-box p{
  color: #000000;
  font-size: 24px;
}

.unmatched-content .section-title h2 {
  margin-bottom: 5px;
}
#expertise{
  background-image: url(https://poiseddevelopers.com/growize-audit-academy/wp-content/uploads/2025/03/Skills-and-expertise-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.expertise-title h2{
  color: #fff;
  font-size: 48px;
}
.expertise-main {
  align-items: baseline;
  gap: 10px;
}
.expertise-main img {
  max-width: 12px;
  max-height: 12px;
}
.expertise-main p{
  color: #fff;
  margin-bottom: 0;
}

#generation{
  background-image: url(https://poiseddevelopers.com/growize-audit-academy/wp-content/uploads/2025/03/join-the-next-generation-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
.generation-main{    
  position: absolute;
  bottom: 9%;
  max-width: 70%;
  right: 14%;
}
.generation-main h2{
  font-size: 64px;
  color: #fff;
}
.generation-main p{
  color: #fff;
  margin-bottom: 25px;
}

.generation-button{
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #FE5249;
  border-radius: 10px;
  font-size: 20px;
}
.unmatched-content p {
  color:#000;
}
#career-opportunities .container .row {
  padding: 40px 0 0 30px;
}

.mentor-hero{
  width: 100%;
  height: 60vh;
  position: relative;
  padding: 0;
  background-repeat: no-repeat;
  background-size: 98% 96%;
  background-position: center;
}

.mentors-inner {
  position: absolute;
  padding: 50px 0;
  width: 85%;
  top: 58%;
  transform: translateY(-60%);
  text-align: center;
}

.mentors-inner h1{
  color: #fff;
  font-size: 48px;
  line-height: 86px;
  margin-bottom: 20px;
}
.box-content-main p{
  font-size: 18px;
}

.box-content-main h3{
  color: #FE5249;
  font-size: 30px;
}

.submit-btn {
  float: inline-start;
  padding: 10px 100px;
  background-color: #FE5249;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
}
.address_img p{
 min-height: 60px;
}
.modal-content .wpcf7-spinner{
  display: none !important;
}
.btn-close:focus {
    outline: unset;
    box-shadow: unset;
    opacity: unset;
}