:root {
    --primaryColor: #060557;
    --secondaryColor: #fc6100;
    --primaryColorLight: #e6e2f7;
    --textColor: #000000;
    --bodyWhite: #ffffff;
    --bodyLight: #777777;
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.4;
}

section {
    position: relative;
    z-index: 2;
}

.headText {
    font-family: 'Saira', sans-serif;
}

.siteBtn {
    background: var(--secondaryColor);
    color: var(--bodyWhite);
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 0.5em 1em 0.5em 1.5em;
    transition: all 0.2s ease-in-out;
}

.siteBtn::after {
    position: absolute;
    z-index: -1;
    background: var(--secondaryColor);
    inset: 0;
    content: "";
    border-radius: 5px;
    transform: skewX(-30deg) translateX(20px);
    box-shadow: 5px 5px 7px rgba(218, 58, 0, 0.2);
    transition: all 0.4s ease-in-out;
}

.siteBtn.siteBtnAlt,
.siteBtn.siteBtnAlt::after {
    background: var(--primaryColor);
}

.siteBtn.siteBtnAlt::after {
    box-shadow: 5px 5px 7px rgba(0, 22, 148, 0.2);
}

.siteBtn:hover,
.siteBtn:focus,
.siteBtn:active,
.siteBtn:hover::after,
.siteBtn:focus::after,
.siteBtn:active::after {
    color: var(--bodyWhite);
    box-shadow: none;
}


/*-------------- Site Header -----------*/

.siteHeader {
    position: relative;
    z-index: 99;
    background: var(--bodyWhite);
}

.siteHeader::after {
    position: absolute;
    z-index: -1;
    inset: auto 0 0 0;
    content: "";
    height: 50px;
    background: var(--primaryColor);
}

.siteLogo {
    width: 220px;
    height: auto;
    background: var(--bodyWhite);
}

.siteHeaderMenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    height: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.siteHeaderMenu ul li {
    display: inline-block;
}

.siteHeaderMenu a,
.siteHeaderMenu a:hover,
.siteHeaderMenu a:active,
.siteHeaderMenu a:focus {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5em 0;
}

.siteHeaderContact h6 {
    color: var(--secondaryColor);
    font-weight: 600;
}

.siteHeaderContact h5 a {
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    font-size: 1.1rem;
}

.siteHeaderContact h5 a:hover,
.siteHeaderContact h5 a:focus,
.siteHeaderContact h5 a:active {
    color: var(--secondaryColor);
}

.sep {
    width: 1px;
    height: 30px;
    background: var(--bodyLight);
}


/*---------- siteBannerCarousel ----------*/

.carousel-item {
    height: 500px;
    position: relative;
}

.carousel-item::before {
    position: absolute;
    content: "";
    z-index: -1;
    background: linear-gradient(to right, var(--bodyWhite), var(--primaryColorLight));
    inset: 0 auto 0 0;
    width: 55%;
}

.carouselImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    height: 400px;
    width: 700px;
    z-index: 2;
}

.carouselImage img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: left center;
    object-position: left center;
}

.carouselContent {
    position: relative;
    z-index: 3;
}

.carouselContent p {
    font-size: 1.1rem;
}

.carouselContent h2 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.05;
}

/*---------- about -------------*/

.siteSection {
    padding: 8rem 0;
}

.sectionSubHead {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--secondaryColor);
}

.sectionHead {
    font-size: 2.4rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0;
    padding-bottom: 0.5em;
    color: var(--primaryColor);
    line-height: 1.1;
}

.bestPoints h6 {
    margin: 0;
    position: relative;
    z-index: 1;
    padding-left: 55px;
}

.bestPoints h6::before {
    position: absolute;
    z-index: 1;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--primaryColor);
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-color: white;
}

.bestPoints h6.one::before {
    background-image: url(../assets/icons/icon-01.png);
}

