﻿/* Slider Overlay */
#rev_slider_1_1_wrapper .tp-bgimg {
    position: relative;
}

    #rev_slider_1_1_wrapper .tp-bgimg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #192f59d1;
        z-index: 1;
    }

#rev_slider_1_1_wrapper .tp-caption,
#rev_slider_1_1_wrapper .tp-static-layer,
#rev_slider_1_1_wrapper .tp-bullets,
#rev_slider_1_1_wrapper .tparrows {
    z-index: 999 !important;
}



/*=========================================================
 PIHM PROGRAMS OFFERED
=========================================================*/

.pihm-programs-section {
    padding: 10px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

    .pihm-programs-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 220px;
        background: linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
        z-index: 0;
    }

    .pihm-programs-section .kingster-container {
        position: relative;
        z-index: 2;
    }

/*====================
Heading
====================*/

.pihm-programs-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.pihm-programs-heading h2 {
    margin: 0;
    font-size: clamp(28px,3vw,38px);
    font-weight: 700;
    color: #192f59;
    line-height: 1.2;
}

.pihm-programs-heading p {
    color: #666;
    font-size: 15px;
    max-width: 620px;
    margin: 15px auto 0;
    line-height: 1.8;
}

/*====================
Grid
====================*/

.pihm-programs-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 28px;
}

/*====================
Card
====================*/

.pihm-program-card {
    background: #fff;
    border-radius: 18px;
    padding: 15px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.06);
    z-index: 2;
    opacity: 0;
    animation: pihmFadeUp .8s forwards;
}

    .pihm-program-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#192f59,#ce0505,#ff9a00);
        transform: scaleX(0);
        transform-origin: left;
        transition: .4s;
    }

    .pihm-program-card::after {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(25,47,89,.05);
        border-radius: 50%;
        top: -120px;
        right: -120px;
        transition: .5s;
        z-index: -1;
    }

    .pihm-program-card:hover::before {
        transform: scaleX(1);
    }

    .pihm-program-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 25px 60px rgba(0,0,0,.15);
        border-color: #192f59;
    }

        .pihm-program-card:hover::after {
            transform: scale(2);
            opacity: .8;
        }

/*====================
Icon
====================*/

.pihm-program-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f3f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    animation: pihmFloat 3.5s ease-in-out infinite;
}

    .pihm-program-icon i {
        font-size: 26px;
        color: #192f59;
        transition: .4s;
    }

.pihm-program-card:hover .pihm-program-icon {
    background: #192f59;
    transform: translateY(-8px) rotate(12deg) scale(1.12);
}

    .pihm-program-card:hover .pihm-program-icon i {
        color: #fff;
    }

@keyframes pihmFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*====================
Title
====================*/

.pihm-program-card h3 {
    margin: 0 0 10px;
    color: #192f59;
    font-size: 15px;
    line-height: 1.35;
    min-height: 56px;
    font-weight: 700;
    transition: .35s;
}

.pihm-program-card:hover h3 {
    color: #ef7f1b;
}

/*====================
Paragraph
====================*/

.pihm-program-card p {
    color: #666;
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 0;
    min-height: 72px;
    transition: .35s;
}

.pihm-program-card:hover p {
    color: #444;
}

/*====================
Button
====================*/

.pihm-program-btn {
    display: inline-flex;
    align-items: center;
    font-size:12px;
    gap: 6px;
    color: #192f59;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .pihm-program-btn span {
        display: inline-block;
        transition: .35s;
    }

.pihm-program-card:hover .pihm-program-btn span {
    transform: translateX(8px);
}

.pihm-program-btn:hover {
    color: #ef7f1b;
    text-decoration: none;
}

        .pihm-program-btn:hover span {
            transform: translateX(6px);
        }

@keyframes pihmFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pihm-program-card:nth-child(1) {
    animation-delay: .1s;
}

.pihm-program-card:nth-child(2) {
    animation-delay: .2s;
}

.pihm-program-card:nth-child(3) {
    animation-delay: .3s;
}

.pihm-program-card:nth-child(4) {
    animation-delay: .4s;
}

.pihm-program-card:nth-child(5) {
    animation-delay: .5s;
}

/*====================
Responsive
====================*/

/*@media(max-width:1400px) {

    .pihm-programs-grid {
        grid-template-columns: repeat(3,1fr);
    }
}*/

/* Large Desktop */
@media (min-width:1200px) {

    .pihm-programs-grid {
        grid-template-columns: repeat(5,1fr);
        gap: 18px;
    }
}

/*============== Large Laptop ==============*/

@media (max-width:1199px) {

    .pihm-programs-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
    }
}

