
:root {
    --primary-color: #0e2A19;
    --secondery-color: #CCFF31;
    --title-color: #fff;
    --warning-color: #0e2431;
    --success-color: #0e2431;
    --danger-color: #0e2431;
    --info-color: #0e2431;
    --dark-color: #081A0F;
    --ligt-color: #0e2431;
    --body-color: #0e2A19;
    --body-secondary: #8CA495;
}

* {
  box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: visible; 
}

html, body {
  font-family: "CreatoDisplay", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1 {
    font-family: 'CreatoDisplay', sans-serif;
    margin: 0;
    color: var(--title-color);
    text-align: center;
    font-size: 140px;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

h2 {
    font-family: 'CreatoDisplay', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 120%;
    letter-spacing: 0px;
    margin: 0;
    color: var(--title-color);
    text-align: left;
}

h3 {
   font-family: 'CreatoDisplay', sans-serif;
   font-weight: 500;
   font-size: 60px;
   line-height: 120%;
   letter-spacing: 0px;
   margin: 0;
   color: var(--title-color);
}

h4 {
    font-family: 'CreatoDisplay', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0px;
    color: var(--title-color);
    margin: 0;
}

h5 {
    font-family: 'CreatoDisplay', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
    margin: 0;
    color: var(--title-color);
}

h6 {
  font-family: 'CreatoDisplay', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0px;
  color: var(--title-color);
  margin: 0;
}

figure {
    margin: 0px !important;
}

p {
    font-family: 'CreatoDisplay', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    line-height: 170%;
    color: var(--title-color);
}

a {
    font-family: 'CreatoDisplay', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.se-section-head-title {
  margin-bottom: 100px;
}

/***********************************
            Header
************************************/
#masthead {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: top 0.4s ease;
  padding: 26px 0px;
}

.custom-logo-link img {
    width: 121px;
    height: 27px;
}

nav.main-menu ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.primary-header {
    display: flex;
    align-items: center;
    gap: 70px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/***********************************
        Hero Section
************************************/

.se-hero-tagline h1 {
  text-align: left;
}

.se-hero-tagline span.hero-subheading {
    font-size: 32px;
    margin: 0;
    line-height: 41.6px;
    font-weight: 500;
    position: relative;
    color: var(--title-color);
    display: inline-block;
}

.se-hero-tagline span.hero-subheading:after {
    width: 130px;
    height: 1px;
    background: var(--secondery-color);
    position: absolute;
    right: -150px;
    content: '';
    bottom: 10px;
}


.se-hero-serice-name ul {
  text-align: right;
  padding: 0;
  margin: 0;
}

.se-hero-serice-name ul li {
  list-style: none;
  margin-bottom: 15px; 
}

.se-hero-serice-name ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.9s ease; 
  transform-origin: center;
}

.se-hero-serice-name ul li a:hover svg {
  transform: rotate3d(10, 0, -20, 45deg);
}

.se-hero-serice-name ul li a svg {
  transition: transform 0.9s ease-in-out; 
}

.se-hero-serice-name ul li a:hover svg path {
  stroke: var(--secondery-color);
}

.se-hero-serice-name ul li a:hover {
  color: var(--secondery-color);
}


/**************************************
        About us Section
****************************************/

.se-counters-section {
    margin-top: 80px;
    margin-bottom: 140px;
}

.se-counter-tagline {
    margin-bottom: 100px;
}

.se-counter-tagline p {
    font-size: 60px;
    font-weight: 500;
    line-height: 120%;
    width: 90%;
}

.se-counter-video {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.video-wrapper {
    height: 100%;
}

.video-wrapper img.counter-image {
    width: 100%;
    display: block;
    height: 100%;
    transition: ease-out all 0.9s;
    object-fit: cover;
    object-position: center center;
}

.se-counter-video:hover img {
    transform: scale(1.1);
}

.video-wrapper .video-btn {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0,0);
    pointer-events: none;
}

.video-btn button.play-video {
  width: 155px;
  height: 155px;
  border-radius: 100%;
  background: var(--secondery-color);
  backdrop-filter: blur(10px);
  color: var(--dark-color);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    display: none;
}

.se-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.se-single-counter {
  min-height: 222px;
  background-color: var(--dark-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.se-counter-number {
  font-size: 60px;
  color: var(--secondery-color);
  line-height: 72px;
  font-weight: 500;
}

.se-counter-feature {
  color: #8ca495;
  font-size: 24px;
  line-height: 33.6px;
}


/********************************
        Service section
*********************************/

.service-wrapper {
  background-color: var(--dark-color);
  display: block;
}


.se-service-inner-exerpt p {
  color: var(--body-secondary);
  margin-bottom: 40px;
  margin-top: 30px;
}

.se-service-inner-exerpt ul li {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--title-color);
  position: relative;
  /* padding-left: 14px; */
}


.service-content-wrap {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    overflow: visible;
}

.service-content-wrap:hover .hover-circle {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.post-item a:hover .hover-circle {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wcf--scroll-elements {
    display: flex;
    gap: 40px;
}

/* Navigation */
.wcf--scroll-elements .scroll-nav-bar {
    width: 20%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.wcf--scroll-elements .scroll-title {
    cursor: pointer;
    transition: .3s;
    color: var(--body-secondary);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
}

.wcf--scroll-elements .scroll-title.active,
.wcf--scroll-elements .scroll-title:hover {
    cursor: pointer;
    color: var(--secondery-color);
}

.wcf--scroll-elements .scroll-title i,
.wcf--scroll-elements .scroll-title svg {
    align-self: start;
    margin-top: 5px;
    margin-right: 10px;
    width: 1em;
    height: 1em;
}

/* Content Wrap */
.wcf--scroll-elements .scroll-content-wrap {
    display: flex;
    gap: 60px;
    flex: 1;
}

/* Images */
.wcf--scroll-elements .scroll-images {
    width: 50%;
    position: relative;
}

.wcf--scroll-elements .scroll-images .image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100vh;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.wcf--scroll-elements .scroll-images .image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: -1;
}

/* Content */
.wcf--scroll-elements .scroll-contents {
    flex: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .elementor-widget-wcf--scroll-elements.wcf-scroll-tablet .scroll-images,
    .elementor-widget-wcf--scroll-elements.wcf-scroll-tablet .scroll-nav-bar {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .elementor-widget-wcf--scroll-elements.wcf-scroll-mobile .scroll-images,
    .elementor-widget-wcf--scroll-elements.wcf-scroll-mobile .scroll-nav-bar {
        display: none;
    }
}

.single-content {
    padding: 105px 0px 150px 0px;
}

.se-service-inner-exerpt ul li a:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 4px solid #CCFF31;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.se-service-inner-exerpt ul li a {
    padding-left: 30px;
}

/* tablet */
.image-wrap img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    object-position: center;
}

.service-tab-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.service-title {
  font-family: 'CreatoDisplay', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #8CA495;
}

.service-contents {
    width: 50%;
}


.service-tab-img .image-wrap,
.ser-single-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}


.service-tab-img .image-wrap.active,
.ser-single-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.service-title.active {
    opacity: 1;
    color: var(--secondery-color);
}

.service-wrapper-tablet,.service-wrapper-mob {
  display: none;
}

.service-tab-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*********************************
          Project Section
**********************************/

.project-content {
  padding: 140px 0px 100px;
}

.project-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.project-wrap,
.slide-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
  display: flex;
  height: 100vh;
}

.slide__outer,
.slide__inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.slide__heading {
    align-self: end;
    margin-top: 40px;
}

.slide__img-cont {
    margin-top: 4rem;
    overflow: hidden;
}

.slide__img-cont img {
    height: 420px;
    object-fit: cover;
    width: 875px;
    overflow: hidden;
}
.slide__content {
    margin-top: -150px;
}
.overlay__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 150px;
}

.overlay__img-cont {
    position: relative;
    overflow: hidden;
    width: 875px;
    height: 420px;
}

.overlay__img-cont img {
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.overlay__count {
    font-weight: 500;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--title-color);
    position: relative;
    margin-bottom: 30px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.all-project {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease-in-out;
  text-align: right;
  margin-top: 40px;
  
}

.all-project a:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    background: #CCFF31;
    bottom: -5px;
    left: 0;
}

.all-project.show-btn {
  opacity: 1;
  pointer-events: auto;
}

.all-project a {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: left;
    position: relative;
}

/*********************************
        Why Us Section
**********************************/

.se-why-us-wrapper {
    margin: 140px 0;
}

.se-why-us-feature-counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
}

