@import "reset.css";
@import "font.css";

/**
--------------------------------------------------------------------------------------
------------------------ ************ Public Css ************ ------------------------
--------------------------------------------------------------------------------------
**/

html {
    scroll-behavior: smooth;
    direction: ltr;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.container {
    width: 1100px;
    margin: 0 auto;
}

:root {
    --section-container-width: min(1360px, calc(100% - 96px));
    --section-container-edge: max(48px, calc((100vw - 1360px) / 2));
}

.container-fluid {
    width: 100%;
}

a {
    text-decoration: none;
    color: #000000;
}

body {
    font-family: Montserrat;
    color: #000000;
    direction: ltr;
    text-align: left;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

#header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 6px 0;
    z-index: 99999999;
}

#header.is-fixed {
    position: fixed;
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 34px rgba(56, 56, 56, 0.10);
    backdrop-filter: blur(16px);
    animation: fixedHeaderIn 0.34s ease both;
}

@keyframes fixedHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#header .container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    width: 90px;
}

.main_menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main_menu ul {
    display: flex;
    align-items: center;
}

.main_menu ul li {
    position: relative;
    padding: 0 18px;
}

.main_menu ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.main_menu ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2b2baa;
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.main_menu ul li.active a {
    color: #2b2baa;
}

.main_menu ul li.active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.availability_badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 11px 18px;
    border: 1px solid rgba(56, 56, 56, 0.16);
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 10px 30px rgba(56, 56, 56, 0.06);
    color: #383838;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.availability_badge span {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #22c783;
}

.availability_badge span::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background-color: rgba(34, 199, 131, 0.20);
    animation: availabilityPulse 1.8s ease-out infinite;
    z-index: -1;
}

@keyframes availabilityPulse {
    0% {
        opacity: 0.85;
        transform: scale(0.65);
    }

    70% {
        opacity: 0;
        transform: scale(1.55);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

#hero {
    background-image: url('../images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 600px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#header > .container,
#hero > .container,
#about > .container,
#work > .container,
#archive_page > .container,
#single_page > .container,
#contact > .container,
#footer > .container {
    width: var(--section-container-width);
}

#hero > .container {
    box-sizing: border-box;
    padding-left: clamp(36px, 6vw, 96px);
}

.photo {
    position: absolute;
    right: var(--section-container-edge);
    bottom: -8px;
    width: 450px;
}

#hero .hello {
    font-size: 20px;
    font-weight: 500;
    color: #2b2baa;
}

#hero h1 {
    font-size: 60px;
    font-weight: 600;
    margin: 10px 0 10px -4px;
}

#hero h2 {
    font-size: 24px;
    font-weight: 500;
}

#hero .excerpt_bio {
    margin: 20px 0 0 0;
    width: 460px;
    line-height: 22px;
    font-size: 16px;
    font-weight: 400;
}

.cta_buttons {
    margin: 32px 0 0 0;
}

.cta_primary, .cta_outline {
    display: inline-block;
}

.cta_primary {
    margin: 0 12px 0 0;
}

.cta_primary a {
    color: #ffffff;
    border: 1.5px solid #383838;
    background-color: #383838;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.cta_primary a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.cta_primary a:hover {
    background-color: #252525;
    border-color: #252525;
    box-shadow: 0 14px 30px rgba(56, 56, 56, 0.18);
    transform: translateY(-2px);
}

.cta_primary a:hover::after {
    transform: translateX(4px) rotate(45deg);
}

.cta_outline a {
    color: #383838;
    border: 1.5px solid #383838;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    display: block;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta_outline a:hover {
    background-color: #ffffff;
    box-shadow: 0 14px 30px rgba(56, 56, 56, 0.12);
    transform: translateY(-2px);
}

#about {
    padding: 64px 0;
    background-color: #ffffff;
}

.about_card {
    display: flex;
    align-items: stretch;
    padding: 48px 64px;
    border: 1px solid rgba(56, 56, 56, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(56, 56, 56, 0.12);
}

.about_intro {
    position: relative;
    width: 200px;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 54px 0 0;
}

.about_intro::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(56, 56, 56, 0.12) 50%, transparent 50%);
    background-size: 1px 10px;
}

.main_logo {
    width: 104px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    border-radius: 50%;
    background-color: #f7f7f7;
    opacity: 0.55;
}

.main_logo img {
    width: 68px;
}

.main_title {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 24px 0;
}

.about_intro .main_title {
    position: relative;
    font-size: 28px;
    margin: 0;
    letter-spacing: 0;
}

.about_intro .main_title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin: 18px 0 0;
    border-radius: 3px;
    background-color: #2b2baa;
}

