/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
    /* Brand Colors */
    --fa-blue: #009CDE;
    --fa-black: #000000;
    --fa-white: #FFFFFF;
    --fa-gray-dark: #1E1E1E;
    --fa-gray-light: #949494;

    /* Typography */
    --font-heavy: 'franklin-gothic-atf', 'Arial Black', sans-serif;
    --font-medium: 'franklin-gothic-atf', 'Arial', sans-serif;
    --font-regular: 'franklin-gothic-atf', 'Arial', sans-serif;
    --font-light: 'franklin-gothic-atf', 'Arial', sans-serif;
    --font-dm-sans: 'DM Sans', sans-serif;

    /* Spacing */
    --container-max: 1600px;
    --container-padding: 100px;
    --container-padding-sm: 24px;
    --section-spacing: 100px;
    --section-spacing-sm: 60px;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 32px;
    --radius-xl: 44px;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.elementor-widget-text-editor ul {
    margin-bottom: .9em;
}
h1 span {
    color: var(--fa-blue);
}
.nop p {
    margin: 0;
}
.aniup {
    animation: fadeInUp 0.8s ease-out forwards
}
.navbar {
    background-color: rgba(200, 200, 200, .6);
    border-radius: 32px;
    border: solid 2px #DDD;
}
.navbar .current-menu-item a {
    font-weight: 500 !important;
}

/*.navbar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF !important;
    transition: width 0.3s ease;
}
.navbar a:hover::after {
    width: 100%;
}*/

.copyp {
    background-color: rgba(255, 255, 255, .2);
    padding: 10px;
    display: block;
    border-radius: 24px;
}
.imgz a {
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.imgz img {
    transition: transform 0.3s ease;
}
.imgz:hover img {
    transform: scale(1.05);
}

.btn-video .elementor-button-content-wrapper {
    align-items: center !important;
}
.btn-video svg {
    width: 30px !important;
    height: 30px !important;
}
.left-col {
    max-width: 715px;
    margin-left: auto;
}
.right-col {
    max-width: 715px;
    margin-right: auto;
}
.story-list ul {
    list-style: none;
    padding: 0;
}
.story-list li {
    padding: 10px 0;
    line-height: 1.25;
    border-bottom: 2px solid var(--fa-blue);
}
.sale-item h2 {
    font-size: 2.5rem;
    font-weight: 800 !important;
}
.sale-item h2 em {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800 !important;
    color: var(--fa-blue);
}
.num-list ol {
    padding: 0 0 0 35px;
}
.num-list ol li {
    margin-bottom: .9em;
}
.event-grid > div {
    border-bottom: 2px solid var(--fa-blue);
}
.event-grid > div p {
    margin: 0;
    padding: 10px;
}
.footer-link a:hover {
    opacity: 0.8;
}

@media (max-width: 1399px) {
    .left-col {
        max-width: 100%;
        margin-left: auto;
    }
    .right-col {
        max-width: 100%;
        margin-right: auto;
    }
}

@media (max-width: 1247px) {
    .navbar li a {
        padding: 10px !important;
    }
    .nav-contact a {
        padding: 14px !important;
    }
}
@media (max-width: 1099px) {
    .navbar li a {
        padding: 8px !important;
    }
    .nav-contact a {
        padding: 12px !important;
    }
}
@media (max-width: 767px) {
    .nav-contact a {
        padding: 10px !important;
    }
}

/* --------------------------------------------------------------------------
   PCC Data Section
   -------------------------------------------------------------------------- */
.pcc-data-section:has(.pcc-grid) {
    background-color: var(--fa-blue);
}
.pcc {
    padding: 40px 20px;
}
.pcc-title h3 {
    font-family: var(--font-heavy);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}
.pcc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}
.pcc-cell {

}
.pcc-data-name {
    color: white;
}
.pcc-data-value {
    color: white;
    font-family: var(--font-heavy);
    font-weight: 800;
}
@media (max-width: 1024px) {
    .pcc-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .pcc-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .pcc-grid {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------------------------------------------------
   Success Section
   -------------------------------------------------------------------------- */
.success {
    padding: var(--section-spacing) 0;
    overflow: hidden;
}

.success__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
}

.success__header {
    display: grid;
    grid-template-columns: 665px 1fr;
    gap: 57px;
    margin-bottom: 80px;
    align-items: start;
}

.success__title {
    font-family: var(--font-heavy);
    font-weight: 800;
    font-size: clamp(32px, 3.33vw, 48px);
    line-height: 1.1;
    color: var(--fa-black);
}

.success__text {
    font-family: var(--font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--fa-black);
    padding-top: 10px;
}

.success__text p {
    margin-bottom: 18px;
}

.success__text p:last-child {
    margin-bottom: 0;
}

.success__text strong {
    font-family: var(--font-heavy);
    font-weight: 700;
}

.success__gallery {
    display: flex;
    gap: 20px;
}

.success__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 643px;
    width: 130px;
    flex-shrink: 0;
    cursor: pointer;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success__item--active {
    flex: 1;
    width: auto;
    max-width: 793px;
    cursor: default;
}

.success__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 44.63%, rgba(30, 30, 30, 0.52) 65.23%, rgb(30, 30, 30) 97.04%);
    mix-blend-mode: multiply;
}

