
/* START - CUSTOM SETTINGS

#Colors
#Video Height
#Font Families
#Font Sizes
#Font Weights
#Line Heights
#Letter Spacing
#Alignment
#Padding
#Margin
#Border Radius
#Shadows
#Max Widths
#Text Transformations
#Box Shadow
#Spacing
#Gap
#Opacity
#Button
*/

:root {
    /* General Colors */
    --color-primary-dark: #010A27;
    --color-primary: #011641;
    --color-accent-light: #B7D6F2;
    --color-light-gray: #EEEEEE;
    --color-medium-gray: #d7d9dc;
    --color-blockquote: #F5F5F5;
    --color-white: #FFFFFF;
    --color-accent-pink: #E9AFAF;
    --color-error-red: #E83338;
    --color-red: #e3383d;
    --color-black: #000000;
  
    /* Font Families */
    --font-heading: "Syne", sans-serif;
    --font-title: "Montserrat", sans-serif;
    --font-block: "Montserrat", sans-serif;
    --font-body: "Satoshi", sans-serif;
  
    /* Font Sizes */
    --font-size-xlarge: 10rem;
    --font-size-large: 8rem;
    --font-size-medium: 6rem;
    --font-size-small: 5rem;
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.375rem;
    --font-size-h6: 1.125rem;
    --font-size-body-special: 20px;
  
    /* Font Weights */
    --font-weight-thin: 100;
    --font-weight-extra-light: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;

    /* Line Heights */
    --line-height-tight: 90%;
    --line-height-normal: 120%;
    --line-height-relaxed: 140%;
    --line-height-loose: 160%;
    --line-height-body-special: 180%;
    --line-height-xs: 1.2;
    --line-height-sm: 1.4;
    --line-height-md: 1.6;
    --line-height-lg: 1.8;
    --line-height-xl: 2;

    /* Letter Spacing */
    --letter-spacing-tight: -0.5px;
    --letter-spacing-normal: 0px;
    --letter-spacing-wide: 0.5px;

    /* Alignment */
    --align-center: center;
    --align-left: left;
    --align-right: right;
    --justify-center: center;
    --justify-start: flex-start;
    --justify-end: flex-end;
    --justify-space-between: space-between;
    --justify-space-around: space-around;

    /* Padding */
    --padding-xs: 0.25rem;  /* 4px */
    --padding-sm: 0.5rem;   /* 8px */
    --padding-md: 1rem;     /* 16px */
    --padding-lg: 1.5rem;   /* 24px */
    --padding-xl: 2rem;     /* 32px */

    /* Margin */
    --margin-xs: 0.25rem;
    --margin-sm: 0.5rem;
    --margin-md: 1rem;
    --margin-lg: 1.5rem;
    --margin-xl: 2rem;

    /* Border Radius */
    --radius-xs: 0.125rem;  /* 2px */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-full: 50%;     /* Circle */

    /* Box Shadows */
    --shadow-xs: 0px 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0px 12px 24px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Gaps */
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    
    /* Max Widths */
    --max-width-xs: 20rem;  /* 320px */
    --max-width-sm: 30rem;  /* 480px */
    --max-width-md: 40rem;  /* 640px */
    --max-width-lg: 60rem;  /* 960px */
    --max-width-xl: 80rem;  /* 1280px */

    /* Opacity */
    --opacity-light: 0.3;
    --opacity-medium: 0.6;
    --opacity-dark: 0.9;

    /* Text Transformations */
    --text-transform-lowercase: lowercase;
    --text-transform-uppercase: uppercase;
    --text-transform-capitalize: capitalize;

    /* Button Styles */
    --button-bg-color: var(--color-primary);
    --button-text-color: #fff;
    --button-border-radius: 4px;
    --button-padding: 10px 20px;

    /* Video Height */
    --sm-video-height: 90vh;

    /* Padding */
    --button-padding-default: 13px 17px;
    --button-padding-small: 10px 15px;
    --button-padding-medium: 8px 35px;
    --button-padding-large: 15px 40px;

    /* Line Height */
    --button-line-height-large: 22px;

    /* Transition */
    --button-transition: all 0.3s ease 0s;

}
/* END - CUSTOM SETTINGS */

/* General Heading Styles */
.heading-xlarge { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-xlarge); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-tight);
    padding: var(--padding-xl);
}

.heading-large { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-large); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-normal);
    padding: var(--padding-lg);
}

.heading-medium { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-medium); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-normal);
    padding: var(--padding-md);
}

.heading-small { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-small); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-relaxed);
    padding: var(--padding-sm);
}

/* Heading Levels */
.heading-h1 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h1); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-loose); 
}

.heading-h2 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h2); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-relaxed); 
}

.heading-h3 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h3); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-loose); 
}

.heading-h4 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h4); 
    font-weight: var(--font-weight-regular); 
    line-height: 130%; 
}

.heading-h5 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h5); 
    font-weight: var(--font-weight-regular); 
    line-height: 130%; 
}