.bestPoints h6.two::before {
    background-image: url(../assets/icons/icon-02.png);
}

.bestPoints h6.three::before {
    background-image: url(../assets/icons/icon-03.png);
}

.aboutImageWrap {
    position: relative;
    z-index: 1;
    height: 100%;
}

.aboutImageWrap .img002 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: auto;
    z-index: 3;
    border: 8px solid #fff;
    transform: translateY(20%);
    box-shadow: 5px 5px 15px rgba(0, 22, 148, 0.2);
}

.siteSection .img001 {
    width: auto;
    height: 415px;
    position: relative;
    z-index: 2;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center;
    object-position: center;
}

.serviceWrap {
    border: 1px solid var(--primaryColorLight);
    border-radius: 10px;
    padding: 40px 15px 5px;
    box-shadow: 0px 5px 15px -5px rgba(0, 22, 148, 0.15);
    height: 200px;
    background-color: white;
}

.serviceWrap.alt {
    background: url(../assets/Images/cable_tray_bg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--bodyWhite);
}

.serviceWrap img {
    background: linear-gradient(45deg, var(--primaryColor), var(--secondaryColor));
    padding: 15px;
    border-radius: 5px;
}

.serviceWrap h5 {
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0;
    padding-top: 1em;
}

.serviceWrap h3 {
    font-size: 1.4rem;
    margin: 0;
    padding-bottom: 1em;
    font-weight: 400;
}

.cta-section {
    background: var(--primaryColor);
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
}

.projectWrap {
    width: 100%;
    height: 250px;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid var(--primaryColorLight);
    overflow: hidden;
    box-shadow: 0px 5px 15px -5px rgba(0, 22, 148, 0.15);
}

.all-projects .projectWrap {
    height: 350px;
}

.projectWrap img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center;
    object-position: center;
    position: relative;
    z-index: 1;
}

.projectWrap .projectWrapDesc {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    background: linear-gradient(45deg, var(--primaryColor), var(--secondaryColor));
    padding: 10px 15px;
    color: var(--bodyWhite);
}

.all-projects .projectWrap .projectWrapDesc {
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
}

.all-projects .projectWrap:hover .projectWrapDesc {
    transform: translateY(0%);
}

.projectWrap .projectWrapDesc.alt {
    background: #fc6100dd;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.siteBtn.outlined {
    background: transparent;
    border: 1px solid white;
    font-size: 0.9rem;
}

.siteBtn.outlined::after {
    display: none;
}

.projectWrapDesc h5 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projectWrapDesc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-top {
    background: var(--primaryColorLight);
}

.footer-top h2 a {
    text-decoration: none !important;
    color: var(--secondaryColor) !important ;
}

.footer-top .sectionSubHead {
    color: var(--textColor);
}

.siteFooter {
    background: #111;
}

.footerBottom {
    background: #000000;
    text-transform: uppercase;
}

.footerBottom small {
    font-size: 0.7rem;
}

.siteFooter a {
    color: var(--bodyWhite);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.siteFooter a:hover,
.siteFooter a:active,
.siteFooter a:focus {
    color: var(--secondaryColor);
    text-decoration: underline;
}

.siteFooter h2 {
    font-weight: 600;
    font-size: 1.8rem;
}

.siteFooter ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.siteFooter ul li {
    padding: 7px;
}

.hamburger {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 7px;
    background: url(../assets/icons/hamburger.svg);
    background-size: 90% auto;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.fixed-header {
    position: fixed;
    z-index: 999;
    inset: 0 0 auto;
    box-shadow: 0px 5px 15px -5px rgba(0, 22, 148, 0.2);
    background: white;
    transform: translateY(-120%);
    transition: all 0.5s ease-in-out;
}

.fixed-header.active {
    transform: translateY(0%);
}

.fixed-header img {
    width: 60px;
    transform-origin: left center;
    transform: scale(1.5);
}

.fixed-navigation ul {
    margin: 0;
    padding: 0;
}

.fixed-navigation ul li {
    display: inline-block;
    padding-left: 30px;
}

.fixed-navigation a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--primaryColor) !important;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.4em 0;
}

