/* =========================================================
   PDC RENTALS - PAGE / HERO CSS
   ========================================================= */

.pdc-hero {
    position: relative;
    /* min-height: 430px; */
    overflow: visible;
    isolation: isolate;
    padding: 0;
}

.pdc-hero-bg {
    position: absolute;
    z-index: -3;
    inset: 0 0 0 0;
    width: 100%;
    height: 414px;
    background:
        linear-gradient(90deg, rgba(0, 20, 43, .72) 0%, rgba(0, 32, 67, .48) 42%, rgba(0, 45, 88, .12) 100%),
        url("./images/banner.jpg") center center / cover no-repeat;
    border-bottom-right-radius: 900px;
}

@media(max-width:1199px) {
    .pdc-hero-bg {
        height: 535px;
    }
}

.pdc-hero-overlay {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 390px;
    pointer-events: none;
}

.pdc-hero-container {
    position: relative;
    min-height: 350px;
}

.pdc-hero-content {
    position: relative;
    z-index: 3;
    width: 55%;
    padding-top: 99px;
    color: #fff;
}

.pdc-hero-content h1 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 54px;
    line-height: 100%;
    font-weight: 800;
    letter-spacing: -.7px;
}

.pdc-hero-content h1 span {
    color: var(--pdc-orange);
}

.pdc-hero-content>p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.45;
}

.pdc-hero-buttons {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
}

.pdc-primary-btn,
.pdc-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 21px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    transition: .25s ease;
}

.pdc-primary-btn {
    color: #fff;
    background: var(--pdc-orange);
}

.pdc-primary-btn:hover {
    color: #fff;
    background: #e85c00;
    transform: translateY(-2px);
}

.pdc-secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .12);
}

.pdc-secondary-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.pdc-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pdc-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdc-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--pdc-orange);
    font-size: 20px;
}

.pdc-stat strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.pdc-stat span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 13.5px;
    line-height: 1;
}

.pdc-engine-image {
    position: absolute;
    z-index: 2;
    right: -10px;
    bottom: -50px;
    width: 40%;
    max-width: 535px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 13px 10px rgba(0, 0, 0, .18));
    pointer-events: none;
}

.pdc-feature-container {
    position: relative;
    z-index: 10;
    margin-top: 30px;
}

.pdc-feature-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    height: 100%;
    padding: 12px 12px;
    gap: 12px;
    overflow: hidden;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    transition: .25s ease;
}

.pdc-feature-card:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 13px 25px rgba(0, 0, 0, .16);
}

.pdc-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    color: var(--pdc-orange);
    background: #fff2e9;
    font-size: 16px;
}

.pdc-feature-text {
    min-width: 0;
    padding-right: 17px;
}

.pdc-feature-text h3 {
    margin-bottom: 6px;
    color: var(--pdc-blue);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-feature-text p {
    margin: 0;
    color: #7b7b7b;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
}

.pdc-feature-arrow {
    position: absolute;
    right: 17px;
    top: 50%;
    color: var(--pdc-orange);
    font-size: 10px;
    transform: translateY(-50%);
    transition: .25s ease;
}

.pdc-feature-card:hover .pdc-feature-arrow {
    right: 13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {

    .pdc-header-container,
    .pdc-hero-container {
        max-width: 960px;
    }

    .pdc-nav-link {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .pdc-header-actions {
        gap: 8px;
        margin-left: 5px;
    }




    .pdc-engine-image {
        width: 49%;
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .pdc-header-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .pdc-navbar {
        min-height: 65px;
    }

    .pdc-logo {
        font-size: 25px;
    }

    .pdc-desktop-nav {
        display: none !important;
    }

    .pdc-hero {
        /* min-height: 760px; */
    }

    .pdc-hero-bg,
    .pdc-hero-overlay {
        height: 476px;
        border-bottom-right-radius: 520px;
    }

    .pdc-hero-container {
        min-height: 480px;
        padding: 0 30px;
    }

    .pdc-hero-content {
        width: 60%;
        padding-top: 75px;
    }

    .pdc-hero-content h1 {
        font-size: 32px;
    }

    .pdc-engine-image {
        width: 55%;
        right: 0px;
        bottom: 40px;
    }

    .pdc-feature-container {
        margin-top: -72px;
    }

    .pdc-feature-card {
        height: 92px;
        min-height: 92px;
    }
}

@media (max-width: 767.98px) {
    .pdc-hero {
        /* min-height: 920px; */
    }

    .pdc-hero-bg,
    .pdc-hero-overlay {
        height: 361px;
        border-bottom-right-radius: 300px;
    }

    .pdc-hero-container {
        min-height: 360px;
        padding: 0 20px;
    }

    .pdc-hero-content {
        width: 100%;
        padding-top: 55px;
    }

    .pdc-hero-content h1 {
        max-width: 500px;
        font-size: 30px;
    }

    .pdc-hero-content>p {
        max-width: 460px;
        font-size: 12px;
    }

    .pdc-stats {
        gap: 17px;
    }

    .pdc-stat {
        gap: 6px;
    }

    .pdc-stat-icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
        font-size: 14px;
    }

    .pdc-engine-image {
        /* width: 82%; */
        right: 0px;
        bottom: 45px;
    }

    .pdc-feature-container {
        margin-top: -55px;
        padding: 0 20px;
    }

    .pdc-feature-card {
        min-height: 82px;
        height: auto;
        padding: 13px 17px;
    }
}

@media (max-width: 575.98px) {
    .pdc-navbar {
        min-height: 60px;
    }

    .pdc-header-container {
        padding: 0 15px;
    }

    .pdc-logo {
        font-size: 22px;
    }

    .pdc-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .pdc-hero {
        /* min-height: 930px; */
    }

    .pdc-hero-bg,
    .pdc-hero-overlay {
        height: 617px;
        border-bottom-right-radius: 210px;
    }

    .pdc-hero-container {
        min-height: 601px;
        padding: 0 17px;
    }

    .pdc-hero-content {
        padding-top: 47px;
    }

    .pdc-hero-content h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .pdc-hero-content>p {
        font-size: 12px;
    }

    .pdc-hero-buttons {
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .pdc-primary-btn,
    .pdc-secondary-btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }

    .pdc-stats {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .pdc-stat strong {
        font-size: 12px;
    }

    .pdc-stat span {
        font-size: 10px;
    }

    .pdc-engine-image {
        width: 75%;
        /* bottom: 55px; */
        left: 20px;
        /* bottom: 45px; */
        /* top: 255px; */
    }

    .pdc-feature-container {
        margin-top: -38px;
        padding: 0 17px;
    }

    .pdc-feature-card {
        min-height: 82px;
    }

    .pdc-feature-text h3 {
        font-size: 12px;
    }

    .pdc-feature-text p {
        max-width: 240px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .pdc-logo {
        font-size: 20px;
    }

    .pdc-hero-content h1 {
        font-size: 26px;
    }

    .pdc-engine-image {
        width: 90%;
    }
}

/* =========================================================
   PDC ABOUT SECTION
   ========================================================= */

.pdc-about-section {
    position: relative;

}

/* Main Row */
.pdc-about-main-row {
    --bs-gutter-x: 48px;
    row-gap: 45px;
}

/* =========================================================
   IMAGE
   ========================================================= */

.pdc-about-image-wrap {
    position: relative;
    width: 100%;
    margin-left: 7px;
    padding: 0;
}

.pdc-about-image-accent {
    position: absolute;
    z-index: 0;
    top: -6px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 9px solid var(--pdc-orange);
    border-radius: 14px;
    transform: translate(-7px, 0);
}

.pdc-about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.13);
}

/* =========================================================
   CONTENT
   ========================================================= */


.pdc-about-content {
    padding-left: 0;
}


.pdc-about-title {
    max-width: 500px;
    margin-bottom: 16px;
    color: #595959;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.pdc-about-intro {
    max-width: 500px;
    margin-bottom: 16px;
    color: var(--pdc-slate);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-about-description {
    max-width: 510px;
    margin-bottom: 16px;
    color: var(--pdc-slate);
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.pdc-about-features {
    --bs-gutter-x: 13px;
    margin-top: 22px;
}

.pdc-about-feature-card {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 85px;
    height: 100%;
    padding: 12px 12px 11px;
    border: 1px solid rgba(255, 102, 0, 0.38);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.10);
    transition: all .25s ease;
}

.pdc-about-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.7);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.13);
}

.pdc-about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 9px;
    border-radius: 50%;
    background: #fff1e9;
    color: var(--pdc-orange);
    font-size: 16px;
}

.pdc-about-feature-content {
    min-width: 0;
}