.about_content {
    flex: 1;
    width: auto;
    padding: 2px 0 0 56px;
    font-size: 15px;
    line-height: 24px;
}

.about_content p {
    margin: 0 0 26px 0;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.about_content ul li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 0 0 62px;
    border-bottom: 1px solid rgba(56, 56, 56, 0.10);
    font-size: 15px;
    line-height: 22px;
}

.about_content ul li:last-child {
    border-bottom: 0;
}

.about_icon {
    position: absolute;
    left: 0;
    top: 11px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 7px 16px rgba(56, 56, 56, 0.12);
}

.about_icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #2b2baa;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#work {
    padding: 64px 0 76px;
    background-color: #ffffff;
}

#work .main_title {
    position: relative;
    font-size: 30px;
    margin: 0 0 38px 0;
    letter-spacing: 0;
text-align: center;
}

#work .main_title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin: 18px auto 0 auto;
    border-radius: 3px;
    background-color: #2b2baa;
}

.row_work {
    margin: 0 -12px;
}

.col_work {
    padding: 0 12px;
    float: left;
    width: 25%;
}

.box_work {
    overflow: hidden;
    height: 384px;
    padding: 12px;
    border: 1px solid rgba(56, 56, 56, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 16px 38px rgba(56, 56, 56, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box_work:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(56, 56, 56, 0.16);
}

.photo_work {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 188px;
    border-radius: 12px;
    background-color: #f1f1f1;
    transition: background-color 0.25s ease;
}

.photo_work:hover {
    background-color: #e9e9e9;
}

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

.work_details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    min-height: 140px;
    padding: 22px 8px 2px;
}

.title_work {
    display: inline-block;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    transition: color 0.25s ease;
}

.title_work:hover {
    color: #2b2baa;
}

.excerpt_work {
    max-width: 245px;
    color: rgba(56, 56, 56, 0.70);
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}

.work_arrow {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0 2px 2px 0;
    border: 1.5px solid rgba(56, 56, 56, 0.20);
    border-radius: 50%;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.work_arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 1.6px solid #383838;
    border-right: 1.6px solid #383838;
    transform: translate(-65%, -50%) rotate(45deg);
}

.work_arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1.6px;
    background-color: #383838;
    transform: translate(-58%, -50%);
}

.box_work:hover .work_arrow {
    background-color: #383838;
    border-color: #383838;
    transform: translateX(3px);
}

.box_work:hover .work_arrow::before {
    border-color: #ffffff;
}

.box_work:hover .work_arrow::after {
    background-color: #ffffff;
}

.archive_card:hover .work_arrow {
    background-color: #383838;
    border-color: #383838;
    transform: translateX(3px);
}

.archive_card:hover .work_arrow::before {
    border-color: #ffffff;
}

.archive_card:hover .work_arrow::after {
    background-color: #ffffff;
}

#archive_page,
#single_page {
    padding: 150px 0 82px;
    background-color: #ffffff;
}

.archive_header,
.single_header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: left;
}

.archive_header .main_title,
.single_header h1 {
    position: relative;
    margin: 0 0 18px;
    color: #111111;
    font-size: 38px;
    line-height: 1.16;
    font-weight: 700;
text-align: center;
}

.archive_header .main_title strong {
    font-weight: 800;
}

.archive_header .main_title::after,
.single_header h1::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin: 18px auto 0 auto;
    border-radius: 3px;
    background-color: #2b2baa;
}

.archive_description {
    color: rgba(56, 56, 56, 0.70);
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}

.archive_description p {
    margin: 0;
}

.archive_grid {
    margin: 0 -12px;
}

.archive_col {
    float: left;
    width: 33.33%;
    padding: 0 12px;
    margin: 0 0 24px;
}