.heading-h6 { 
    font-family: var(--font-heading); 
    font-size: var(--font-size-h6); 
    font-weight: var(--font-weight-regular); 
    line-height: 130%; 
    text-decoration: none; 
}

/* Body Text Special */
.body-special { 
    color: var(--color-black); 
    background-color: #fdfbf5; 
    padding: 1rem; 
    font-family: var(--font-body); 
    font-size: var(--font-size-body-special); 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-body-special); 
}

/* Specific Heading Tags with Margin Reset */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0; 
    margin-bottom: 0; 
    line-height: var(--line-height-loose); /* Default for all */
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

/* Special title */
.spc-title-hero {
    font-family: var(--font-block);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-thin);
    line-height: var(--line-height-loose);
    text-transform: var(--text-transform-uppercase);  
    width: 75%; /* 75% of row width */
    background-color: transparent; /* Transparent background */
    color: var(--color-white); /* Set text color */
    padding: 3rem; /* Add padding */
    text-align: center; /* Center-align text */
    margin: 0 auto; /* Center in row */
}

.spc-title-lt {
    font-family: var(--font-block);
    font-size: var(--font-size-small);
    text-transform: var(--text-transform-uppercase);  
    width: 75%; /* 75% of row width */
    background-color: transparent; /* Transparent background */
    color: var(--color-primary); /* Set text color */
    padding: 2rem; /* Add padding */
    text-align: center; /* Center-align text */
    margin: 0 auto; /* Center in row */
}

.spc-title-md {
    font-family: var(--font-block);
    font-size: var(--font-size-medium);
    text-transform: var(--text-transform-uppercase);  
    width: 75%; /* 75% of row width */
    background-color: transparent; /* Transparent background */
    color: var(--color-accent-light); /* Set text color for contrast */
    padding: 2rem; /* Add padding */
    text-align: center; /* Center-align text */
    margin: 0 auto; /* Center in row */
}

.spc-title-lg {
    font-family: var(--font-block);
    font-size: var(--font-size-large);
    text-transform: var(--text-transform-uppercase);  
    width: 75%; /* 75% of row width */
    background-color: transparent; /* Transparent background */
    color: var(--color-white); /* Set text color for contrast on dark backgrounds */
    padding: 2rem; /* Add padding */
    text-align: center; /* Center-align text */
    margin: 0 auto; /* Center in row */
}

/* Blockquotes */
.spc-blockquote {
    height: 30vh;                  /* Full viewport height */
    background-color: var(--color-blockquote);    /* Light grey background */
    display: flex;                  /* Flexbox for centering */
    justify-content: center;        /* Center horizontally */
    align-items: center;            /* Center vertically */
  }
  .spc-blockquote-content {
    font-size: var(--font-size-small);
    width: 75%;                     /* 75% of row width */
    background-color: transparent;    /* White background for content */
    padding: 3rem;                /* Add padding */
    border-radius: 0rem;          /* Rounded corners */
    /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);*/ /* Subtle shadow for depth */
  }
  .svg-container {
    width: 100%;       
    height: auto;      
    /*justify-content: center;  Remove this line temporarily */
}


/* IMAGES */

.spc-fes7-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-image: url('/content/photo/07_construction.jpg') !important;
    z-index: 0;
}
.spc-img {
    padding: 100px 15px 0 0;
}
.wwa-row-bottom {
    padding-top: 40px;
}

.spc-img img {
    width: auto;
    max-height: 100vh;
}

.spc-fullwidth-img {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  
  .spc-img-fluid {
    width: 100%;
    /* height: auto; */
    max-height: 400px;
    object-fit: cover;
  }

  .fes7-img {
    background-size: cover; /* Ensures the image covers the area without stretching */
    height: 100%; /* Adjust height as needed */
}

/* #SPC BUTTON STYLES */

.spc-button {
    position: relative;
    display: inline-block;
    padding: 10px 15px; /* Default padding for small button */
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 0; /* Rectangular shape */
    transition: all 0.3s ease; /* Smooth hover transition */
}

/* Set the button size */

.spc-button.spc-small {
    padding: 10px 15px;
}
.spc-button.spc-medium {
    padding: 12px 24px; /* Adjust as needed for medium size */
}

/* Solid Button Variants */
.spc-button.spc-solid-medium-grey {
    background-color: var(--color-medium-grey);
    color: var(--color-primary-dark);
    border: none;
}
.spc-button.spc-solid-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}
.spc-button.spc-solid-red {
    background-color: var(--color-red);
    color: var(--color-primary-dark);
    border: none;
}

/* Bordered Button Variants */

/* Initial state: White border and font */
.spc-border-white {
    background-color: transparent; /* Transparent background */
    color: var(--color-white); /* White font color */
    border: 2px solid var(--color-white); /* White border */
}
.spc-border-black {
    background-color: transparent; /* Transparent background */
    color: var(--color-black); /* White font color */
    border: 2px solid var(--color-black); /* White border */
}

/* Hover Effects */

/* Hover state: Solid red background, red border, and white font */
.spc-hover-bg-red:hover {
    background-color: var(--color-error-red); /* Solid red background */
    color: var(--color-white); /* White font on hover */
    border-color: var(--color-error-red); /* Red border on hover */
}

