:root {
    --blue: #3d73aa;
    --sky: #79bfe5;
    --coral: #f8755d;
    --ink: #2e69a4;
    --gray: #f3f3f3;
    --body: #686868;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif!important;
    color: var(--body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
}

.mw-500{
    max-width: 500px;
}


a.clean{
    text-decoration: none;
}

a.clean:hover{
    text-decoration: underline;
}

.site-container {
    max-width: 1320px;
}

.navbar {
    min-height: 112px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--blue);
    line-height: 1;
}

.brand strong {
   font-size: 34px;
    font-weight: 600;
    letter-spacing: -1px;
}

.brand span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-top: 5px;
}

.nav-link,
.footer-nav a {
    color: #155d9a !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.btn {
    border: 0;
    border-radius: 0;
    padding: 12px 30px;
    min-width: 220px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}

.btn-sky {
    background: var(--sky);
    border:1px solid var(--sky);
    color: #fff;
}

.btn-blue {
    background: var(--blue);
    border:1px solid var(--blue);
    color: #fff;
}

.btn-coral {
    background: var(--coral);
     border:1px solid var(--coral);
    color: #fff;
}

.btn-sky:hover {
    background: transparent;
    border:1px solid var(--sky);
    color: var(--sky);
}

.btn-blue:hover {
    background: transparent;
    border:1px solid var(--blue);
    color: var(--blue);
}

.btn-coral:hover {
    background: transparent;
    border:1px solid var(--coral);
    color: var(--coral);
}


/* ==========================================================================
   Home Hero
   ========================================================================== */

.home-hero {
    background: #f0f0f0;
}

.min-vh-hero {
    min-height: 610px;
}

.home-hero h1 {
    font-size: 38px;
    color: var(--coral);
    font-weight: 900;
    line-height: 1.12;
}

.leadline {
    font-size: 20px;
    color: var(--blue);
    margin-top: 24px;
}

.hero-portrait,
.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-portrait img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Decorative Shapes
   ========================================================================== */

.shape {
    position: absolute;
    display: block;
    z-index: 3;
}

.dot {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--sky);
    top: 14%;
    left: 16%;
}

.slash {
    width: 24px;
    height: 125px;
    border-radius: 20px;
    background: var(--sky);
    right: 20%;
    top: 39%;
    transform: rotate(35deg);
}

.smile {
    width: 110px;
    height: 70px;
    border: 22px solid var(--sky);
    border-top: 0;
    border-radius: 0 0 90px 90px;
    right: 22%;
    bottom: 15%;
}

/* ==========================================================================
   General Sections & Typography
   ========================================================================== */

.section-pad {
    padding: 100px 0;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 55px;
    color: var(--blue);
}

h2 {
    font-size: 25px;
    font-weight: 900;
    color: var(--blue);
}

h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue);
    margin: 28px 0 15px;
}

.coral {
    color: var(--coral) !important;
}

.sky-text {
    color: var(--sky) !important;
}

.blue-text {
    color: var(--blue) !important;
}

/* ==========================================================================
   Audience
   ========================================================================== */

.audience {
    margin-bottom: 75px;
}

.audience h2 {
    color: var(--sky);
    font-size: 27px;
}

.audience h2.dark {
    color: var(--blue);
}

.audience p {
    max-width: 420px;
    margin: 35px 0;
}

.line-link {
    display: inline-block;
    width: 270px;
    border: 1px solid var(--sky);
    padding: 10px 0;
    text-align: center;
    color: var(--sky);
    font-size: 11px;
    text-decoration: none;
}

.line-link:hover {
    background: var(--sky);
    border: 1px solid var(--sky);
    color: #fff;
}


/* ==========================================================================
   Services
   ========================================================================== */

.services > div {
    padding: 14px 0;
    border-bottom: 1px solid #ccc;
}

.services strong {
    color: var(--coral);
    font-weight: 500;
}

.services small {
    display: block;
    margin-top: 9px;
}

/* ==========================================================================
   Resources Preview
   ========================================================================== */

.resources-preview h2 {
    font-size: 14px;
    font-weight: 500;
}

.resource-img,
.resource-placeholder {
    height: 245px;
    overflow: hidden;
}

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

.coral-filter {
    background: var(--coral);
}

.coral-filter img {
    mix-blend-mode: luminosity;
    opacity: 0.75;
}

.resource-placeholder.sky {
    background:
        linear-gradient(
            rgba(121, 191, 229, 0.65),
            rgba(121, 191, 229, 0.65)
        ),
        url('../images/professionals.webp') center / cover;
}

.resource-placeholder.blue {
    background:
        linear-gradient(
            rgba(61, 115, 170, 0.7),
            rgba(61, 115, 170, 0.7)
        ),
        url('../images/contact.webp') center / cover;
}

.resources-preview p {
    margin-top: 28px;
}

/* ==========================================================================
   Home About
   ========================================================================== */

.home-about {
    min-height: 680px;
    position: relative;
    background:url('/themes/magdapop/assets/images/magda_despre.jpg') no-repeat scroll 0 0 /contain, #69889a;
    overflow: hidden;
}

.home_about_content{
    max-width: 450px;
}

.about-bg {
    position: absolute;
    /*inset: 0 45% 0 0;*/
}

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

.about-copy {
    position: relative;
    margin-left: 58%;
    padding: 80px 8% 50px 0;
    color: #fff;
    max-width: 620px;
}

.about-copy .btn {
    display: block;
    margin: 24px 0;
}

.about-overlay .dot {
    right: 8%;
    left: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--gray);
    padding: 65px 0 45px;
    min-height: 330px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 55px;
}

