:root {
    /*--accent-color: #4CEE02;*/
    --accent-color: #007c8a;
    /*--accent-color: #62d52d;*/
    --light-accent-color: #007d8b;
    --dark-accent-color: #005c6b;
    --swiper-theme-color: #007c8a;
    --swiper-pagination-color: #007c8a;
    --black-color: #222;
    --white-color: #fff;
    --light-white-color: #f0f0f0;
    --gray-light: #eee;
    --gray: #ccc;
    --text-color: #222;
    --text-dark: #111;
    --text-light: #666666;
    --max-width: 1320px;
    --max-width-wide: 1400px;
    --top-bar-height: 44px;
    --navbar-height: 120px;
    --navbar-height-mobile: 90px;
    --bs-btn-padding-y : 30px;
    --bs-btn-padding-x : 24px;

    --border-radius-small: 10px;
    --border-radius: 12px;
    --border-radius-large: 22px;
    --border-radius-x-large: 30px;
    --footer-color: #f8f8f8;
    --footer-text-color: #666;
    --footer-dark-color: #333;

    --spacing-xxl : 80px;
}
body {
    font-family: 'Gabarito', sans-serif;
    color: var(--text-color);
    font-size: 18px;
    font-optical-sizing: auto;
}

@media (min-width: 1800px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: min(var(--max-width-wide), 100%);
    }
}


