*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
:root {
--sakura:   #efc8d0;
--sakura-m: #d9909f;
--sakura-d: #c07080;
--beige:    #fff9f3;
--beige-m:  #e8d8cc;
--cream:    #fdf9f6;
--brown:    #5a3a40;
--brown-m:  #8a6068;
--brown-l:  #b09098;
--white:    #ffffff;
--border:   #edd8d4;
}
html {
    scroll-behavior: smooth
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--brown);
    background: var(--cream);
    font-weight: 300;
    line-height: 1.85
}
/* TOPBAR */
#topbar {
    background: var(--sakura-d);
    padding: 7px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center
}
#topbar span {
    color: var(--beige);
    font-size: .72rem;
    letter-spacing: .06em
}
#topbar nav a {
    color: var(--beige);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 18px;
    letter-spacing: .04em;
    transition: color .2s
}
#topbar nav a:hover {
    color: #fff
}
/* HEADER */
#header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px rgba(90,58,64,.07)
}
#header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}
#logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .67rem;
    color: var(--brown-l);
    letter-spacing: .1em;
    display: block
}
#logo-main {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sakura-d);
    letter-spacing: .06em
}
#logo-main em {
    color: var(--brown-m);
    font-style: normal
}
#nav {
    display: flex;
    flex-wrap: wrap;
}
#nav a {
    text-decoration: none;
    color: var(--brown-m);
    font-size: 1rem;
    padding: 7px 13px;
    position: relative;
    letter-spacing: .04em;
    transition: color .2s
}
#nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--sakura-m);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s
}
#nav a:hover {
    color: var(--sakura-d)
}
#nav a:hover::after {
    transform: scaleX(1)
}
/* HERO */
#hero {
    position: relative;
    height: 70vh;
    overflow: hidden
}
#hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 58, 64, .60) 0%, rgba(192, 112, 128, .22) 65%, rgba(90, 58, 64, .08) 100%), url( "../img/fv_eproductive.webp") center / cover no-repeat;
    animation: kb 20s ease-in-out infinite alternate;
}

@media (max-width: 1600px) {
    #hero {
        height: 50vh;
    }
}

@media (max-width: 1000px) {
}