.se-whyus-fc-text {
    background: var(--dark-color);
    padding: 25px 0;
    height: 258px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
}

.se-whyus-content {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding: 0 25px;
}

.se-whyus-content p {
  color: #8CA495;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;

}

.se-whyus-icon img {
    height: 88px;
    width: 60px;
    object-fit: cover;
    object-position: center center;
}

span.whyus-ctr-num {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: var(--secondery-color);
}

span.why_increment {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: var(--title-color);
}

.se-why-us-features {
    background: var(--secondery-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 365px;
}

.se-why-us-features h4 {
    text-align: end;
    color: var(--dark-color);
    margin-bottom: 0;
}

.se-whyus-fc-header {
  padding: 25px;
  background: var(--dark-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.left-box-wrap {
    display: flex;
    justify-content: space-between;
}

.box-brand-slider {
    overflow: hidden;
}


.box-brand-slider .brand-item {
    width: 105px;
    text-align: center;
    transition: all 0.3s ease;
    height: 30px;
    object-fit: cover;
    margin-right: 12px;
    margin-left: 12px;
}

.box-brand-slider img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.box-brand-slider .slick-current img {
    opacity: 1;
}

.top-right-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
}

.se-why-us-features p {
  color: var(--dark-color);
}

.seWhyUsFeatures {
  position: relative;
  height: 430px;
  overflow: hidden;
  object-fit: cover;
}

.seWhyUsFeatures::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(191deg, #081A0F -7.83%, rgba(8, 26, 15, 0.00) 76.47%);
  z-index: 1; 
}

.seWhyUsFeatures.box-num-1:before {
  background: transparent;
}

.seWhyUsFeatures img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  transition: ease-out all 0.9s;
}
.seWhyUsFeatures:hover img {
  transform: scale(1.2);
}
.seWUF-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  z-index: 2;
}