.spc-button:hover {
    filter: brightness(90%);
}

.spc-button.spc-solid-primary:hover {
    background-color: var(--color-primary-dark);
}


/* ICONS */

.spc-icon {
    width: 50px; /* Set the width for the icons */
    height: 50px; /* Set the height for the icons */
}

.spc-icon-container {
    position: relative; /* Set the container as a reference for absolute positioning */
    display: inline-block; /* Ensure the container only takes the size of its content */
}

.spc-icon-container img {
    display: block; /* Prevent any inline spacing */
    width: 50px; /* Set a fixed size for the icon */
    height: 50px; /* Set a fixed size for the icon */
}

.spc-icon-container::after {
    content: '';
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e3383d; /* Desired overlay color */
    opacity: 0.6; /* Adjust opacity as needed */
    mix-blend-mode: multiply; /* Blend color with the icon */
    pointer-events: none; /* Allow clicks to go through */
    z-index: 1; /* Ensure the overlay is above the icon */
}

/* PADDING */
.spc-padding-top-xl {
    padding-top: var(--padding-xl); /* 32px */
}



#about .row.spc-align-items-stretch {
    height: auto;
}
.spc-img {
    height: 100%;
}
.spc-fes7-text-cont {
    height: 100%;
}

#services {
    padding-top: 90px;
    padding-bottom: 30px;
}

.spc-services-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 50px;
}

.spc-blockquote {
    height: auto;
}

#contact-form {
    padding-bottom: 80px;
}

.spc-footer {
    width: 100%;
    border-top: solid 1px rgb(64, 64, 71);
    padding-top: 10px;
}

/* SWAL ALERT */

.swal2-popup {
    width: 40rem; /* Adjust the width as needed */
    padding: 2rem; /* Adjust padding for a larger alert */
    font-family: 'Montserrat', sans-serif;
}

.swal2-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center icon */
}

.swal2-title, .swal2-content, .swal2-confirm {
    font-family: 'Montserrat', sans-serif;
}


.swal2-title {
    font-size: calc(60rem / 16) !important;
    padding: 0;
}

.swal2-html-container {
    font-size: calc(30rem / 16) !important;
    padding: 5px 0 0 0 !important;
}

.swal2-confirm {
    background-color: rgb(255, 255, 255); /* Set the button background color to white */
    border: solid 2px rgb(0, 0, 0); /* Set the border color to match */
    box-shadow: none !important /* Remove the default outline */;
    color: rgb(0, 0, 0); /* Set the text color to white for contrast */
    padding: 0px 30px; /* Add padding to the button */
}

/* MEDIA QUERIES */

@media (max-width: 991px) {

    .spc-blockquote {
        height: auto;
    }

    .fes2-main-text-cont.text-white {
        margin: 0;
    }

    .spc-services-col {
        height: auto;
    }

    .wwa-row-bottom {
        padding-top: 0px;
    }
}

@media (max-width: 768px) {

    .heading-xlarge {
        padding: 100px 0 0 0;
        font-size: calc(100rem / 16);
    }

    .sm-video-wrapper {
        height: 100vh;
    }

    .spc-fullwidth-img {
        padding-bottom: 50px;
    }

    .spc-services-row {
        flex-direction: column;
    }

    .spc-services-container {
        padding-bottom: 60px;
    }

    #services {
        padding: 20px;
        height: auto;
    }

    .spc-services-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
        padding: 30px 0;
    }

    .spc-img {
        padding-top: 50px;
    }

    .wwa-row-bottom {
        padding-top: 0px;
    }

    .sm-cont-middle {
        margin-bottom: 120px;
    }
    .spc-title-hero{
        line-height: normal;
        width: 100%;
    }

    .p-130-cont {
        padding-top: 0 !important;
    }

    .fes2-main-text-cont {
        padding: 0 0 0 0 !important;
    }

    .fes2-main-text-cont.text-white {
        margin: 0;
    }

    .heading-medium:not(.wwd-heading-medium) {
        padding: 0px;
    }

    .spc-fes7-text-cont {
        padding: 100px 0;
    }

    .spc-blockquote {
        height: auto;
        padding: 30px;
    }

    .spc-blockquote-content {
        width: 100%;
        font-size: calc(60rem / 16);
        line-height: normal;
        text-align: left;
    }

    .spc-blockquote-content span {
        line-height: normal;
        font-size: calc(80rem / 16);
        text-align: left;
    }

    .heading-large {
        text-align: left;
        padding: 0
        ;
    }

    .spc-form-row {
        height: auto;
    }

    .spc-form-col {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 0 0 0;
        width: 100%;
        height: auto;
    }

    #contact-form {
        padding-bottom: 0px;
    }

    .widget {
        margin-bottom: 30px;
    }

    .swal2-title {
        font-size: calc(60rem / 16) !important;
        padding: 0;
    }
    
    .swal2-html-container {
        font-size: calc(30rem / 16) !important;
        padding: 5px 0 0 0 !important;
    }
}