* {
    --bs-gutter-x : 40px;
}
body p {
    margin-bottom: 20px;
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.h4 {
    font-size: 1.2em;
    line-height: 1.5;
}

.h5 {
    font-size: 1.1em;
    line-height: 1.6;
}
.desc-font {
    font-size: 1.1em;
}
.custom-font {
    font-family: 'Gabarito', sans-serif;
}
.regular-font {
    font-family: 'Gabarito', sans-serif !important;
}
.align-baseline {
    align-items: baseline;
}
.quick-animated {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.animated {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.has-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*object-fit: none;*/ /* this ruins how the image will respond */
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
}

.bg-24 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: none;
    object-position: right;
    overflow: hidden;
}

.op-animated {
    -webkit-transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
}
.darken-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.op0 {
    opacity: 0;
}

.op1 {
    opacity: 1;
}

a.underline {
    text-decoration: underline;
}
a:not(.btn), .btn-link {
    /*color: var(--accent-color);*/
    color: var(--white-color);
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}

.btn-link {
    text-decoration: underline;
}

a:hover, .btn-link:hover {
    color: var(--dark-accent-color);
    text-decoration: none;
}
img {
    max-width: 100%;
}

.subtitle {
    margin-top: 0;
    font-size: 1.1em;
    font-weight: 400;
    color:#666;
}

.big-font {
    font-size: 2.0em
}

.extra-big-font {
    font-size: 2.6em;
    line-height: 1;
}
.custom-size {
    font-size: 2.1em;
}
@media (max-width: 992px) {
    .big-font {
        font-size: 1.7em
    }
    .subtitle {
        font-size: 1.1em;
    }

    .extra-big-font {
        font-size: 2em;
    }
    .custom-size {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .extra-big-font {
        font-size: 1.6em;
    }
}

.thick {
    font-weight: 900;
}
.semibold, .medium {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.thin {
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase
}

.icon-margin-4 {
    margin-right: 4px
}

.icon-margin-8 {
    margin-right: 8px
}

.icon-margin-12 {
    margin-right: 12px
}

.icon-margin-18 {
    margin-right: 18px
}

.icon-margin-24 {
    margin-right: 24px
}

.icon-margin-top-8 {
    margin-top: 8px
}

.icon-margin-top-12 {
    margin-top: 12px
}

.icon-margin-top-18 {
    margin-top: 18px
}

.icon-margin-top-24 {
    margin-top: 24px
}

.cls {
    clear: both
}

.relative {
    position: relative
}

.marginer {
    display: block;
    clear: both;
    height: 1px;
    margin: 32px auto
}

.spacer-invis {
    display: block;
    clear: both;
    height: 1px;
    margin: 18px auto
}

.spacer-tiny {
    display: block;
    clear: both;
    height: 1px;
    margin: 8px auto
}
.text-light {
    color: var(--text-light) !important;
}
.hashed {
    color: #999 !important
}

.push-5 {
    margin-bottom: 5px;
}

.push-5-t {
    margin-top: 5px;
}

.push-10 {
    margin-bottom: 10px;
}

.push-10-t {
    margin-top: 10px;
}

.push-20 {
    margin-bottom: 20px;
}

.push-20-t {
    margin-top: 20px;
}

.push-30 {
    margin-bottom: 30px;
}

.push-30-t {
    margin-top: 30px;
}

.p300 {
    font-weight: 300;
}

.p400 {
    font-weight: 400;
}

.p700 {
    font-weight: 700;
}

.p900 {
    font-weight: 900;
}
.full-height {
    height: 100%;
}

.padding-10 {
    padding: 10px;
}

.padding-20 {
    padding: 20px;
}
.font-1-1 {
    font-size: 1.1em;
}
.font-1-2 {
    font-size: 1.25em;
}
.justify-content-center {
    justify-content: center;
}
.no-b {
    border: none;
}
.btn {
    padding: 10px 24px;
    border-radius: var(--border-radius);
}
.btn:not(.btn-rounded):not(.btn-lg) {
    border: none !important;
}
.btn-rounded {
    border-radius: 50px;
}
.btn-outline {
    border: 2px solid var(--accent-color) !important;
    background-color: transparent !important;
}
.btn-default {
    background-color: var(--light-white-color);
}
.btn-default:hover, .btn-default:focus {
    background-color: #eee;
}
.btn-dark {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
    font-weight: 500;
    /*font-size: 1em;*/
}
.btn:not(.btn-lg):not(.btn-sm) {
    font-size: 1em;
}
.btn-black {
    background-color: var(--black-color);
    border: 2px solid var(--black-color);
    color: white;
    font-weight: 500;
}
.btn-black:hover, .btn-black:focus {
    background-color: var(--text-dark);
    border: 2px solid var(--text-dark);
    color: white;
    font-weight: 500;
}
.brand {
    color: var(--accent-color) !important;
}

.btn-dark:hover {
    color: #fff;
    background-color: var(--dark-accent-color);
    border-color: var(--dark-accent-color);
}

.btn-wide {
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.btn-x-wide {
    padding-left: 72px !important;
    padding-right: 72px !important;
}


.hero-text {
    font-size: 3.3em;
}

@media (max-width: 992px) {
    .hero-text {
        font-size: 2.1em;
    }
    .inner-banner h4.bold {
        font-size: 1.2em;
    }
    .btn-wide {
        padding-left: 24px;
        padding-right: 24px;
    }
    .btn-x-wide {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/*
general
 */

.section {
    position: relative;
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}
.first-section {
    padding: 70px 0 120px 0;
}
.section-extra-padding {
    padding: 160px 0;
}
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
        position: relative;
    }
    .section-extra-padding {
        padding: 90px 0;
    }
}
.section-grey, .bg-grey {
    background-color: #f8f8f8;
}
.section-light-grey, .bg-grey {
    background-color: var(--gray-light);
}
.section-green {
    background-color: var(--accent-color);
    }
.section-green-text-container {
    max-width: 400px;
    margin-top: -50px;
    }
.section-green-text {
    font-size: 2.3em;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    max-height: 500px;
    position: absolute;
    padding: 150px 100px 150px 0px;
    color: #fff;
    }
.section-green-desc {
	padding:0 60px 40px 0;
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: 400;
	color: #fff;
    position: absolute;
    padding: 450px 100px 150px 0px;
}

.section-black, .bg-black {
    background-color: var(--black-color);
    max-height: 500px;
}
.section-white, .bg-white {
    background-color: #fff;
}
.section-dark, .bg-dark {
    background-color: var(--dark-accent-color);
}

.section-title {
    position: relative;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 20px;
    text-transform: uppercase;
}
.text-effect {
    position: relative;
    padding-top: 20px;
}
/*.section-title:after, .text-effect:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    display: block;*/
/*    height: 6px;*/
/*    border-radius: 4px;*/
/*    background-color: var(--accent-color);*/
/*    left: 0;*/
/*    top: -6px;*/
/*    width: min(10%, 60px);*/
/*}*/

.text-effect.text-effect-short:after {
    width: min(40px, 20%);
}

.section-title.text-center:after, .text-effect.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/*
input
 */
.contact-form-container {
    margin-left: calc(-.25 * var(--bs-gutter-x));
}
.input {
    border-radius: var(--border-radius-small);
    background-color: white;
    box-shadow: none;
    padding: 15px 20px;
    margin-bottom: 10px;
    caret-color: var(--text-color);
    border: 1px solid transparent;
}
.input:focus {
    box-shadow: 0 0 0 .25rem rgba(200,200,200,.25);
}
.input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--text-color);
    opacity: 0.4;
}

.input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--text-color);
    opacity: 0.4;
}

.input::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--text-color);
    opacity: 0.4;
}
select {
    color: var(--text-color);
}
select.no-val {
    color: #aaa;
}