/*============== Tablet ==============*/

@media (max-width:991px) {

    .pihm-programs-section {
        padding: 65px 0;
    }

    .pihm-programs-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }
}

/*============== Mobile ==============*/

@media (max-width:767px) {

    .pihm-programs-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:767px) {

    .pihm-programs-section {
        padding: 55px 0;
    }

    .pihm-programs-grid {
        grid-template-columns: 1fr;
    }

    .pihm-program-card {
        padding: 30px 22px;
    }

    .pihm-program-icon {
        width: 72px;
        height: 72px;
    }

        .pihm-program-icon i {
            font-size: 30px;
        }
}

@media(max-width:480px) {

    .pihm-program-card {
        padding: 25px 20px;
    }

        .pihm-program-card p {
            font-size: 14px;
        }
}


/*Student centric activities styling*/

.pihm-activities-section {
    position: relative;
    padding: 45px 18px;
    background: #f8f6f2;
    overflow: hidden;
}

.pihm-activities-container {
    max-width: 1180px;
    margin: auto;
}

/*=========================
MAIN HEADING
==========================*/

.pihm-main-heading {
    background: linear-gradient(135deg,#0d2d63,#183d78);
    padding: 22px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
    overflow: hidden;
}

    .pihm-main-heading:before {
        width: 170px;
        height: 170px;
        top: -90px;
        right: -60px;
    }

    .pihm-main-heading h2 {
        margin: 0;
        font-size: 34px;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: .5px;
        color:#fff;
    }

        .pihm-main-heading h2 span {
            color: #ef7f1b;
        }

    .pihm-main-heading h4 {
        margin: 6px 0px 0px 0px;
        font-size: 19px;
        font-weight: 500;
        color:#fff;
    }

    .pihm-main-heading strong {
        color: #ef7f1b;
    }


/*=========================
STRIP
==========================*/

.pihm-strip {
    margin: 10px 0 10px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    background: #ef7f1b;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.pihm-strip-title {
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
/*=========================
COUNTERS
==========================*/

.pihm-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    margin: 12px 0 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.pihm-counter-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px 8px;
    border-right: 1px solid #d4a63b;
}

    .pihm-counter-card:last-child {
        border-right: none;
    }

    .pihm-counter-card:hover {
        background: #faf7ef;
        transform: translateY(-3px);
    }

.pihm-counter-number {
    font-size: 22px;
    font-weight: 700;
    color: #0d2d63;
    margin-right: 8px;
}

.pihm-counter-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .pihm-counter-text span {
        font-size: 13px;
        color: #333;
        font-weight: 500;
    }


/*=========================
GALLERY
==========================*/

.pihm-gallery {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}

.pihm-gallery-card {
    background: #fff;
    /*border-radius: 12px;*/
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

    .pihm-gallery-card:hover {
        transform: translateY(-10px);
    }

.pihm-gallery-image {
    overflow: hidden;
    height: 150px;
}

    .pihm-gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.pihm-gallery-card:hover img {
    transform: scale(1.08);
}

.pihm-gallery-content {
    padding: 12px;
}

    .pihm-gallery-content h5 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .pihm-gallery-content p {
        font-size: 13px;
        margin:0;
    }


/* ===============================
   Laptop & Tablet (≤ 992px)
================================*/
@media (max-width:992px) {

    .pihm-activities-section {
        padding: 40px 18px;
    }

    .pihm-main-heading {
        padding: 20px 18px;
    }

        .pihm-main-heading h2 {
            font-size: 30px;
        }

        .pihm-main-heading h4 {
            font-size: 18px;
        }

    .pihm-strip-title {
        font-size: 15px;
        padding: 10px 16px;
    }

    .pihm-counter-wrapper {
        grid-template-columns: repeat(3,1fr);
    }

    .pihm-gallery {
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
    }

    .pihm-gallery-image {
        height: 150px;
    }
}


/* ===============================
   Tablet (≤ 768px)
================================*/
@media (max-width:768px) {

    .pihm-activities-section {
        padding: 35px 15px;
    }

    .pihm-main-heading {
        padding: 18px 15px;
        border-radius: 10px;
    }

        .pihm-main-heading h2 {
            font-size: 25px;
            line-height: 1.2;
        }

        .pihm-main-heading h4 {
            font-size: 16px;
            margin-top: 5px;
        }

    .pihm-strip {
        flex-direction: column;
        text-align: center;
    }

    .pihm-strip-title{
        width: 100%;
        padding: 10px;
    }

    .pihm-counter-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .pihm-counter-card {
        min-height: 58px;
        border-bottom: 1px solid #d8b15c;
    }

        .pihm-counter-card:nth-child(2n) {
            border-right: none;
        }

        .pihm-counter-card:last-child {
            grid-column: 1/-1;
        }

    .pihm-counter-number {
        font-size: 22px;
    }

    .pihm-counter-text span {
        font-size: 12px;
    }

    .pihm-gallery {
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .pihm-gallery-image {
        height: 145px;
    }

    .pihm-gallery-content {
        padding: 10px;
    }

        .pihm-gallery-content h5 {
            font-size: 15px;
        }

        .pihm-gallery-content p {
            font-size: 12px;
        }
}


/* ===============================
   Mobile (≤ 576px)
================================*/
@media (max-width:576px) {

    .pihm-activities-section {
        padding: 30px 12px;
    }

    .pihm-main-heading {
        padding: 16px 12px;
    }

        .pihm-main-heading h2 {
            font-size: 22px;
        }

        .pihm-main-heading h4 {
            font-size: 14px;
        }

    .pihm-strip {
        margin: 18px 0;
    }

    .pihm-strip-title {
        font-size: 14px;
    }

    .pihm-counter-wrapper {
        grid-template-columns: 1fr;
    }

    .pihm-counter-card {
        min-height: 54px;
        padding: 10px;
        border-right: none;
    }

    .pihm-counter-number {
        font-size: 20px;
    }

    .pihm-counter-text span {
        font-size: 12px;
    }

    .pihm-gallery {
        grid-template-columns: 1fr;
    }

    .pihm-gallery-image {
        height: 180px;
    }

    .pihm-gallery-content {
        padding: 10px;
    }

        .pihm-gallery-content h5 {
            font-size: 15px;
        }

        .pihm-gallery-content p {
            font-size: 12px;
        }
}


/* ===============================
   Small Mobile (≤ 360px)
================================*/
@media (max-width:360px) {

    .pihm-main-heading h2 {
        font-size: 20px;
    }

    .pihm-main-heading h4 {
        font-size: 13px;
    }

    .pihm-counter-number {
        font-size: 18px;
    }

    .pihm-counter-text span {
        font-size: 11px;
    }
}

/*=========================================
MENTAL WELLBEING
=========================================*/

.pihm-mental-list {
    margin-top: 15px;
}

.pihm-mental-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.pihm-mental-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 8px;
    background: #ef7f1b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.pihm-mental-content {
    flex: 1;
}

    .pihm-mental-content h5 {
        margin: 0 0 4px;
        font-size: 18px;
        font-weight: 700;
        color: #222;
        line-height: 1.35;
    }

    .pihm-mental-content p {
        margin: 0;
        color: #444;
        font-size: 10px;
        line-height: 1.6;
    }

/*=========================================
MENTAL RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .pihm-mental-item {
        margin-bottom: 15px;
    }

    .pihm-mental-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 13px;
        margin-right: 12px;
    }

    .pihm-mental-content h5 {
        font-size: 16px;
    }

    .pihm-mental-content p {
        font-size: 14px;
    }
}

@media(max-width:576px) {

    .pihm-mental-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 12px;
    }

    .pihm-mental-content h5 {
        font-size: 15px;
    }

    .pihm-mental-content p {
        font-size: 13px;
        line-height: 1.5;
    }
}
/*=========================================
HOBBY CLUBS
=========================================*/

.pihm-club-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 20px;
}

.pihm-club-card {
    background: #fff;
    border: 1px solid #f2e6c5;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    transition: .35s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

    .pihm-club-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.10);
    }

