.elementor-279 .elementor-element.elementor-element-b66536e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1afe49a *//* ========================================== */
/* GLOBAL / BACKGROUND                        */
/* ========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #031A39, #0D1B2A) !important;
}

.elementor-section,
.elementor-container,
.elementor-column {
    background: transparent !important;
}

header,
.site-header {
    background: transparent !important;
}

/* Full-width section on desktop; will be reset on smaller screens */
section.full-bg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: transparent;
    padding: 80px 30px;
}

/* ========================================== */
/* COLOUR PALETTE                             */
/* ========================================== */

:root {
    --obsidian: #031A39;
    --twilight: #0A2647;
    --sapphire: #133B7A;
    --charcoal: #0D1B2A;

    --light-blue: #77B8FF;
    --ice-blue: #D9ECFF;
    --azure: #1F7CFF;
}

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

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--ice-blue);
}

/* ========================================== */
/* TITLES                                     */
/* ========================================== */

.about-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.about-subtitle {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 600;
    color: var(--azure);
    margin-bottom: 30px;
}

/* ========================================== */
/* FLOATING PHOTO FRAME (DESKTOP)             */
/* ========================================== */

.about-photo-floating {
    float: right;
    width: 38%;
    max-width: 460px;
    margin: 0 0 30px 40px;
    border-radius: 20px;
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

/* Glow frame */
.glow-frame::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--azure), var(--light-blue), var(--azure));
    filter: blur(20px);
    opacity: 0.7;
    z-index: -1;
    transition: 0.35s ease;
}

.glow-frame:hover::before {
    filter: blur(30px);
    opacity: 1;
}

/* ========================================== */
/* LEFT GLOW BAR                              */
/* ========================================== */

.about-text-block {
    border-left: 4px solid transparent;
    padding-left: 30px;
    position: relative;
}

.about-text-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 6px;
    background: linear-gradient(
        to bottom,
        rgba(31,124,255,0.65),
        rgba(119,184,255,0.55),
        rgba(31,124,255,0.65)
    );
    filter: blur(9px);
    opacity: 0.55;
    border-radius: 6px;
    z-index: -1;
    transition: 0.35s ease;
}

.about-text-block:hover::before {
    filter: blur(14px);
    opacity: 0.85;
}

/* ========================================== */
/* FINAL LINE                                 */
/* ========================================== */

.about-final-line {
    margin-top: 25px;
    font-weight: 600;
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(119,184,255,0.6);
}

/* ========================================== */
/* TABLET OVERRIDES (PORTRAIT + SMALL LAPTOP) */
/* ========================================== */

@media (max-width: 1024px) {

    section.full-bg {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 60px 20px !important;
    }

    .about-wrapper {
        font-size: 17px;
    }

    .about-photo-floating {
        float: none !important;
        width: 70% !important;
        max-width: 420px;
        margin: 0 auto 30px auto !important;
    }

    .about-text-block {
        padding-left: 20px;
    }
}

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

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
    }

    section.full-bg {
        padding: 50px 16px !important;
    }

    .about-wrapper {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-photo-floating {
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto 24px auto !important;
    }

    .about-title,
    .about-subtitle,
    .about-text-block p,
    .about-final-line {
        text-align: center !important;
    }

    .about-text-block {
        border-left: none !important;
        padding-left: 0 !important;
    }

    .about-text-block::before {
        display: none !important;
    }
}

/* ========================================== */
/* VERY SMALL PHONES                          */
/* ========================================== */

@media (max-width: 480px) {
    .about-title {
        margin-bottom: 10px;
    }

    .about-subtitle {
        margin-bottom: 20px;
    }

    .about-photo-floating {
        max-width: 320px;
    }
}

/* ========================================== */
/* FADE IN                                    */
/* ========================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 1.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}/* End custom CSS */