/*!
 * Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* https://noonnu.cc/font_page/918#google_vignette */
@font-face {
    font-family: 'EarlyFontDiary';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_220508@1.0/EarlyFontDiary.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Modern Theme Variables & Overrides */
:root {
    --primary-bg: #fdfdfd;
    --secondary-bg: #f8fafc;
    --card-bg: rgba(0, 0, 0, 0.02);
    --accent-color: #6799fa;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(103, 153, 250, 0.2);
    --accent-soft: rgba(103, 153, 250, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --border-color: rgba(0, 0, 0, 0.06);

    --primary-color: var(--accent-color);
    --secondary-color: #2c3e50;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    scroll-behavior: smooth;
}

p {
    font-size: 20px;
}

p.small {
    font-size: 16px;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    color: var(--secondary-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Pretendard', Montserrat, sans-serif;
    font-weight: 700;
    text-align: left;
    /* 좌측 정렬로 변경 */
    position: relative;
    word-break: keep-all;
    color: var(--secondary-color);
}

h1,
h2,
h3 {
    text-align: center;
}

hr,
hr.star-light,
hr.star-primary {
    margin: 40px auto;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 1px #e2e8f0;
    text-align: center;
    overflow: visible;
}

hr,
hr.star-light {
    border-color: #fff;
}

hr,
hr.star-primary {
    border-color: #e2e8f0;
}

section h1::after,
section h2::after,
section h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    /* 선도 좌측으로 이동 */
    border-radius: 2px;
}

.img-centered {
    margin: 0 auto;
}

header {
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a82f0 100%);
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
}

header .container {
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
}

header img {
    display: block;
    margin: 0 auto 20px;
}

header .intro-text .name {
    display: block;
    text-transform: uppercase;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2em;
    font-weight: 700;
}

header .intro-text .skills {
    font-size: 1.25em;
    font-weight: 300;
}

@media(min-width:768px) {
    header .container {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    header .intro-text .name {
        font-size: 4.75em;
    }

    header .intro-text .skills {
        font-size: 1.75em;
    }
}

section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section h1,
section h2,
section h3 {
    margin: 0;
    margin-bottom: 15px;
    /* 타이틀 하단 여백 최적화 */
}

section.success {
    color: var(--secondary-color);
}

.btn-outline {
    margin-top: 15px;
    border: solid 2px #fff;
    font-size: 20px;
    color: #fff;
    background: 0 0;
    transition: all .3s ease-in-out;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
    border: solid 2px #fff;
    color: var(--primary-color);
    background: #fff;
}

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

.floating-label-form-group {
    position: relative;
    margin-bottom: 0;
    padding-bottom: .5em;
    border-bottom: 1px solid #eee;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
    z-index: 1;
    position: relative;
    padding-right: 0;
    padding-left: 0;
    border: 0;
    border-radius: 0;
    font-size: 1.5em;
    background: 0 0;
    box-shadow: none !important;
    resize: none;
}

.floating-label-form-group label {
    display: block;
    z-index: 0;
    position: relative;
    top: 2em;
    margin: 0;
    font-size: .85em;
    line-height: 1.764705882em;
    vertical-align: middle;
    vertical-align: baseline;
    opacity: 0;
    -webkit-transition: top .3s ease, opacity .3s ease;
    -moz-transition: top .3s ease, opacity .3s ease;
    -ms-transition: top .3s ease, opacity .3s ease;
    transition: top .3s ease, opacity .3s ease;
}

.floating-label-form-group::not(:first-child) {
    padding-left: 14px;
    border-left: 1px solid #eee;
}

.floating-label-form-group-with-value label {
    top: 0;
    opacity: 1;
}

.floating-label-form-group-with-focus label {
    color: var(--primary-color);
}

form .row:first-child .floating-label-form-group {
    border-top: 1px solid #eee;
}

#wrapper {
    padding: 0;
    height: auto;
    min-height: calc(100% - 80px);
}

footer {
    margin-top: 50px;
    padding: 0;
    position: relative;
}

footer .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

footer .footer-above {
    padding: 60px 0;
}

footer .footer-col {
    margin-bottom: 30px;
}

footer .footer-below {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Modern Section Styles */
section {
    position: relative;
    z-index: 1;
    background-color: var(--primary-bg) !important;
    padding: 80px 0 0;
    opacity: 1;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.025em;
    position: relative;
}

/* About Layout */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.about-profile-side {
    flex: 0 0 280px;
    align-content: center;
    position: sticky;
    top: 100px;
}

.about-text-side {
    flex: 1;
    min-width: 300px;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 18px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.profile-card:hover .profile-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-description {
    color: var(--text-main);
    line-height: 1.8;
}

.about-description ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
    gap: 1.5rem !important;
}

.about-description ul li {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
}

/* Activity Styles */
#activities .container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.activity-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.activity-item:hover {
    background: var(--accent-soft);
    border-color: var(--accent-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

/* Scroll-to-Top Button */
.scroll-top {
    right: 30px !important;
    bottom: 30px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 1000 !important;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    display: block !important;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top .btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    color: var(--accent-color) !important;
    box-shadow: var(--shadow-lg) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
}

/* Footer Modern */
.footer-above h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
}



.btn-social,
.btn:focus,
.btn:active,
.btn.active {
    outline: 0;
}

.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 50px;
    height: 50px;
}

.scroll-top .btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 20px;
    line-height: 28px;
}

