﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Share+Tech&display=swap');

:root {
    --c-main: #F26520;
    --c-main-darker: #1d5679;
    --c-main-lighter: #999999;
    --c-dark: #000000;
    --c-darker: #d50c0c;
    --c-light: #fff;
    --c-top-bar: #F26520;

    --space-0: 0;
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 1rem;     /* 16px */
    --space-4: 1.5rem;   /* 24px */
    --space-5: 3rem;     /* 48px */
}

/* === MARGIN (all sides) === */
.m-0 { margin: var(--space-0) !important; }
.m-1 { margin: var(--space-1) !important; }
.m-2 { margin: var(--space-2) !important; }
.m-3 { margin: var(--space-3) !important; }
.m-4 { margin: var(--space-4) !important; }
.m-5 { margin: var(--space-5) !important; }

/* === MARGIN DIRECTIONS === */
.mt-0 { margin-top: var(--space-0) !important; }
.mt-1 { margin-top: var(--space-1) !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-5 { margin-top: var(--space-5) !important; }

.mb-0 { margin-bottom: var(--space-0) !important; }
.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }

.ml-0 { margin-left: var(--space-0) !important; }
.ml-1 { margin-left: var(--space-1) !important; }
.ml-2 { margin-left: var(--space-2) !important; }
.ml-3 { margin-left: var(--space-3) !important; }
.ml-4 { margin-left: var(--space-4) !important; }
.ml-5 { margin-left: var(--space-5) !important; }

.mr-0 { margin-right: var(--space-0) !important; }
.mr-1 { margin-right: var(--space-1) !important; }
.mr-2 { margin-right: var(--space-2) !important; }
.mr-3 { margin-right: var(--space-3) !important; }
.mr-4 { margin-right: var(--space-4) !important; }
.mr-5 { margin-right: var(--space-5) !important; }

/* === PADDING (all sides) === */
.p-0 { padding: var(--space-0) !important; }
.p-1 { padding: var(--space-1) !important; }
.p-2 { padding: var(--space-2) !important; }
.p-3 { padding: var(--space-3) !important; }
.p-4 { padding: var(--space-4) !important; }
.p-5 { padding: var(--space-5) !important; }

/* === PADDING DIRECTIONS === */
.pt-0 { padding-top: var(--space-0) !important; }
.pt-1 { padding-top: var(--space-1) !important; }
.pt-2 { padding-top: var(--space-2) !important; }
.pt-3 { padding-top: var(--space-3) !important; }
.pt-4 { padding-top: var(--space-4) !important; }
.pt-5 { padding-top: var(--space-5) !important; }

.pb-0 { padding-bottom: var(--space-0) !important; }
.pb-1 { padding-bottom: var(--space-1) !important; }
.pb-2 { padding-bottom: var(--space-2) !important; }
.pb-3 { padding-bottom: var(--space-3) !important; }
.pb-4 { padding-bottom: var(--space-4) !important; }
.pb-5 { padding-bottom: var(--space-5) !important; }

.pl-0 { padding-left: var(--space-0) !important; }
.pl-1 { padding-left: var(--space-1) !important; }
.pl-2 { padding-left: var(--space-2) !important; }
.pl-3 { padding-left: var(--space-3) !important; }
.pl-4 { padding-left: var(--space-4) !important; }
.pl-5 { padding-left: var(--space-5) !important; }

.pr-0 { padding-right: var(--space-0) !important; }
.pr-1 { padding-right: var(--space-1) !important; }
.pr-2 { padding-right: var(--space-2) !important; }
.pr-3 { padding-right: var(--space-3) !important; }
.pr-4 { padding-right: var(--space-4) !important; }
.pr-5 { padding-right: var(--space-5) !important; }

body {
    background: #333;
    font-family: "Open Sans", sans-serif;
    color: var(--c-dark);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1, .h1 {
    font-family: "tiller", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--c-dark);
    font-size: 50px;
    text-transform: uppercase
}

h2 {
    font-family: "tiller", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--c-dark);
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 0
}