.pdc-about-feature-content h3 {
    margin: 1px 0 3px;
    color: var(--pdc-blue);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-about-feature-content p {
    margin: 0;
    color: var(--pdc-slate);
    font-size: 8.5px;
    line-height: 1.4;
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .pdc-about-main-row {
        --bs-gutter-x: 35px;
    }

    .pdc-about-image-wrap {
        margin: 0 auto;
    }
}

@media (min-width:992px) {
    .pdc-about-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

.pdc-about-title {
    max-width: 100%;
    font-size: 32px;
}

.pdc-about-description {}

.pdc-about-feature-card {
    min-height: 90px;
}

.pdc-about-feature-content h3 {
    font-size: 16px;
}

.pdc-about-feature-content p {
    font-size: 14px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {


    .pdc-about-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pdc-about-main-row {
        --bs-gutter-x: 0;
        row-gap: 35px;
    }

    .pdc-about-image-wrap {
        max-width: 100%;
        margin-left: 7px;
        margin-right: 7px;
    }

    .pdc-about-content {
        padding: 0;
    }

    .pdc-about-title {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.2;
    }

    .pdc-about-intro {
        margin-bottom: 14px;
        font-size: 11px;
        line-height: 1.6;
    }

    .pdc-about-description {
        margin-bottom: 18px;
        font-size: 10px;
        line-height: 1.7;
    }

    .pdc-about-features {
        margin-top: 30px;
        --bs-gutter-x: 10px;
        --bs-gutter-y: 12px;
    }

    .pdc-about-feature-card {
        min-height: 88px;
        padding: 13px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {


    .pdc-about-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pdc-about-image-wrap {
        margin-left: 6px;
        margin-right: 6px;
    }

    .pdc-about-image {
        border-radius: 11px;
    }

    .pdc-about-image-accent {
        border-width: 6px;
        border-radius: 12px;
        transform: translate(-6px, 0);
    }

    .pdc-about-title {
        font-size: 21px;
    }

    .pdc-about-intro {
        font-size: 14px;
    }

    .pdc-about-description {
        font-size: 12px;
    }

    .pdc-about-read-more {
        min-height: 39px;
        min-width: 125px;
        font-size: 11px;
    }

    .pdc-about-features {
        margin-top: 25px;
    }

    .pdc-about-feature-card {
        min-height: 82px;
    }

    .pdc-about-feature-content h3 {
        font-size: 14px;
    }

    .pdc-about-feature-content p {
        font-size: 12px;
    }
}

/* =========================================================
   PDC EQUIPMENT SECTION
   ========================================================= */

.pdc-equipment-section {
    position: relative;
    background: #fff;
}

/* =========================================================
   FILTERS
   ========================================================= */

.pdc-equipment-filter-wrap {
    width: 100%;
    margin: 34px 0;
}

.pdc-equipment-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.pdc-equipment-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 13px;
    border: 1px solid #dfe4eb;
    border-radius: 50px;
    outline: none;
    background: #fff;
    color: var(--pdc-slate);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}

.pdc-equipment-filter:hover {
    border-color: var(--pdc-orange);
    color: var(--pdc-orange);
}

.pdc-equipment-filter-active {
    border-color: var(--pdc-orange);
    background: var(--pdc-orange);
    color: #fff;
}

.pdc-equipment-filter-active:hover {
    color: #fff;
    background: var(--pdc-orange);
}

/* =========================================================
   CARD GRID
   ========================================================= */

.pdc-equipment-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.pdc-equipment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

/* 1200px and below */
@media (max-width: 1199.98px) {
    .pdc-equipment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 992px and below */
@media (max-width: 991.98px) {
    .pdc-equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 768px and below */
@media (max-width: 767.98px) {
    .pdc-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 576px and below */
@media (max-width: 575.98px) {
    .pdc-equipment-grid {
        grid-template-columns: 1fr;
    }
}

.pdc-equipment-item {
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.pdc-equipment-item.pdc-equipment-hidden {
    display: none;
}

/* =========================================================
   EQUIPMENT CARD
   ========================================================= */

.pdc-equipment-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #aeb0b3;
    border-radius: 15px;
    background: #fff;
    transition: all .3s ease;
}

.pdc-equipment-card:hover {
    border-color: var(--pdc-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
    transform: translateY(-3px);
}

/* =========================================================
   EQUIPMENT IMAGE
   ========================================================= */

.pdc-equipment-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 145px;
    padding: 10px 15px 4px;
}

.pdc-equipment-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.pdc-equipment-card-content {
    padding: 4px 15px 15px;
}

.pdc-equipment-card-content h3 {
    margin: 0 0 10px;
    color: var(--pdc-blue);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-equipment-card-content p {
    /* height: 61px; */
    overflow: hidden;
    margin: 0 0 8px;
    color: var(--pdc-slate);
    font-size: 14px;
    line-height: 1.35;
}

.pdc-equipment-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--pdc-orange);
    font-size: 14px;
    font-weight: 700;
}

.pdc-equipment-details i {
    font-size: 9px;
    transition: transform .25s ease;
}

.pdc-equipment-details:hover {
    color: var(--pdc-orange);
}

.pdc-equipment-details:hover i {
    transform: translateX(3px);
}

/* =========================================================
   NO RESULTS
   ========================================================= */

.pdc-equipment-no-results {
    display: none;
    padding: 35px 0;
    text-align: center;
    color: var(--pdc-slate);
    font-size: 14px;
}

.pdc-equipment-no-results.pdc-equipment-show {
    display: block;
}

/* =========================================================
   SEE ALL BUTTON
   ========================================================= */

.pdc-equipment-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 33px;
}

.pdc-equipment-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 226px;
    min-height: 49px;
    padding: 0 22px;
    border-radius: 7px;
    background: var(--pdc-orange);
    color: #fff;
    box-shadow: 0 5px 10px rgba(255, 102, 0, .18);
    font-size: 15px;
    font-weight: 700;
    transition: all .25s ease;
}

.pdc-equipment-all-btn i {
    font-size: 11px;
    transition: transform .25s ease;
}

.pdc-equipment-all-btn:hover {
    color: #fff;
    background: #e85c00;
    transform: translateY(-2px);
}

.pdc-equipment-all-btn:hover i {
    transform: translateX(3px);
}

/* =========================================================
   FILTER ANIMATION
   ========================================================= */

.pdc-equipment-item.pdc-equipment-filter-in {
    animation: pdcEquipmentFadeIn .35s ease forwards;
}

@keyframes pdcEquipmentFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1199.98px) {
    .pdc-equipment-card {
        min-height: 310px;
    }

    .pdc-equipment-image-box {
        height: 145px;
    }

    .pdc-equipment-card-content h3 {
        font-size: 15px;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {


    .pdc-equipment-heading h2 {
        font-size: 25px;
    }

    .pdc-equipment-heading p {
        font-size: 11px;
    }

    /*
     * Horizontal filter scrolling
     * instead of wrapping on tablet
     */
    .pdc-equipment-filter-wrap {
        overflow: hidden;
        margin: 28px 0;
    }

    .pdc-equipment-filters {
        /* justify-content: flex-start; */
        flex-wrap: nowrap;
        /* width: max-content; */
        overflow-x: auto;
        padding: 2px 3px 8px;
        /* scrollbar-width: none; */
        display: flex;
        flex-wrap: wrap;
    }

    .pdc-equipment-filters::-webkit-scrollbar {
        display: none;
    }

    .pdc-equipment-filter {
        flex: 0 0 auto;
    }

    .pdc-equipment-card {
        min-height: 315px;
    }

    .pdc-equipment-image-box {
        height: 160px;
    }

    .pdc-equipment-card-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pdc-equipment-card-content h3 {
        font-size: 16px;
    }

    .pdc-equipment-card-content p {
        font-size: 14px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {


    .pdc-equipment-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pdc-equipment-heading h2 {
        font-size: 26px;
    }

    .pdc-equipment-heading p {
        font-size: 16px;
        line-height: 1.5;
    }

    .pdc-equipment-filter-wrap {
        margin: 25px -18px 25px;
        padding-left: 18px;
    }

    .pdc-equipment-filters {
        gap: 7px;
    }

    .pdc-equipment-filter {
        min-height: 32px;
        padding: 0 13px;
        font-size: 11px;
    }

    .pdc-equipment-grid {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .pdc-equipment-card {
        min-height: 305px;
    }

    .pdc-equipment-image-box {
        height: 145px;
    }

    .pdc-equipment-card-content {
        padding: 5px 15px 14px;
    }

    .pdc-equipment-card-content h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .pdc-equipment-card-content p {
        font-size: 14px;
        /* height: 58px; */
    }

    .pdc-equipment-button-wrap {
        margin-top: 28px;
    }

    .pdc-equipment-all-btn {
        min-height: 46px;
        min-width: 210px;
        font-size: 13px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .pdc-equipment-heading h2 {
        font-size: 22px;
    }

    .pdc-equipment-heading p {
        font-size: 12px;
    }

    .pdc-equipment-card {
        min-height: 227px;
    }

    .pdc-equipment-image-box {
        height: 145px;
    }

    .pdc-equipment-card-content h3 {
        font-size: 14px;
    }

    .pdc-equipment-card-content p {
        font-size: 12px;
    }
}

/* =========================================================
   PDC LATEST BLOG SECTION
   ========================================================= */

.pdc-blog-section {
    position: relative;

    background: #fff;
}



/* =========================================================
   MAIN BLOG ROW
   ========================================================= */

.pdc-blog-main-row {
    --bs-gutter-x: 44px;
}

/* =========================================================
   FEATURED BLOG
   ========================================================= */

.pdc-featured-blog {
    width: 100%;
}

.pdc-featured-blog-image {
    display: block;
    width: 100%;
    height: 315px;
    overflow: hidden;
    border-radius: 14px;
}

.pdc-featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.pdc-featured-blog-image:hover img {
    transform: scale(1.04);
}

/* Date */

.pdc-blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--pdc-slate);
    font-size: 14px;
    line-height: 1;
}

.pdc-blog-date i {
    color: var(--pdc-slate);
    font-size: 10px;
}

.pdc-featured-date {
    margin-top: 10px;
}

/* Featured title */

.pdc-featured-blog-title {
    margin: 10px 0 10px;
    color: var(--pdc-blue);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

/* Featured description */

.pdc-featured-blog-description {
    max-width: 600px;
    margin: 0 0 8px;
    color: var(--pdc-slate);
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================================
   READ MORE
   ========================================================= */

.pdc-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--pdc-orange);
    font-size: 14px;
    font-weight: 700;
}

.pdc-blog-read-more:hover {
    color: var(--pdc-orange);
}

.pdc-blog-read-more i {
    font-size: 9px;
    transition: transform .25s ease;
}

.pdc-blog-read-more:hover i {
    transform: translateX(3px);
}

/* =========================================================
   BLOG LIST
   ========================================================= */

.pdc-blog-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* =========================================================
   SMALL BLOG CARD
   ========================================================= */

.pdc-blog-card {
    display: flex;
    width: 100%;
    min-height: 160px;
    padding: 14px;
    gap: 30px;
    border: 1px solid #aeb0b3;
    border-radius: 15px;
    background: #fff;
    transition: all .3s ease;
}

.pdc-blog-card:hover {
    border-color: var(--pdc-orange);
    box-shadow: 0 7px 18px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

/* Card image */

.pdc-blog-card-image {
    display: block;
    width: 200px;
    min-width: 200px;
    height: 128px;
    overflow: hidden;
    border-radius: 7px;
}

.pdc-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.pdc-blog-card-image:hover img {
    transform: scale(1.05);
}

/* Card content */

.pdc-blog-card-content {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.pdc-blog-card-content h3 {
    margin: 2px 0 13px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-blog-card-content h3 a {
    color: var(--pdc-blue);
}

.pdc-blog-card-content h3 a:hover {
    color: var(--pdc-orange);
}

.pdc-blog-card-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--pdc-slate);
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Card bottom */

.pdc-blog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.pdc-blog-card-bottom .pdc-blog-date {
    white-space: nowrap;
}

/* =========================================================
   VIEW ALL BUTTON
   ========================================================= */

.pdc-blog-view-all {
    display: flex;
    justify-content: center;
    margin-top: 33px;
}



/* =========================================================
   LARGE DESKTOP
   ========================================================= */

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {


    .pdc-blog-main-row {
        --bs-gutter-x: 24px;
    }

    .pdc-blog-heading h2 {
        font-size: 25px;
    }

    .pdc-blog-heading p {
        font-size: 10px;
    }

    .pdc-featured-blog-image {
        height: 350px;
    }

    .pdc-featured-blog-title {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .pdc-featured-blog-description {
        font-size: 11px;
    }

    .pdc-blog-list {
        gap: 18px;
    }

    .pdc-blog-card {
        gap: 18px;
    }

    .pdc-blog-card-image {
        width: 180px;
        min-width: 180px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {


    .pdc-blog-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pdc-blog-heading {
        margin-bottom: 27px;
    }

    .pdc-blog-heading h2 {
        font-size: 23px;
    }

    .pdc-blog-heading p {
        font-size: 12px;
    }

    .pdc-blog-heading p br {
        display: none;
    }

    .pdc-featured-blog-image {
        height: 300px;
    }

    .pdc-featured-blog-title {
        margin-bottom: 20px;
        font-size: 23px;
    }

    .pdc-featured-blog-description {
        font-size: 10px;
        line-height: 1.7;
    }

    .pdc-blog-list {
        gap: 15px;
        margin-top: 5px;
    }

    .pdc-blog-card {
        min-height: 145px;
        padding: 10px;
        gap: 14px;
        border-radius: 12px;
    }

    .pdc-blog-card-image {
        width: 145px;
        min-width: 145px;
        height: 120px;
    }

    .pdc-blog-card-content h3 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .pdc-blog-card-content p {
        font-size: 9.5px;
        -webkit-line-clamp: 3;
    }

    .pdc-blog-card-bottom {
        padding-top: 4px;
    }

    .pdc-blog-card-bottom .pdc-blog-date {
        font-size: 9px;
    }

    .pdc-blog-read-more {
        font-size: 10px;
    }

    .pdc-blog-view-all {
        margin-top: 25px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .pdc-blog-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pdc-blog-heading h2 {
        font-size: 22px;
    }

    .pdc-featured-blog-image {
        height: 230px;
    }

    .pdc-featured-blog-title {
        font-size: 21px;
        line-height: 1.2;
    }

    .pdc-featured-blog-description {
        font-size: 12px;
    }

    .pdc-blog-card {
        min-height: 0;
        gap: 12px;
    }

    .pdc-blog-card-image {
        width: 115px;
        min-width: 115px;
        height: 105px;
    }

    .pdc-blog-card-content h3 {
        font-size: 14px;
    }

    .pdc-blog-card-content p {
        font-size: 12px;
        line-height: 1.3;
    }

    .pdc-blog-card-bottom {
        flex-wrap: wrap;
    }

    .pdc-blog-card-bottom .pdc-blog-date {
        font-size: 8px;
    }

    .pdc-blog-view-all-btn {
        min-height: 45px;
        min-width: 160px;
        font-size: 13px;
    }
}

/* =========================================================
   PDC CLIENT REVIEWS
   ========================================================= */

.pdc-reviews-section {
    position: relative;
    overflow: hidden;

    background: #fff;
}

.pdc-reviews-container {
    position: relative;
}


/* =========================================================
   SIDE IMAGES
   ========================================================= */

.pdc-review-side-image {
    position: absolute;
    z-index: 1;
    top: 135px;
    width: 300px;
    height: 360px;
    overflow: hidden;
}

.pdc-review-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left image */

.pdc-review-left-image {
    left: 0px;
    border-radius: 0 68px 0 0;
}

/* Right image */

.pdc-review-right-image {
    right: 0px;
    border-radius: 68px 0 0 0;
}

/* =========================================================
   SLIDER
   ========================================================= */

.pdc-reviews-slider-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 790px;
    margin: 91px auto 0;
}

.pdc-reviews-slider {
    position: relative;
}

/* =========================================================
   SLIDE
   ========================================================= */

.pdc-review-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 267px;
    padding: 20px 0;
}

/* =========================================================
   REVIEW CARD
   ========================================================= */

.pdc-review-card {
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 100%;
    padding: 47px 18px 15px;
    border: 1px solid #dedede;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 12px rgba(0, 0, 0, .15);
    transition: all .4s ease;
}

/* =========================================================
   CENTER ACTIVE CARD
   ========================================================= */

.pdc-reviews-slider .owl-item.center {
    position: relative;
    z-index: 10;
}

.pdc-reviews-slider .owl-item.center .pdc-review-card {
    margin-top: -25px;
    /* margin-bottom: -10px; */

    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 350px;

    padding: 75px 30px 25px;

    border-color: #b95b00;

    background:

        url("./images/bg_img.png") center / cover no-repeat;

    color: #fff;

    /* box-shadow: 0 15px 35px rgba(0, 0, 0, .25); */

    border-radius: 15px;

    position: relative;
    z-index: 5;

    transition: all .4s ease;
}

@media (max-width:768px) {
    .pdc-reviews-slider .owl-item.center .pdc-review-card {
        min-height: 300px;
        width: 100%
    }
}

/* =========================================================
   QUOTE ICON
   ========================================================= */

.pdc-review-quote {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--pdc-orange);
    font-size: 20px;
}

.pdc-reviews-slider .owl-item.center .pdc-review-quote {
    top: 15px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 9px;
    background: var(--pdc-orange);
    color: #fff;
    font-size: 17px;
    transform: translateX(-50%);
}

/* =========================================================
   REVIEW TEXT
   ========================================================= */

.pdc-review-text {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.pdc-reviews-slider .owl-item.center .pdc-review-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

/* =========================================================
   USER
   ========================================================= */

.pdc-review-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 29px;
    padding-top: 12px;
    border-top: 1px solid #e4e4e4;
}

.pdc-reviews-slider .owl-item.center .pdc-review-user {
    justify-content: center;
    margin-top: 30px;
    padding-top: 0;
    border-top: 0;
}

.pdc-review-user-image {
    width: 36px;
    min-width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
}

.pdc-review-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdc-review-user-info h4 {
    margin: 0 0 1px;
    color: #303030;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-review-user-info span {
    display: block;
    color: var(--pdc-slate);
    font-size: 12px;
    line-height: 1.25;
}

.pdc-reviews-slider .owl-item.center .pdc-review-user-info h4,
.pdc-reviews-slider .owl-item.center .pdc-review-user-info span {
    color: #fff;
}

/* =========================================================
   STARS
   ========================================================= */

.pdc-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 12px;
    color: var(--pdc-orange);
    font-size: 12px;
}

.pdc-reviews-slider .owl-item.center .pdc-review-stars {
    justify-content: center;
    margin-top: 13px;
}

/* =========================================================
   OWL DOTS
   ========================================================= */

.pdc-reviews-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0;
}

.pdc-reviews-slider .owl-dot {
    width: 6px;
    height: 6px;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9 !important;
}

.pdc-reviews-slider .owl-dot.active {
    width: 7px;
    height: 7px;
    background: var(--pdc-orange) !important;
}

/* =========================================================
   HIDE OWL NAV
   ========================================================= */

.pdc-reviews-slider .owl-nav {
    display: none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .pdc-reviews-container {}

    .pdc-review-side-image {
        width: 180px;
        height: 250px;
    }

    .pdc-review-left-image {
        left: 15px;
    }

    .pdc-review-right-image {
        right: 15px;
    }

    .pdc-reviews-slider-wrap {
        max-width: 680px;
        margin-top: 75px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {


    .pdc-reviews-heading p br {
        display: none;
    }

    /* Hide decorative images */

    .pdc-review-side-image {
        display: none;
    }

    .pdc-reviews-slider-wrap {
        width: 100%;
        margin-top: 20px;
    }

    .pdc-review-slide {
        min-height: 0;
        padding: 15px 12px 20px;
    }

    /* Mobile active card */

    .pdc-reviews-slider .owl-item.center .pdc-review-card {
        height: 270px;
        margin-top: 0;
        padding: 60px 25px 18px;
    }

    .pdc-review-card {
        height: 250px;
        padding: 48px 20px 15px;
    }

    .pdc-review-text {
        font-size: 11px;
        line-height: 1.45;
    }

    .pdc-reviews-slider .owl-item.center .pdc-review-text {
        font-size: 14px;
        line-height: 1.45;
    }

    .pdc-review-user {
        margin-top: 25px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {



    .pdc-review-slide {
        padding: 15px 8px 20px;
    }

    .pdc-review-card {
        height: 240px;
    }

    .pdc-reviews-slider .owl-item.center .pdc-review-card {
        height: 255px;
    }
}

/* =========================================================
   PDC LOCATIONS SECTION
========================================================= */

.pdc-location-section {
    position: relative;

    background: #fff;
}



/* =========================================================
   LOCATION ROW
========================================================= */

.pdc-location-row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
}

/* =========================================================
   LOCATION CARD
========================================================= */

.pdc-location-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .13);
    transition: all .3s ease;
}

.pdc-location-card:hover {
    border-color: rgba(255, 102, 0, .5);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .13);
    transform: translateY(-3px);
}

/* =========================================================
   LOCATION IMAGE
========================================================= */

.pdc-location-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.pdc-location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.pdc-location-card:hover .pdc-location-image img {
    transform: scale(1.04);
}

/* =========================================================
   LOCATION CONTENT
========================================================= */

.pdc-location-content {
    min-height: 190px;
    padding: 17px 19px 18px;
}

.pdc-location-content h3 {
    margin: 0 0 9px;
    color: var(--pdc-blue);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================================
   LOCATION INFO
========================================================= */

.pdc-location-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.pdc-location-info>i {
    width: 14px;
    min-width: 14px;
    margin-top: 2px;
    color: var(--pdc-orange);
    font-size: 12px;
    text-align: center;
}

.pdc-location-info p,
.pdc-location-info a {
    margin: 0;
    color: var(--pdc-slate);
    font-size: 16px;
    line-height: 1.4;
}

.pdc-location-info a:hover {
    color: var(--pdc-orange);
}

/* =========================================================
   DIRECTIONS
========================================================= */

.pdc-location-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
    color: var(--pdc-orange);
    font-size: 16px;
    font-weight: 700;
}

.pdc-location-directions:hover {
    color: var(--pdc-orange);
}

.pdc-location-directions i {
    font-size: 9px;
    transition: transform .25s ease;
}

.pdc-location-directions:hover i {
    transform: translateX(4px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {




    .pdc-location-image {
        height: 200px;
    }

    .pdc-location-content {
        min-height: 190px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {


    .pdc-location-container {
        padding-left: 18px;
        padding-right: 18px;
    }



    .pdc-all-sub-heading br {
        display: none;
    }

    .pdc-location-row {
        --bs-gutter-y: 18px;
    }

    .pdc-location-image {
        height: 210px;
    }

    .pdc-location-content {
        min-height: auto;
        padding: 17px 18px 20px;
    }

    .pdc-location-content h3 {
        font-size: 17px;
    }

    .pdc-location-info p,
    .pdc-location-info a {
        font-size: 11px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {


    .pdc-location-container {
        padding-left: 15px;
        padding-right: 15px;
    }



    .pdc-location-image {
        height: 190px;
    }

    .pdc-location-content {
        padding: 15px 16px 18px;
    }

    .pdc-location-content h3 {
        font-size: 16px;
    }

    .pdc-location-info {
        gap: 8px;
    }

    .pdc-location-info p,
    .pdc-location-info a {
        font-size: 12px;
    }

    .pdc-location-directions {
        font-size: 11px;
    }
}



/* Main box */
.pdc-right-equipments {
    position: relative;
    /* min-height: 500px; */
    padding: 70px 50px;
    /* overflow: hidden; */
    border-radius: 13px;
    /* Background image */
    background-image:
        linear-gradient(90deg,
            rgba(45, 15, 2, .25),
            rgba(45, 15, 2, .05)),
        url("images/bg_img.png");
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
}


@media (max-width:991px) {
    .pdc-right-equipments {
        padding: 30px 17px;
    }
}

/* Content */
.pdc-right-equipments-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 323px;
    padding: 30px;
}



/* Heading */
.pdc-right-equipments-content h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 700;
}

/* Paragraph */
.pdc-right-equipments-content p {
    margin: 0 0 19px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

/* Buttons */
.pdc-right-equipments-buttons {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    gap: 15px;
}




/* Right equipment */
.pdc-right-equipments-image {
    /* position: absolute; */
    z-index: 2;
    right: 20px;
    bottom: 0;
    /* width: 52%; */
    /* height: 310px; */
    /* display: flex; */
    /* align-items: flex-end; */
    /* justify-content: center; */
    /* pointer-events: none; */
}

.pdc-right-equipments-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center bottom;
}

/* =========================================================
   LOCATIONS WE SERVE
========================================================= */

.pdc-right-locations-section {

    background: #fff;
}

/* =========================================================
   MAIN AREA
========================================================= */

.pdc-right-locations {
    position: relative;
    min-height: 596px;
    overflow: hidden;
    border-radius: 12px;
    /* BACKGROUND IMAGE */
    background-image:
        url("images/location-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* =========================================================
   HEADING
========================================================= */

.pdc-right-locations-heading {
    position: absolute;
    z-index: 5;
    top: 64px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}

.pdc-right-locations-heading h2 {
    margin: 0 0 5px;
    color: #555;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.pdc-right-locations-heading p {
    margin: 0;
    color: var(--pdc-slate);
    font-size: 16px;
    line-height: 1.45;
}

/* =========================================================
   CENTER IMAGE
========================================================= */

.pdc-right-locations-center {
    position: absolute;
    z-index: 3;
    top: 350px;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, .12);
}

.pdc-right-locations-center img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =========================================================
   LOCATION CARD
========================================================= */

.pdc-right-location-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    width: 200px;
    min-height: 68px;
    padding: 8px;
    border: 1px solid var(--pdc-orange);
    border-radius: 14px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.pdc-right-location-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transform: translateY(-3px);
}

/* =========================================================
   CARD ICON
========================================================= */

.pdc-location-icon {
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    border-radius: 7px;
    background: var(--pdc-orange);
    color: #fff;
    font-size: 14px;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.pdc-location-card-content {
    min-width: 0;
}

.pdc-location-card-content h3 {
    margin: 0 0 4px;
    color: var(--pdc-blue);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .4px;
}

.pdc-location-card-content p {
    margin: 0;
    color: #555;
    font-size: 12px;
    line-height: 1.45;
}

/* =========================================================
   CARD POSITIONS
========================================================= */

/* Western United States */
.pdc-location-west {
    top: 260px;
    left: 165px;
}

/* Washington */
.pdc-location-washington {
    top: 173px;
    left: 50%;
    transform: translateX(-50%);
}

.pdc-location-washington:hover {
    transform: translateX(-50%) translateY(-3px);
}

/* Oregon */
.pdc-location-oregon {
    top: 315px;
    right: 165px;
}

/* California */
.pdc-location-california {
    bottom: 117px;
    left: 190px;
}

/* Canada */
.pdc-location-canada {
    bottom: 88px;
    right: 240px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
    .pdc-right-locations {
        min-height: 620px;
    }

    .pdc-right-locations-heading {
        top: 45px;
    }

    .pdc-right-locations-center {
        top: 366px;
        width: 165px;
        height: 165px;
    }

    .pdc-right-location-card {
        width: 155px;
    }

    .pdc-location-west {
        left: 35px;
        top: 260px;
    }

    .pdc-location-washington {
        top: 171px;
    }

    .pdc-location-oregon {
        right: 35px;
        top: 300px;
    }

    .pdc-location-california {
        left: 80px;
        bottom: 65px;
    }

    .pdc-location-canada {
        right: 80px;
        bottom: 65px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {


    .pdc-right-locations {
        min-height: auto;
        padding: 35px 15px 30px;
        background-position: center;
    }

    /* Heading */

    .pdc-right-locations-heading {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        margin-bottom: 25px;
    }

    .pdc-right-locations-heading h2 {
        font-size: 22px;
    }

    .pdc-right-locations-heading p {
        max-width: 500px;
        margin: 0 auto;
        font-size: 12px;
    }

    .pdc-right-locations-heading p br {
        display: none;
    }

    /* Center image */

    .pdc-right-locations-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 155px;
        height: 155px;
        margin: 0 auto 25px;
    }

    /* Cards */

    .pdc-right-location-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100%;
        max-width: 330px;
        min-height: 68px;
        margin: 10px auto;
        transform: none !important;
    }

    .pdc-right-location-card:hover {
        transform: translateY(-2px) !important;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
    .pdc-right-locations {
        padding: 30px 12px 25px;
        border-radius: 10px;
    }

    .pdc-right-locations-heading h2 {
        font-size: 22px;
    }

    .pdc-right-locations-heading p {
        font-size: 12px;
    }

    .pdc-right-locations-center {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .pdc-right-location-card {
        max-width: 300px;
    }

    .pdc-location-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }
}

/* =========================================================
   EQUIPMENT CATEGORY SECTION
========================================================= */

.pdc-equipment-category-section {
    position: relative;
    overflow: hidden;
    /* BG IMAGE */
    background-image: url("images/horizontal-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}

/* =========================================================
   OWL SLIDER
========================================================= */

.pdc-equipment-category-slider {
    position: relative;
}

/* =========================================================
   CARD
========================================================= */

.pdc-equipment-category-card {
    height: 200px;
    padding: 12px 12px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: all .3s ease;
}

.pdc-equipment-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* =========================================================
   IMAGE
========================================================= */

.pdc-equipment-category-image {
    width: 100%;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pdc-equipment-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================================
   TITLE
========================================================= */

.pdc-equipment-category-card h3 {
    width: 100%;
    min-height: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}



/* =========================================================
   ORANGE LINE
========================================================= */

.pdc-equipment-category-line {
    width: 12px;
    height: 2px;
    margin-top: 9px;
    background: var(--pdc-orange);
    display: block;
}

/* =========================================================
   OWL SETTINGS
========================================================= */

.pdc-equipment-category-slider .owl-stage {
    display: flex;
}

.pdc-equipment-category-slider .owl-item {
    display: flex;
}

.pdc-equipment-category-slider .owl-item>div {
    width: 100%;
}

/* Remove default dots */
.pdc-equipment-category-slider .owl-dots {
    display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .pdc-equipment-category-card {
        height: 205px;
    }

    .pdc-equipment-category-image {
        height: 145px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {


    .pdc-equipment-category-card {
        height: 210px;
    }

    .pdc-equipment-category-image {
        height: 150px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {


    .pdc-equipment-category-card {
        height: 210px;
    }

    .pdc-equipment-category-card h3 {
        font-size: 14px;
    }
}

/* =========================================================
   PDC FOOTER
========================================================= */

.pdc-footer {
    width: 100%;
}

/* =========================================================
   MAIN FOOTER
========================================================= */

.pdc-footer-main {
    padding: 60px 0 55px;
    background: var(--pdc-blue);
    color: #fff;
}

/* =========================================================
   LOGO
========================================================= */

.pdc-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 18px;
}

.pdc-footer-logo img {
    width: 105px;
    height: auto;
    display: block;
}

/* =========================================================
   BRAND DESCRIPTION
========================================================= */

.pdc-footer-brand p {
    max-width: 370px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.75;
}

/* =========================================================
   FOOTER HEADINGS
========================================================= */

.pdc-footer-links h3,
.pdc-footer-other h3 {
    display: inline-block;
    margin: 0 0 17px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================================
   LINKS
========================================================= */

.pdc-footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pdc-footer-links li {
    margin-bottom: 11px;
}

.pdc-footer-links a,
.pdc-footer-other a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    transition: color .25s ease;
}

.pdc-footer-links a:hover,
.pdc-footer-other a:hover {
    color: var(--pdc-orange);
}

/* =========================================================
   OTHER LINKS
========================================================= */

.pdc-footer-other a {
    display: block;
}

/* =========================================================
   BOTTOM BAR
========================================================= */

.pdc-footer-bottom {
    padding: 13px 0;
    background: var(--pdc-orange);
    color: #fff;
}

.pdc-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pdc-footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
}

.pdc-footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: opacity .25s ease;
}

.pdc-footer-bottom a:hover {
    opacity: .75;
}

.pdc-footer-bottom span {
    margin: 0 5px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
    .pdc-footer-main {
        padding: 50px 0 40px;
    }

    .pdc-footer-brand {
        margin-bottom: 35px;
    }

    .pdc-footer-other {
        margin-top: 30px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .pdc-footer-main {
        padding: 40px 0 35px;
    }

    .pdc-footer-brand {
        text-align: center;
        margin-bottom: 35px;
    }

    .pdc-footer-brand p {
        max-width: 450px;
        margin: 0 auto;
    }

    .pdc-footer-links {
        margin-bottom: 25px;
    }

    .pdc-footer-links,
    .pdc-footer-other {
        text-align: center;
    }

    .pdc-footer-other {
        margin-top: 0;
    }

    .pdc-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 7px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
    .pdc-footer-main {
        padding: 35px 0 30px;
    }

    .pdc-footer-links .row {
        max-width: 300px;
        margin: auto;
    }

    .pdc-footer-logo {
        margin-bottom: 15px;
    }

    .pdc-footer-logo img {
        width: 100px;
    }

    .pdc-footer-brand p {
        font-size: 9px;
        line-height: 1.7;
    }

    .pdc-footer-bottom {
        padding: 12px 0;
    }
}




/* About page css start here */

/* =========================================
   OUR JOURNEY
========================================= */

.our-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
}


/* Timeline line */
.our-journey-line {
    position: absolute;
    top: 19px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--pdc-blue);
    opacity: 0.45;
    z-index: 0;
}


/* Journey item */
.our-journey-item {
    position: relative;
    z-index: 1;
    text-align: center;
}


/* Circle */
.our-journey-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    margin: 0 auto;

    border-radius: 50%;
    background: var(--pdc-blue);

    color: var(--pdc-white);
    font-size: 15px;
    line-height: 1;

    border: 2px solid var(--pdc-white);
}


/* Orange circle */
.our-journey-icon-orange {
    background: var(--pdc-orange);
}


/* PDC text inside circle */
.our-journey-icon span {
    font-size: 11px;
    font-weight: 700;
}


/* Year */
.our-journey-year {
    margin: 9px 0 3px;

    color: var(--pdc-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}


/* Description */
.our-journey-text {
    margin: 0;

    color: var(--pdc-slate);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

    .our-journey {
        margin-top: 35px;
    }

    .our-journey-line {
        left: 6%;
        right: 6%;
    }

}


@media (max-width: 767.98px) {

    .our-journey {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .our-journey-line {
        display: none;
    }

}


@media (max-width: 575.98px) {

    .our-journey {
        margin-top: 30px;
        column-gap: 10px;
        row-gap: 30px;
    }

    .our-journey-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .our-journey-year {
        font-size: 15px;
    }

    .our-journey-text {
        font-size: 11px;
    }

}




/* =========================================
   OUR PRINCIPLES SECTION
========================================= */

.our-principles-section {

    background: var(--pdc-white);
}

.our-principles-wrapper {
    padding: 55px;
    border-radius: 20px;
    background: #f1f5f9;
}


/* =========================================
   HEADING
========================================= */

.our-principles-heading {
    text-align: center;
    margin-bottom: 42px;
}



/* =========================================
   CARDS
========================================= */

.our-principles-row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 25px;
}

.our-principles-card {
    height: 100%;
    min-height: 175px;

    display: flex;
    align-items: flex-start;

    padding: 30px;

    background: var(--pdc-white);
    border: 1px solid #e8e8e8;
    border-radius: 11px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}


/* =========================================
   ICON
========================================= */

.our-principles-icon {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border: 3px solid rgba(46, 49, 146, 0.22);
    border-radius: 50%;

    background: rgba(46, 49, 146, 0.06);

    color: var(--pdc-blue);
    font-size: 23px;
}

.our-principles-icon-orange {
    border-color: rgba(255, 102, 0, 0.28);
    background: rgba(255, 102, 0, 0.07);
    color: var(--pdc-orange);
}


/* =========================================
   CONTENT
========================================= */

.our-principles-content {
    padding-top: 1px;
}

.our-principles-card-title {
    margin: 0 0 9px;

    color: var(--pdc-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.our-principles-card-text {
    margin: 0;

    color: var(--pdc-slate);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .our-principles-wrapper {
        padding: 45px 35px;
    }

    .our-principles-card {
        padding: 25px;
    }

    .our-principles-icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        margin-right: 17px;
    }

}


@media (max-width: 991.98px) {



    .our-principles-wrapper {
        padding: 40px 25px;
    }

    .our-principles-title {
        font-size: 30px;
    }

    .our-principles-row {
        --bs-gutter-x: 20px;
    }

}


@media (max-width: 767.98px) {

    .our-principles-wrapper {
        padding: 35px 20px;
        border-radius: 15px;
    }

    .our-principles-heading {
        margin-bottom: 30px;
    }



    .pdc-all-sub-heading br {
        display: none;
    }

    .our-principles-card {
        min-height: auto;
    }

}


@media (max-width: 575.98px) {



    .our-principles-wrapper {
        padding: 30px 15px;
    }

    .our-principles-title {
        font-size: 24px;
    }

    .our-principles-card {
        padding: 22px;
    }

    .our-principles-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        margin-right: 15px;
        font-size: 19px;
    }

    .our-principles-card-title {
        font-size: 17px;
    }

    .our-principles-card-text {
        font-size: 12px;
        line-height: 1.55;
    }

}


/* =========================================
   WHY INDUSTRIES TRUST US
========================================= */

.why-industries-section {

    background: var(--pdc-white);
}


/* =========================================
   HEADING
========================================= */

.why-industries-heading {
    text-align: center;
    margin-bottom: 40px;
}

.why-industries-title {
    margin: 0 0 6px;
    color: #555555;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.why-industries-description {
    margin: 0;
    color: var(--pdc-slate);
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================
   CARDS ROW
========================================= */

.why-industries-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 25px;
}


/* =========================================
   CARD
========================================= */

.why-industries-card {
    height: 100%;
    min-height: 145px;

    display: flex;
    align-items: flex-start;

    padding: 20px;

    background: var(--pdc-white);

    border: 1px solid var(--pdc-orange);
    border-radius: 17px;

    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.14);

    transition: all 0.3s ease;
}

.why-industries-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.17);
}


/* =========================================
   ICON
========================================= */

.why-industries-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 20px;

    color: var(--pdc-blue);
    font-size: 25px;
}

.why-industries-icon-orange {
    color: var(--pdc-orange);
}


/* =========================================
   CONTENT
========================================= */

.why-industries-content {
    min-width: 0;
}

.why-industries-card-title {
    margin: 0;

    color: #16234f;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}


/* Small line below heading */
.why-industries-line {
    display: block;

    width: 38px;
    height: 2px;

    margin: 13px 0 13px;

    background: var(--pdc-blue);
}

.why-industries-icon-orange+.why-industries-content .why-industries-line {
    background: var(--pdc-orange);
}


/* Description */
.why-industries-card-text {
    margin: 0;

    color: var(--pdc-slate);
    font-size: 14px;
    line-height: 1.25;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .why-industries-card {
        padding: 20px 18px;
    }

    .why-industries-icon {
        margin-right: 15px;
    }

    .why-industries-card-title {
        font-size: 18px;
    }

    .why-industries-card-text {
        font-size: 13px;
    }

}


@media (max-width: 991.98px) {



    .why-industries-heading {
        margin-bottom: 30px;
    }

    .why-industries-title {
        font-size: 30px;
    }

}


@media (max-width: 767.98px) {



    .pdc-all-sub-heading br {
        display: none;
    }

    .why-industries-title {
        font-size: 28px;
    }

    .why-industries-card {
        min-height: 140px;
    }

}


@media (max-width: 575.98px) {



    .why-industries-title {
        font-size: 25px;
    }

    .why-industries-description {
        font-size: 13px;
    }

    .why-industries-card {
        padding: 18px;
        border-radius: 14px;
    }

    .why-industries-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        margin-right: 14px;
        font-size: 22px;
    }

    .why-industries-card-title {
        font-size: 17px;
    }

    .why-industries-line {
        margin: 10px 0;
    }

    .why-industries-card-text {
        font-size: 12px;
        line-height: 1.4;
    }

}


/* =========================================
   SOLUTIONS FOR EVERY INDUSTRY
========================================= */

.solutions-industry-section {

    background: var(--pdc-white);
}

.solutions-industry-wrapper {
    position: relative;
    padding: 55px 55px 0;
    background: var(--pdc-blue);
    border-radius: 18px 18px 0 0;
}


/* =========================================
   HEADING
========================================= */

.solutions-industry-heading {
    margin-bottom: 45px;
    text-align: center;
}

.solutions-industry-title {
    margin: 0;
    color: var(--pdc-white);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================
   INDUSTRY CARDS
========================================= */

.solutions-industry-list {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 20px;
}

.solutions-industry-list>.col {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
}

.solutions-industry-card {
    position: relative;
    height: 218px;
    overflow: hidden;

    border-radius: 10px;

    background: #222;
}

.solutions-industry-card img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.solutions-industry-card:hover img {
    transform: scale(1.06);
}


/* Dark image overlay */
.solutions-industry-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.78) 100%);
}


/* =========================================
   INDUSTRY ICON
========================================= */

.solutions-industry-icon {
    position: absolute;

    left: 50%;
    bottom: 43px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);

    border: 1px solid var(--pdc-orange);
    border-radius: 50%;

    background: rgba(255, 102, 0, 0.28);

    color: var(--pdc-orange);
    font-size: 15px;
}


/* Industry name */
.solutions-industry-card h3 {
    position: absolute;

    left: 5px;
    right: 5px;
    bottom: 12px;

    margin: 0;

    color: var(--pdc-white);
    text-align: center;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================
   STATISTICS
========================================= */

.solutions-industry-stats {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin: 0 30px;
    padding: 25px 50px;

    background: var(--pdc-white);
    border-radius: 17px;

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);

    transform: translateY(45px);
}


/* Single stat */
.solutions-industry-stat {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}


/* Stat icon */
.solutions-industry-stat-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 16px;

    color: #8c93a8;
    font-size: 36px;
}


/* Stat content */
.solutions-industry-stat-content {
    min-width: 0;
}

.solutions-industry-stat-content h3 {
    margin: 0;

    color: #14204e;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}


/* Orange line */
.solutions-industry-stat-line {
    display: block;

    width: 38px;
    height: 2px;

    margin: 7px 0 7px;

    background: var(--pdc-orange);
}


.solutions-industry-stat-content p {
    margin: 0;

    color: #14204e;
    font-size: 12px;
    line-height: 1.2;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199.98px) {

    .solutions-industry-wrapper {
        padding: 45px 35px 0;
    }

    .solutions-industry-list {
        --bs-gutter-x: 10px;
    }

    .solutions-industry-card {
        height: 205px;
    }

    .solutions-industry-card h3 {
        font-size: 13px;
    }

    .solutions-industry-stats {
        margin: 0 15px;
        padding: 22px 25px;
    }

    .solutions-industry-stat-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        margin-right: 10px;
        font-size: 30px;
    }

    .solutions-industry-stat-content h3 {
        font-size: 29px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {



    .solutions-industry-wrapper {
        padding: 40px 25px 0;
    }

    .solutions-industry-title {
        font-size: 30px;
    }

    .solutions-industry-list>.col {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .solutions-industry-card {
        height: 190px;
    }

    .solutions-industry-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
        padding: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .solutions-industry-wrapper {
        padding: 35px 20px 0;
        border-radius: 15px 15px 0 0;
    }

    .solutions-industry-heading {
        margin-bottom: 30px;
    }

    .solutions-industry-title {
        font-size: 27px;
    }

    .solutions-industry-list>.col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .solutions-industry-card {
        height: 200px;
    }

    .solutions-industry-stats {
        margin: 0 5px;
        padding: 22px 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {


    .solutions-industry-wrapper {
        padding: 30px 12px 0;
    }

    .solutions-industry-title {
        font-size: 24px;
    }

    .solutions-industry-card {
        height: 180px;
    }

    .solutions-industry-icon {
        width: 34px;
        height: 34px;

        bottom: 40px;

        font-size: 13px;
    }

    .solutions-industry-card h3 {
        font-size: 12px;
    }

    .solutions-industry-stats {
        grid-template-columns: 1fr;
        row-gap: 20px;

        margin: 0;

        padding: 22px 25px;

        transform: translateY(35px);
    }

    .solutions-industry-stat {
        justify-content: flex-start;
    }

}


/* =========================================
   SIMPLE PROCESS
========================================= */

.simple-process-section {

    background: var(--pdc-white);
}


/* =========================================
   HEADING
========================================= */

.simple-process-heading {
    margin-bottom: 40px;
    text-align: center;
}

.simple-process-title {
    margin: 0 0 6px;

    color: #555555;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.simple-process-description {
    margin: 0;
    color: var(--pdc-slate);
    font-size: 16px;
    line-height: 1.4;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.simple-process {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 0 30px;
}


/* =========================================
   CONNECTING LINE
========================================= */

.simple-process-line {
    position: absolute;

    top: 91px;
    left: 5%;
    right: 5%;

    height: 5px;

    background: linear-gradient(90deg,
            var(--pdc-orange) 0%,
            #c6a9ad 50%,
            var(--pdc-orange) 100%);

    border-radius: 10px;

    z-index: 0;
}


/* =========================================
   PROCESS ITEM
========================================= */

.simple-process-item {
    position: relative;

    z-index: 1;

    text-align: center;
}


/* =========================================
   ICON
========================================= */

.simple-process-icon {
    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    border-radius: 50%;

    background: var(--pdc-blue);

    color: var(--pdc-white);

    font-size: 39px;

    border: 3px solid var(--pdc-white);
}

.simple-process-icon-orange {
    background: var(--pdc-orange);
}


/* =========================================
   NUMBER
========================================= */

.simple-process-number {
    margin-top: 29px;

    color: var(--pdc-blue);

    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}


/* =========================================
   TITLE
========================================= */

.simple-process-item-title {
    margin: 16px 0 10px;

    color: var(--pdc-blue);

    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}


/* =========================================
   DESCRIPTION
========================================= */

.simple-process-item-text {
    max-width: 210px;

    margin: 0 auto;

    color: var(--pdc-slate);

    font-size: 14px;
    line-height: 1.35;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199.98px) {

    .simple-process {
        padding: 0 15px;
    }

    .simple-process-icon {
        width: 82px;
        height: 82px;

        font-size: 34px;
    }

    .simple-process-line {
        top: 81px;
    }

    .simple-process-item-title {
        font-size: 17px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {



    .simple-process-title {
        font-size: 30px;
    }

    .simple-process {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 45px;
    }

    .simple-process-line {
        display: none;
    }

    .simple-process-item-text {
        max-width: 240px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {


    .simple-process-heading {
        margin-bottom: 35px;
    }

    .simple-process-title {
        font-size: 27px;
    }

    .simple-process-description {
        font-size: 13px;
    }

    .simple-process {
        grid-template-columns: 1fr;
        row-gap: 40px;
        padding: 0;
    }

    .simple-process-icon {
        width: 75px;
        height: 75px;

        font-size: 30px;
    }

    .simple-process-number {
        margin-top: 15px;
        font-size: 25px;
    }

    .simple-process-item-title {
        margin-top: 10px;
        font-size: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .simple-process-title {
        font-size: 24px;
    }

    .simple-process-description {
        font-size: 12px;
    }

    .simple-process-icon {
        width: 68px;
        height: 68px;

        font-size: 27px;
    }

    .simple-process-number {
        font-size: 23px;
    }

    .simple-process-item-title {
        font-size: 17px;
    }

    .simple-process-item-text {
        font-size: 12px;
    }

}

/* About page css end here */







/* Equipment page css start here  */
/* =========================================
   MAIN
========================================= */

.pdc-all-eqipment {
    width: 100%;
    padding: 35px 0;
    background: var(--pdc-white);
}


/* =========================================
   HEADER
========================================= */

.pdc-all-eqipment .pdc-equipment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.pdc-all-eqipment .pdc-equipment-header h2 {
    margin: 0;
    color: #555;
    font-size: 20px;
    font-weight: 700;
}


/* =========================================
   SEARCH
========================================= */

.pdc-all-eqipment .pdc-equipment-search {
    width: 55%;
    height: 40px;

    display: flex;
    align-items: center;

    border: 1px solid var(--pdc-border);
    border-radius: 4px;

    padding: 0 12px;
}

.pdc-all-eqipment .pdc-equipment-search i {
    color: var(--pdc-slate);
    font-size: 16px;
    margin-right: 10px;
}

.pdc-all-eqipment .pdc-equipment-search input {
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    color: var(--pdc-black);
    background: transparent;

    font-size: 14px;
}

.pdc-all-eqipment .pdc-equipment-search input::placeholder {
    color: var(--pdc-slate);
}


/* =========================================
   CARD
========================================= */

.pdc-all-eqipment .pdc-equipment-card {
    height: 100%;
    min-height: 365px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--pdc-white);

    border-radius: 18px;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.10),
        0 2px 5px rgba(0, 0, 0, 0.05);

    transition: all 0.25s ease;
}

.pdc-all-eqipment .pdc-equipment-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.pdc-all-eqipment .pdc-equipment-image {
    position: relative;

    height: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px 0;
}

.pdc-all-eqipment .pdc-equipment-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================
   BADGE
========================================= */

.pdc-all-eqipment .pdc-equipment-badge {
    position: absolute;

    top: 24px;
    left: 25px;

    z-index: 2;

    padding: 5px 9px;

    color: var(--pdc-white);
    background: var(--pdc-blue);

    border-radius: 3px;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================
   CONTENT
========================================= */

.pdc-all-eqipment .pdc-equipment-content {
    flex: 1;
    padding: 11px 20px 0;
}

.pdc-all-eqipment .pdc-equipment-content h3 {
    margin: 0 0 10px;

    color: var(--pdc-blue);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.pdc-all-eqipment .pdc-equipment-content p {
    margin: 0;

    color: var(--pdc-slate);

    font-size: 14px;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* =========================================
   SPECS
========================================= */

.pdc-all-eqipment .pdc-equipment-specs {
    margin-top: 11px;
}

.pdc-all-eqipment .pdc-equipment-specs>div {
    display: flex;
    align-items: center;
    gap: 7px;

    min-height: 20px;

    font-size: 11px;
}

.pdc-all-eqipment .pdc-equipment-specs i {
    width: 13px;
    color: var(--pdc-orange);
    font-size: 13px;
}

.pdc-all-eqipment .pdc-equipment-specs span,
.pdc-all-eqipment .pdc-equipment-specs strong {
    color: var(--pdc-black);
}

.pdc-all-eqipment .pdc-equipment-specs strong {
    font-weight: 400;
}


/* =========================================
   DETAILS
========================================= */

.pdc-all-eqipment .pdc-equipment-details {
    display: flex;
    align-items: center;
    gap: 5px;

    min-height: 30px;

    margin: 0 18px 18px;
    padding: 0;

    color: var(--pdc-orange);
    background: #f8f9fa;

    border-top: 1px solid var(--pdc-border);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}

.pdc-all-eqipment .pdc-equipment-details:hover {
    color: var(--pdc-blue);
}

.pdc-all-eqipment .pdc-equipment-details i {
    transition: transform 0.2s ease;
}

.pdc-all-eqipment .pdc-equipment-details:hover i {
    transform: translateX(3px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pdc-all-eqipment {
        padding: 25px 0;
    }

    .pdc-all-eqipment .pdc-equipment-header {
        flex-direction: column;
        align-items: stretch;

        gap: 18px;
        margin-bottom: 25px;
    }

    .pdc-all-eqipment .pdc-equipment-search {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pdc-all-eqipment .pdc-equipment-card {
        border-radius: 15px;
    }

    .pdc-all-eqipment .pdc-equipment-image {
        height: 180px;
    }

}

/* Equipment page css end here  */




/* rental page css start here  */
/* =========================================
   MAIN SECTION
========================================= */

.pdc-dust-benefits {
    width: 100%;
    padding: 10px 0 14px;
    background: var(--pdc-white);
}


/* =========================================
   BENEFITS
========================================= */

.pdc-dust-benefits .pdc-benefits-row {
    min-height: 340px;
}

.pdc-dust-benefits .pdc-benefits-content {
    max-width: 560px;
    padding-left: 15px;
}

.pdc-dust-benefits .pdc-benefits-content h2 {
    margin: 0 0 22px;

    color: #555;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
}

.pdc-dust-benefits .pdc-benefits-content p {
    margin: 0 0 13px;

    color: #475569;

    font-size: 15px;
    line-height: 1.3;
}


/* =========================================
   BENEFIT IMAGE
========================================= */

.pdc-dust-benefits .pdc-benefits-image {
    width: 100%;
    height: 310px;

    overflow: hidden;

    border-radius: 18px;
}

.pdc-dust-benefits .pdc-benefits-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.pdc-dust-benefits .pdc-benefits-image:hover img {
    transform: scale(1.03);
}


/* =========================================
   APPLICATION HEADING
========================================= */

.pdc-dust-benefits .pdc-applications-heading {
    text-align: center;

    margin: 50px 0 38px;
}

.pdc-dust-benefits .pdc-applications-heading h2 {
    margin: 0 0 8px;

    color: #555;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.pdc-dust-benefits .pdc-applications-heading p {
    margin: 0;

    color: #475569;

    font-size: 15px;
    line-height: 1.4;
}


/* =========================================
   APPLICATION CARD
========================================= */

.pdc-dust-benefits .pdc-application-card {
    position: relative;

    height: 238px;

    overflow: hidden;

    border-radius: 17px;

    background: #222;
}

.pdc-dust-benefits .pdc-application-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.pdc-dust-benefits .pdc-application-card:hover img {
    transform: scale(1.06);
}


/* =========================================
   DARK OVERLAY
========================================= */

.pdc-dust-benefits .pdc-application-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.72) 100%);
}


/* =========================================
   CARD CONTENT
========================================= */

.pdc-dust-benefits .pdc-application-content {
    position: absolute;

    left: 22px;
    right: 15px;
    bottom: 23px;

    color: var(--pdc-white);
}

.pdc-dust-benefits .pdc-application-content i {
    display: block;

    margin-bottom: 11px;

    font-size: 25px;
    line-height: 1;
}

.pdc-dust-benefits .pdc-application-content h3 {
    margin: 0;

    color: var(--pdc-white);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .pdc-dust-benefits {
        padding-top: 30px;
    }

    .pdc-dust-benefits .pdc-benefits-content {
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .pdc-dust-benefits .pdc-benefits-content h2 {
        font-size: 30px;
    }

    .pdc-dust-benefits .pdc-benefits-image {
        height: 300px;
    }

    .pdc-dust-benefits .pdc-applications-heading {
        margin-top: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .pdc-dust-benefits {
        padding: 25px 0;
    }

    .pdc-dust-benefits .pdc-benefits-content h2 {
        font-size: 27px;
    }

    .pdc-dust-benefits .pdc-benefits-content p {
        font-size: 14px;
    }

    .pdc-dust-benefits .pdc-benefits-image {
        height: 250px;
        border-radius: 14px;
    }

    .pdc-dust-benefits .pdc-applications-heading {
        margin: 45px 0 25px;
    }

    .pdc-dust-benefits .pdc-applications-heading h2 {
        font-size: 27px;
    }

    .pdc-dust-benefits .pdc-applications-heading p {
        font-size: 14px;
    }

    .pdc-dust-benefits .pdc-application-card {
        height: 230px;
        border-radius: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .pdc-dust-benefits .pdc-benefits-content h2 {
        font-size: 25px;
    }

    .pdc-dust-benefits .pdc-benefits-image {
        height: 220px;
    }

    .pdc-dust-benefits .pdc-application-card {
        height: 220px;
    }

}



/* =========================
   BASE
========================= */

.pdc-quote-section {
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    align-items: center;

    /*
     * Replace this with your actual background image:
     *
     * background-image: url("images/background.jpg");
     */

    background:
        linear-gradient(rgba(95, 38, 5, 0.25),
            rgba(95, 38, 5, 0.25)),
        url("images/pdc-bg.jpg") center center / cover no-repeat;

    background-color: #753309;
}


/* =========================
   MAIN CARD
========================= */

.pdc-quote-card {
    display: grid;
    grid-template-columns: 1fr 1.85fr;

    width: 100%;
    max-width: 1085px;
    min-height: 747px;

    margin: 0 auto;

    overflow: hidden;

    background: var(--pdc-white);

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);
}


/* =========================
   LEFT PANEL
========================= */

.pdc-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 52px 30px 38px;

    background: var(--pdc-blue);
    color: var(--pdc-white);
}


.pdc-info-title {
    margin: 0 0 25px;

    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}


.pdc-info-description {
    max-width: 380px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================
   CONTACT
========================= */

.pdc-contact {
    margin-top: 50px;
}


.pdc-contact-title {
    margin: 0 0 22px;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
}


.pdc-contact-description {
    max-width: 390px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================
   CONTACT ITEM
========================= */

.pdc-contact-item {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.pdc-contact-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--pdc-white);

    color: var(--pdc-orange);

    font-size: 21px;
}


.pdc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.pdc-contact-label {
    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}


.pdc-contact-value {
    color: var(--pdc-white);

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}


.pdc-contact-value:hover {
    color: var(--pdc-orange);
}


/* =========================
   RIGHT FORM
========================= */

.pdc-form-wrapper {
    background: var(--pdc-white);
}


.pdc-form-content {
    padding: 25px 30px 30px;
}


.pdc-form-title {
    margin: 0 0 10px;

    color: #555555;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}


.pdc-form-intro {
    max-width: 570px;

    margin: 0 0 24px;

    color: var(--pdc-slate);

    font-size: 16px;
    line-height: 1.55;
}


/* =========================
   FORM
========================= */

.pdc-label {
    display: block;

    margin-bottom: 7px;

    color: var(--pdc-black);

    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}


.pdc-input,
.pdc-textarea {
    border: 1px solid #dfe5ec;

    background: #f1f5f9;

    color: #1e293b;

    border-radius: 8px;

    box-shadow: none;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.pdc-input {
    height: 47px;
}


.pdc-input::placeholder,
.pdc-textarea::placeholder {
    color: #64748b;
    opacity: 1;
}


.pdc-input:focus,
.pdc-textarea:focus {
    border-color: var(--pdc-blue);

    background: var(--pdc-white);

    box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.08);
}


.pdc-textarea {
    min-height: 118px;

    padding: 14px;

    resize: vertical;
}


/* =========================
   CAPTCHA
========================= */

.pdc-captcha {
    width: 280px;
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    border: 1px solid #e5e5e5;

    background: #fafafa;
}


.pdc-captcha-check {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #222;

    font-size: 14px;
}


.pdc-checkbox {
    width: 26px;
    height: 26px;

    display: block;

    border: 2px solid #555;

    background: var(--pdc-white);
}


.pdc-captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #777;

    line-height: 1;
}


.pdc-captcha-logo i {
    margin-bottom: 3px;

    color: #4285f4;

    font-size: 24px;
}


.pdc-captcha-logo small {
    font-size: 10px;
}


.pdc-captcha-logo span {
    margin-top: 3px;

    font-size: 7px;
}


/* =========================
   SUBMIT BUTTON
========================= */

.pdc-submit {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;
    border-radius: 8px;

    background: var(--pdc-orange);
    color: var(--pdc-white);

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.pdc-submit:hover {
    background: #e95d00;

    transform: translateY(-1px);

    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.25);
}


.pdc-submit:active {
    transform: translateY(0);
}


.pdc-submit i {
    font-size: 17px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    .pdc-quote-section {
        padding: 30px 0;
    }


    .pdc-quote-card {
        grid-template-columns: 1fr;

        max-width: 700px;
    }


    .pdc-info {
        padding: 40px;
    }


    .pdc-info-top {
        margin-bottom: 40px;
    }


    .pdc-contact {
        margin-top: 0;
    }


    .pdc-contact-description {
        max-width: 600px;
    }

}


@media (max-width: 767.98px) {

    .pdc-quote-section {
        padding: 20px 0;
    }


    .pdc-quote-card {
        border-radius: 14px;
    }


    .pdc-info {
        padding: 35px 25px;
    }


    .pdc-info-title,
    .pdc-contact-title {
        font-size: 29px;
    }


    .pdc-info-description,
    .pdc-contact-description {
        font-size: 15px;
    }


    .pdc-form-content {
        padding: 30px 25px;
    }


    .pdc-form-title {
        font-size: 30px;
    }


    .pdc-form-intro {
        font-size: 15px;
    }


    .pdc-captcha {
        width: 100%;
        max-width: 280px;
    }

}


@media (max-width: 575.98px) {

    .pdc-quote-section {
        padding: 0;
    }


    .pdc-quote-card {
        border-radius: 0;

        min-height: 100vh;
    }


    .pdc-info {
        padding: 35px 20px;
    }


    .pdc-form-content {
        padding: 30px 20px;
    }


    .pdc-info-title,
    .pdc-contact-title {
        font-size: 27px;
    }


    .pdc-form-title {
        font-size: 28px;
    }


    .pdc-submit {
        min-height: 52px;
    }

}

/* Reantal page css end here  */