.scroll-top .btn:focus {
    outline: 0;
}

/* Fix modal mouse wheel issues */
/* https://github.com/twbs/bootstrap/issues/16297 */
.modal.fade.in {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    background-color: rgb(176, 176, 176);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* 여기부터 이미지 슬라이드 css */
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}


@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10.5px;
    padding: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline>li {
    display: inline-block;
    padding: 5px;
}

.btn-success {
    color: #ffffff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.btn-success .badge {
    color: var(--primary-color);
    background-color: #ffffff
}

.btn-info {
    color: #ffffff;
    background-color: #3498db;
    border-color: #3498db
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #217dbb;
    border-color: #2077b2
}

.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #3498db;
    border-color: #3498db
}

.btn-info .badge {
    color: #3498db;
    background-color: #ffffff
}

.btn-warning {
    color: #ffffff;
    background-color: #f39c12;
    border-color: #f39c12
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #c87f0a;
    border-color: #be780a
}

.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f39c12;
    border-color: #f39c12
}

.btn-warning .badge {
    color: #f39c12;
    background-color: #ffffff
}

.btn-danger {
    color: #ffffff;
    background-color: #e74c3c;
    border-color: #e74c3c
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #d62c1a;
    border-color: #cd2a19
}

.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #e74c3c;
    border-color: #e74c3c
}

.btn-danger .badge {
    color: #e74c3c;
    background-color: #ffffff
}

.btn-link {
    color: var(--primary-color);
    font-weight: normal;
    cursor: pointer;
    border-radius: 0
}

.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent
}

.btn-link:hover,
.btn-link:focus {
    color: var(--primary-color);
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #b4bcc2;
    text-decoration: none
}

.btn-lg,
.btn-group-lg>.btn {
    padding: 18px 27px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px
}

.btn-sm,
.btn-group-sm>.btn {
    padding: 6px 9px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs,
.btn-group-xs>.btn {
    padding: 1px 5px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 15px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9.5px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #7b8a8b;
    white-space: nowrap
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: var(--secondary-color)
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: var(--secondary-color)
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: #b4bcc2
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #b4bcc2;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,

.dropup .dropdown-menu,

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    float: left
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover,
.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
    z-index: 2
}

.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus {
    outline: 0
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group>.btn-group {
    float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child>.btn:last-child,
.btn-group>.btn-group:first-child>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:last-child>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group>.btn-lg+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical>.btn-group>.btn {
    float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"]>.btn>input[type="radio"],
[data-toggle="buttons"]>.btn>input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0)
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    height: 64px;
    padding: 18px 27px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
    height: 64px;
    line-height: 64px
}

textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn,
select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn {
    height: auto
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
    height: 33px;
    padding: 6px 9px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
    height: 33px;
    line-height: 33px
}

textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn,
select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn {
    height: auto
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 10px 15px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1;
    color: var(--secondary-color);
    text-align: center;
    background-color: #ecf0f1;
    border: 1px solid #dce4ec;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 18px 27px;
    font-size: 19px;
    border-radius: 6px
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn>.btn {
    position: relative
}

.input-group-btn>.btn+.btn {
    margin-left: -1px
}

.input-group-btn>.btn:hover,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:active {
    z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    margin-left: -1px
}




.blog-home-row h3 {
    margin: 15px 0px;

}

.blog-home-row h3:before {
    display: none;

}

.blog-home-row h3:after {
    display: none;

}
.portfolio-grid .portfolio-item {
    right: 0;
    position: relative;
    width: 100px;
    height: 100px;
    margin: 15px;
    margin-bottom: 60px;
}

.portfolio-grid .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.portfolio-grid .portfolio-item .portfolio-link .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
    background-color: transparent; /* 배경색 없이 블러 효과만 적용 */
    backdrop-filter: blur(5px); /* 블러 효과 추가 */
    -webkit-backdrop-filter: blur(5px); /* Safari 지원 */
}

.portfolio-grid .portfolio-item:hover .portfolio-link .caption {
    opacity: 0.6; /* 배경색이 없으므로 텍스트 가독성을 위해 불투명도를 1로 설정 */
}

.portfolio-grid .portfolio-item .portfolio-link .caption .caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.portfolio-grid .portfolio-item .portfolio-link .caption .caption-content i {
    margin-top: -12px;
    color: black;
    opacity: 2;
}

.portfolio-grid .portfolio-item .portfolio-link .caption .caption-content h3,
.portfolio-grid .portfolio-item .portfolio-link .caption .caption-content h4 {
    margin: 0;
}

.portfolio-grid * {
    z-index: 2;
}

.portfolio-flex-row {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: center;
}

.portfolio-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.portfolio-txt {
    position: absolute;
    width: 100%;
    top: 100px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

.box-modal {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color); /* 기존 #e2e8f0 대신 변수 사용 */
    background-color: var(--primary-bg); /* 명시적인 배경색 설정 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-modal:hover {
    transform: translateY(-5px);
    /* 더 부드럽고 깊이감 있는 그림자 효과를 위해 조정 */
    box-shadow: 0 15px 30px rgba(103, 153, 250, 0.2), 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--accent-soft); /* 호버 시 은은한 배경색 변화 */
}

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

li.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    margin: 0 6px 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    background: var(--secondary-color);
    transition: all 0.2s ease;
    cursor: default;
}