h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-family: "tiller", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
    color: var(--c-dark)
}

h4 {
    color: var(--c-dark)
}

.service-page h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 35px !important;
    margin-top: 0px
}

.service-page h4:after {
    content: '';
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: -3px;
    background: var(--c-main);
    left: 0
}

.nowrap {
    white-space: nowrap
}

.clear {
    clear: both
}

.clear:before,
.clear:after {
    clear: both;
    content: '';
    display: table
}

@media (max-width: 767px) {

    .pull-left,
    .pull-right {
        float: none;
        clear: both
    }
}

a {
    text-decoration: none !important;
    color: initial;
    cursor: pointer;
    outline: none !important
}

a:hover,
a:focus,
a:active {
    color: initial
}

.btn {
    border-radius: 0 !important;
    padding: 13px 38px;
    background: var(--c-dark);
    color: var(--c-light);
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.1s ease-in-out
}

.btn-lg {
    border-radius: 0 !important;
    margin:auto;
    padding: 13px 38px;
    color: #000;;
    font-size: 45px;
    font-family: "Open Sans", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.1s ease-in-out
}
.btn i {
    padding-left: 5px
}



.site-wrap {
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    background: var(--c-light)
}

head {
    padding-bottom: 150px;
    width: 100%;
    display: inline-block
}

@media (max-width: 767px) {
    head {
        padding-bottom: 86px
    }
}

header {
    font-family: "Open Sans", sans-serif;
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 100;
    width: 100%;
    margin: 0 auto;
    top: 0;
    left: 0;
    transition: all 0.2s ease
}

header a {
    color: #000;
}