/***********************************
          Testimonial Section 
************************************/

.se-testimonial-shadow {
  padding: 25px 50px 25px 25px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  width: 100%;
}


.se-client-intro {
  display: grid;
  grid-template-columns: 37% 63%;
}

.se-client-name h2 {
  font-size: 28px;
  border-right: 1px solid var(--body-secondary);
  margin: 0;
}

.se-testimonial-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-client-position {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.se-client-testimonial.slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.se-client-position p {
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    text-align: right;
    color: var(--body-secondary);
}

.se-testimonial-client-info img {
    height: 60px;
    width: auto;
    border-radius: 50px;
    margin-bottom: 24px;
}

.se-testimonial-profile {
  height: 465px;
  position: relative;
  overflow: hidden;
}


.se-testimonial-desc p {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: var(--body-secondary);
}

.se-client-testimonial {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 150%;
}

.se-testimonial-inner {
  width: calc(100% / 3); 
  flex-shrink: 0;
  background: var(--dark-color);
  padding: 25px;
  height: 465px;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 24px;
  flex-shrink: 0;
}




/************************************
          Blog Section
*************************************/

.se-insight-wrapper {
    margin: 140px 0;
}

.se-insight-inner img {
    margin: 27px;
    height: 163px;
    width: 150px;
    transition: ease-out all 0.9s;
    object-fit: cover;
}

.se-insight-inner:hover .hover-circle {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.se-insight-inner {
  height: 425px;
  overflow: hidden;
  position: relative;
  background: var(--dark-color);
}

.se-insight-title {
  padding: 25px;
  position: absolute;
  bottom: 0;
}

.se-insight-inner:hover img {
  margin: 0;
  width: 100%;
  height: 100%;
}

.se-insight-inner:hover .se-insight-title {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  width: 100%;
}

.se-insight-content:hover .date-of-insight {
  color: var(--title-color);
}

.date-of-insight {
  text-align: right;
  margin-top: 20px;
  margin-right: 20px;
  color: var(--body-secondary);
  position: absolute;
  top: 0;
  right: 0;
}

/**************************************
              FAQ Section
***************************************/

.se-faqs .accordion-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: var(--title-color);
}

.se-faq-thumb img {
    height: 620px;
    width: 100%;
    object-fit: cover;
}

.faqacc-header {
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faqacc-item {
    background: var(--dark-color);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

div#accordionExample {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faqacc-header .faq-icon {
    transition: transform 0.9s ease-in-out;
}

.faqacc-header.active .faq-icon {
    transform: rotate(180deg);
    transition: transform 0.9s ease-in-out;
}

.faqacc-header.active .faq-icon svg path {
    fill: var(--secondery-color);
}

.faqacc-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
}


/***********************************
            About Us Page
************************************/

.se-about-hero {
    padding: 60px 0px 140px;
}

.se-about-desc {
    margin-left: 110px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.se-about-content .se-about-desc p {
    width: 75%;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0px;
}

.se-about-content .award-text p {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;

}

.se-about-content .awards {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 110px;
}

.se-about-content .award-text {
    max-width: 170px;
    width: 100%;
}

.se-counter-wrap {
    display: grid;
    grid-template-columns: repeat( 4, 1fr);
    gap: 12px; 
}

.se-counter-wrap .se-counter {
    background-color: var(--body-color);
    padding: 24px;
    min-height: 255px;
}

.se-counter .se-counter-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.se-counter .se-counter-card p {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
    color: var(--body-secondary);
}

.counter-wrap {
    font-weight: 500;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: 0px;
    color: var(--secondery-color);
    word-spacing: -15px;
}

.overly {
    padding: 380px 20px 20px;
    background: rgba(0, 0, 0, 0.4);
}

.se-counter{
    background: var(--primary-color);
    padding: 24px;
    margin: 0 10px;
}


/********************************
          Introduction
***********************************/

.se-Introduction-content {
    margin-top: 48px;
    margin-bottom: 48px;
}

.se-Introduction-content p {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0px;
}

.intro-image-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.introduction-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
    width: 80%;
}

.se-Introduction {
    padding: 140px 0px;
}

.se-intro-box-content p {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0px;

}

.signature-wrap p {
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0px;
}

.se-intro-box-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.se-Introduction-btn-grup {
  display: inline-block;
  margin-top: 60px;
}

.se-Introduction-btn {
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}


.play {
    transition: all 0.5s ease;
    transition-delay: 300ms;
    width: 100%;
}

.now {
    position: absolute;
    left: 0px;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: 2;
    width: 100%;
    width: 100%;
    display: flex;
    border-radius: 4px;
    border: 2px solid transparent;
}

.se-Introduction-btn:hover .now {
    transform: translateX(0%);
}

.se-Introduction-btn:hover .play {
    transform: translateX(0%);
    transition-delay: 300ms;
}

.intro-left-img img {
    width: 100%;
}

.intro-image-wrap img {
    width: 100%;
}

/***********************************
          Brand Slider
***************************************/

.se-brand {
  margin: 140px 0px;

}

.se-brand-slider .slide-items {
  background: var(--dark-color);
  padding: 30px;
  margin: 0 8px;
  text-align: center;
}

.se-slider .slide-items img {
  width: auto;
  margin: auto;
}

.se-brand-content {
  padding: 0px !important;
}

/*****************************************
              Work Process
******************************************/

.work-tab-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-color);
  margin-bottom: 65px;
}

