/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f8fbfc;
    color: #333133;
    min-height: 100vh;
    overflow-x: hidden;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.pm-entry-wrapper11 {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 40px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(97, 195, 208, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(211, 70, 145, 0.08),
            transparent 28%
        ),
        #f8fbfc;
}


/* =========================================
   BACKGROUND CIRCLES
========================================= */

.pm-bg-circle22 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.pm-bg-circle-one23 {
    width: 450px;
    height: 450px;

    top: -220px;
    left: -180px;

    background: rgba(97, 195, 208, 0.10);

    animation: pmFloatOne33 7s ease-in-out infinite;
}

.pm-bg-circle-two24 {
    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -250px;

    background: rgba(211, 70, 145, 0.07);

    animation: pmFloatTwo44 9s ease-in-out infinite;
}


/* =========================================
   CONTENT
========================================= */

.pm-entry-content55 {
    width: 100%;
    max-width: 1350px;

    position: relative;
    z-index: 2;
}


/* =========================================
   LOGO
========================================= */

.pm-entry-logo66 {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 28px;

    opacity: 0;

    animation: pmLogoReveal77 1s ease forwards;
}

.pm-entry-logo66 img {
    width: 210px;
    max-width: 100%;
    height: auto;

    display: block;
    object-fit: contain;
}


/* =========================================
   HEADING
========================================= */

.pm-entry-heading88 {
    text-align: center;

    margin-bottom: 42px;

    opacity: 0;

    animation: pmHeadingReveal99 1s ease 0.2s forwards;
}

.pm-entry-small-title89 {
    display: block;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #d34691;

    margin-bottom: 10px;
}

.pm-entry-heading88 h1 {
    font-size: 38px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #333133;

    margin-bottom: 10px;
}

.pm-entry-heading88 p {
    font-size: 14px;
    line-height: 1.7;

    color: #666;

    font-weight: 400;
}


/* =========================================
   CARDS GRID
========================================= */