.archive_card {
    overflow: hidden;
    height: 412px;
    padding: 12px;
    border: 1px solid rgba(56, 56, 56, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 16px 38px rgba(56, 56, 56, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(56, 56, 56, 0.16);
}

.archive_card_photo {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 204px;
    border-radius: 12px;
    background-color: #f1f1f1;
    color: rgba(56, 56, 56, 0.42);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.25s ease;
}

.archive_card_photo:hover {
    background-color: #e9e9e9;
}

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

.archive_card_details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    min-height: 168px;
    padding: 22px 8px 2px;
}

.archive_card_title {
    display: inline-block;
    margin: 0 0 10px;
    color: #111111;
    font-size: 19px;
    line-height: 25px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.archive_card_title:hover {
    color: #2b2baa;
}

.archive_card_excerpt {
    max-width: 285px;
    color: rgba(56, 56, 56, 0.70);
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}

.pagination,
.archive_navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
}

.pagination a,
.pagination span,
.archive_navigation a {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(56, 56, 56, 0.14);
    border-radius: 999px;
    color: #383838;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pagination a:hover,
.pagination .current,
.archive_navigation a:hover {
    border-color: #383838;
    background-color: #383838;
    color: #ffffff;
}

.archive_empty {
    padding: 34px;
    border: 1px solid rgba(56, 56, 56, 0.08);
    border-radius: 18px;
    color: rgba(56, 56, 56, 0.70);
    background-color: #ffffff;
    text-align: left;
    box-shadow: 0 16px 38px rgba(56, 56, 56, 0.10);
}

.single_article {
    max-width: 1080px;
}

.single_back {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0 0 18px;
    padding: 0 18px;
    border: 1px solid rgba(56, 56, 56, 0.14);
    border-radius: 999px;
    color: #383838;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.single_back:hover {
    border-color: #383838;
    background-color: #383838;
    color: #ffffff;
}

.single_featured_image {
    overflow: hidden;
    margin: 0 0 36px;
    border-radius: 18px;
    background-color: #f1f1f1;
    box-shadow: 0 18px 45px rgba(56, 56, 56, 0.12);
}

.single_featured_image img {
    display: block;
    width: 100%;
    height: auto;
}

.single_content {
    color: #383838;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

.single_content p,
.single_content ul,
.single_content ol,
.single_content blockquote,
.single_content figure {
    margin: 0 0 24px;
}

.single_content h2,
.single_content h3,
.single_content h4 {
    margin: 34px 0 16px;
    color: #111111;
    line-height: 1.25;
}

.single_content h2 {
    font-size: 28px;
}

.single_content h3 {
    font-size: 23px;
}

.single_content a {
    color: #2b2baa;
    font-weight: 600;
}

.single_content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.single_content blockquote {
    padding: 20px 24px;
    border-left: 3px solid #2b2baa;
    border-radius: 12px;
    background-color: #f8f8f8;
    color: rgba(56, 56, 56, 0.82);
    font-weight: 500;
}

.single_post_nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 46px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(56, 56, 56, 0.10);
}

.single_post_nav div {
    min-width: 0;
}

.single_post_nav div:last-child {
    margin-left: 0;
    text-align: left;
}

.single_post_nav a,
.single_page_links a,
.single_page_links span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(56, 56, 56, 0.14);
    border-radius: 999px;
    color: #383838;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.single_post_nav a:hover,
.single_page_links a:hover {
    border-color: #383838;
    background-color: #383838;
    color: #ffffff;
}

#contact {
    padding: 22px 0 82px;
    background-color: #ffffff;
}

.contact_card {
    display: flex;
    align-items: stretch;
    gap: 56px;
    padding: 48px 56px;
    border: 1px solid rgba(56, 56, 56, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(56, 56, 56, 0.12);
}

.contact_intro {
    position: relative;
    width: 310px;
    flex: 0 0 310px;
    padding: 12px 50px 12px 0;
}

.contact_intro::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(56, 56, 56, 0.12) 50%, transparent 50%);
    background-size: 1px 10px;
}

.contact_intro .main_title {
    position: relative;
    font-size: 30px;
    text-align: left;
    margin: 0 0 28px 0;
}

.contact_intro .main_title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin: 18px 0 0;
    border-radius: 3px;
    background-color: #2b2baa;
}

.contact_intro p {
    margin: 0 0 24px;
    font-size: 19px;
    line-height: 31px;
    font-weight: 600;
}

.contact_form {
    flex: 1;
    min-width: 0;
}

.contact_notice {
    margin: 0 12px 18px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

.contact_notice_success {
    border: 1px solid rgba(34, 199, 131, 0.28);
    background-color: rgba(34, 199, 131, 0.10);
    color: #167a52;
}

.contact_notice_error {
    border: 1px solid rgba(204, 50, 50, 0.24);
    background-color: rgba(204, 50, 50, 0.08);
    color: #9f2424;
}

.col_form {
    padding: 0 12px;
    float: left;
}

.col_form3 {
    width: 33.33%;
}

.col_form1 {
    width: 100%;
    padding: 12px;
}

#contact label {
    color: rgba(56, 56, 56, 0.78);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: block;
}

#contact input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(56, 56, 56, 0.14);
    border-radius: 12px;
    background-color: #f8f8f8;
    color: #111111;
    outline: none;
    font-family: Montserrat;
    font-size: 14px;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(56, 56, 56, 0.38);
}