li.blog-tag:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.blog-home-row {
    padding: 10px;
    max-width: 400px;
    margin: auto;
    border-bottom: 4px dotted var(--secondary-color);
}


.post .left,
.portfolio .left {
    float: left;
    padding: 0 25px;
    width: calc(50% - 50px);
    margin: 0 auto;
}

.post .right,
.portfolio .right {
    float: right;
    padding: 0 25px;
    padding-bottom: 75px;
    width: calc(50% - 50px);
    margin: 0 auto;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    width: fit-content;
    padding: 0 12px;
    box-sizing: border-box;
    height: 45px;
    border-radius: 25px;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-social:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Modern Flex Grid Overrides */
/*
.portfolio-flex-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.portfolio-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.portfolio-txt {
  padding: 1.5rem;
  font-weight: 600;
}*/
#nav-icon-box {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#nav-icon-img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-header {
    z-index: 10; /* 메뉴보다 위에 오도록 설정 */
    padding-right: 50px; /* 그라데이션이 적용될 여유 공간 */
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari 지원 */
    
    /* 그라데이션 마스크: 오른쪽 끝 50px 구간에서 배경과 블러가 부드럽게 사라짐 */
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 50px), transparent 100%);
    mask-image: linear-gradient(to right, black calc(100% - 50px), transparent 100%);
}

.navbar {
    background-color: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.navbar a:focus {
    outline: 0;
}

.navbar .navbar-nav {
    letter-spacing: 0.5px;
}

.navbar .navbar-nav li a:focus {
    outline: 0;
}

.navbar-default,
.navbar-inverse {
    border: 0;
}

.navbar *[select="true"] {
    color: var(--primary-color) !important;;
}

.navbar-nav li a {
    background-color: transparent;
    padding-bottom: 0;
    padding-left: 15px !important;
    padding-right: 15px !important;
    min-width: 80px; /* nav 메뉴의 최소 크기를 지정하여 안정감 부여 */
    text-align: center;
}

.navbar li a::after {
    content: " ";
    display: block;
    width: 0px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0; /* 좌측 정렬된 타이틀과 일관성 유지 */
    padding: 0;
    transition: width 0.3s ease;
    
}

.nav li a:hover {
    color: inherit;
}

.navbar li a:hover::after,
.nav-link-modern:hover::after,
.nav-link-modern[select="true"]::after,
.navbar-nav > .active > a::after {
    width: 50px !important;
}

/* Modern Nav Overrides */
.modern-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000 !important;
  background-color: var(--glass-bg) !important;
  backdrop-filter: blur(12px);
  border: none !important;
  box-shadow: 0 1px 0 var(--border-color);
  transition: var(--transition);
  padding: 0 !important;
}

.navbar-brand-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0 !important;
  text-decoration: none !important;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.nav-link-modern {
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 16px !important;
  padding: 15px 30px !important;
  position: relative;
  transition: var(--transition);
  background: transparent !important;
}

.nav-link-modern[select="true"],
.navbar-nav > .active > a {
  color: var(--accent-color) !important;
  background-color: transparent !important;
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  max-width: 35px; 
  height: 3px;
  background-color: var(--accent-color) !important;
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: ""
}