.work-tab-button {
    padding: 24px;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
    white-space: nowrap;
    background-color: transparent;
    transition: 0.4s;
    text-align: center;
    border: none;
    border-radius: 0;
    color: var(--title-color);
}

.work-tab-button.active {
    background: var(--secondery-color);
    color: var(--dark-color);
}

.work-tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.se-work .se-work-subtitle {
  font-size: 20px;
  color: var(--secondery-color);
  font-weight: 400;
}

.work-tab-image {
  flex: 1 1 45%;
}

.work-text-top {
    margin-bottom: 40px;
}

.step-text-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.work-tab-content-wrap p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    margin-top: 16px;
    color: var(--body-secondary);
}

.step-number {
    font-weight: 500;
    font-style: Medium;
    font-size: 120px;
    line-height: 130%;
    letter-spacing: 0px;
    color: var(--secondery-color);
}

.se-work {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.work-tab-content {
    display: none;
}

.work-tab-content.active {
    display: block;
}


/**************************************
              Service page
***************************************/

.service-faqs-wrapper {
  margin-top: 140px;
}


/**************************************
          Project Page
**************************************/

.project-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 12px;
}

.project-box {
  position: relative;
  height: 400px;
  z-index: 3;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.project-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.project-box:hover .project-bg {
  transform: scale(1.2);
}

.project-item {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  align-content: end;
  background: #00000072;
}

.project-content h6 {
  transition: all 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
  width: 80%;
}

.project-box:hover h6 {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}


/***************************************
          Career Page
****************************************/

.se-counter-career .se-counter-wrap .se-counter {
  background-color: var(--dark-color);
}

/*************************************
            Job Section
**************************************/

.se-opening-section {
  margin-top: 140px;
}

.se-opening-label {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  color: #ccff31 !important;
  margin-bottom: 8px;
  text-align: left;
}

.se-opening-title {
  font-size: 80px;
  line-height: 96px;
  font-weight: 500;
  margin-bottom: 60px;
}

.job-headline {
  margin-bottom: 100px;
}

.se-job-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.se-job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-color);
  padding: 24px;
}

span.se-job-level {
    font-weight: 500;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--body-secondary);
}

.se-job-type {
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0px;
  color: var(--body-secondary);
}


/**********************************
          Facilities 
***********************************/

.job-facilities {
  margin-bottom: 100px;
}

.se-perks-label {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  color: #ccff31 !important;
  margin-bottom: 10px;
}