#contact textarea {
    width: 100%;
    min-height: 148px;
    padding: 15px 16px;
    border: 1px solid rgba(56, 56, 56, 0.14);
    border-radius: 12px;
    background-color: #f8f8f8;
    color: #111111;
    outline: none;
    resize: vertical;
    font-family: Montserrat;
    font-size: 14px;
    line-height: 24px;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

#contact input:focus,
#contact textarea:focus {
    border-color: rgba(43, 43, 170, 0.42);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(43, 43, 170, 0.08);
}

button {
    min-width: 148px;
    background-color: #2C2C2C;
    color: #ffffff;
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 600;
    border: unset;
    outline: none;
    border-radius: 40px;
    padding: 14px 36px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

button:hover {
    background-color: #252525;
    box-shadow: 0 14px 30px rgba(56, 56, 56, 0.18);
    transform: translateY(-2px);
}

#footer {
    padding: 0 0 28px;
    background-color: #ffffff;
}

.footer_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(56, 56, 56, 0.10);
    color: rgba(56, 56, 56, 0.62);
    font-size: 13px;
    line-height: 22px;
}

.footer_inner p {
    margin: 0;
}

.footer_inner span {
    display: block;
}

@media only screen and (max-width: 1199px) {
    :root {
        --section-container-width: calc(100% - 56px);
        --section-container-edge: 28px;
    }

    .photo {
        right: 28px;
        width: 390px;
    }

    #hero h1 {
        font-size: 52px;
    }

    .about_card,
    .contact_card {
        padding: 40px;
    }

    .about_intro {
        width: 180px;
        flex-basis: 180px;
        padding-right: 36px;
    }

    .about_content {
        padding-left: 42px;
    }

    .col_work {
        width: 50%;
        margin-bottom: 24px;
    }

    .archive_col {
        width: 50%;
    }
}

@media only screen and (max-width: 899px) {
    #header {
        padding: 10px 0;
    }

    #header .container {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .logo {
        width: 76px;
    }

    .main_menu {
        position: static;
        order: 3;
        width: 100%;
        transform: none;
    }

    .main_menu ul {
        justify-content: center;
        gap: 4px;
    }

    .main_menu ul li {
        padding: 0 12px;
    }

    .main_menu ul li a {
        font-size: 14px;
    }

    .main_menu ul li::after {
        bottom: -9px;
    }

    .availability_badge {
        margin-left: auto;
        padding: 10px 14px;
        font-size: 12px;
    }

    #hero {
        min-height: 680px;
        height: auto;
        justify-content: flex-start;
        padding: 170px 0 76px;
        background-position: 58% center;
    }

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.66) 48%, rgba(255, 255, 255, 0.18) 100%);
        pointer-events: none;
    }

    #hero > .container {
        position: relative;
        padding-left: 0;
        z-index: 1;
    }

    #hero h1 {
        max-width: 560px;
        font-size: 48px;
    }

    #hero .excerpt_bio {
        width: 420px;
        max-width: 100%;
    }

    .about_card,
    .contact_card {
        display: block;
    }

    .about_intro,
    .contact_intro {
        width: 100%;
        flex-basis: auto;
        min-height: 0;
        padding: 0 0 28px 0;
        margin: 0 0 30px 0;
        border-bottom: 1px dashed rgba(56, 56, 56, 0.14);
    }

    .about_intro::after,
    .contact_intro::after {
        display: none;
    }

    .contact_intro .main_title,
    .contact_intro p {
        text-align: left;
    }

    .contact_intro .main_title::after {
        margin-left: 0;
        margin-right: auto;
    }

    .about_content,
    .contact_form {
        padding: 0;
    }

    .about_content p {
        text-align: left;
    }

    .col_form3 {
        width: 100%;
    }

    .footer_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
}