.footer-contact a:not(.btn) {
    color: var(--sky);
    font-size: 11px;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    margin-top: 15px;
}

.legal {
    font-size: 10px;
    color: var(--blue);
    margin-top: 45px;
}

/* ==========================================================================
   Split Hero
   ========================================================================== */

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 590px;
}

.hero-copy {
    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(660px, 80%);
    margin-left: auto;
    margin-right: 11%;
    color: #fff;
}

.hero-inner h1 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 45px;
}

.hero-inner p {
    margin-bottom: 18px;
}

.bg-sky {
    background: var(--sky) !important;
    color: #fff;
}

.bg-blue {
    background: var(--blue) !important;
    color: #fff;
}

.bg-coral {
    background: var(--coral) !important;
    color: #fff;
}

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

.hero-photo .dot {
    left: auto;
    right: 16%;
    top: 12%;
}

.hero-photo .slash {
    background: var(--blue);
}

.hero-photo .smile {
    right: 14%;
    bottom: 18%;
}

/* ==========================================================================
   Content Columns
   ========================================================================== */

.copy-columns p {
    margin-bottom: 22px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
    border-top: 1px solid #ddd;
}

.testimonials blockquote {
    font-size: 13px;
    margin-bottom: 34px;
}

.testimonials cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
}

/* ==========================================================================
   Beliefs
   ========================================================================== */

.beliefs {
    padding: 90px 0;
}

.beliefs h2,
.beliefs p {
    color: #fff;
}

.beliefs h2 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 50px;
}

/* ==========================================================================
   Clarity Process
   ========================================================================== */

.clarity-process {
    padding: 60px 0;
}

.clarity-process h3 {
    color: #fff;
}

.clarity-process p {
    max-width: 950px;
}

.package-row {
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    padding-top: 35px;
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   Service Detail
   ========================================================================== */

.service-detail h2 {
    font-size: 15px;
    font-weight: 500;
    margin-top: 40px;
}

.service-detail p {
    max-width: 950px;
}

.service-detail hr {
    margin: 70px 0;
}

.price {
    color: var(--sky);
    font-weight: 500;
}

/* ==========================================================================
   Professionals Page
   ========================================================================== */

.page-pros ul {
    list-style: none;
    padding: 0;
}

.page-pros li::before {
    content: '• ';
}

/* ==========================================================================
   Resource Categories
   ========================================================================== */

.resource-categories {
    margin-top: 65px;
}

.category {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 70px;
    align-items: center;
    margin: 42px 0;
}

.category h3 {
    color: inherit;
    margin: 0 0 12px;
}

.category p {
    max-width: 650px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-links {
    min-height: 780px;
    padding: 75px 0;
}

.contact-stack {
    width: 320px;
    margin-left: 10%;
}

.contact-stack .btn {
    display: block;
    width: 100%;
    margin-bottom: 18px;
}

/* ==========================================================================
   Responsive: Tablet / Small Desktop
   ========================================================================== */

@media (max-width: 991px) {
    .navbar {
        min-height: auto;
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-portrait {
        margin-top: 40px;
    }

    .split-hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 500px;
    }

    .hero-inner {
        width: 84%;
        margin: 70px auto;
    }

    .hero-photo {
        height: 500px;
    }

    .section-pad {
        padding: 70px 0;
    }

    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

   /* .home-about {
        padding-top: 360px;
    }*/

    .about-bg {
        inset: 0 0 auto;
        height: 360px;
    }

    .about-copy {
        margin-left: 0;
        padding: 55px 8%;
        max-width: none;
    }

    .category {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-stack {
        margin-left: 0;
    }

    .package-row {
        align-items: flex-start;
        gap: 25px;
        flex-direction: column;
    }
}

/* ==========================================================================
   Responsive: Mobile
   ========================================================================== */

@media (max-width: 575px) {
    body {
        font-size: 13px;
    }

    .brand strong {
        font-size: 27px;
    }

    .home-hero h1 {
        font-size: 31px;
    }

    .leadline {
        font-size: 16px;
    }

    .btn {
        min-width: 100%;
        width: 100%;
    }

    .hero-photo {
        height: 360px;
    }

    .split-hero {
        min-height: 0;
    }

    .hero-copy {
        min-height: 0;
    }

    .section-pad {
        padding: 55px 0;
    }

    .contact-links {
        min-height: 480px;
    }

    .contact-stack {
        width: 100%;
    }
}

/* ==========================================================================
   Lightweight Bootstrap Layout Fallback
   Keeps the pages readable when the Bootstrap CDN is unavailable.
   ========================================================================== */

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    padding-right: 12px;
    padding-left: 12px;
}

.align-items-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-3 {
    gap: 1rem;
}

.g-4 {
    row-gap: 1.5rem;
}

.g-5 {
    row-gap: 3rem;
}

.text-center {
    text-align: center;
}

.ms-auto {
    margin-left: auto;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-5 {
    width: 41.6667%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-7 {
    width: 58.3333%;
}

.offset-lg-1 {
    margin-left: 8.3333%;
}

.navbar > .container {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    display: flex;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-toggler {
    display: none;
}


.form-control, .form-select{
    border-radius: 0!important;
}


@media (max-width: 991px) {
    .col-lg-3,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
    }

    .offset-lg-1 {
        margin-left: 0;
    }

    .navbar > .container {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        display: block;
        width: 100%;
        flex-basis: 100%;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
    }

    .navbar-collapse.collapse:not(.show) {
        display: none;
    }
}