.se-perk-item-1,
.se-perk-item-2,
.se-perk-item-3,
.se-perk-item-4 {
  background-color: #081a0f;
  padding: 24px;
  border-radius: 0px;
  width: 330px;
  height: 246px;
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.se-perk-icon {
  height: 60px;
  width: 40px;
  object-fit: cover;
}

.se-perk-item-4 {
  margin-top: -270px;
  margin-left: 330px;
}

.se-perk-item-2 {
  top: 0px;
  margin-left: 220px;
}

.se-perk-item-3 {
  margin-top: 305px;
  margin-left: 115px;
}

/*****************************
        Testimonials
******************************/

section.carrer-tm-section {
  padding: 140px 0px;
}


/*******************************
          Contact page
********************************/
.main-contact-form {
    background:var(--dark-color);
    padding: 100px;
}

.name-email-field {
    display: flex;
    gap: 12px;
}

.contact-from-wrap {
    background: #0E2A19;
    padding: 40px;
}

.contact-from-wrap textarea {
    overflow: auto;
    width: 100%;
    background: var(--dark-color);
    border: none;
    padding: 12px;
    height: 120px;
    resize: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
    outline: none;
    box-shadow: none;
}

.contact-from-wrap textarea::placeholder {
  color: var(--body-secondary);
} 

.contact-from-wrap .contact-email input , .contact-from-wrap .contact-name input {
    background: var(--dark-color);
    border: none;
    outline: none;
    box-shadow: none;
    height: 55px;
    padding: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
    width: 100%;
    margin-bottom: 12px;
}


.contact-from-wrap input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--dark-color);
  border-radius: 2px; 
  background-color: var(--dark-color); 
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.contact-from-wrap input[type="checkbox"]:checked {
  background-color: var(--secondery-color); 
  border-color: var(--secondery-color);
}

.contact-from-wrap .wpcf7-list-item {
  margin: 0;
}

.contact-checkbox span.wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
}

.contact-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-checkbox span.wpcf7-list-item-label {
    color: var(--body-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
}

.contact-budget select {
    width: 100%;
    height: 55px;
    background: var(--dark-color);
    border: none;
    color: var(--body-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    outline: none;
    box-shadow: none;
    padding: 12px;
}

.contact-footer input {
    width: 220px;
    background: #CCFF31;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    border: none;
}


.contact-footer p {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
    margin-top: 32px;
}

.contact-heading h6 {
    margin-bottom: 32px;
}

.contact-heading {
    margin-bottom: 12px;
}

.contact-checkbox h6 {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin: 32px 0px;
}

.contact-budget h6 {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-footer {
    margin-top: 32px;
}

.contact-budget {
    margin-top: 32px;
}

.contact-info ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0px;
    margin-top: 16px;
    display: inline-block;
}

.contact-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-social ul li a {
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;

}

.contact-social ul li a span {
    margin-right: 16px;
}

.contact-social ul li {
    margin-bottom: 20px;
}

.contact-social ul li:last-child {
  margin-bottom: 0px;
}

.contact-info {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(140, 164, 149, 0.3);
    margin-bottom: 40px;
}


/*******************************
        Blog Page
*********************************/

.entry-title a {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-transform: capitalize;
  display: inline-block;
}

.date-of-insight a {
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--body-secondary);
}

nav.navigation.pagination {
  justify-content: center;
}

.nav-links .page-numbers {
  background: var(--dark-color);
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  border: 2px solid var(--dark-color);
  color: #8ca495;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  border: 2px solid var(--secondery-color);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}


/*****************************
        Blog Single
******************************/

.se-blog-header {
    margin-top: 60px;
    margin-bottom: 60px;
}

.post-item a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    overflow: visible;
}

.blog-details-wrap {
    margin: 60px 0px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget-area {
  background-color: var(--dark-color);
  padding: 24px;
}

.widget-consultation {
  margin-bottom: 24px;
}

.consult-btn {
  border-radius: 4px;
  gap: 12px;
  display: flex;
  align-items: center;
  background-color: var(--secondery-color);
  padding: 2px 24px 2px 2px;
  width: fit-content;
}

.consult-btn .iocn {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  opacity: 1;
  color: var(--title-color);
  background-color: var(--dark-color);
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
} 

.consult-btn .text {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  color: var(--dark-color);
}

.subscribe-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary);
    margin-bottom: 24px;
}

.widget-subscribe input, .widget-subscribe input::placeholder {
    width: 100%;
    height: 52px;
    padding: 12px;
    border: none;
    background: var(--body-color);
    color: var(--title-color);
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 8px;
}

.widget-subscribe input::placeholder {
  color: var(--body-secondary);
}