@keyframes kb {
    from {
    transform:scale(1)
    }
    to {
    transform:scale(1.07) translate(-1%, 1%)
    }
}
#hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 80px
}
#hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.5rem, 0.362rem + 0.69vw, 0.88rem);
    letter-spacing: .32em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
    animation: fu .8s ease both .1s
}
#hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.5rem, 3.3vw, 2.9rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.55;
    letter-spacing: .07em;
    animation: fu .8s ease both .25s;
    text-shadow: 0 0 10px #8a6068;
}
#hero-title strong {
    font-weight: 600;
    display: block
}
#hero-sub {
    margin-top: 18px;
    font-size: 1rem;
    color: #fff;
    max-width: 520px;
    line-height: 2.1;
    animation: fu .8s ease both .4s;
    font-weight: 400;
    text-shadow: 0 0 10px #8a6068;
}
#hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: var(--sakura-m);
    color: #fff;
    padding: 11px 26px;
    font-family: 'Noto Serif JP', serif;
    font-size: .82rem;
    letter-spacing: .12em;
    animation: fu .8s ease both .55s
}
@keyframes fu {
    from {
        opacity:0;
        transform:translateY(20px)
    }
    to {
        opacity:1;
        transform:translateY(0)
    }
}
/* BREADCRUMB */
#breadcrumb {
    background: var(--beige);
    border-bottom: 1px solid var(--border);
    padding: 9px 40px;
    font-size: .72rem;
    color: var(--brown-l)
}
#breadcrumb a {
    color: var(--sakura-d);
    text-decoration: none
}
#breadcrumb span {
    margin: 0 7px;
    color: var(--border)
}
/* SECTION */
.sec {
    padding: 90px 40px
}
.sec-inner {
    max-width: 1140px;
    margin: 0 auto
}
.sec-head {
    text-align: center;
    margin-bottom: 56px
}
.sec-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: .88rem;
    letter-spacing: .28em;
    color: var(--sakura-m);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px
}
.sec-h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: .07em
}
.divider {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--sakura-m), var(--beige-m));
    margin: 14px auto 0
}
/* ABOUT */
#about {
    background: var(--beige)
}
#about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}
.quote {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    font-weight: 400;
    color: var(--sakura-d);
    line-height: 2;
    margin-bottom: 24px;
    padding-left: 18px;
    border-left: 3px solid var(--sakura);
    margin-top: 24px;
}
#about-text p, .about-text p {
    font-size: .92rem;
    color: var(--brown-m);
    margin-bottom: 1.1em;
    line-height: 2.1
}
#about-img {
    position: relative
}
#about-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block
}
#about-img::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 104%;
    height: 105%;
    border: 2px solid var(--sakura);
    pointer-events: none
}
/* DIRECTOR */
#director {
    background: var(--white)
}
#director-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start
}
#director-photo {
    position: relative
}
#director-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    display: block
}
#director-photo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 55%;
    height: 55%;
    border: 2px solid var(--sakura);
    z-index: -1
}
#director-name-block {
    margin-top: 16px;
    text-align: center;
    padding: 14px;
    background: var(--beige);
    border-top: 2px solid var(--sakura-m)
}
#director-name-block .ttl {
    font-size: .72rem;
    color: var(--brown-l);
    letter-spacing: .12em;
    margin-bottom: 4px
}
#director-name-block .name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown)
}
#director-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border)
}
#director-text p {
    font-size: .91rem;
    color: var(--brown-m);
    line-height: 2.2;
    margin-bottom: 1em
}
/* FEATURES */
#features {
    background: linear-gradient(135deg, #b86070 0%, #d4909f 55%, #efc8d0 100%);
    padding: 70px 40px;
    position: relative;
    overflow: hidden
}
#features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' fill-opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none
}
#features-head {
    text-align: center;
    margin-bottom: 48px
}
#features-head .sec-en {
    color: rgba(255,255,255,.7)
}
#features-head .sec-h2 {
    color: #fff
}
#features-head .divider {
    background: linear-gradient(90deg, rgba(255,255,255,.6), rgba(255,255,255,.2))
}
#features-inner {
    max-width: 1140px;
    margin: 0 auto
}
#features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px
}
.feat {
    text-align: center;
    padding: 32px 20px;
    position: relative
}
.feat+.feat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255,255,255,.2)
}
.feat-img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,.4);
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    transition: transform .3s
}
.feat:hover .feat-img {
    transform: scale(1.07)
}
.feat h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 7px;
    letter-spacing: .06em
}
.feat p {
    font-size: 0.9rem;
    color: rgba(255,255,255,.76);
    line-height: 1.85;
    text-align: left;
}
/* SERVICES */
#services {
    background: var(--cream)
}
#services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}
.svc {
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s
}
.svc:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(90,58,64,.1);
    border-color: var(--sakura)
}
.svc-img {
    height: 200px;
    overflow: hidden
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}
.svc:hover .svc-img img {
    transform: scale(1.06)
}
.svc-body {
    padding: 24px
}
.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: .78rem;
    letter-spacing: .2em;
    color: var(--sakura-m);
    display: block;
    margin-bottom: 5px
}
.svc h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 9px;
    letter-spacing: .04em
}
.svc p {
    font-size: .78rem;
    color: var(--brown-m);
    line-height: 1.9
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: .76rem;
    color: var(--sakura-d);
    text-decoration: none;
    letter-spacing: .06em;
    transition: color .2s
}
.svc-link::after {
    content: '→'
}
.svc-link:hover {
    color: var(--brown)
}
/* FLOW */
#flow {
    background: var(--beige)
}
#flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
}
#flow-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sakura), var(--beige-m));
    z-index: 0
}
.flow-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1
}
.flow-num {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--sakura-m);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--sakura-d);
    box-shadow: 0 4px 14px rgba(192,112,128,.15)
}
.flow-step h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: .88rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 8px;
    letter-spacing: .04em
}
.flow-step p {
    font-size: .73rem;
    color: var(--brown-m);
    line-height: 1.8
}
/* STAFF */
#staff {
    background: var(--white)
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}
.staff-card {
    text-align: center;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 2.5rem;
}
.staff-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    transition: transform .35s ease
}
.staff-role {
    font-size: clamp(0.7rem, 0.627rem + 0.36vw, 0.9rem);
    color: var(--sakura-m);
    letter-spacing: .12em;
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
}
.staff-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: .06em;
    margin-bottom: 4px
}
.staff-spec {
    font-size: .72rem;
    color: var(--brown-l);
    line-height: 1.7
}
/* FAQ */
#faq {
    background: var(--beige)
}
#faq-list {
    max-width: 820px;
    margin: 0 auto
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0
}
.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    transition: color .2s
}
.faq-q:hover {
    color: var(--sakura-d)
}
.faq-q-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--sakura-m);
    flex-shrink: 0;
    line-height: 1.4
}
.faq-q-text {
    font-family: 'Noto Serif JP', serif;
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.7
}
.faq-a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 22px 0
}
.faq-a-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--beige-m);
    flex-shrink: 0;
    line-height: 1.4
}
.faq-a-text {
    font-size: .86rem;
    color: var(--brown-m);
    line-height: 2;
    flex: 1
}
/* NEWS */
#news {
    background: var(--cream)
}
#news-list {
    max-width: 800px;
    margin: 0 auto
}
.news-a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: padding-left .2s
}
.news-a:hover {
    padding-left: 7px;
    color: var(--sakura-d)
}
.news-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: .83rem;
    color: var(--sakura-m);
    letter-spacing: .06em;
    white-space: nowrap;
    min-width: 50px
}
.news-tag {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--sakura-d);
    font-size: .66rem;
    padding: 2px 9px;
    white-space: nowrap
}
.news-ttl {
    font-size: .86rem;
    line-height: 1.7;
    flex: 1
}
.news-more {
    display: block;
    text-align: right;
    margin-top: 22px;
    font-size: .8rem;
    color: var(--sakura-d);
    text-decoration: none;
    letter-spacing: .1em
}
.news-more:hover {
    color: var(--brown)
}
/* ACCESS */
#access {
    background: var(--beige)
}
#access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start
}
#map-box {
    height: 300px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sakura-m);
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem;
    letter-spacing: .15em;
    font-style: italic;
    text-align: center
}
#access-dl dt {
    font-family: 'Noto Serif JP', serif;
    font-size: .78rem;
    font-weight: 400;
    color: var(--sakura-d);
    margin-top: 18px;
    margin-bottom: 4px;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px
}
#access-dl dt:first-child {
    margin-top: 0
}
#access-dl dd {
    font-size: .87rem;
    color: var(--brown-m);
    line-height: 1.95
}
#access-dl dd a {
    color: var(--sakura-d);
    text-decoration: none
}
/* CTA */
#cta {
    background: linear-gradient(135deg, var(--brown) 0%, var(--sakura-d) 100%);
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}
#cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none
}
#cta h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: .1em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}
#cta p {
    font-size: .88rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 32px;
    line-height: 2;
    position: relative;
    z-index: 1
}
.btn-pk {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--sakura-m);
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    font-family: 'Noto Serif JP', serif;
    font-size: .9rem;
    letter-spacing: .1em;
    transition: background .25s, transform .2s;
    position: relative;
    z-index: 1
}
.btn-pk:hover {
    background: #bb6070;
    transform: translateY(-2px)
}
.btn-ol {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.5);
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: 14px 36px;
    font-size: .9rem;
    letter-spacing: .1em;
    margin-left: 14px;
    transition: background .25s;
    position: relative;
    z-index: 1
}
.btn-ol:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff
}
/* FOOTER */
#footer {
    background: var(--sakura-d);
    padding: 48px 40px 24px
}
#footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,.1)
}
#footer-brand .flogo {
    font-family: 'Noto Serif JP', serif;
    font-size: .98rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    margin-bottom: 10px
}
#footer-brand p {
    font-size: .75rem;
    line-height: 2;
    color: var(--beige);
}
.foot-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: .78rem;
    letter-spacing: .22em;
    color: var(--beige);
    text-transform: uppercase;
    margin-bottom: 14px
}
.foot-col ul {
    list-style: none
}
.foot-col li {
    margin-bottom: 7px
}
.foot-col a {
    font-size: .75rem;
    color: var(--beige);
    text-decoration: none;
    transition: color .2s
}
.foot-col a:hover {
    color: #fff
}
#footer-copy {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    font-size: .67rem;
    color: rgba(255,255,255,.28);
    padding-top: 22px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .1em
}