@media only screen and (max-width: 599px) {
    :root {
        --section-container-width: calc(100% - 32px);
        --section-container-edge: 16px;
    }

    body {
        overflow-x: hidden;
    }

    #header.is-fixed {
        padding: 8px 0 10px;
    }

    #header .container {
        justify-content: center;
    }

    .logo {
        width: 64px;
    }

    .availability_badge {
        padding: 9px 12px;
        gap: 8px;
        font-size: 11px;
        box-shadow: 0 8px 20px rgba(56, 56, 56, 0.08);
    }

    .availability_badge span {
        width: 8px;
        height: 8px;
    }

    .main_menu {
        /* overflow-x: auto; */
        padding: 2px 0 8px;
        -webkit-overflow-scrolling: touch;
    }

    .main_menu ul {
        width: max-content;
        min-width: 100%;
        justify-content: center;
    }

    .main_menu ul li {
        padding: 0 11px;
    }

    .main_menu ul li a {
        font-size: 13px;
    }

    #hero {
        min-height: 620px;
        padding: 160px 0 52px;
        background-position: 73% center;
    }

    #hero::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.36) 100%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.14));
    }

    #hero .hello {
        font-size: 15px;
    }

    #hero h1 {
        max-width: 330px;
        font-size: 42px;
        line-height: 1.08;
        margin: 10px 0;
    }

    #hero h2 {
        font-size: 21px;
    }

    #hero .excerpt_bio {
        margin-top: 18px;
        width: 300px;
        font-size: 14px;
        line-height: 23px;
    }

    .cta_buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
    }

    .cta_primary,
    .cta_outline {
        display: block;
        margin: 0;
    }

    .cta_primary a,
    .cta_outline a {
        min-height: 46px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    #about,
    #work {
        padding: 48px 0;
    }

    #archive_page,
    #single_page {
        padding: 132px 0 56px;
    }

    .archive_header,
    .single_header {
        margin-bottom: 30px;
        text-align: left;
    }

    .archive_header .main_title,
    .single_header h1 {
        font-size: 30px;
    }

    .archive_header .main_title::after,
    .single_header h1::after {
        margin-left: 0;
        margin-right: 0;
    }

    .archive_grid {
        margin: 0;
    }

    .archive_col {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 18px;
    }

    .archive_card {
        height: auto;
        min-height: 0;
        padding: 10px;
        border-radius: 16px;
    }

    .archive_card_photo {
        height: 180px;
    }

    .archive_card_details {
        min-height: 0;
        padding: 20px 8px 8px;
    }

    .archive_card_excerpt {
        max-width: none;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .single_featured_image {
        margin-bottom: 28px;
        border-radius: 16px;
    }

    .single_content {
        font-size: 16px;
        line-height: 29px;
    }

    .single_content h2 {
        font-size: 24px;
    }

    .single_content h3 {
        font-size: 21px;
    }

    .single_post_nav {
        display: block;
    }

    .single_post_nav div:last-child {
        margin: 12px 0 0;
        text-align: left;
    }

    #contact {
        padding: 0 0 56px;
    }

    .about_card,
    .contact_card {
        padding: 26px 20px;
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(56, 56, 56, 0.10);
    }

    .about_intro,
    .contact_intro {
        padding-bottom: 22px;
        margin-bottom: 24px;
    }

    .about_intro {
        align-items: flex-start;
    }

    .main_logo {
        width: 86px;
        height: 86px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .main_logo img {
        width: 56px;
    }

    .about_intro .main_title,
    #work .main_title,
    .contact_intro .main_title {
        font-size: 25px;
    }

    .about_content p,
    .contact_intro p {
        font-size: 15px;
        line-height: 26px;
    }

    .about_intro .main_title,
    .about_content p {
        text-align: left;
    }

    .about_intro .main_title::after {
        margin-left: 0;
        margin-right: 0;
    }

    .about_content p {
        margin-bottom: 14px;
    }

    .about_content ul li {
        display: block;
        min-height: 0;
        padding: 13px 0 13px 48px;
        font-size: 14px;
        line-height: 23px;
    }

    .about_icon {
        top: 16px;
        width: 34px;
        height: 34px;
    }

    .row_work {
        margin: 0;
    }

    .col_work {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 18px;
    }

    .box_work {
        height: auto;
        min-height: 0;
        padding: 10px;
        border-radius: 16px;
    }

    .photo_work {
        height: 180px;
    }

    .work_details {
        min-height: 0;
        padding: 20px 8px 8px;
    }

    .title_work {
        font-size: 18px;
    }

    .excerpt_work {
        max-width: none;
        font-size: 14px;
        line-height: 23px;
    }

    .work_arrow {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .row_contact {
        margin: 0;
    }

    .col_form,
    .col_form1 {
        float: none;
        width: 100%;
        padding: 0 0 14px;
    }

    #contact input {
        height: 50px;
    }

    #contact textarea {
        min-height: 132px;
    }

    button {
        width: 100%;
        min-height: 50px;
    }

    #footer {
        padding-bottom: 24px;
    }

    .footer_inner {
        font-size: 12px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 380px) {
    .availability_badge {
        width: 100%;
        justify-content: center;
        order: 3;
    }

    .main_menu {
        order: 4;
    }

    #hero {
        padding-top: 205px;
    }

    #hero h1 {
        font-size: 38px;
    }
}