/* PNG Icon */

.pihm-club-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    transition: .35s;
}

.pihm-club-card:hover .pihm-club-icon {
    transform: scale(1.08);
}

.pihm-club-card h5 {
    margin: 0;
    font-size: 13px;
    color: #192f59;
    font-weight: 700;
    line-height: 1.35;
}

.pihm-club-card span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    color: #666;
    line-height: 1.4;
}

/*=========================================
HOBBY CLUB RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .pihm-club-wrapper {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .pihm-club-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pihm-club-card {
        padding: 18px 14px;
    }

    .pihm-club-icon {
        width: 42px;
        height: 42px;
    }

    .pihm-club-card h5 {
        font-size: 15px;
    }

    .pihm-club-card span {
        font-size: 13px;
    }
}
/*=========================================
COMMUNITY SERVICES
=========================================*/

.pihm-service-list {
    margin-top: 18px;
}

.pihm-service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pihm-service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #ef7f1b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    transition: .35s;
}

    .pihm-service-icon i {
        color: #fff;
        font-size: 22px;
    }

.pihm-service-item:hover .pihm-service-icon {
    transform: scale(1.08);
}

.pihm-service-content {
    flex: 1;
}

    .pihm-service-content h5 {
        margin: 0 0 6px;
        color: #0d2d63;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.35;
    }

    .pihm-service-content p {
        margin: 0;
        font-size: 10px;
        color: #555;
        line-height: 1.7;
    }