.widget-subscribe input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.widget-subscribe .wpcf7-submit {
  background-color: var(--secondery-color); 
  color: var(--title-color);              
  border: none;            
  padding: 10px 20px;      
  cursor: pointer;
  width: 100%;
  height: 52px;         
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  color: var(--dark-color);
}

.widget-subscribe .wpcf7 form.invalid .wpcf7-response-output {
    border-color: var(--secondery-color);
    color: var(--secondery-color);
}

.social-share a {
    width: 40px;
    height: 40px;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.social-share a:hover {
  background-color: var(--secondery-color);
}
.social-share a:hover i {
  color: var(--dark-color);
}
.social-share a i {
    font-size: 22px;
    color: var(--title-color);
}

.social-share {
    gap: 24px;
    display: flex;
}

.widget-consultation.widget-social {
  border-bottom: 2px solid #174629;
  padding-bottom: 24px;
}

.sidebar-left,
.sidebar-right {
  position: sticky;
  top: 0px; 
  align-self: start;
  height: fit-content; 
  z-index: 2; 
}

body.single-post {
  overflow: visible;
}

.toc-wrap {
  background-color: var(--dark-color);
  padding: 24px;
}

.toc-underline {
  width: 100%;
  height: 4px;
  background-color: #174629;
  border-radius: 30px;
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}

.toc-underline:before {
  content: "";
  position: absolute;
  width: var(--progress-width, 0%);
  height: 4px;
  background: var(--secondery-color);
  border-radius: 10px;
  transition: width .3s ease;
}

.toc-title {
    margin-bottom: 40px;
    padding-bottom: 1;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 16px;
  position: relative;
}

.toc-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  transition: color 0.3s;
  position: relative;
  padding-left: 30px;
  transition: color .3s;
}

.toc-list a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--body-secondary);
  border-radius: 50%;
  background-color: var(--body-color);
  margin-right: 12px;
  transition: background .3s, border-color .3s;
  position: absolute;
  top: 7px;
  left: 0;
}

.toc-list li.active a {
  color: var(--secondery-color);
}



.toc-list a:hover {
  color: var(--secondery-color);
}

.toc-list li.active a::before {
  background: var(--secondery-color);
  border-color: var(--secondery-color);
}

.se-blog-featured-image img {
  width: 100%;
  height: 570px;
  object-fit: cover; 
  object-position: center center;
}

.wp-block-heading {
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0px;
}

.se-blog-description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  color: var(--body-secondary);
  margin: 16px 0px 40px;
}

.se-blog-description h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  letter-spacing: 0px;
}
.se-blog-description h4 {
  color: #ffffff;
  font-size: 40px;
  line-height: 52px;
  font-weight: 500;
  letter-spacing: 0px;
}

.se-blog-description ul.wp-block-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 40px;
    margin-top: 40px;
}

.se-blog-description ul.wp-block-list li {
    color: #8CA495;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 170%;
    letter-spacing: 0px;
    position: relative;
    padding-left: 30px;
}

.se-blog-description ul.wp-block-list li:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 3px solid #CCFF31;
    border-radius: 100%;
    top: 8px;
    left: 0;
}


.se-blog-bullets {
  padding-left: 1.25rem; 
  margin-bottom: 1rem;
  padding: 0px;
  margin: 0px;
}
.se-blog-bullets li {
  margin-bottom: 0.4rem;
  color: #8ca495;
}


.se-blog-image {
  width: 100%;
  height: auto; 
  object-fit: contain; 
  border-radius: 0.5rem;
}


.se-blog-navigation {
  padding: 2rem;
  background: #081a0f;
  border-radius: 0.5rem;
  color: #e8f1ec;
}

.se-blog-navigation .nav-subtitle {
  display: block;
  color: #8ca495;
  font-size: 14px;
  margin-bottom: 0.25rem;
}
.se-blog-navigation .nav-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
} 

/*************************************
          Project Details
**************************************/

.work-process-wrap {
    margin-top: 140px;
}

.process-headlin {
    margin-bottom: 100px;
}

section.project-hero {
  margin: 60px 0px 90px;
}

.pro-headline {
    margin-bottom: 65px;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
}

.project-meta-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.project-meta-label {
  color: var(--body-secondary);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  width: 10%;
}

.project-meta-value {
  color: var(--title-color);
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0px;
}

.project-image img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.project-details-wrap .wp-block-heading {
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: 0px;
  color: var(--title-color);
  margin-bottom: 24px;
}

.project-details-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  color: var(--body-secondary);
}

.project-details-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--body-secondary);
    margin-top: 45px;
}

.project-details-wrap ul li {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0px;
  padding-left: 20px;
}

