
/*----------------------------------------------------------------
* Variable
--------------------------------------------------------------*/
:root {
    --apollo-primary: #edc02c;
    --apollo-secondary: #33333d;
    --apollo-black: #000;
    --apollo-light: #fff;
    --apollo-body-font:"Inter", sans-serif;
    --apollo-heading-font: "Sora", sans-serif;
}
html {
    scroll-behavior: smooth;
}
/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: var(--apollo-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    color: var(--apollo-black);
    text-transform: none;
    font-style: normal;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   font-family:var(--apollo-heading-font) ;
   color: var(--apollo-black);
}
h1 {
    font-size: 63px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}
h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}
h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}
h5 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}
h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}
p {
    margin: 0 0 16px;
    color: #666666;
}
p.lead{
    font-size: 18px;
    font-weight: 400;
}
p.lead-lg{
    font-size: 20px;
    font-weight: 400;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: var(--apollo-primary);
    color: var(--apollo-black);
    border: none;
}
.btn-primary {
position: relative;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.2); */
  padding: 8px 15px;
  background-color: var(--apollo-secondary);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  color: #ffff;
  border-color: var(--apollo-secondary);
  outline: none;
  overflow: hidden;
}
.btn-primary i {
    transition: all 0.3s ease-in-out;
  }
.btn-primary:hover {
  transform: scale(1.05);
  border-color: #fff9;
  background-color: var(--apollo-primary);
}
.btn-primary:hover i {
  transform: translate(4px);
}
.btn-primary:hover::before {
  animation: shine 1.5s ease-out infinite;
}
.btn-primary::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}
@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
@keyframes scale {
    0%{
       height: 80px;
       width: 80px;
    }
    100%{
        height: 5px;
       width: 5px;
    }
}
/*******************
* Preloader
*******************/
.preloader {
    position: fixed;
    background-color: #0f110ff7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}
.loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/***********************
* header 
***********************/
.main-header {
    position: relative;
    width: 100%;
    z-index: 99999;
    background-color: transparent;
    font-family: var(--apollo-heading-font);
}
nav.main-menu {
    display: flex;
    align-items: center;
}
.main-menu-inner {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
ul.main-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-left: auto;
}
.main-menu-logo {
    max-width: 172px;
    width: 100%;
    text-align: center;
}
ul.main-menu-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #fff;
    padding: 45px 0 40px;
    position: relative;
}
ul.main-menu-list li a{
    color: #fff;
    line-height: 1.2;
}
ul.main-menu-list li.active>a, ul.main-menu-list>li.active, ul.main-menu-list>li:hover, ul.main-menu-list>li:hover>a{
    color: var(--apollo-primary);
    position: relative;
}
ul.main-menu-list li ul {
    position: absolute;
    width: 250px;
    padding: 0;
    top: 90%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 10px 0;
}
ul.main-menu-list li:hover ul {
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
ul.main-menu-list li ul li {
    padding: 15px 25px;
    border-bottom: none;
    transition: all 0.5s;
}
ul.main-menu-list li ul li a{
    color: var(--apollo-secondary);
}
ul.main-menu-list li ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    height: 2px;
    width: 0;
    transform: translateY(-50%);
    background-color: var(--apollo-primary);
    transition: all 0.5s;
}
ul.main-menu-list li ul li:hover::after{
    width: 25px;
}
ul.main-menu-list li ul li:hover {
   padding-left: 50px !important;
}
ul.main-menu-list li ul li:hover a{
    color: var(--apollo-primary);
}
ul.main-menu-list li ul li:last-child{
    border: none;
}
.header-side-menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    cursor: pointer;
    font-size: 24px;
}
.main-menu-right {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.search-btn {
    border-top: 0;
    border-bottom: 0;
    line-height: 0;
    color: #fff;
}
.search-btn img {
    height: 19px;
    width: 19px;
}
.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}
.header-menu-collaps span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: #fff;
}
.header-menu-collaps span:nth-child(2){
    width: 32px;
}
.header-menu-collaps span:nth-child(3){
    width: 16px;
}
/***********************
* banner one
***********************/
section.banner-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -105px;
}
.banner-slider-item {
    position: relative;
    padding: 290px 0 160px 0;
}
.banner-slider-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000078;
    z-index: -1;
}
.banner-two-slider-item-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transform: scale(1);
    transition: all 15s linear;
}
.zoom-in {
    animation: zoom 15s linear;
}
@keyframes zoom {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.25);
    }
}
.banner-two-slider-item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.curved-circle {
    color: #ffff;
    width: 185px;
    height: 185px;
    border: 1px solid;
    border-radius: 100%;
    position: relative;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}
.curved-circle::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 120px;
    width: 120px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    border: 1px solid;
}
.banner-two-icon {
    font-size: 35px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}
.banner-two-icon i{
    transform: rotate(-45deg);
}
.banner-two__circle {
    position: absolute;
    right: 130px;
    bottom: 210px;
}
.curved-circle--item {
    width: 181px;
    height: 181px !important;
}
@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.section-tagline {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
}
.section-tagline p {
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.banner-title h1 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 62px;
}
.banner-title p{
    max-width: 60%;
    margin-bottom: 30px;
}
/* Basic Dot Styling */
.banner-section .slick-dots {
    position: absolute;
    bottom: 100px; /* Position dots at the bottom */
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    background-color: transparent;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff; /* White dots, change the color as needed */
    cursor: pointer;
    transition: background-color 0.3s;
}