header .header-phone {
    background: #000;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    padding: 15px 0;
    background: -webkit-linear-gradient(48deg, #fff 45%, var(--c-top-bar) 0%);
    background: -moz-linear-gradient(48deg, #fff 45%, var(--c-top-bar) 0%);
    background: -ms-linear-gradient(48deg, #fff 45%, var(--c-top-bar) 0%);
    background: -o-linear-gradient(48deg, #fff 45%, var(--c-top-bar) 0%);
    background: linear-gradient(48deg, #fff 45%, var(--c-top-bar) 0%)
}

@media (max-width: 991px) {
    header .header-phone {
        background: -webkit-linear-gradient(48deg, #fff 35%, var(--c-top-bar) 0%);
        background: -moz-linear-gradient(48deg, #fff 35%, var(--c-top-bar) 0%);
        background: -ms-linear-gradient(48deg, #fff 35%, var(--c-top-bar) 0%);
        background: -o-linear-gradient(48deg, #fff 35%, var(--c-top-bar) 0%);
        background: linear-gradient(48deg, #fff 35%, var(--c-top-bar) 0%)
    }
}

@media (max-width: 767px) {
    header .header-phone {
        display: none
    }
}

header .header-phone a {
    font-weight: 900;
    font-size:20px;
    color: var(--c-light);
}

header .header-phone span {
    padding-left: 15px
}



header .logo .default,
header .logo .active {
    position: absolute;
    left: 0;
    transition: top .2s, opacity .2s
}

header .logo .default {
    top: 0;
    opacity: 1;
    z-index: 2
}



header .logo .default .logo-img img {
    max-width:450px;
    margin-top: -50px
}

@media (max-width: 1200px) {
    header .logo .default .logo-img img {
        max-width:400px;
        margin-top: -35px
    }
}

@media (max-width: 992px) {
    header .logo .default .logo-img img {
        max-width:250px;
        margin-top: 0px
    }
}

header .logo .active {
    opacity: 0;
    z-index: 1
}

header .logo .active .logo-img img {
    position: absolute;
    height: 51px;

    margin: 0;
    padding: 0;
    left: 15px;
    top: 19px
}

header .logo .active .logo-title {
    top: 16px;
    left: 0
}

header.fixed {
    position: fixed;
    margin-top: -54px
}

@media (min-width: 991px) {
    header.fixed nav a {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }

    header.fixed nav a:before {
        top: 23px
    }
}

header.fixed .logo .default {
    opacity: 0;
    z-index: 1
}

header.fixed .logo .active {
    opacity: 1;
    z-index: 2;
    top: 0;
    overflow: visible
}

@media (max-width: 767px) {
    header.fixed {
        margin-top: 0 !important
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    header.fixed {
        margin-top: 0 !important
    }

    header.fixed .logo .default {
        opacity: 1 !important;
        z-index: 2 !important;
        top: 0 !important
    }

    header.fixed .logo .active {
        opacity: 0 !important;
        z-index: 1 !important
    }
}



@media (max-width: 991px) {
    header .container {
        padding: 0 !important
    }

    header .container .logo {
        position: relative
    }

    header .container a:before {
        display: none !important
    }

    header .col-md-8 {
        padding: 0 5px !important
    }
}

@media (max-width: 767px) {
    header .logo .default {
        display: none
    }

    header .logo .active {
        opacity: 1;
        z-index: 2;
        top: 0;
        height: auto;
        overflow: visible
    }

    header .logo .logo-title {
        display: none
    }
}

header .nav-toggle {
    float: right;
    padding: 38px 0px;
    font-size: 20px;
    position: relative;
    line-height: 21px
}


header .nav-toggle .lnr-cross {
    position: absolute;
    right: 20px;
    top: -50px;
    opacity: 0;

}

@media (max-width: 991px) {
    header .nav-toggle {
        padding: 37px 20px 38px
    }
}

@media (max-width: 767px) {
    header .nav-toggle {
        padding: 34px 20px 32px !important
    }
}

header .nav-toggle.active .lnr-menu {
    opacity: 0
}

header .nav-toggle.active .lnr-cross {
    top: 34px;
    opacity: 1
}

@media (min-width: 768px) and (max-width: 991px) {
    header .nav-toggle.active .lnr-cross {
        top: 36px !important
    }
}

nav {
    font-family: "Open Sans", sans-serif;
    padding: 0px;
    margin: 0
}

nav .fadeIn {
    animation-duration: 0.3s !important
}

nav .mobile-phone {
    margin-bottom: 30px !Important
}

nav .mobile-phone .highlight {
    padding-top: 0;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--c-main)
}

nav .mobile-phone .highlight span {
    color: #767676 !important
}

nav .nav-content {
    display: block;
    text-align: right;
    list-style: none
}

nav .nav-content ul {
    margin: 0;
    padding: 0
}

nav .nav-content li {
    margin: 0;
    padding: 0;
    display: inline-block
}

nav .nav-content a {
    padding: 37px 0 37px 20px;
    display: block;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    position: relative
}

nav .nav-content a.active-page:before {
    background: var(--c-main)
}

nav .nav-content a:before {
    content: '';
    width: calc(100% - 20px);
    height: 3px;
    position: absolute;
    top: 30px;
    left: 20px;
    background: #fff;
}

nav .nav-content a:hover {
    color: #252525;
}

nav .nav-content a:hover:before {
    background: #ffffff
}

nav .nav-content li.parent:hover>a {
    background: rgba(0, 0, 0, 0.2)
}

nav .nav-content.active {
    display: block !important
}

nav .sub-menu {
    display: none;
    position: absolute;
    background: #aaa;
    width: 365px;
    left: 0px;
    text-align: left;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important
}

nav .sub-menu li {
    display: block
}

nav .sub-menu a {
    color: var(--c-dark)
}

nav .parent {
    position: relative
}

nav .parent:hover .sub-menu {
    display: block
}
@media (max-width: 1120px) {
    header .header-phone a {

        font-size: 14px;

    }
}

@media (max-width: 991px) {
    nav .nav-content {
        height: calc(100vh - 86px);
        width: 100%;
        margin-top: 78px
    }

    nav .nav-content li {
        width: 100%
    }

    nav .nav-content>ul {
        height: 100%;
        background: #ffffff;
        margin-top: -2px;
        overflow-y: hidden;
        width: 100%;
        float: left
    }

    nav .nav-content a {
        padding: 30px 30px 0px
    }

    nav .nav-content .sub-menu {
        position: relative;
        width: 100%;
        text-align: right;
        padding: 15px
    }

    nav .nav-content .sub-menu a {
        padding: 15px !important
    }

    nav .nav-content .dropdown-backdrop {
        display: none
    }
}

footer {
    background: var(--c-main);
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    font-weight: 400
}

.banner {
    background-color: #ccc;
    padding: 200px 0;
    position: relative;
    background-size: cover !important;
    background-position: center center
}

@media (max-width: 991px) {
    .banner {
        padding: 75px !important
    }
}

.carousel {
    position: relative
}

.carousel .item {

    text-align: center;
    background-position: center center !important;
    background-size: cover !important
}

.carousel .carousel-message {
    text-align: right;
    vertical-align: middle;
    width: 350px;
    margin-right: 625px;
    display: inline-block;
    margin-top: 155px
}

.carousel .carousel-message h1,
.carousel .carousel-message h2 {
    color: var(--c-light);
}

.carousel .carousel-message h2 {
    margin: -10px 0 10px
}

.carousel .carousel-message .btn {
    background: var(--c-main)
}

.carousel .carousel-message .btn:hover {
    background: var(--c-main-darker)
}

.carousel .carousel-indicators {
    bottom: -10px !important
}

@media (min-width: 768px) {
    .carousel .carousel-indicators {
        bottom: -40px !important
    }
}

.carousel .carousel-indicators li {
    width: 5px !important;
    height: 5px !important;
    border: none !important;
    background: #ebebeb;
    margin: 0 10px !important
}

.carousel .carousel-indicators li.active {
    background: var(--c-dark) !important
}

@media (max-width: 767px) {
    .carousel {
        background: var(--c-light);
        padding-bottom: 25px
    }

    .carousel .item {
        height: 200px;
        min-height: auto;
        background-size: cover !important;
        background-position: 67% center !important
    }

    .carousel .item .carousel-message {
        margin-top: 0 !important;
        margin-right: 0 !important;
        width: 100vw !important;
        padding: 0 !important
    }

    .carousel .item .carousel-message h1,
    .carousel .item .carousel-message h2 {
        display: none
    }

    .carousel .item .carousel-message a {
        opacity: 0;
        display: inline-block;
        width: 100%;
        height: 200px !important;
        padding: 0;
        float: none !important
    }
}


.form-control {
    font-size: 16px;
    color: var(--c-dark) !important;
    padding: 12px 17px !important;
    height: 48px;
    border-radius: 0;
    border: 0
}

.form-control::placeholder {
    color: var(--c-dark) !important
}

.form-group {
    margin-bottom: 8px
}

textarea {
    height: 130px !important
}

h4 {
    font-size: 42px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px
}

h4 .smaller {
    font-size: 30px !important;
    clear: both;
    width: 100%;
    float: left
}

@media (max-width: 991px) {
    h4 {
        font-size: 30px
    }

    h4 .smaller {
        font-size: 22px !important
    }
}

.underlined::after {
    content: '';
    background: #c91213;
    height: 3px;
    width: 100px;
    display: inline-block;
    float: left;
    clear: both;
    position: absolute;
    left: 0;
    bottom: -10px
}

@media (max-width: 991px) {
    .underlined::after {
        width: 50px
    }
}

.raised-left {
    padding-top: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
    background: var(--c-light);
    position: relative
}

.raised-left:before {
    content: '';
    background: inherit;
    position: absolute;
    height: 100%;
    width: 500px;
    left: -500px;
    top: 0
}

@media (max-width: 991px) {
    .raised-left {
        margin-bottom: 30px
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .raised-left {
        padding: 30px !important
    }

    .raised-left:before {
        display: none
    }
}

@media (max-width: 767px) {
    .raised-left {
        padding: 30px 0px !important;
        margin-top: 0 !important
    }

    .raised-left:before {
        display: none
    }
}

.highlight {
    color: var(--c-main)
}

.boxed {
    margin: 10px 0;
    padding: 20px;
    background: #f5f5f5;
}

@media screen and (min-width: 992px) {
    .boxed {
        height: 192px;
    }
}

.boxed h2 {
    margin: 0 !important
}

.boxed .highlight {
    padding-left: 5px
}

.boxed i {
    font-size: 15px
}

.boxed b {
    font-weight: 600 !important;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 14px
}

hr {
    margin: 40px 0;
    width: 100%
}

.contact-page .service-page {
    min-height: calc(100vh - 570px)
}

.contact-page form .form-control {
    border: 1px solid #646464
}

.contact-page form textarea {
    height: 253px !important
}

@media (min-width: 992px) {
    .contact-page form {
        padding-right: 30px
    }
}

.g-recaptcha>div {
    width: 100% !important;
    margin-bottom: 10px !important
}

.grecaptcha-badge {
    height: 0px !important;
    overflow: hidden;
    opacity: 0 !important
}

#about {
    background: url("../images/placeholder-long.png");
    background-position: center 21%
}


#engineering {
    background: url("../images/placeholder-long.png");
    background-position: center center;
}

.full-width-mobile.pull-right {
    padding-left: 40px;
    padding-bottom: 40px;
    clear: both
}

@media (max-width: 767px) {
    .full-width-mobile {
        width: 100%;
        padding-left: 0px !important
    }
}

.half-width-mobile.pull-right {
    padding-left: 40px;
    padding-bottom: 40px;
    clear: both
}

@media (max-width: 767px) {
    .half-width-mobile {
        width: 50%;
        padding-left: 15px !important
    }
}

.line-card {
    margin-top: -130px;
    padding: 30px;
    box-shadow: 0px 8px 19px rgba(34, 34, 34, 0.1) !important
}

.line-card h3 {
    margin: 0 !important
}

@media (max-width: 767px) {
    .line-card {
        clear: both;
        margin-top: -10px;
        margin-bottom: 40px;
        float: none !important;
        display: inline-block
    }
}

footer {
    padding-top: 70px
}

footer .copyright {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #000000;
    color:#fff !important;
}

@media (max-width: 991px) {
    footer {
        padding-top: 40px !important
    }

    footer h2 {
        margin-top: 30px !important
    }
}

footer h2 {
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px !important
}

footer a {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700
}

footer a:hover {
    color: var(--c-main-lighter);
}

footer ul {
    margin-top: 16px;
    padding-left: 0;
    list-style: none
}

@media (max-width: 767px) {
    footer .join-mobile {
        margin-top: -10px;
        margin-bottom: 20px
    }
}

.youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    padding-bottom: 488px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    transition: all 0.6s ease
}

@media (max-width: 991px) {
    .youtube-player {
        padding-bottom: 166px
    }
}

.youtube-player.open-video {
    padding-bottom: 41% !important;
    z-index: 1
}

@media (max-width: 767px) {
    .youtube-player.open-video {
        padding-bottom: 56.5% !important
    }
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent
}

.youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%)
}

.youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("//i.imgur.com/TxzC70f.png") no-repeat;
    pointer-events: none
}

.welcome-message-left {
    padding-right: 40px;
    padding-top: 20px
}

.welcome-message-left h1 {
    text-align: right;
    -webkit-font-smoothing: antialiased;
    margin-top: 15px !important
}

@media (max-width: 991px) {
    .welcome-message-left {
        padding: 0 30px !important
    }

    .welcome-message-left h1 {
        text-align: left;
        -webkit-font-smoothing: antialiased;
        margin-top: 0px !important;
        font-size: 22px
    }
}

.bar {
    background: var(--c-main);
    width: 3px;
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0
}

@media (max-width: 991px) {
    .bar {
        float: none;
        left: 0;
        display: inline-block;
        position: relative;
        height: 3px;
        width: 15%;
        margin-bottom: 15px;
        clear: both
    }
}

.welcome-message-right {
    padding-left: 40px;
    padding-top: 32px;
    padding-bottom: 20px
}

@media (max-width: 991px) {
    .welcome-message-right {
        padding: 30px 30px !important;
        margin-left: 3;
        display: inherit;
        float: left
    }
}

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity
}

.carousel-fade .carousel-inner .active {
    opacity: 1
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1
}

.carousel-fade .carousel-control {
    z-index: 2
}

@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slick-prev:before,
.slick-next:before {
    color: #252525 !important;
    font-size: 40px !important;
    text-align: center !important
}

.slick-prev {
    width: 40px !important;
    height: 40px !important;
    left: -60px !important
}

.slick-prev:before {
    content: '\e875' !important;
    font-family: Linearicons-Free !important
}

.slick-next {
    width: 40px !important;
    height: 40px !important;
    right: -60px !important
}

.slick-next:before {
    content: '\e876' !important;
    font-family: Linearicons-Free !important
}



.homepage.homepage-links {
    background: #000000;
}

.homepage.homepage-links .product-tile {
    display: flex;
    justify-content: center;
    width: 100%;
    background-position: center center !important;
    background-size: cover !important;
    height: 320px;
    padding:10px;
    align-items: center;
    position: relative;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(34, 34, 34, 0.28)
}
.homepage.homepage-links h3 {
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

@media (max-width: 992px) {
    .homepage.homepage-links h3 {
        color:#fff;
        font-size:18px !important;
        font-weight:bold;
    }
}


.w-50 {
    width:50%;
}
.p-10 {
    padding: 10px;
}

.homepage.homepage-links .product-tile .btn {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    float: none
}

@media (max-width: 767px) {
    .homepage.homepage-links .product-tile {
        width: 100%;
        height: 200px;
    }
}



#hospitals {
    background: url("../images/wps/services/hospital.png");
}

#corporate {
    background: url("../images/wps/services/office.png");
}

#hire-education {
    background: url("../images/wps/services/college.png");
}

#warehouses {
    background: url("../images/wps/services/warehouse.png");
}

#commerical {
    background: url("../images/wps/services/retail.png");
}