.pm-entry-cards100 {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================
   CARD
========================================= */

.pm-entry-card111 {
    height: 510px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #333133;

    box-shadow:
        0 20px 50px rgba(51, 49, 51, 0.16);

    isolation: isolate;

    opacity: 0;

    transform: translateY(45px);

    animation: pmCardReveal122 1s ease forwards;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.pm-entry-card111:nth-child(1) {
    animation-delay: 0.4s;
}

.pm-entry-card111:nth-child(2) {
    animation-delay: 0.6s;
}

.pm-entry-card111:hover {
    box-shadow:
        0 30px 65px rgba(51, 49, 51, 0.24);
}


/* =========================================
   CARD IMAGE
========================================= */

.pm-entry-card-image133 {
    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}

.pm-entry-card-image133 img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.pm-entry-card111:hover
.pm-entry-card-image133 img {
    transform: scale(1.09);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.pm-entry-overlay144 {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            to top,
            rgba(51, 49, 51, 0.94) 0%,
            rgba(51, 49, 51, 0.62) 42%,
            rgba(51, 49, 51, 0.08) 100%
        );
}


/* =========================================
   CARD NUMBER
========================================= */

.pm-entry-number199 {
    position: absolute;

    top: 28px;
    right: 28px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(97, 195, 208, 0.65);

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    background: rgba(51, 49, 51, 0.35);

    backdrop-filter: blur(8px);

    transition: all 0.35s ease;
}

.pm-entry-card111:hover .pm-entry-number199 {
    background: #61c3d0;
    border-color: #61c3d0;
    color: #333133;
    transform: rotate(8deg);
}


/* =========================================
   CARD CONTENT
========================================= */

.pm-entry-card-content155 {
    width: 100%;
    height: 100%;

    padding: 38px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    position: relative;

    z-index: 3;
}


/* =========================================
   CARD TAG
========================================= */

.pm-entry-card-tag166 {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    margin-bottom: 16px;

    border-radius: 50px;

    border: 1px solid rgba(97, 195, 208, 0.65);

    background: rgba(97, 195, 208, 0.13);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* =========================================
   CARD TITLE
========================================= */

.pm-entry-card-content155 h2 {
    color: #fff;

    font-size: 34px;
    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 12px;

    transition: color 0.35s ease;
}

.pm-entry-card111:nth-child(1)
.pm-entry-card-content155 h2 {
    color: #61c3d0;
}

.pm-entry-card111:nth-child(2)
.pm-entry-card-content155 h2 {
    color: #f7932e;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.pm-entry-card-content155 p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 13px;
    line-height: 1.7;

    margin-bottom: 24px;
}


/* =========================================
   BUTTON
========================================= */

.pm-entry-button177 {
    width: fit-content;
    min-width: 190px;
    height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 50px;

    background: #fff;

    color: #333133;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.pm-entry-button177::before {
    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    left: 0;
    top: 0;

    border-radius: 50px;

    transition: width 0.4s ease;

    z-index: 0;
}


/* LEFT BUTTON - CYAN */

.pm-entry-card111:nth-child(1)
.pm-entry-button177::before {
    background: #61c3d0;
}


/* RIGHT BUTTON - ORANGE */

.pm-entry-card111:nth-child(2)
.pm-entry-button177::before {
    background: #f7932e;
}

.pm-entry-button177 span {
    position: relative;
    z-index: 2;
}

.pm-entry-button177:hover {
    color: #333133;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22);
}

.pm-entry-button177:hover::before {
    width: 100%;
}


/* =========================================
   ARROW
========================================= */

.pm-entry-arrow188 {
    font-size: 17px;

    transition:
        transform 0.35s ease;
}

.pm-entry-button177:hover
.pm-entry-arrow188 {
    transform: translateX(5px);
}


/* =========================================
   FOOTER
========================================= */

.pm-entry-footer200 {
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    opacity: 0;

    animation: pmFooterReveal211 1s ease 0.8s forwards;
}

.pm-entry-footer200 p {
    font-size: 9px;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    color: #777;

    white-space: nowrap;
}

.pm-footer-line201 {
    width: 45px;
    height: 2px;

    background: #61c3d0;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes pmLogoReveal77 {

    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pmHeadingReveal99 {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pmCardReveal122 {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pmFooterReveal211 {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes pmFloatOne33 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 25px);
    }

}


@keyframes pmFloatTwo44 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, -30px);
    }

}


/* =========================================
   MOBILE
   ONLY MAX 768PX
========================================= */

@media (max-width: 768px) {

    .pm-entry-wrapper11 {
        min-height: 100vh;
        padding: 35px 18px;
    }

    .pm-entry-logo66 {
        margin-bottom: 22px;
    }

    .pm-entry-logo66 img {
        width: 165px;
    }

    .pm-entry-heading88 {
        margin-bottom: 28px;
    }

    .pm-entry-small-title89 {
        font-size: 8px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .pm-entry-heading88 h1 {
        font-size: 27px;
    }

    .pm-entry-heading88 p {
        font-size: 11px;
        max-width: 330px;
        margin: 0 auto;
    }

    .pm-entry-cards100 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pm-entry-card111 {
        height: 420px;
        border-radius: 20px;
    }

    .pm-entry-card-content155 {
        padding: 25px;
    }

    .pm-entry-card-tag166 {
        font-size: 8px;
        padding: 7px 11px;
        margin-bottom: 13px;
    }

    .pm-entry-card-content155 h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .pm-entry-card-content155 p {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 19px;
    }

    .pm-entry-button177 {
        min-width: 165px;
        height: 47px;
        font-size: 10px;
    }

    .pm-entry-number199 {
        top: 18px;
        right: 18px;
        width: 39px;
        height: 39px;
        font-size: 10px;
    }

    .pm-entry-footer200 {
        margin-top: 23px;
        gap: 8px;
    }

    .pm-entry-footer200 p {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .pm-footer-line201 {
        width: 25px;
    }
}


/* =========================================
   LARGE DESKTOP
   ONLY MIN 1440PX
========================================= */

@media (min-width: 1440px) {

    .pm-entry-wrapper11 {
        padding: 70px 60px;
    }

    .pm-entry-content55 {
        max-width: 1450px;
    }

    .pm-entry-logo66 {
        margin-bottom: 38px;
    }

    .pm-entry-logo66 img {
        width: 240px;
    }

    .pm-entry-heading88 {
        margin-bottom: 50px;
    }

    .pm-entry-small-title89 {
        font-size: 11px;
    }

    .pm-entry-heading88 h1 {
        font-size: 45px;
    }

    .pm-entry-heading88 p {
        font-size: 15px;
    }

    .pm-entry-cards100 {
        gap: 38px;
    }

    .pm-entry-card111 {
        height: 570px;
        border-radius: 28px;
    }

    .pm-entry-card-content155 {
        padding: 48px;
    }

    .pm-entry-card-content155 h2 {
        font-size: 40px;
    }

    .pm-entry-card-content155 p {
        font-size: 14px;
        max-width: 600px;
    }

    .pm-entry-card-tag166 {
        font-size: 11px;
    }

}