.project-details-wrap ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.project-details-wrap .wp-block-columns {
    margin-top: 60px;
    gap: 50px;
}

.project-details-wrap img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.process-card {
    background: var(--dark-color);
    width: 430px !important;
    padding: 24px;
    margin-left: 16px;
}

.process-card .process-img img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center center;
}

.process-bottom p {
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--body-secondary)
}

.process-top {
    position: relative;
}

.process-week {
    position: absolute;
    top: 0;
    right: 0;
}

.process-week span {
    color: var(--body-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0px;
    text-align: right;
}

.process-wrap.slick-slider {
    width: 120%;
}

.process-img {
    margin-bottom: 45px;
}

.process-bottom h4 {
    margin-bottom: 16px;
}


/**************************************
              Footer
****************************************/

.se-video-cta {
    margin-top: 140px;
    align-items: center;
    background-color: #000000;
    display: flex;
    height: 630px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* top: 0; */
    width: 100%;
}

.se-video-content {
    text-align: center;
    max-width: 50%;
    width: 100%;
    z-index: 1;
}


.se-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.se-video-content .se-button {
  margin: auto;
}

.se-video-content p {
    color: var(--body-secondary);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    padding: 0 20%;
    margin: 24px 0 100px;
}

.se-video-content h2 {
  text-align: center;
}

section.se-footer-top {
    padding-top: 100px;
}

.se-footer-bottom {
    margin-top: 75px;
}

.se-footer-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.se-footer-logo img {
    width: 700px;
    height: 220px;
    object-fit: cover;
}

.se-footer-logo h4 {
    color: #8CA495;
    width: 29%;
    text-align: end;
}

.se-footer-menu ul li a {
    color: var(--body-secondary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.se-footer-menu ul li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    width: 23px;
    height: 2px;
    background: var(--secondery-color);
    transition: all 0.3s ease-in-out;
}

.se-footer-menu ul li a:hover:after,
.se-footer-menu ul li.current-menu-item a:after {
    width: 100%;
}

.se-scrool-to-top a:hover {
    background: var(--secondery-color);
    color: var(--dark-color);
}

.se-footer-newsletter form input {
    position: relative;
    border-radius: 0;
    background: var(--secondery-color);
    border: none;
    width: 100%;
}

.se-footer-newsletter input.wpcf7-form-control.wpcf7-submit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90px;
}

form.wpcf7-form.init {
    position: relative;
}

.se-footer-newsletter .input-group {
    display: block;
}

span.wpcf7-spinner {
    display: none;
}

.se-address-number a {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
}

.se-address-number a:hover {
    color: var(--title-color);
}

.hover-circle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    background: var(--secondery-color);
    color: var(--dark-color);
    padding: 10px 15px;
    border-radius: 100%;
    text-align: center;
    top: 0;
    left: 0;
    height: 156px;
    width: 156px;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(30px) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 8;
}


.se-footer {
  background: var(--dark-color);
  
}

.se-footer-logo h3 {
  margin-top: 79px;
}
.se-site-type {
  text-align: center;
}

.se-footer-bottom .container {
  background: var(--body-color);
}
.se-footer-navigation,
.se-footer-copyright {
  display: flex;
}
.se-footer-menu,
.se-footer-newsletter,
.se-address-number,
.se-copyright-text {
  width: 38.5%;
  padding: 40px;
  border: 1px solid #344f3e;
  outline: 1px solid var(--body-color);
}
.se-footer-social,
.se-scrool-to-top {
  width: 23%;
  border: 1px solid #344f3e;
  outline: 1px solid var(--body-color);
}
.se-footer-social ul li:last-child a {
  border-bottom: 0px solid;
}

.se-footer-menu ul li {
  
  width: 50%;
  float: left;
  margin-bottom: 11px;
}

.se-footer-menu ul li a:hover,
.se-footer-menu ul li.current-menu-item a {
  color: var(--secondery-color);
}

.se-footer-menu ul li.current-menu-item:after a {
  width: 100%;
}

.se-footer-newsletter p {
    color: var(--body-secondary);
    margin: 16px 0px;
    font-size : 18px;
}