.slick-dots li.slick-active button {
    background-color: var(--apollo-primary); /* Active dot color */
}

.slick-dots li button:hover {
    background-color: var(--apollo-primary); /* Hover color */
}

.fade-left {
    animation: fade-left 1s linear;
}
.fade-left {
    opacity: 0;
    transform: translateX(-200px);
    transition: all 1s linear;
}
.slick-slide.slick-current.slick-active .fade-left {
    opacity: 1;
    transform: translateX(0px);
}
@keyframes fade-left {
    0%{
        opacity: 0;
        transform: translateX(-200px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
.svg-box svg path {
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: draw 3s forwards ease-in-out;
}
@keyframes draw {
    to {
      stroke-dashoffset: 0; 
    }
  }
/***********************
* about one
***********************/
.about-section-one {
    padding: 100px 0;
    overflow: hidden;
}
.subtitle {
    color: var(--apollo-primary);
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.heading-box {
    margin-bottom: 20px;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.about-image>img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(5deg, #00182ca6 20.61%, #677c8400 74.92%);
}
.logo-shape {
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.about-video-tag {
    position: absolute;
    display: flex;
    align-items: center;
    column-gap: 15px;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    border: 1px solid #979797;
    border-radius: 35px;
    background-color: #FFFFFF33;
    backdrop-filter: blur(13px);
    padding-left: 10px;
    align-items: center;
}
.about-video-tag img {
    border-radius: 100%;
    border: 1px solid #fff;
}
.about-video-tag .title h5{
    margin-bottom: 0px;
    color: var(--apollo-light);
}
.about-video-tag .title p{
    margin-bottom: 0;
    color: #DADADA;
}
.about-video-tag .video-btn{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--apollo-primary); 
    color: var(--apollo-light);
    font-size: 24px;
    flex-shrink: 0;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.about-list {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-top: 30px;
}
ul.about-list li {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
ul.about-list li i{
    color: var(--apollo-primary);
}
.about-box {
    flex-shrink: 0;
    padding-right: 40px;
    text-align: center;
}
.about-box h2 {
    text-align: center;
    font-size: 150px;
    font-weight: 300;
}
span.symbol {
    font-size: 44px;
}
.about-box h2 span.odometer.odometer-auto-theme {
    line-height: 120px;
}
.about-box-right {
    border-left: 1px solid #CDD7DF;
    padding-left: 40px;
}
.about-box p {
    color: var(--apollo-black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: -30px;
}
.about-box-right .about-title {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}
.about-box-right .about-title h5 {
    margin-bottom: 0;
}
.about-box-right p {
    margin-bottom: 30px;
}
.about-lower {
    display: flex;
    column-gap: 24px;
    margin-top: 30px;
    align-items: center;
}
.about-lower a.btn{
    flex-shrink: 0;
    text-transform: uppercase;
}
.about-lower h6{
    margin-bottom: 0;
}
.partner-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background-color: #f0f0f0;
}
.partner-shape-1 {
    height: 30px;
    width: 350px;
    border-radius: 30px;
    background-color: var(--apollo-primary);
    top: 50px;
    left: -30px;
    position: absolute;
    transform: rotate(-13deg);
}
.partner-shape-2 {
    height: 30px;
    width: 350px;
    border-radius: 30px;
    background-color: var(--apollo-primary);
    bottom: 50px;
    right: -30px;
    position: absolute;
    transform: rotate(-13deg);
}
.partner-section h4{
    font-size: 30px;
    margin-bottom: 0;
}
.partner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 30px;
}
.partner-item {
    width: 17%;
    box-shadow: 0px 0px 5px 0px #00000057;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
}
.partner-item:hover {
    box-shadow: 0px 0px 5px 0px #0000006c;
    transform: scale(1.050) translateY(-5px);
}
.text-center .subtitle {
    justify-content: center;
}
.about-thumb4 {
    position: relative;
    display: inline-block;
    padding: 0 337px 156px 0;
}
.about-thumb4 .about-img-2 {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 12px;
    border-top: 6px solid var(--apollo-light);
    border-left: 6px solid var(--apollo-light);
    width: 153%;
    left: 50px;
    
}
.about-img-2 img{
    width: 100%;
}
.about-thumb4 .about-counter-wrap { 
    background: transparent;
    border: 0;
    position: absolute;
    top: 0px;
    bottom: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    left: 55px;
}
.about-thumb4 .about-counter-wrap h3 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0;
}
/***********************
* why-choose one
***********************/
.why-choose-section {
    padding-top: 100px;
    overflow: hidden;
}
.why-choose-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.why-choose-list-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    
}
.why-choose-list-item .whychoose-text{
    margin-bottom: 0;
    padding: 20px 0;
    border: 1px solid #D6E0E3;
    border-radius: 20px;
    width: 350px;
    text-align: center;
}
.why-choose-list-item p {
    font-size: 14px;
    color: var(--apollo-secondary);
    padding-left: 45px;
    padding-right: 45px;   
}
.why-choose-list-item .icon{
    height:65px;
    width: 65px;
    border-radius: 20px;
    background-color: var(--apollo-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.col-lg-3\.5 {
    width: 29%;
}
.why-choose-list.last .why-choose-list-item:nth-child(2){
   justify-content: end;
}
.why-choose-list.last .why-choose-list-item:nth-child(1), .why-choose-list.last .why-choose-list-item:nth-child(3){
    justify-content: start;
}
.why-choose-list .why-choose-list-item:nth-child(1), .why-choose-list .why-choose-list-item:nth-child(3){
    justify-content: end;
}
/***********************
* service one
***********************/
.service-section-one {
    overflow: hidden;
    padding-bottom: 5px;
}
.service-box-one {
    background-color: var(--apollo-light);
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #cbc9c9;
}
.service-image-one img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    height: 225px;
}
.service-box-one>span {
    position: absolute;
    top: 45px;
    right: 30px;
    font-size: 82px;
    letter-spacing: -0.05em;
    font-weight: 300;
    font-family: var(--apollo-heading-font);
    color: #D4D7E3;
    line-height: 55px;
}
.service-icon-one {
   height: 100px;
   width: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.5s linear;
}
.service-icon-one img {
    height: 70px;
}
.service-box-one h4{
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 55px;
    letter-spacing: -0.03em;
    transition: all 0.5s;
}
.service-box-one h4 a{
    color: var(--apollo-black);
    transition: all 0.5s;
}
.service-box-one:hover h4 a{
    color: var(--apollo-primary);
}
ul.service-list-one{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.service-list-one li{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    column-gap: 16px;
    color:  var(--apollo-black);
    align-items: baseline;
}
ul.service-list-one li i{
    color:  var(--apollo-primary);
    font-size: 16px;
}
.service-box-one .btn-light{
    width: 100%;
    justify-content: space-between;
    margin-top: auto;
}
.service-box-one .btn-light::after {
    display: none;
}
.service-box-one:hover .service-image-one{
    
    left: 30px;
}
.service-box-one:hover .service-icon-one{
    margin-bottom: 0px;
}
.service-box-one:hover .btn-light{
    background-color: var(--apollo-primary);
    color: var(--apollo-light);
}
.service-box-one:hover .btn-light i{
    background-color: var(--apollo-light);
    color: var(--apollo-primary);
}
.service-details-one {
    margin-bottom: 50px;
    transition: all 0.5s;
}
.service-box-one:not(:hover) .service-details-one{
    transition-delay: 0.4s;
}
.service-box-one:hover .service-details-one {
    margin-bottom: 10px;
    margin-top: 30px;
}
.service-details-one p{
    font-size: 15px;
}
/***********************
* testimonial one
***********************/
.testimonial-section-one {
    padding: 100px 0;
    overflow: hidden;
    padding-bottom: 60px;
}
.testimonial-box-one {
    position: relative;
    padding: 20px;
    border: 1px solid #8b8b8b;
    margin-right: 20px;
    height: 385px;
}
.testimonial-box-one>img {
    position: absolute;
    right: 0;
    top: 10px;
}
.testimonial-title-one {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 30px;
}
.testimonial-title-one img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
}
.testimonial__title-one h4 {
    letter-spacing: -0.03em;
    font-size: 20px;
    margin-bottom: 0;
}
ul.retting {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 3px;
    color: #FFA800;
    font-size: 19px;
}
.testimonial-box-one .devider img{
    background-color: var(--solarup-light);
}
.testimonial-box-one h3{
    margin-top: 30px;
    font-size: 26px;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.testimonial-section-one  ul.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 20px;
    margin-top: 30px;
}
.testimonial-section-one  ul.slick-dots li button{
    height: 10px;
    width: 10px;
    font-size: 0;
    background-color: #000;
    border: none;
    margin: 2px;
    transition: all 0.5s;
    border-radius: 50%;
}
.testimonial-section-one  ul.slick-dots li{
    border: 2px solid transparent;
    transition: all 0.5s;
    line-height: 0;
    border-radius: 50%;
}
.testimonial-section-one  ul.slick-dots li.slick-active{
    border: 2px solid var(--apollo-primary);
}
.testimonial-section-one  ul.slick-dots li.slick-active button{
    background-color: var(--apollo-primary);
}
.faq-list .heading-box span{
    margin-bottom: 25px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
    border-radius: 0;
}
.accordion-button:not(.collapsed){
    color: var(--apollo-light);
    background-color: var(--apollo-secondary);
    box-shadow: none;
    padding-bottom: 15px;

}
.accordion-item{
    color: var(--apollo-black);
    background-color: transparent;
    border: none;
    margin-bottom: 16px;
}
.accordion-item:last-child{
    margin-bottom: 0;
}
.accordion-button {
    padding: 20px 20px;
    font-size: 18px;
    letter-spacing: -0.03em;
    font-weight: 500;
    background-color: #f0f0f0;
    color: var(--apollo-black);
}
.accordion-body{
    padding-bottom: 10px;
}
.accordion-body p{
    margin-bottom: 0 ;
}
.accordion-button::after{
    height: 44px;
    width: 44px;
    background-color: #1418270D;
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    font-size: 28px;
}
.accordion-button:not(.collapsed)::after{
    content: "-";
    background-image: none;
    background-color: var(--apollo-primary);
    color: var(--solarup-light);
}
.faq-title .btn-primary::after{
    background-color: var(--apollo-primary);
}
.faq-title .btn-primary:hover{
    color: var(--apollo-light);
}
.partner-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 100px;
    justify-content: center;
    padding: 30px;
}
.partner-box img {
    transition: all 0.5s;
}
.partner-box:hover img {
    filter: none;
}
.accordion-button:focus{
    box-shadow: none;
}
.faq-section {
    padding: 100px 0;
}
.faq-image {
    height: 100%;
    border-radius: 140px 0 0  140px;
    overflow: hidden;
}
.faq-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/***********************
* footer one
***********************/
footer.footer-one {
    padding-top: 20px;
    background-color: var(--apollo-secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-about-one h4{
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 10px;
}

.footer-logo-one {
    margin-bottom: 23px;
    max-width: 205px;
    margin-top: -20px;
}
.footer-widget-one h4 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #fff;
    margin-top: 10px;
}
ul.footer-menu-one {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.footer-menu-one li{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}
ul.footer-menu-one li img{
    max-width: 22px;
    height: 22px;
}
ul.footer-menu-one li a{
    font-size: 16px;
    color: var(--apollo-light);
    position: relative;
}
ul.footer-menu-one li a::before{
    /*  content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 8px;
    background-color: var(--apollo-primary);
    transition: all 0.5s;
    display: inline-flex; ; */
}

ul.footer-menu-one li a:hover::after{
    width: 100%;
}
.footer-widget-one {
    position: relative;
}
.footer-newslatter-one .newslatter-form-group{
    position: relative;
}
.footer-newslatter-one h4 {
    margin-bottom: 57px;
    font-size: 20px;
    color: #fff;
}
.footer-newslatter-one .form-control{
    padding: 15px 30px 15px 0;
    border: none;
    border-bottom: 1px solid #ffffff63;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 28px;
    color: #fff;
}
.footer-newslatter-one .form-control::placeholder{
    color: #fff;
}
.newslatter-form-group .btn-link{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}
ul.footer-social-media-one {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
ul.footer-social-media-one li a{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #CCCCCC;
    position: relative;
    color: #fff;
}
ul.footer-social-media-one li a:hover{
    color: var(--apollo-black);
}
ul.footer-social-media-one li a::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    background-color: var(--apollo-light);
    transition: all 0.5s ;
}
ul.footer-social-media-one li a:hover::after{
    height: 100%;
    width: 100%;
}
ul.footer-social-media-one li a i{
    position: relative;
    z-index: 1;
}

.footer-lower-one{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #ffffff63;
    margin-top: 0px;
}
.footer-one{
    margin-top: 30px;
    border-top: 1px solid #ffffff63;


}
.footer-lower-one p{
    margin-bottom: 0;
    color:white;
    font-size: 16px;
    text-align: right;
}
.footer-menu  a{
    color:white !important;

}
.footer-lower-one ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.footer-lower-one ul li a{
    font-size: 16px;
    color: var(--apollo-light);
    position: relative;
}
.footer-lower-one ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--apollo-light);
    transition: all 0.5s;
}
.footer-lower-one ul li a:hover::after {
    width: 100%;
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: var(--apollo-secondary);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
    z-index: 1;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: var(--apollo-light);
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
 ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
 }
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
 ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
/***********************
 * search-popup
***********************/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: translateY(-100vh);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
 }
 .search-active .search-popup {
    transform: translateY(0);
    margin-top: 0;
    opacity: 1;
    visibility: visible;
 }
 .search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto 0;
    transform: scale(0);
    transform-origin: center;
    -webkit-transition: all 1s 0.5s ease;
    -moz-transition: all 1s 0.5s ease;
    -ms-transition: all 1s 0.5s ease;
    -o-transition: all 1s 0.5s ease;
    transition: all 1s 0.5s ease;
 }
 .search-active .search-popup form{
    transform: scale(1);
 }
 .search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
 }
 .search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: var(--apollo-black);
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: var(--apollo-light);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border: none;
 }
 .search-popup .form-group input[type="search"]::placeholder{
    color: var(--apollo-black);
 }
 .search-popup .form-group input[type="submit"],
 .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 3px;
    height: 70px;
    line-height: 30px;
    background: transparent;
    text-align: center;
    font-size: 20px;
    color: var(--apollo-black);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    z-index: 1;
 }
 .close-search {
    position: absolute;
    left: 0;
    right: 0;
    border: transparent;
    top: 20%;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    background-color: var(--apollo-secondary);
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
 }
 .search-active .close-search {
    visibility: visible;
    opacity: 1;
 }
 .close-search:before,
 .close-search:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--apollo-light);
    width: 25px;
    top: 24px;
    right: 13px;
    transform: rotate(45deg);
 }
 .close-search:after {
    transform: rotate(-45deg);
 }
 input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