option {
    font-weight: 400 !important;
    font-family: sans-serif;
}

/*
footer
 */
footer {
    background-color: var(--footer-color);
    padding: 60px 60px 20px 30px;
	max-width: min(var(--max-width-wide), 100%);
	margin: 0 auto;
	border-radius: 100px 100px 0 0;
}

.footer-logo img {
    max-width: 340px;
}

.footer-title {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    /*border-bottom: 1px solid white;*/

}

.footer-column {
    color: var(--footer-text-color);
    /*padding-top: 30px;*/
}
.footer-column a {
    color: var(--footer-text-color);
}
.footer-column a:hover {
    color: var(--footer-dark-color);
}
.footer-link {
    display: block;
    padding: 7px 5px;
}
.footer-link:before {
    content: '-';
    display: inline-block;
    margin-right: 10px;
}
.footer-socials a {
    display: inline-block;
    padding: 10px;
    margin-right: 5px;
}

.footer-title {
    color: var(--footer-dark-color);
    margin-top:  0px;
    font-weight: 900;
}

.bottom-bar {
    padding: 30px 0 20px 0;
    color: var(--footer-text-color);
    font-size: 0.9em;
    border-top: 1px solid #007c8a;
    margin-top: 40px;
}
.bottom-bar a {
    color: #666;
}
@media (max-width: 992px) {
    footer {
        padding: 70px 20px 10px 20px;
    }
    .footer-title {
        margin-top: 60px;
    }
}
#top-of-the-site {
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
}
/*
Project cards
 */
.project-card {
    display: block;
    /*border-radius: var(--border-radius);*/
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.project-card .project-thumb {
    object-fit: cover;
    object-position: center;
}
.project-card .card-shader {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    z-index: 0;
}
.project-card span {
    position: absolute;
    display: inline-block;
    color: white;
    z-index: 1;
    left: min(30px, 10%);
    bottom: min(30px, 10%);
    font-size: 1.2em;
    font-weight: 600;
}
/*
Icon cards
 */
.icon-card {
    margin-bottom: 1.75rem;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color);
    height: calc(100% - 2rem);
}
.icon-card h4 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    margin-top: 1.65rem;
}
.icon-card h4 small {
    display: block;
    color: #999;
    font-size: 0.7em;
}

.icon-card p {
    color: var(--text-light);
}

/*
Product cat cards
 */
.product-cat {
    display: flex;
    align-items: center;
}
.product-cat img {
    border-radius: var(--border-radius);
    width: 250px;
}
.product-cat .product-cat-content {
    padding: 10px 10px 20px 30px;
    width: 90%;
    flex-grow: 1;
    color: var(--text-color);
}
.product-cat .product-cat-content h4 {
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}
.product-cat .product-cat-content h4:after {
    height: 2px;
}
.product-cat .product-cat-content h4 span{
    color: var(--accent-color);
    display: inline-block;
    padding-right: 14px;
    margin-right: 14px;
    font-weight: 600;
    border-right: 2px solid #ccc;
}
.product-cat .product-cat-content h4 span:after{

}
.product-cat .product-cat-content p {
    margin-bottom: 0;
}

/*
Imagination
 */
.imagination {
    padding: 20px;
    background-color: var(--accent-color);
    color: white;
    
    border-radius: 0;
}
@media (max-width: 768px) {
    .imagination {
        padding: 40px 30px;
    }
}

.technical-card img{
    width: 100%;
}

.technical-card span {
    text-align: center;
    font-size: 1.4em;
    width: 100%;
    left: 0;
    font-weight: 600;
}
/*
Icon for cta
 */
.add-icon {
    position: relative;
}
.add-icon img {
    position: absolute;
    top: -110%;
    transform: translateX(-70%);
}
@media (max-width: 992px) {
    .add-icon img {
        top: -130%;
        width: 170px;
    }
}

@media (max-width: 768px) {
    .add-icon img {
        width: 140px;
    }
}
/**
    Service cards
     */
.service-card {
    display: block;
    border-radius: var(--border-radius-small);
    background-color: #f8f8f8;
    padding: 35px ;
    text-align: left;
    min-height: 580px;
    position: relative;
    margin: 20px 5px;
}

.service-card p {
    color: var(--text-light);
}
.service-card h4 {
    color: var(--text-color);
}
.service-card:hover {
    border-radius: var(--border-radius-small);

}
.service-card:hover::before {
    border-radius: var(--border-radius-small);
    opacity: 1;
}
/**
Accordion override
 */
