 
/*Fixing-footer*/
html {
	height: 100%;
}

body {
    display: -webkit-boxa;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    letter-spacing: 0.025rem;
    line-height: 1.8;
}

footer {
    margin-top: auto;
}

/*Responsive sizes*/
html {
 font-size: 0.625rem;
}

@media only screen and (min-width: 1600px) {
 html {
  font-size: 0.65rem;
 }
}


@media only screen and (min-width: 1800px) {
 html {
  font-size: 0.7rem;
 }
}


@media only screen and (min-width: 2000px) {
 html {
  font-size: 0.75rem;
 }
}


@media only screen and (min-width: 2400px) {
 html {
  font-size: 0.8rem;
 }
}


@media only screen and (min-width: 2560px) {
 html {
  font-size: 1rem;
 }
}


.brxe-container > div{
 padding: clamp(1rem, calc(1rem + ((1vw - 0.32rem) * 1.0417)), 2rem);
}

.brxe-container{
  width: 100% !important;
}

.padding-0{
 padding: 0px;
}


.ct-new-column{
 align-items: stretch;
}


@media screen and (max-width: 992px) {
  .ct-new-column {
    display: flex;
    flex-direction: column!important;
  }
  
  .ct-new-column > div {
   width: 100% !important;
  }
}


.bricks-header-container{
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row!important;
  max-width: 100%;
}


/* Dynamic Spacer Classes */
.even-spacing-vsm > * + * {
  margin-top: 0.5rem;
}

.even-spacing-vs > * + * {
  margin-top: 1rem;
}

.even-spacing-vm > * + * {
  margin-top: 2rem;
}

.even-spacing-vx > * + * {
  margin-top: 3rem;
}

/*Equal 4 - 2 rem margin in section childs */
.even-margin-v4rem > * > *:not(:last-child) {
    margin-bottom: clamp(2rem, calc(2rem + ((1vw - 0.48rem) * 2.7778)), 4rem);
}

/* Extra Classes */
.padding-all {
  padding: 2rem clamp(1rem, calc(1rem + ((1vw - 0.32rem) * 1.0417)), 2rem);
}
/*Body-overflow-hidden*/
body{
  overflow-x: hidden;
}

/*Fixed-footer*/
main {
  /* make sure to cover the screen */
  min-height: 100vh;
 
  /* need a solid bg to hide the footer */
  background: white;
 
  /* put on top */
  position: relative;
  z-index: 1;
}
 
#brx-footer  {
  /* place on the bottom */
  position: sticky;
  bottom: 0;
  left: 0;
}



/*Main-btn*/
.main-btn{
  position: relative;
  color: #ffffff;
  background-color: #2db5c5;
  border: 2px solid #2db5c5;
  cursor: pointer;
  overflow: hidden;
  z-index: 1; /* Ensures text remains above */
  transition: all 0.5s;
  padding: 0.85rem 2.5rem;
  border-radius: 5rem;
}



.main-btn::before {
  content: '';
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
  z-index: -1; /* Keeps the circle behind text */
}

.main-btn:hover::before {
  transform: translate(-50%, -50%) scale(50);
  color: #ffffff;
}

.main-btn:hover {
  color: #000000;
}



.icon-btn:hover .link-btn-icon{
  background-color: #2db5c5;
  color: #ffffff;
  fill: #ffffff;
  transition: all 0.5s;
}

.bg-clip{
  clip-path: circle(50.0% at 50% 50%);
}

.bg-clip-section video{
  width: 100% !important;
  height: 100% !important;
}

/*Header-mouse-icon-animation*/
.hero-learn-more-icon{
  animation: animate-translate 2.5s ease-in-out alternate infinite;
}
 
@keyframes animate-translate{
      0%{
        transform: translateY(0.8rem);
    }
   100%{
        transform: translateY(-0.8rem);
    }
}

/*Hero-animated-heading*/
.animated-header {
  --text-color: #ffffff00; /* Text fill color */
  --stroke-color: #ffffff; /* Outer stroke and fill color */
  --animation-duration: 5s; /* Duration of the animation */

  position: relative;
  color: var(--stroke-color);
  -webkit-text-stroke: 1px var(--stroke-color); /* Outer stroke */
  background: linear-gradient(
      90deg,
      var(--text-color) 50%,
      var(--stroke-color) 0
    )
    0 0 / 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-fill var(--animation-duration) linear infinite; /* Animation plays in loop */
}

/* Text fill animation starting from left to right */
@keyframes text-fill {
  0% {
    background-position: 200% 0; /* Start from the right */
  }
  100% {
    background-position: 0 0; /* End at the left */
  }
}

.footer-links{
	transition:all 0.5s;
}

.footer-links:after{
	content: '';
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition:all 0.5s;
}

.footer-links:hover::after{
	 width: 100%;
   transition:all 0.5s;
}

/*Single-services-cards*/
.single-services-cards:hover .single-services-cards-img-div img{
  transform: scale(1.2);
  filter: brightness(85%);
}

.single-services-cards:hover .single-services-cards-heading-div .single-services-cards-icon{
  transform: rotateZ(-25deg);
}

.home-project-cards:hover img{
  transform: scale(1.2);
  filter: brightness(85%)
}

/*Reverse-column*/
@media screen and ( max-width: 992px ) {
    .reverse-column {
        display: flex;
        flex-direction: column-reverse !important;
    }
} 


/*About-cards*/
.team-cards:hover .team-cards-img{
  transform: scale(1.1);
  filter: brightness(85%);
}

.team-cards:hover .team-cards-icon{
  transform: translateX(0);
}



/*Home-values-cards*/
.value-cards:hover .value-cards-img-div img{
  transform: scale(1.2);
  filter: brightness(85%);
}


/*Services-cards*/
.services-pg-cards:hover .services-pg-cards-learn-more-div{
  transform: translateY(0px);
}


/*About-pg-cards*/
.about-pg-cards:hover .about-pg-cards-img-div img{
 transform: scale(1.2);
 filter: brightness(85%);
}


/*CTA-form*/
form._3xdhYikyqjjaL4YBCSlHn7.crm-form.form-widget.form-widget-2.form-widget-FormConfigID-83091f5f-3663-40c8-a306-a5d88d8a6956.jsonform-hasrequired{
  padding: 0px !important;
}

.cta-form ._3xdhYikyqjjaL4YBCSlHn7 button:not(:disabled), ._3xdhYikyqjjaL4YBCSlHn7 [type=button]:not(:disabled), ._3xdhYikyqjjaL4YBCSlHn7 [type=reset]:not(:disabled), ._3xdhYikyqjjaL4YBCSlHn7 [type=submit]:not(:disabled){
   width: 100%;
   padding: 8px 0px 8px 0px;
   font-size: 18px;
}
.cta-form label{
  color: #000000;
}
.cta-form ._3xdhYikyqjjaL4YBCSlHn7 .form-control{
	padding:8px 20px 8px 20px!important;
  border-radius: 1rem;
}

.cta-form ._3xdhYikyqjjaL4YBCSlHn7 .form-select, ._3xdhYikyqjjaL4YBCSlHn7 select.form-control {
    font-size: 1.6rem!important;
    text-align: left;
}

.cta-form ._3xdhYikyqjjaL4YBCSlHn7 .form-control{
	font-size: 1.6rem!important;
	color:#000000!important;
}


.cta-form input[type="submit"] {
  border-radius: 1rem;
  background-color: #0f5719;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}