input[type="search"]::-moz-search-cancel-button {
    display: none;
}
input[type="search"]::-ms-clear {
    display: none;
}
/***********************
 * back-to-top
***********************/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--apollo-primary);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}
.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--apollo-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}
.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: var(--apollo-secondary);
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:var(--apollo-secondary);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}
/***********************
 * side menu
***********************/
.side-menu-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.side-menu-wrapper.expanded{
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.side-menu-overlay.side-menu-toggler {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
    height: 100%;
    width: 100%;
}
.side-menu-content {
    width: 100%;
    max-width: 420px;
    background-color: var(--apollo-light);
    text-align: center;
    padding: 30px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100vh;
    margin-left: auto;
    overflow-y: scroll;
}
.side-menu-wrapper.expanded .side-menu-content{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.side-menu-logo-box {
    margin-bottom: 50px;
    max-width: 110px;
}
.side-menu-container p {
    margin-bottom: 30px;
}
.side-menu-container h4{
    margin-bottom: 20px;
}
.side-menu-container ul {
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}
.side-menu-container ul li {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.side-menu-container ul li i{
    line-height: 0;
    font-size: 20px;
    position: relative;
}
.side-menu-container ul li a{
    color: var(--apollo-black);
}
ul.side-menu-social-media {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}
ul.side-menu-social-media li a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--apollo-secondary);
    color: var(--apollo-light);
    position: relative;
    transition: all 0.5s;
    border: 1px solid var(--apollo-secondary);
}
ul.side-menu-social-media li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50% ,-50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    background-color: var(--apollo-primary);
    transition: all 0.5s;
    z-index: 0;
}
ul.side-menu-social-media li a:hover::before{
    height: 100%;
    width: 100%;
}
ul.side-menu-social-media li a:hover{
    color: var(--apollo-light);
}
.side-menu-toggler {
    position: absolute;
    right: 20px;
    height: 40px;
    width: 40px;
    top: 40px;
}
.side-menu-toggler span {
    height: 1px;
    display: inline-block;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s;
}
.side-menu-toggler span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}
.side-menu-toggler:hover span {
    transform: translateY(-50%) rotate(0deg);
}
.counter-section {
    padding: 150px 0;
    position: relative;
   
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}
.counter-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgb(48 48 48 / 48%) 0.44%, rgb(0 0 0) 81.49%);
    background: -webkit-linear-gradient(270deg, rgb(48 48 48 / 48%) 0.44%, rgb(0 0 0) 81.49%);
}
.heading-box-outer {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 50px;
    justify-content: space-between;
    position: relative;
}
.heading-box-outer .heading-box{
    margin-bottom: 0;
}
.light h2{
    color: #fff;
}