#residential-properties {
    background: url("../images/wps/services/living.png");
}
#night-clubs {
    background: url("../images/wps/services/club.png");
}
#events {
    background: url("../images/wps/services/events.png");
}

.overlay {
  position: relative;
  overflow: hidden;
  color:#fff;
}

.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.put-back {
  position: relative;
  z-index: 2;
}
.product-info h3 {
    font-size:40px !important;
}
.title-bar {
    text-align: center;
    padding: 30px 15px;
}
.title-bar.small {
    padding: 30px 15px 0px 15px;
}
.title-bar.orange {
    background: #F26520;
    color:#000000 !important;
}
.title-bar.black {
    background: #000000;
    color:#fff !important;
}

.title-bar.white {
    background: #ffffff;

}
.title-bar.white .h1 {

    color:#000 !important;
}
.title-bar .h1{
    font-size:40px;
    color:#fff;
}

.title-bar img {
    display: inline-block;
    float: none
}

.highlights {
    margin-top: 15px
}

.slick-slider .slick-list {
    width: calc(100% + 20px) !important;
    margin-left: -10px;
    padding: 15px 0
}

.slick-slider .item {
    box-shadow: 0px 8px 19px rgba(34, 34, 34, 0.1) !important;
    margin: 15px 10px;
    padding: 40px;
    height: 350px
}