.accordion-header {
    margin-top: 0;
    padding: 0;
}
.accordion-button {
    border-radius: var(--border-radius) !important;
    font-size: 24px;
    font-weight: 600;
}
.accordion-body {
    font-size: 24px;
    background: #f8f8f8;
    border-radius: 10px;
    margin:10px;
    color: #666;
    padding:20px 50px;
}
.accordion-button.collapsed:hover {
    background-color: var(--accent-color);
    color:var(--white-color);
}
.accordion-button:focus {
    box-shadow: none;
    background-color: var(--accent-color);
    color:var(--white-color);
    /*box-shadow: var(--bs-accordion-btn-focus-box-shadow);*/
}
.accordion-button:not(.collapsed) {
    color: var(--white-color);
    background: linear-gradient(135deg, #222222, #007c8a);
    padding-left:50px;
    /*box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);*/
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    color: var(--white-color);


}

/* --- New section for the hard hats image and text layout --- */
.two-column-feature-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
    max-width:  min(var(--max-width-wide), 100%);
}

.feature-image-left {
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

/* If they should not have a background like the screenshot, remove background-color and box-shadow */
/*
.feature-text-block {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
*/

/* New button style for this section */
.btn-dark-outline-alt {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-dark-outline-alt:hover {
    border: 2px solid transparent;
    background-color: var(--accent-color);
    color: var(--white-color);
}


/* Responsive adjustments for this specific section */
@media (max-width: 991px) { /* On tablets, stack the image and text columns */
    .feature-image-left {
        height: 300px; /* Adjust height for smaller screens */
    }
    .feature-text-block {
        text-align: center; /* Center text on smaller screens if desired */
    }
    .btn-dark-outline-alt {
        width: auto; /* Buttons might be full width by default in basic cols */
    }
}

/* ------------------------------------ */
/* 11. Area Cards (Areas We Service)   */
/* ------------------------------------ */
.area-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-image {
    width: 100%;
    height: 100%; /* Fixed height for image */
    border-radius: 8px;
    object-fit: cover;
}

.area-title {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    padding:10px 0;
}

.area-list {
    font-size: 24px;
    text-align: left;
    flex-grow: 1;
    padding:10px 0;
    
}

.area-list li {
    padding:10px 0;
    color:#666666;
}
/*
Floating form
 */
.imagination {
    color: white;
}
.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.radio-label {
    border: 2px solid #ffffffaa;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #ffffffaa;
    font-weight: 600;
    flex: 1;
}

.radio-label:hover {
    background: #d33;
    color: #fff;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-label {
    background: #fff;
    color: var(--text-color);
}
@media (max-width: 600px) {
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
}
.cta-red-cover {
    background-color: var(--accent-color);
    opacity: 0.9;
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}
.cta-red-cover img.left-cover {
    position: absolute;
    height: 100%;
    right: 100%;
}
.cta-red-cover img.top-cover {
    right: 0;
    width: 100%;
}
@media (max-width: 992px) {
    .cta-red-cover {
        width: 70%;
    }
}
/**
    Why cards
     */
.why-us {
    display: block;
    padding: 25px 35px 0 35px;
    text-align: left;
    position: relative;
    margin: 0 5px;
}

.why-us p {
    color: var(--text-light);
}
.why-us h4 {
    color: var(--text-color);
}
.why-us:hover {
    border-radius: var(--border-radius-small);

}
.why-us:hover::before {
    border-radius: var(--border-radius-small);
    opacity: 1;
}
@media (max-width: 992px) {
    .why-us {
        padding: 15px 25px 0 25px;
    }

}

#floating-form-section {
  position: relative;
  overflow: hidden;
}

#floating-form-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


#floating-form-section .container,
#floating-form-section .container > .row,
#floating-form-section .imagination {
  position: relative;
  z-index: 1;
}


#floating-form-section .section-green-text,
#floating-form-section .section-green-desc,
#floating-form-section .btn-dark-outline-alt {
  margin-bottom: 1rem;
}


@media (max-width: 768px) {
  #floating-form-section .col-md-4,
  #floating-form-section .col-lg-5,
  #floating-form-section .offset-lg-8 {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }

  #floating-form-section h1,
  #floating-form-section p {
    text-align: center;
  }

  #floating-form-section .btn-dark-outline-alt {
    display: inline-block;
    margin: 0.5rem;
  }
}

/*
Location Areas
 */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-top: 0.7rem;
}
.service-areas a:not(.btn) {
    padding: 4px 18px;
    margin: 4px 4px;
    background-color: #f5f5f5;
    color: var(--text-light);
    border-radius: 5px;
}
.service-areas a:not(.btn):hover {
    background-color: var(--accent-color);
    color: white;
}