.counter-item-box {
    padding: 30px ;
    position: relative;
    flex: 1;
    text-align: center;
    border-left: 1px solid #666666;
}
.counter-item-box:first-child{
    border: none;
}
.counter-details {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}
.counter-item-box p {
    text-transform: uppercase;
    color: #cccccc;
}
.counter-icon {
    font-size: 50px;
}
.counter-details h2 {
    margin-bottom: 0;
    color: #fff;
}
.counter-list-item {
    display: flex;
    border: 1px solid #666666;
    position: relative;
}
.cta-section {
    margin-bottom: -140px;
}
.cta-box {
    padding: 60px 80px;
    display: flex;
    align-items: center;
    column-gap: 200px;
    background-image: url(../images/banner/hero-2.png);
    background-position: center;
    background-size: cover;
    background-color: var(--apollo-primary);
    background-blend-mode: soft-light;
    position: relative;
    z-index: 1;
}
.cta-image {
    width: 25%;
}
.cta-box .heading-box{
    margin-bottom: 0;
}
.cta-box  h2{
    color: #fff;
    font-size: 40px;
    margin-bottom: 15px;
}
.cta-box .btn{
    flex-shrink: 0;
}

.filter-menu-active {
    background: #F5F5F5;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
    margin-bottom: 20px;
}