.slick-slider .item:focus,
.slick-slider .item:active {
    outline: none !important
}

.read-more {
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: var(--c-main);
    font-weight: 700;
    position: relative
}

.read-more i {
    position: absolute;
    top: 3px;
    padding-left: 10px;
    font-size: 13px
}




.products {
    background: #f5f5f5
}

.products .products-container {
    padding-top: 30px;
    padding-bottom: 30px
}

.products .url {
    background: pink
}

@media (max-width: 1200px) {
    .hide-path {
        display: none
    }

    .url-long {
        font-size: 1.4rem;
        margin-left: -15px;
        display: inline-block
    }
}

.product-item {
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 0px transparent;
    text-align: center;
    background: var(--c-light);
    transition: all 0.2s ease
}

.product-item.sun-hydraulics-item {
    text-align: left
}

.product-item:hover {
    box-shadow: 0px 8px 19px rgba(34, 34, 34, 0.1) !important
}

.product-item img {
    max-width: 75%
}

@media (max-width: 767px) {
    .product-item {
        margin-bottom: 15px
    }
}

b,
strong {
    font-weight: 500
}

a {
    color: var(--c-main)
}

a:hover {
    color: var(--c-main)
}

.no-banner .white-background {
    padding: 50px 15px
}

.table-div {
    display: table
}