.fixed-header .hamburger {
    background-color: var(--primaryColor);
}

.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    max-width: 400px;
    width: 100%;
    z-index: 9999;
    background: var(--primaryColor);
    display: flex;
    align-items: center;
    box-shadow: -5px 0px 15px rgba(0, 22, 148, 0.2);
    transform: translateX(120%);
    transition: all 0.5s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
    background: white;
    cursor: pointer;
}

.mobile-nav-close::after,
.mobile-nav-close::before {
    position: absolute;
    content: "";
    z-index: 2;
    width: 2px;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--bodyLight);
}

.mobile-nav-close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links ul {
    margin: 0;
    padding: 3rem;
    list-style-type: none;
}

.mobile-nav-links li {
    padding: 0.5rem 0;
}

.mobile-nav-links a {
    text-decoration: none !important;
    color: var(--bodyWhite) !important;
    font-family: 'Saira', sans-serif;
    font-size: 1.5rem;
    padding: 0.4em 0.1em;
}

.modal-dialog {
    max-width: 700px;
}

.form-group p {
    font-size: 15px;
}

.form-group input {
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: none !important;
}

.form-control::file-selector-button {
    height: 50px;
}

.form-group textarea {
    font-size: 16px;
    font-weight: 400;
    box-shadow: none !important;
}

.btnSubmit {
    background: var(--secondaryColor);
    color: var(--bodyWhite) !important;
    box-shadow: none !important;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    width: 100%;
    height: 50px;
}

.pageTitle {
    background: url(../assets/Images/pageTitleBG.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pageTitle h1 {
    font-weight: 600;
}

.contact a {
    text-decoration: none !important;
    color: var(--textColor) !important;
    font-size: 1.1em;
}

.missionWrap {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primaryColorLight);
    overflow: hidden;
    box-shadow: 0px 5px 15px -5px rgba(0, 22, 148, 0.15);
}

.missionWrap::before {
    position: absolute;
    z-index: 1;
    content: "";
    inset: 0 auto 0 0;
    width: 8px;
    border-radius: 8px;
    background: linear-gradient( var(--primaryColor), var(--secondaryColor));
}

.missionWrap h4 {
    font-weight: 600;
}

.projectFilter {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.projectFilter li {
    padding: 0.5em;
    font-size: 1rem;
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    margin: 0.5rem 1rem;
    cursor: pointer;
}

.projectFilter li.active {
    color: var(--secondaryColor);
}

.serviceSubHead {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.serviceSubHead::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--secondaryColor);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -2;
}

.serviceSubHead::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 350px;
    background: white;
}

.serviceHolder {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.serviceHolder img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 350px;
    height: 350px;
}

.serviceHolder .serviceDesc {
    position: absolute;
    background: white;
    z-index: 2;
    inset: 50% 0 auto 150px;
    height: 270px;
    min-height: 270px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 5px 5px 15px -5px rgba(0, 22, 148, 0.2);
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
}

.serviceHolder .serviceDesc h4 {
    font-weight: 600;
    font-size: 1.3rem;
}

.serviceHolder .serviceDesc ul {
    height: 140px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.serviceHolder:hover .serviceDesc,
.serviceHolder:hover .serviceDesc ul  {
    height: auto;
}

.serviceHolderAlt img {
    width: 100%;
    max-height: 250px;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center;
    object-position: center;
}

.serviceHolderAlt .serviceDesc {
    height: auto;
    min-height: auto;
    inset: auto 0 0 50px;
    transform: none;
}

.error {
    color: #f00;
font-size: 12px;
font-weight: 500;
}

#formResponseText {
    font-size: 14px;
font-weight: 500;
}

.contactPage .footer-top {
    display: none !important;
}