.filter-menu-active button {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: center;
    font-size: 18px;
    width: 33%;
    color: var(--body-color);
    padding: 12px 20px;
    position: relative;
}
.filter-menu-active button.active{
    color: var(--apollo-primary);
}
.about-tab-4 button:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 30px;
    width: 1px;
    background: #919090;
    transform: translate(0, -50%);
  }
  .about-tab-4 button:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 0;
    left: 0;
    background: var(--apollo-primary);
    transition: 0.4s;
    border-radius: 2px 2px 0 0;
  }
  .about-tab-4 button:last-child:after {
    display: none;
  }
  .about-tab-4 button.active:before {
    width: 100%;
  }
  .about-tab-4 .about-tab-text {
    margin-bottom: -0.4em;
  }
.banner-section p{
    color: var(--apollo-light);
}
.footer-about-list a{
    color: var(--apollo-light);
}
.footer-about-list li{
    display: flex;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.footer-about-list li i{
    color: var(--apollo-primary);
}
.footer-about-list li:hover a{
    color: var(--apollo-primary);
}
ul.footer-menu-one li:hover a{
    color: var(--apollo-primary);
}
.cta-image img{
    position: absolute;
    bottom: 0;
}
.project-section {
    padding-top: 100px;
    overflow: hidden;
}
.btn{
    flex-shrink: 0;
}
.project-image {
    height: 320px;
    width: 100%;
    overflow: hidden;
}
.project-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.8s;
}
.project-details {
    padding: 20px;
    padding-bottom: 30px;
}
.project-box {
    box-shadow: 0px 0px 5px 0px #00000030;
    /* height: 590px; */
}
.project-slider-box {
    margin-right: 20px;
    padding: 15px 0;
}
.project-section  .slick-track {
    margin-left: 12px;
}
.project-details h4{
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.5s;
}
.project-box:hover h4{
    color: var(--apollo-primary);
}
.project-slider{
    margin-bottom: 30px;
}
.project-slider-btn {
    display: flex;
    column-gap: 50px;
    justify-content: center;
}
.project-slider-btn button{
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    background-color: var(--apollo-primary);
    color: var(--apollo-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-section .heading-box-outer{
    margin-bottom: 0px;
}
.page-header {
    padding: 200px 0px 120px 0px;
    position: relative;
    background-position: center;
    background-size: cover;
    color: var(--apollo-light);
    margin-top: -120px;
}
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgb(48 48 48 / 33%) 0%, rgb(0 0 0 / 83%) 61.49%);
}
.page-header h2{
    color: var(--apollo-light);
}
.page-header-details{
    position: relative;
}
.page-header-details p{
    max-width: 50%;
    margin-bottom: 0;
    position: relative;
    padding-left: 15px;
    color: var(--apollo-light);
}
.page-header-details p::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #fff;
}
.about-two {
    padding: 50px 0;
}
.about-left-two {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #00000042;
    height: 100%;
    display: flex
;
    flex-direction: column;
}
.about-left-two p{
    margin-top: auto;
}
.about-left-two .heading-box{
    margin-bottom: 0;
}
.about-image-two {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 5px #00000042;
}
.about-image-two img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about-counter-two {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0px 0px 5px #00000042;
    justify-content: center;
}
.counter-about-box {
    width:22%;
    border-radius: 10px;
    padding: 15px;
    background-color: #e9e9e9;
}
.counter-about-box h2{
    margin-bottom: 0;
    display: flex
    ;
        align-items: center;
}
.counter-about-box p{
    margin-bottom: 0;
}
.service-box-two {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05);
    padding: 45px 70px 40px;
    margin-bottom: 30px;
    z-index: 1;
}
.service-box-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--apollo-primary);
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: -1;
}
.service-box-two:hover::before{
    transform: scale(1, 1);
    transform-origin: right center;
}
.service-icon {
    height: 55px;
    width: 55px;
    margin-bottom: 30px;
    filter: brightness(0);
    transition: all 0.5s;
}
.service-box-two:hover .service-icon{
    transform: scaleX(-1);
    filter: none;
}
.service-box-two h4 {
    margin-bottom: 10px;
}
.service-box-two p {
    margin-bottom: 30px;
}
.process-section {
    padding: 100px 0;
    padding-bottom: 60px;
}
.process-box{
    padding: 30px;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    text-align: center;
    height: 350px;
    background-color: var(--apollo-primary);
}
.process-box h4{
    color: white;
}
.process-box p{
    color: var(--apollo-secondary);
    font-size: 18px;
}
.process-box .number{
position: relative;
-webkit-text-stroke: 1px #000;
font-size: 42px;
color: transparent;
font-weight: 700;
line-height: 80px;
display: inline-block;
margin-bottom: 15px;
-webkit-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s;
}
.process-box .number:before {
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: var(--apollo-primary);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}
.process-box:hover{
    transform: translateY(-15px);
}
.process-box:hover .number:before {
    width: 55px;
    height: 55px;
}
.process-box h4 {
    font-size: 26px;
    margin-bottom: 12px;
    margin-top: 30px;
}
.team-section {
    padding-bottom: 100px;
    padding-top: 100px;
}
.team-details p a{
    color: #666666;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Creates 5 equal-width columns */
    gap: 15px; /* Space between grid items */
    justify-items: center; /* Centers content horizontally within each grid item */
}