/* RESP */
@media(max-width:960px) {
    #about-grid, #director-grid, #access-grid, #footer-inner {
        grid-template-columns: 1fr
    }
    #services-grid {
        grid-template-columns: 1fr 1fr
    }
    #features-grid, .staff-grid {
        grid-template-columns: 1fr 1fr
    }
    #flow-steps {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
    #flow-steps::before {
        display: none
    }
    #header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 20px;
    }
    #director-photo img {
        width: 50%;
        height: auto;
        margin: 0 auto;
    }
}

@media(max-width:600px) {
    #services-grid, #features-grid, .staff-grid {
        grid-template-columns: 1fr
    }
    #hero {
        height: 50vh;
    }
    #hero-content {
        padding: 0 28px
    }
    .sec {
        padding: 56px 24px
    }
    #topbar, #breadcrumb {
        padding: 7px 24px
    }
    #about-img::after {
        bottom: -5px;
        right: -5px;
        width: 103%;
        height: 103%;
    }
    #nav a {
        padding: 2px 8px;
        font-size: 0.85rem;
    }
}
/* ENHANCED PHOTO STYLING */
img {
    image-rendering: -webkit-optimize-contrast;
}
#about-img img {
    filter: saturate(1.05) contrast(1.02);
    transition: transform 0.6s ease, filter 0.4s ease;
}
#about-img:hover img {
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.02);
}
#director-photo img {
    filter: saturate(1.05);
    transition: filter 0.4s ease;
}
.feat-img {
    filter: saturate(1.08) brightness(1.02);
    transition: transform .35s ease, filter .3s ease, box-shadow .3s ease !important;
}
.feat:hover .feat-img {
    filter: saturate(1.15) brightness(1.05) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.28) !important;
}
.svc-img img {
    filter: saturate(1.05);
    transition: transform .45s ease, filter .35s ease !important;
}
.svc:hover .svc-img img {
    transform: scale(1.08) !important;
    filter: saturate(1.12) brightness(1.03) !important;
}
.staff-img {
    filter: saturate(1.05) contrast(1.02);
    transition: filter .3s ease, transform .3s ease;
    border-radius: 2px;
}
.staff-card:hover .staff-img {
    filter: saturate(1.15) contrast(1.05);
    transform: scale(1.02);
}
/* Better hero overlay */
#hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(217, 144, 159,.1) 0%, rgba(217, 144, 159,.05) 30%, transparent 100%);
}

h4{
    font-size: 1.3rem;
    font-family: 'Noto Serif JP', serif;
    color: var(--sakura-d);
    margin: 1rem 0;
}
.staff-card ul,#services ul{text-align:left;}
.staff-card ul li,#services ul li{
    position: relative;
    margin: 0;
    padding: 0 0 0 1em;
}
.staff-card ul li::before,#services ul li::before{
    position:absolute;
    top: 12px;
    left: 0.3em;
    width: 8px;
    height: 8px;
    margin-right: .5em;
    content: '';
    transition: all .3s ease-out 0s;
    border-radius: 50%;
    background: #d9909f none repeat scroll 0 0;
}
#services ul li{
    font-weight: bold;
    font-size: 1.1rem;
}
#services ul p{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}
#services ul li ul li{
    font-weight: normal;
    font-size: 1rem;
}
p.serv{}
#services ul {
    list-style: none!important;
    margin: 1rem 0;
}