.navbar-menu-visible {
    align-items: center;
    overflow-x: auto;
    margin-left: -50px; /* 헤더의 마스크 영역과 겹치도록 왼쪽으로 당김 */
    display: flex;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.navbar-menu-visible::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: right;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.nav>li {
    position: relative;
    display: block
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: #ecf0f1
}

.nav>li.disabled>a {
    color: #b4bcc2
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
    color: #b4bcc2;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #ecf0f1;
    border-color: var(--primary-color)
}

.nav .nav-divider {
    height: 1px;
    margin: 9.5px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ecf0f1
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #ecf0f1 #ecf0f1 #ecf0f1
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    color: var(--secondary-color);
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
    border-bottom-color: transparent;
    cursor: default
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified>li {
    float: none
}

.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a:focus {
    border: 1px solid #ecf0f1
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ecf0f1;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a:focus {
        border-bottom-color: #ffffff
    }
}

.nav-pills>li {
    float: left
}

.nav-pills>li>a {
    border-radius: 4px
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    color: #ffffff;
    background-color: var(--secondary-color)
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified>li {
    float: none
}

.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:hover,
.nav-tabs-justified>.active>a:focus {
    border: 1px solid #ecf0f1
}

@media (min-width:768px) {
    .nav-tabs-justified>li>a {
        border-bottom: 1px solid #ecf0f1;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs-justified>.active>a:focus {
        border-bottom-color: #ffffff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 60px;
    margin-bottom: 21px;
    border: 1px solid transparent
}

@media (min-width:768px) {
    .navbar {
        border-radius: 4px
    }
}

@media (min-width:768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-width:480px) and (orientation:landscape) {

    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
    
}

@media (min-width:768px) {

    .container>.navbar-header,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container-fluid>.navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media (min-width:768px) {

    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    font-size: 19px;
    line-height: 21px;
    width: 60px;
    height: 60px;
}
.post,
.portfolio {
    margin: auto;
    max-width: 800px;
}

.post p,
.portfolio p {
    margin-bottom: 20px;
    word-break: keep-all;
    font-size: 16px;
}

.post img,
.portfolio p {
    width: 100%;

}

.post h1,
.portfolio h1 {
    text-align: center;
}

.post h1::after,
.portfolio h1::after {
    margin: 10px auto 0;
}

.post object,
.portfolio object {
    display: block;
    margin-left: 50%;
    margin-bottom: 20px;
    transform: translateX(-50%);
}

.post iframe,
.portfolio iframe {
    display: block;
    margin-left: 50%;
    margin-bottom: 20px;
    transform: translateX(-50%);
}

.post ul,
.portfolio ul {
    font-size: 16px;
    list-style-type: square;
    list-style-position: inside;
}

.post li>ul,
.portfolio li>ul {
    margin-left: 20px;
}

.post ul>li::marker,
.portfolio ul>li::marker {
    content: "\f005\00a0\00a0";
    font-family: 'FontAwesome';
    font-size: 12px;

}

.post ul>li>ul>li::marker,
.portfolio ul>li>ul>li::marker {
    content: "\f192\00a0\00a0"
}

.post h1,
.portfolio h1 {
    font-size: 32px;
    margin: 10px 0;
}

.post h1:before,
.post h2:before,
.post h3:before {
    content: "\f053     ";
    display: initial;
    margin-left: initial;
    position: initial;
    font-size: 100%;
    font-weight: 600;
    background: initial;
    font-family: 'FontAwesome'

}

.post h1:after,
.post h2:after,
.post h3:after {
    content: " \f054";
    display: initial;
    margin-left: initial;
    position: initial;
    font-size: 100%;
    font-weight: 600;

}

.post h2,
.portfolio h2 {
    margin-bottom: 25px;
    font-size: 19px;
}

.post h2 {
    margin-top: 50px;
}

.post h3,
.portfolio h3 {
    margin: 10px 0;
    margin-top: 25px;
    font-size: 19px;
    text-align: left;
}

.post h2::before,
.portfolio h2::before,
.post h2::after,
.portfolio h2::after,
.post h3::before,
.portfolio h3::before,
.post h3::after,
.portfolio h3::after {
    display: none;
}

.post details {
    display: inline-block;
    vertical-align: top;
}

.portfolio h4 {
    text-align: left;
}

.splide__pagination {
    bottom: -48px;
}

.splide__arrow--prev {
    left: -25px;
}

.splide__arrow--next {
    right: -25px;
}

.splide {
    padding: 0 10px;
}

ul.splide__list>li::marker {
    content: "";
}

@media screen and (max-width: 767px) {

    .post .left,
    .portfolio .left {
        width: auto;
        max-width: 400px;
        float: none;
    }

    .post .right,
    .portfolio .right {
        width: auto;
        max-width: 400px;
        float: none;
    }
}