.team-box {
    text-align: center;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-details h4 {
    margin-top: 15px;
    font-size: 1.2em;
}

.team-details p a {
    color: #666666;
    text-decoration: none;
}

.team-details p a:hover {
    text-decoration: underline;
}

.team-box h4{
    margin-bottom: 5px;
    font-size: 20px;
}
.team-box p{
    margin-bottom: 0;
}
.team-details{
    padding: 15px;
}
.team-box {
    box-shadow: 0.1rem 0.1rem 3px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
    margin-top: 15px;
}
.team-box:hover{
    transform: translateY(-10px);
}
.team-image{
    height: 270px;
    width: 100%;
    overflow: hidden;
}
.team-image img{
    height: 100%;
    width: 100%;
    transition: all 0.5s;
    object-fit: cover;
}
.team-box:hover .team-image img{
    transform: scale(1.2);
}
.service-section-three {
    padding: 100px 0;
}
.service-section-three h2{
    font-size: 40px;
}
.service-box-three {
    padding: 30px 40px 0px 70px;
    background: #F7F7F7;
    border-radius: 0px;
    border: 2px solid var(--apollo-light);
    position: relative;
    margin-bottom: 25px;
    transition: 0.4s;
}
.service-box-three:hover{
    border-color: var(--apollo-primary);
}
span.side-text {
    position: absolute;
    transform: rotate(-90deg) translate(-50%, 0);
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px #666;
    transform-origin: left top;
    top: 50%;
    opacity: 0.15;
    font-size: 30px;
    left: 12px;
}
.service-icon-three {
    position: relative;
    height: 60px;
    width: 60px;
    margin-bottom: 30px;
}
.service-icon-three::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: var(--apollo-primary);
    opacity: 0.1;
}
.service-icon-three img{
    transition: all 0.5s;
}
.service-box-three:hover .service-icon-three img{
    transform: scaleX(-1);
}
.service-box-three h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.service-box-three p {
    margin-bottom: 20px;
}
.btn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    justify-content: end;
    position: relative;
    transform: translate(0, 25px);
    margin-top: -25px;
    margin-right: -5px;
}
.btn-wrap a.btn.btn-primary {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 15px 24px;
    opacity: 0;
    transition: 0.4s;
}
.service-box-three:hover .btn-wrap a.btn.btn-primary {
    opacity: 1;
}
.btn-wrap .icon-btn {
    height: 50px;
    width: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebebeb;
    color: var(--apollo-primary);
    font-size: 18px;
}
.benifit-section {
    padding-bottom: 100px;
}
.benifit-images {
    height: 400px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: auto;
    border: 2px solid var(--apollo-primary);
    overflow: hidden;
    padding: 50px;
}
.benifit-section .why-choose-list-item:last-child{
    margin-bottom: 0;
}
.service-details-section {
    padding: 100px 0;
}
.service-sidebar {
    position: sticky;
    top: 50px;
}
.service-category {
    background-color: #6666663b;
    padding: 40px 40px;
    margin-bottom: 30px;
    border-radius: 20px;
}
.service-category ul li{
    border-bottom: 1px solid #6666;
}
.service-category ul li:last-child{
    border: none;
}
.service-category ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--apollo-black);
    padding:  12px 0px;
    transition: all 0.5s;
}
.service-category ul li:hover a{
    padding: 12px 18px;
    background-color: var(--apollo-secondary);
    color: var(--apollo-light);
}
.service-cta {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    background-image: url(../images/about-us.jpg);
    padding: 100px 50px 50px;
    overflow: hidden;
    background-color: var(--apollo-primary);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}