.success__item--narrow {
    width: 130px;
    flex-shrink: 0;
}

.success__item--wide {
    flex: 1;
    max-width: 793px;
}

/* Accordion Content Container */
.success__content {
    position: absolute;
    bottom: 37px;
    left: 45px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 544px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success__item:not(.success__item--active) .success__content {
    left: 50%;
    bottom: 50%;
}

/* Label - rotates from vertical to horizontal */
.success__label {
    font-family: var(--font-heavy);
    font-weight: 800;
    font-size: 28px;
    color: var(--fa-white) !important;
    line-height: 1;
    white-space: nowrap;
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.success__item:not(.success__item--active) .success__label {
    transform: translateX(-50%) rotate(-90deg);
}

.success__item--active .success__label {
    transform: rotate(0deg);
    margin-bottom: 15px;
}

/* Caption - fades in when active */
.success__caption {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: var(--fa-white);
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success__item--active .success__caption {
    opacity: 1;
    max-height: 200px;
}


/* --------------------------------------------------------------------------
   Strategy Banner
   -------------------------------------------------------------------------- */
.strategy-banner {
    background: var(--fa-blue);
    padding: 50px 0 80px;
}

.strategy-banner__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
}

.strategy-banner__intro {
    font-family: var(--font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--fa-white);
    margin-bottom: 60px;
}

.strategy-banner__intro strong {
    font-family: var(--font-heavy);
    font-weight: 800;
}

.strategy-banner__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.strategy-banner__items::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--fa-white);
    z-index: 0;
}

.strategy-banner__item {
    text-align: left;
    max-width: 230px;
    position: relative;
    z-index: 1;
}

.strategy-banner__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--fa-white);
    border-radius: 50%;
    font-family: var(--font-heavy);
    font-weight: 800;
    font-size: 26px;
    color: var(--fa-blue);
    margin-bottom: 17px;
    position: relative;
    z-index: 2;
}

.strategy-banner__item p {
    font-family: var(--font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--fa-white);
}

.strategy-banner__item strong {
    font-family: var(--font-heavy);
    font-weight: 800;
}



@media (max-width: 1200px) {

    /* seems to break it - just leave it as is and don't use it

    .success__header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success__gallery {
        flex-wrap: wrap;
    }

    .success__item--active {
        order: -1;
        width: 100%;
        max-width: 100%;
        height: 450px;
    }

    .success__item:not(.success__item--active) {
        width: calc(33.333% - 14px);
        height: 450px;
    }

    .success__item:not(.success__item--active) .success__content {
        bottom: 200px;
    }

    .success__item:not(.success__item--active) .success__label {
        font-size: 18px;
    }*/

    .strategy-banner__items {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .strategy-banner__items::before {
        display: none;
    }

    .strategy-banner__item {
        width: calc(33.333% - 14px);
    }

}

@media (max-width: 900px) {

    .success__gallery {
        flex-direction: column;
        gap: 20px;
    }

    .success__item,
    .success__item--active {
        width: 100%;
        height: auto;
        min-height: 300px;
        cursor: default;
        flex-shrink: 0;
    }

    .success__content {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
        transform: none !important;
        align-items: flex-start;
        max-width: none;
        width: auto;
    }

    .success__label {
        transform: none !important;
        font-size: 22px;
        margin-bottom: 12px;
        writing-mode: horizontal-tb !important;
    }

    .success__caption {
        opacity: 1 !important;
        max-height: none !important;
        font-size: 15px;
        line-height: 1.5;
        width: 100%;
    }

    .strategy-banner__items {
        flex-direction: column;
        gap: 30px;
    }

    .strategy-banner__items::before {
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .strategy-banner__item {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .strategy-banner__number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

}

@media (max-width: 600px) {

    .welcome__title,
    .success__title,
    .performance__title {
        font-size: 28px;
    }

    .welcome__text,
    .success__text,
    .performance__text,
    .success__caption p {
        font-size: 16px;
    }

    .banner__text {
        font-size: 16px;
    }

    .success__item,
    .success__item--active {
        min-height: 260px;
    }

    .success__content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .success__label {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .success__caption {
        font-size: 14px;
    }

}