@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================
   OSP 83011 - Projects
================================ */

section[data-cattype="83011"] {
    position: relative;
    padding: 70px 0 120px;
    overflow: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
}

section[data-cattype="83011"] * {
    box-sizing: border-box;
}

section[data-cattype="83011"] .container {
    max-width: 1600px;
}

/* ================================
   Title Row
================================ */

section[data-cattype="83011"] .osp-project-title-row {
    text-align: center;
    margin-bottom: 35px;
}

section[data-cattype="83011"] .osp-project-title {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #071A3D;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* ================================
   Project Tabs
================================ */

section[data-cattype="83011"] .osp-project-tab-row {
    margin-bottom: 55px;
}

section[data-cattype="83011"] .osp-project-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

section[data-cattype="83011"] .osp-project-tab-btn {
    position: relative;
    border: 1px solid #00169F;
    background: #ffffff;
    color: #00169F;
    padding: 13px 34px;
    border-radius: 999px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    outline: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

section[data-cattype="83011"] .osp-project-tab-btn:hover,
section[data-cattype="83011"] .osp-project-tab-btn.active {
    background: #F2B705;
    color: #ffffff;
    border-color: #F2B705;
    font-size: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

section[data-cattype="83011"] .osp-project-tab-content {
    display: none;
}

section[data-cattype="83011"] .osp-project-tab-content.active {
    display: block;
}

/* ================================
   Project List
================================ */

section[data-cattype="83011"] .osp-project-list {
    row-gap: 55px;
}

section[data-cattype="83011"] .osp-project-col {
    display: flex;
}

section[data-cattype="83011"] .osp-project-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

section[data-cattype="83011"] .osp-project-image-wrap {
    width: 260px;
    min-width: 320px;
    height: 235px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
}

section[data-cattype="83011"] .osp-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

section[data-cattype="83011"] .osp-project-content {
    flex: 1;
    text-align: left;
	padding-right: 20px;
}

section[data-cattype="83011"] .osp-project-item-title {
    margin: 0 0 12px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #00169F;
    text-transform: capitalize;
}

section[data-cattype="83011"] .osp-project-summary {
    margin: 0;
    max-width: 400px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

/* ================================
   Empty Message
================================ */

section[data-cattype="83011"] .osp-project-empty {
    width: 100%;
    padding: 25px;
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #5F6B7A;
    background: #ffffff;
    border: 1px solid #EAF0FF;
    border-radius: 10px;
}

/* ================================
   Reset Old Image List Style
================================ */

section[data-cattype="83011"] ul.listImage {
    margin: 0;
    padding: 0;
}

section[data-cattype="83011"] ul.listImage li,
section[data-cattype="83011"] ul.listImage li .wrapper_image {
    width: auto;
    height: auto;
    border: none;
}

section[data-cattype="83011"] ul.listImage li {
    margin: 0;
}

section[data-cattype="83011"] img {
    max-width: 100%;
}

/* ================================
   Animation - Hidden First
================================ */

section[data-cattype="83011"].osp83011-init .osp83011-title-anim,
section[data-cattype="83011"].osp83011-init .osp83011-tab-row-anim,
section[data-cattype="83011"].osp83011-init .osp83011-item-anim,
section[data-cattype="83011"].osp83011-init .osp83011-heading-anim,
section[data-cattype="83011"].osp83011-init .osp83011-summary-anim {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform;
}

section[data-cattype="83011"].osp83011-init .osp83011-title-anim {
    transform: translateY(-35px);
}

section[data-cattype="83011"].osp83011-init .osp83011-tab-row-anim {
    transform: translateY(30px);
}

section[data-cattype="83011"].osp83011-init .osp83011-item-anim {
    transform: translateY(55px);
}

section[data-cattype="83011"].osp83011-init .osp83011-image-anim {
    transform: scale(1.05);
}

section[data-cattype="83011"].osp83011-init .osp83011-heading-anim,
section[data-cattype="83011"].osp83011-init .osp83011-summary-anim {
    transform: translateY(18px);
}

/* ================================
   Animation - Active
================================ */

section[data-cattype="83011"].osp83011-active .osp83011-title-anim {
    visibility: visible;
    pointer-events: auto;
    animation: osp83011TitleIn 0.8s ease forwards;
    animation-delay: 0.05s;
}

section[data-cattype="83011"].osp83011-active .osp83011-tab-row-anim {
    visibility: visible;
    pointer-events: auto;
    animation: osp83011TabIn 0.8s ease forwards;
    animation-delay: 0.15s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim {
    visibility: visible;
    pointer-events: auto;
    animation: osp83011ItemIn 0.85s ease forwards;
}

section[data-cattype="83011"].osp83011-active .osp83011-heading-anim {
    visibility: visible;
    pointer-events: auto;
    animation: osp83011TextIn 0.7s ease forwards;
    animation-delay: 0.18s;
}

section[data-cattype="83011"].osp83011-active .osp83011-summary-anim {
    visibility: visible;
    pointer-events: auto;
    animation: osp83011TextIn 0.7s ease forwards;
    animation-delay: 0.28s;
}

section[data-cattype="83011"].osp83011-active .osp83011-image-anim {
    animation: osp83011ImageIn 1s ease forwards;
}

/* Item Stagger */
section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(1) {
    animation-delay: 0.12s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(2) {
    animation-delay: 0.20s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(3) {
    animation-delay: 0.28s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(4) {
    animation-delay: 0.36s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(5) {
    animation-delay: 0.44s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(6) {
    animation-delay: 0.52s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(7) {
    animation-delay: 0.60s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(8) {
    animation-delay: 0.68s;
}

section[data-cattype="83011"].osp83011-active .osp83011-item-anim:nth-child(n+9) {
    animation-delay: 0.72s;
}

/* ================================
   Keyframes
================================ */

@keyframes osp83011TitleIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-35px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes osp83011TabIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes osp83011ItemIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(55px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes osp83011TextIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes osp83011ImageIn {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ================================
   Hover Effect
================================ */

section[data-cattype="83011"] .osp-project-item:hover .osp-project-image {
    transform: scale(1.04);
}

/* ================================
   Responsive - Laptop
================================ */

@media (max-width: 1400px) {

    section[data-cattype="83011"] {
        padding: 60px 0;
    }

    section[data-cattype="83011"] .container {
        max-width: 1600px;
    }

    section[data-cattype="83011"] .osp-project-title {
        font-size: 36px;
    }

    section[data-cattype="83011"] .osp-project-tab-row {
        margin-bottom: 45px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn:hover,
    section[data-cattype="83011"] .osp-project-tab-btn.active {
        font-size: 15px;
    }

    section[data-cattype="83011"] .osp-project-item {
        gap: 24px;
    }

    section[data-cattype="83011"] .osp-project-image-wrap {
        width: 230px;
        min-width: 230px;
        height: 165px;
    }

    section[data-cattype="83011"] .osp-project-item-title {
        font-size: 28px;
    }

    section[data-cattype="83011"] .osp-project-summary {
        font-size: 15px;
    }
}

/* ================================
   Responsive - Tablet
================================ */

@media (max-width: 991px) {

    section[data-cattype="83011"] {
        padding: 55px 0;
    }

    section[data-cattype="83011"] .osp-project-title-row {
        margin-bottom: 30px;
    }

    section[data-cattype="83011"] .osp-project-tab-row {
        margin-bottom: 45px;
    }

    section[data-cattype="83011"] .osp-project-list {
        row-gap: 38px;
    }

    section[data-cattype="83011"] .osp-project-image-wrap {
        width: 240px;
        min-width: 240px;
        height: 170px;
    }

    section[data-cattype="83011"] .osp-project-item-title {
        font-size: 28px;
    }

    section[data-cattype="83011"] .osp-project-summary {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ================================
   Responsive - Mobile
================================ */

@media (max-width: 576px) {

    section[data-cattype="83011"] {
        padding: 45px 0;
        overflow: hidden;
    }

    section[data-cattype="83011"] .container {
        max-width: 100%;
        padding: 0 20px 30px;
    }

    section[data-cattype="83011"] .osp-project-title-row {
        margin-bottom: 25px;
    }

    section[data-cattype="83011"] .osp-project-title {
        font-size: 26px;
        line-height: 1.25;
    }

    section[data-cattype="83011"] .osp-project-tab-row {
        margin-bottom: 35px;
    }

    section[data-cattype="83011"] .osp-project-tabs {
        gap: 10px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn:hover,
    section[data-cattype="83011"] .osp-project-tab-btn.active {
        font-size: 15px;
    }

    section[data-cattype="83011"] .osp-project-list {
        row-gap: 35px;
        margin-left: 0;
        margin-right: 0;
    }

    section[data-cattype="83011"] .osp-project-col {
        padding-left: 0;
        padding-right: 0;
    }

    section[data-cattype="83011"] .osp-project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    section[data-cattype="83011"] .osp-project-image-wrap {
        width: 100%;
        min-width: 100%;
        height: 230px;
    }

    section[data-cattype="83011"] .osp-project-content {
        width: 100%;
    }

    section[data-cattype="83011"] .osp-project-item-title {
        font-size: 18px;
        line-height: 1.25;
        margin: 0 0 2px;
    }

    section[data-cattype="83011"] .osp-project-summary {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
    }

    section[data-cattype="83011"].osp83011-init .osp83011-title-anim {
        transform: translateY(-25px);
    }

    section[data-cattype="83011"].osp83011-init .osp83011-tab-row-anim,
    section[data-cattype="83011"].osp83011-init .osp83011-item-anim,
    section[data-cattype="83011"].osp83011-init .osp83011-heading-anim,
    section[data-cattype="83011"].osp83011-init .osp83011-summary-anim {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(35px);
    }

    section[data-cattype="83011"].osp83011-active .osp83011-title-anim,
    section[data-cattype="83011"].osp83011-active .osp83011-tab-row-anim,
    section[data-cattype="83011"].osp83011-active .osp83011-item-anim,
    section[data-cattype="83011"].osp83011-active .osp83011-heading-anim,
    section[data-cattype="83011"].osp83011-active .osp83011-summary-anim {
        visibility: visible;
        pointer-events: auto;
        animation-name: osp83011MobileIn;
    }
}

@keyframes osp83011MobileIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ================================
   Responsive - Small Mobile
================================ */

@media (max-width: 380px) {

    section[data-cattype="83011"] .osp-project-title {
        font-size: 24px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    section[data-cattype="83011"] .osp-project-tab-btn:hover,
    section[data-cattype="83011"] .osp-project-tab-btn.active {
        font-size: 14px;
    }

    section[data-cattype="83011"] .osp-project-image-wrap {
        height: 210px;
    }

    section[data-cattype="83011"] .osp-project-item-title {
        font-size: 21px;
    }
}