.service-cta h4{
    color: var(--apollo-light);
    font-size: 36px;
}
.service-image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
}
.service-image-outer {
    display: flex;
    column-gap: 30px;
    height: 450px;
}
.service-image img {
    width: 100%;
    object-fit: cover;
    max-height: 450px;
}
ul.banifit-list {
    margin-bottom: 20px;
}
ul.banifit-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 5px 0;
}
ul.banifit-list li i{
    color: var(--apollo-primary);
    max-width: 25px;
}
.project-section-two {
    padding: 100px 0;
}
.project-box-two {
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}
.custom-details{
    box-shadow: 0px 0px 3px 0px #00000030;
    height: 265px;
}
.project-details-two {
    position: absolute;
    bottom: 0;
    right: 20px;
    opacity: 1;
    transition: all 0.8s;
    top: 40px;
}

.project-image-two {
    height: 100%;
    width: 100%;
}
.project-image-two img{
    transition: all 0.8s;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.project-details-two span {
    padding: 6px 12px;
    background-color: var(--apollo-primary);
    color: var(--apollo-black);
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    border-radius: 12px;
    display: inline-block;
}
.project-details-two h5{
    margin-bottom: 0;
    padding: 8px 12px;
    font-size: 18px;
    background-color: var(--apollo-light);
}
.prject-process-section {
    padding: 100px 0;
}
.working-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.working-wrapper .working-icon {
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    border: 1px solid var(--apollo-primary);
    background: none;
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    box-shadow: 0px 17px 64px rgba(0, 0, 0, 0.07);
}
 .working-wrapper .content {
    margin-top: 60px;
    transition: all 0.4s;
}
 .working-wrapper .content .working-title {
    font-size: 24px;
    line-height: 37px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.4s;
    text-align: center;
}
 .working-wrapper .working-icon span{
    position: absolute;
    right: -35px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    line-height: 210px;
    border-radius: 50%;
    background: #ffffff;
    z-index: -1;
    transition: all 0.5s;
}
.working-wrapper:hover .working-icon span{
    right: -15px;
    bottom: -15px;
}
.working-wrapper:hover .working-title{
    color: var(--apollo-primary);
}
.contact-form-section {
    padding: 100px 0;
}
.contact-left ul li{
    margin-bottom: 25px;
    display: flex;
    column-gap: 5px;
}
.contact-left ul li i{
    color: var(--apollo-primary);
    font-size: 26px;
    padding-top: 5px;
    width: 40px;
}
.contact-left ul li h4, .contact-left ul li p{
    margin-bottom: 0;
    color: var(--apollo-black);
}
.contact-left ul li a{
    color: var(--apollo-black);
    font-weight: 500;
    display: block;
    margin-right: 10px;
}
.contact-left ul li a:hover{
    color: var(--apollo-primary);
}
.contact-form {
    background-color: var(--apollo-secondary);
    border-radius: 20px;
    padding: 50px 30px;
    /* clip-path: polygon(0 0, 100% 0, 100% 0, 100% 79%, 86% 100%, 0 100%, 0 100%, 0 0); */
}
.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C4C6C5;
    border-radius: 0;
    padding: 0;
    padding-bottom: 11px;
    color: var(--apollo-light);
}
.contact-form  textarea.form-control {
    margin-bottom: 15px;
}
.contact-form .form-control::placeholder{
    color: var(--apollo-light);
}
.form-group {
    display: flex;
    column-gap: 50px;
    margin-bottom: 37px;
}
.contact-form-one .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #56736C;
    padding: 11px 0;
}
.contact-form-one .btn-primary{
    background-color: var(--apollo-primary);
}
.testimonial-section-one.about {
    padding-bottom: 100px;
    padding-top: 0;
}
/* custom css */
.apollo-btn{
    background-color: #fff;
    color: var(--apollo-secondary);
}
.header-side-menu i{
    color: #fff;
}
.custom-subtitle{
    justify-content: center;
}
.heading-box-outer h2{
    text-align: center;
}
.custom-btn {
    background-color: transparent;
    padding-left: 0px;
}
.custom-btn i{
    margin-left: 10px;
    font-size: 14px;
}
.footer-logo-one img{
    width: 172px;
    height: 100px;
}
.contact-form-details {
    background-color:var(--apollo-primary) ;
    border-radius: 20px;
    padding: 50px 30px;
}
.contact-form-details ul li {
    margin-bottom: 20px;
    display: flex;
    column-gap: 10px;
    align-items: baseline;
}
.contact-form-details ul li i {
    color: var(--apollo-secondary);
    font-size: 25px;
    width: 50px;
}
.contact-form-details h4{
    margin-bottom: 10px;
}
.contact-form-details ul li a{
    color: var(--apollo-secondary);
}
.form-email {
    display: flex;
    flex-direction: column;
}
.contact-form-details p{
    color: var(--apollo-secondary);
}
.form-info{
    border-radius: 10px;
    padding: 30px 20px;
    background-color: var(--apollo-primary);
    background: #F7F7F7;
    border-radius: 0px;
    position: relative;
   
}
.contact-btn{
     background-color: var(--apollo-light);
     color: var(--apollo-secondary);
}
.contact-left .title h4{
    font-size: 22px;
}
.email-list{
    margin-top: 10px;
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}
.contact-left .email-list li{
    margin-bottom: 10px;
    border-right: 3px solid var(--apollo-primary);
}
.contact-left .email-list li:last-child {
    border-right: none;
}
.email-list li{
    display: block !important;
    
}
.email-list li p{
    margin-bottom: 10px !important;
    font-weight: 600;
}
footer.footer-three{
    padding-top: 100px;
}
/* .footer-title:before {
    content: "";
    position: absolute;
    left: -35px;
    bottom: -5px;
    width: 35px;
    height: 5px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, var(--apollo-primary) 100%);
    transform: rotate(90deg);
    top: 14px;
    background: var(--apollo-primary);
    border-radius: 50px;
} */