.se-footer-newsletter input[type="text"],
.se-footer-newsletter input[type="email"] {
  background: var(--dark-color);
  border: 0px;
  border-radius: 0;
  padding: 13px;
  color: var(--body-secondary);
}
.se-footer-newsletter input:active {
  color: var(--body-secondary);
}
.se-footer-newsletter form button {
  border: 0;
  background: var(--secondery-color);
  width: 100px;
  border-radius: 0;
  color: var(--dark-color);
}
.se-footer-social ul li {
  list-style: none;
}
.se-footer-social ul li a {
  color: var(--title-color);
  font-size: 25px;
  text-decoration: none;
  padding: 18px 33px;
  line-height: 35px;
  border-bottom: 1px solid #344f3e;
  display: flex;
  justify-content: space-between;
}
.se-footer-social ul li a span.bi {
  color: var(--secondery-color);
}
.se-address-number ul li {
  list-style: none;
  margin-right: 12px;
  font-size: 18px;
  color: var(--body-secondary);
}
.se-address-number ul {
  display: flex;
}
.se-address-number ul li i {
  color: var(--secondery-color);
}
.se-address-number h1 {
  font-size: 43px;
  margin-top: 18px;
  margin-bottom: 0;
}
.se-copyright-text p {
  font-size: 16px;
  color: var(--body-secondary);
}
.se-copyright-text ul li {
  list-style: none;
  color: var(--title-color);
  font-size: 20px;
  font-weight: 500;
}
.se-copyright-text ul {
  display: flex;
}
.se-copyright-text ul li img {
  width: 24px;
  margin-right: 10px;
}
.se-scrool-to-top a,
.se-scrool-to-top a:visited {
  display: block;
  color: var(--secondery-color);
  font-size: 46px;
  text-align: center;
  line-height: 177px;
}

.se-footer-menu {
  border-top: 0px solid;
  border-left: 0px solid;
}
.se-footer-newsletter {
  border-top: 0px solid;
}
.se-address-number {
  border-left: 0px solid;
  border-bottom: 0px solid;
}
.se-copyright-text {
  border-bottom: 0px solid;
}
.se-scrool-to-top {
  border-right: 0px solid;
  border-bottom: 0px solid;
}
.se-footer-social {
  border-top: 0px solid;
  border-right: 0px solid;
}


.contact-info ul li {
    color: #8CA495;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
}

/****************************************
          Page css end
******************************************/

.se-button {
  position: relative;
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  padding: 4px 24px 4px 4px;
  background: var(--secondery-color);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.4s ease-in-out, color 0.3s ease-in-out;
}

.se-button span {
  width: 52px;
  height: 52px;
  background: #081a0f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  flex-shrink: 0;
  transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
  z-index: 2;
}

.se-button span i {
  color: var(--title-color);
  font-size: 18px;
}

/* Hover overlay */
.button-hover {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--body-color);
  border-radius: 4px;
  width: calc(100% - 6px);
  height: 88%;
  opacity: 0;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

/* Animate from left to right */
.se-button:hover .button-hover {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

/* Slide out the black span box */
.se-button:hover span {
  transform: translateX(120%) rotate(8deg);
  opacity: 0;
}

/* Inner chat & call buttons */
.btn-chat, .btn-call {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  color: var(--dark-color);
  transition: all 0.3s ease-in-out;
}

.btn-chat i, .btn-call i {
  background-color: var(--body-secondary);
  padding: 6px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Hover effect inside the revealed area */
.btn-chat:hover, .btn-call:hover {
  background-color: var(--dark-color);
  color: var(--title-color);
}

.btn-chat:hover i, .btn-call:hover i {
  background-color: var(--secondery-color);
  color: var(--title-color);
}

 
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.overlay__count:before {
    content: "";
    background: var(--secondery-color);
    width: 90px;
    height: 4px;
    position: absolute;
    bottom: 0;
    right: 0;
}


.se-scrool-to-top a:hover svg path {
    fill: var(--body-color);
}


.breadcrumbs-wrap {
    padding: 60px 0px 140px;
}

.hero-image {
    width: 510px;
    max-width: 100%;
    margin-left: auto;
}

.se-hero-content h2 {
    margin-bottom: 40px;
}

.se-hero-content p {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0px;
    width: 85%;
    color: var(--body-secondary);
    padding-left: 130px;
}

.se-hero-content {
    margin-bottom: 40px;
}



/* fadein animatin */

.fadeInUp-animation {
  animation: fadeInUp var(--ani-time,1s) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  will-change: transform, opacity;
  
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.seWUF-overlay.box-num-1 h4,.seWUF-overlay.box-num-1 p {
    color: #081A0F;
}

.seWUF-overlay.box-num-2 {
    top: auto;
    bottom: 0;
}

.se-hero-tagline span {
  display: flex;
}

/* .smoth-wrapper {
  height: 100%;
  overflow: hidden;
}

#home-primary {
  will-change: transform;
} */


.reactive-orb-wrap {
  position: relative;
  width: 100%;
  height: 600px; /* can be overridden by shortcode attr or inline style */
  overflow: hidden;
}
.reactive-orb-wrap .reactive-orb-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