/*=========================================
COMMUNITY SERVICES RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .pihm-service-item {
        margin-bottom: 18px;
    }

    .pihm-service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-right: 14px;
    }

        .pihm-service-icon i {
            font-size: 18px;
        }

    .pihm-service-content h5 {
        font-size: 16px;
    }

    .pihm-service-content p {
        font-size: 14px;
    }
}

@media(max-width:576px) {

    .pihm-service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

        .pihm-service-icon i {
            font-size: 16px;
        }

    .pihm-service-content h5 {
        font-size: 15px;
        line-height: 1.4;
    }

    .pihm-service-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}













/*=========================================
      PIHM COMPANY LOGOS STRIP
=========================================*/

.pihm-company-strip {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 18px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.pihm-company-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: pihmCompanyMove 35s linear infinite;
    will-change:transform;
}

@media (prefers-reduced-motion: reduce) {
    .pihm-company-track,
    .pihm-country-track {
        animation: none !important;
        transform: none !important;
    }
}

.pihm-company-strip:hover .pihm-company-track {
    animation-play-state: paused;
}

.pihm-company-item {
    flex: 0 0 auto;
    width: 180px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    transition: .35s;
}

    .pihm-company-item img {
        max-width: 140px;
        max-height: 55px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .75;
        transition: .35s;
    }

    .pihm-company-item:hover img {
        filter: none;
        opacity: 1;
        transform: scale(1.08);
    }