body, html {
    overflow-x: hidden;
}
.cta-box .heading-box h4{
    font-size: 32px;
}
.cta-box .heading-box h4 , .cta-box .heading-box p{
  color: var(--apollo-secondary)
}
.cta-box .heading-box p{
font-size: 18px;
font-weight: 500;
}
footer .copyright, footer .designby {
    font-size: 16px;
    text-align: right;
    margin-top: -10px;
}
.main-menu-right i{
    font-size: 14px;
}
.why-choose-item-1{
    margin-right: -100px;
}
.why-choose-item-2{
    margin-right:-50px ;
}
.why-choose-item-4{
   margin-left: -100px;
}
.why-choose-item-5{
    margin-left:-50px ;
}
.why-choose-service-1{
   margin-right: -150px;
   margin-bottom: 50px;

}
.why-choose-service-4{
    margin-left: -150px;
    margin-bottom: 50px;
 
 }
.why-choose-service-2{
    margin-right: -80px;
    margin-bottom: 50px;
 }
 .why-choose-service-5{
    margin-left: -80px;
    margin-bottom: 50px;
 }
.why-choose-service-3{
    margin-right: -80px;
}
.why-choose-service-6{
    margin-left: -80px;
}
.menu-item-children i{
    font-size: 14px;
}
.about-section{
    padding-bottom: 100px;
}
.products-items{
    padding: 15px;
    margin-bottom: 15px;
    height: 265px;
    overflow: hidden;
}
.apollo-product{
    box-shadow:  0px 0px 2px #00000042;
    border-radius: 20px;
}
.products-items a{
    color: var(--apollo-primary);
    font-size: 16px;
    font-weight: 500;

}
header .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
}
.why-choose-list .icon img{
    width: 40px;
    height: 40px;
}
.home-cta{
    padding: 50px 70px;
    column-gap: 20px;
}
.custom-subtitle{
    color: var(--apollo-primary);
}
.bottom-footer li{
    margin-bottom: 0px;
}
.border-bottom{
    border-bottom: 1px solid #ffffff63 !important;
    margin-bottom: 40px;
    padding: 25px 0px;
    width: 1300px;
}
.footer-btn{
    background-color: var(--apollo-primary);
    padding: 10px;
    color: white;
    margin-left: 30px;
    font-size: 18px;
    font-weight: 600;
}
.border-bottom h5{
    font-size: 22px;
}

.footer-title i{
   color: var(--apollo-primary);
}
#successMessage{
    color: green;
    margin-top: 20px;
    background: white;
    padding: 10px;
    text-align: center;
}