.table-div div {
    display: table-cell;
    float: none
}

@media (max-width: 991px) {
    .table-div div {
        float: left;
        width: 100%
    }
}



.pdf-link:before {
    content: "\f1c1";
    margin-right: 8px;
    margin-bottom: -2px;
    font-family: 'Font Awesome 5 Free';
    font-size: 18px
}

.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  color: #fff;
  background: url('/assets/images/wps/Providence-Banner.webp') no-repeat right center/cover;
}

@media (max-width: 768px) {
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--c-main);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--c-main-darker);
  color:#fff;
}

/* 🔴 RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
    padding: 60px 5%;
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    text-align: left;
  }

  .hero h1 {
    font-size: 30px;
  }



  .hero-overlay {
            background: rgb(0 0 0 / 35%);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }
}

#ppwd-contact {
    margin-top:30px;
}

.homepage .h1 {
    font-size:40px;
}

dialog {
  border: none;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.highlights-slideshow .item {
  position: relative;
  overflow: hidden;
  color:#000000 !important;
}
.highlights-slideshow .item h2 {

  color:#000000;
}


.highlights-slideshow .item > * {
  position: relative;
  z-index: 2;
}

.item-text-wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.row-flex {
  display: flex;
  align-items: center;
}

.row-flex > [class*="col-"] {
  float: none;
}


.about-img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .row-flex {
    display: block;
  }
}

.form-control {
    background-color: transparent;
}

.highlights-slideshow {
	display: flex;
	flex-wrap: wrap;
}

.highlights-slideshow > div {
	display: flex;
	margin-bottom: 30px;
}

.highlights-slideshow .item {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.highlights-slideshow .item-text-wrapper {
	flex-grow: 1;
}
.highlights-slideshow img {
    max-width:120px;
    margin-bottom:10px;
}
.highlights-slideshow .item {
    text-align:center;
}

@media (max-width: 992px) {
    .col-md-3 {
        width:50% !important;
    }
    p {
        font-size:14px !important;
    }
    .h1 {
        font-size:30px !important;
    }
    #contact-section a {
        font-size:30px;
    }
    #contact-section .fas.fa-phone {
        font-size:30px !important;
    }
    #contact-section .btn-lg {
        padding:0px !important;
    }
}

@media (max-width: 600px) {
    .col-md-3 {
        width:100% !important;
    }
    #contact-section a {
        font-size:20px !important;
    }
    #contact-section .fas.fa-phone {
        font-size:20px !important;
    }
}

.custom-accordion {
    max-width: 100%;
}

.custom-accordion .accordion-item {
    border-bottom: 1px solid #ddd;
}

.custom-accordion .accordion-header {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.custom-accordion .accordion-content p {
    padding: 0 20px 20px;
    margin: 0;
}

.custom-accordion .accordion-item.active .accordion-content {
    max-height: 500px;
}

.custom-accordion .accordion-item.active .accordion-header span {
    transform: rotate(45deg);
}

.custom-accordion h2 {
    font-size:20px;
    margin: 0 !important;
}

.callnow-section {
    display:flex;
}

.callnow-section .col-small {
    width:20%;
}

.underline {
    text-decoration:underline !important;
}