@keyframes pihmCompanyMove {

    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/*=========================
      Tablet
==========================*/

@media(max-width:991px) {

    .pihm-company-item {
        width: 150px;
        height: 65px;
        margin: 0 14px;
    }

        .pihm-company-item img {
            max-width: 120px;
            max-height: 45px;
        }
}

/*=========================
      Mobile
==========================*/

@media(max-width:767px) {

    .pihm-company-strip {
        padding: 14px 0;
    }

    .pihm-company-item {
        width: 120px;
        height: 55px;
        margin: 0 10px;
    }

        .pihm-company-item img {
            max-width: 95px;
            max-height: 35px;
        }

    .pihm-company-track {
        animation-duration: 26s;
    }
}


/*=========================================
     PIHM INTERNATIONAL FLAGS SECTION
=========================================*/

.pihm-country-strip-section {
    width: 100%;
    background: #ffffff;
    padding: 45px 0 30px;
    overflow: hidden;
}

.pihm-country-heading {
    text-align: center;
    margin-bottom: 28px;
}

    .pihm-country-heading h2 {
        font-size: 34px;
        font-weight: 700;
        color: #192f59;
        margin-bottom: 8px;
    }

    .pihm-country-heading span {
        display: block;
        color: #777;
        font-size: 16px;
    }

.pihm-country-strip {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.pihm-country-track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    animation: pihmFlagsMove 24s linear infinite;
    will-change: transform;
}

.pihm-country-strip:hover .pihm-country-track {
    animation-play-state: paused;
}

.pihm-country-item {
    width: 125px;
    margin: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    text-align: center;
}

    .pihm-country-item img {
        width: 82px;
        height: 56px;
        object-fit: cover;
        /*border-radius: 10px;*/
        box-shadow: 0 10px 24px rgba(0,0,0,.15);
        transition: .35s;
    }

    .pihm-country-item span {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #192f59;
        white-space: nowrap;
    }

    .pihm-country-item:hover img {
        transform: translateY(-6px) scale(1.08);
    }

    .pihm-country-item:hover span {
        color: #ef7f1b;;
    }

@keyframes pihmFlagsMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Tablet */

@media(max-width:991px) {

    .pihm-country-heading h2 {
        font-size: 28px;
    }

    .pihm-country-item {
        width: 82px;
        height: 58px;
    }

        .pihm-country-item img {
            width: 68px;
            height: 46px;
        }
}

/* Mobile */

@media(max-width:767px) {

    .pihm-country-strip-section {
        padding: 35px 0 20px;
    }

    .pihm-country-heading h2 {
        font-size: 24px;
    }

    .pihm-country-heading span {
        font-size: 14px;
        padding: 0 15px;
    }

    .pihm-country-item {
        width: 90px;
        margin: 0 8px;
    }

        .pihm-country-item img {
            width: 60px;
            height: 42px;
        }

        .pihm-country-item span {
            font-size: 11px;
            margin-top: 6px;
        }

    .pihm-country-track {
        animation-duration: 18s;
    }
}

/* =====================================================
   PIHM Recruiters Section
   STEP-2
   Conflict Free with Kingster
=====================================================*/

#pihm-recruiters-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: #f7f9fc;
}

    #pihm-recruiters-section * {
        box-sizing: border-box;
    }

    #pihm-recruiters-section .pihm-recruiters-container {
        width: 92%;
        max-width: 1500px;
        margin: auto;
    }

    #pihm-recruiters-section .pihm-recruiters-heading {
        text-align: center;
        margin-bottom: 45px;
    }

        #pihm-recruiters-section .pihm-recruiters-heading h2 {
            margin: 0;
            font-size: 38px;
            font-weight: 700;
            color: #192f59;
        }

        #pihm-recruiters-section .pihm-recruiters-heading p {
            margin-top: 12px;
            color: #666;
            font-size: 17px;
        }

    /* Marquee */

    #pihm-recruiters-section .pihm-recruiters-marquee {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    /* Track */

    #pihm-recruiters-section .pihm-recruiters-track {
        display: flex;
        align-items: flex-start;
        gap: 28px;
        width: max-content;
        animation: pihmRecruiterMove 30s linear infinite;
    }

        /* Pause animation */

    #pihm-recruiters-section:hover .pihm-recruiters-track {
        animation-play-state: paused;
    }

    /* Card */

    #pihm-recruiters-section .pihm-recruiter-card {
        width: 220px;
        min-width: 220px;
        height: 150px;
        background: #fff;
        /*border-radius: 18px;*/
        box-shadow: 0 10px 35px rgba(0,0,0,.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        padding-bottom:20px;
        overflow: hidden;
        position: relative;
        transition: height .45s ease, transform .35s ease, box-shadow .35s ease;
        cursor: pointer;
        will-change: transform,height;
    }

        #pihm-recruiters-section .pihm-recruiter-card:hover {
            height: 270px;
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(25,47,89,.18);
        }

    /* Logo */

    #pihm-recruiters-section .pihm-recruiter-logo {
        width: 120px;
        height: 70px;
        object-fit: contain;
        margin-top: 18px;
        transition: opacity .45s ease, transform .45s ease, visibility .45s;
        will-change: transform;
    }

    #pihm-recruiters-section .pihm-recruiter-card:hover
    .pihm-recruiter-logo {
        transform: translateY(-8px) scale(.96);
    }

    /* Hidden content */

    #pihm-recruiters-section .pihm-recruiter-content {
        width: 100%;
        margin-top: 20px;
        opacity: 0;
        transform: translateY(25px);
        transition: .45s ease;
        visibility: hidden;
    }

    #pihm-recruiters-section .pihm-recruiter-card:hover
    .pihm-recruiter-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #pihm-recruiters-section .pihm-recruiter-content ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }


    #pihm-recruiters-section .pihm-recruiter-content li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 9px;
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

        #pihm-recruiters-section .pihm-recruiter-content li::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #ff9800;
            position: absolute;
            left: 0;
            top: 8px;
        }

.pihm-recruiter-content li:last-child {
    margin-bottom: 0;
}
/* Infinite Animation */

@keyframes pihmRecruiterMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================
      Tablet
==========================*/

@media(max-width:991px) {

    #pihm-recruiters-section {
        padding: 65px 0;
    }

        #pihm-recruiters-section .pihm-recruiter-card {
            width: 190px;
            min-width: 190px;
            height: 140px;
        }

        #pihm-recruiters-section .pihm-recruiter-logo {
            width: 100px;
            height: 60px;
        }

        #pihm-recruiters-section .pihm-recruiters-heading h2 {
            font-size: 32px;
        }
}

/* ==========================
      Mobile
==========================*/

@media(max-width:767px) {

    #pihm-recruiters-section {
        padding: 50px 0;
    }

        #pihm-recruiters-section .pihm-recruiters-heading h2 {
            font-size: 28px;
        }

        #pihm-recruiters-section .pihm-recruiters-heading p {
            font-size: 15px;
        }

        #pihm-recruiters-section .pihm-recruiter-card {
            height: 120px;
        }

            #pihm-recruiters-section .pihm-recruiter-card:hover {
                height: 230px;
            }

        #pihm-recruiters-section .pihm-recruiter-content li {
            font-size: 13px;
        }

        #pihm-recruiters-section .pihm-recruiter-logo {
            width: 90px;
            height: 55px;
        }

        #pihm-recruiters-section .pihm-recruiters-track {
            gap: 18px;
            animation-duration: 22s;
        }
}
