@charset "utf-8";

/* 여백초기화 */
* {
    margin: 0px 0px;
    padding: 0px 0px;
    box-sizing: border-box;
}

/* 테이블선 중첩여부지정, 가로크기 100% */
table {
    border-collapse: collapse;
    width: 100%;
}

/* 목록요소에 숫자,불릿기호 없애기  */
ol,
ul,
li {
    list-style: none;
}

/* 링크에 밑줄 없애기, 글자색 기본색 지정 */
a {
    text-decoration: none;
    color: #252525c7;
    padding: 0;
}

/* 글자 기울임 설정 */
address {
    font-style: normal;
}

/*── Reset & Base ───────────────────────────────────────────────────────────*/
/* 모든 요소에 마진/패딩 제거, 박스 사이징 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html, body 기본 설정: 전체 너비/높이, 숨김 처리, 폰트, 배경 등 */
html,
body {
    width: 100%;
    /* height: 100%; */
    /* overflow: hidden; */
    /* fullPage.js 사용 시 스크롤 숨김 */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333333d0;
    background: #fdfdfd;
    line-height: 1.6;
}

/*── fullPage.js Sections ───────────────────────────────────────────────────*/
/* 각 섹션(섹션 단위 fullPage.js) 높이 강제, 내부 스크롤 설정 */
.fp-section {
    height: 100vh !important;
    overflow: hidden;
}

.fp-scrollable {
    overflow: auto;
}

/*── Container ──────────────────────────────────────────────────────────────*/
/* .container 클래스: 중앙 정렬 및 최대 너비, 좌우 패딩 */
.container {
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/*── Header & Nav ──────────────────────────────────────────────────────────*/
/* 헤더 고정, 숨김/표시 트리거(hover) */
#header {
    position: fixed;
    top: -70px;
    /* 숨김 상태 */
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
    z-index: 1000;
}

#header:hover {
    top: 0;
    /* hover 시 헤더 내려옴 */
}

/* 헤더 handle(슬라이드 표시 바) */
.handle {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: #5dafafaf;
    cursor: pointer;
    z-index: 1001;
}

/* 본문 위쪽 padding(헤더 핸들 여유) */
body {
    padding-top: 20px;
}

/* 헤더 내부 레이아웃: 로고 좌측, 네비게이션 우측 */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* 로고 이미지 높이 */
.logo img {
    height: 50px;
    display: block;
}

/* GNB(내비게이션) 리스트 */
nav.gnb ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

/* GNB 링크 스타일 */
nav.gnb a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s, background 0.3s;
}

nav.gnb a:hover {
    color: #66b8a6ea;
    background: rgba(162, 111, 192, 0.1);
    border-radius: 4px;
}

/*── Language Toggle ───────────────────────────────────────────────────────*/
/* 다국어 토글 버튼 숨김/표시 */
.lang-kr,
.lang-en {
    display: none;
}

body:not(.en) .lang-kr {
    display: inline;
}

body.en .lang-en {
    display: inline;
}

/* 토글 버튼 컨테이너 */
.lang-toggle {
    position: fixed;
    top: 12px;
    right: 13px;
    display: flex;
    gap: 0.5rem;
    z-index: 1100;
    pointer-events: auto;
}

/* 토글 버튼 기본/활성 상태 */
.lang-toggle button {
    background: #fff;
    border: 1px solid #699ea53d;
    padding: 0.3rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s, color 0.2s;
    border-radius: 50%;
}

.lang-toggle button.active {
    background: #6ba6b8c2;
    color: #fff;
    border-color: #fff;
}

/*── Hero Slider ──────────────────────────────────────────────────────────*/
/* Swiper 컨테이너 크기 */
.hero-swiper {
    width: 100%;
    height: 700px;
}

/* 슬라이드 배경 설정 */
.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 슬라이드 콘텐츠 위치 */
.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    max-width: 80%;
}

/*── About Section ────────────────────────────────────────────────────────*/
/* About 섹션: 프로필 / 이력 flex 레이아웃 */
.about-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    overflow: hidden;
}

/* 프로필 박스 */
.about-profile {
    flex: 1 1 300px;
    padding: 10px 0;
    color: #636161;
    font-weight: 300;
}

/* 프로필 사진 */
.profile-photo {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.profile-photo::after {
    content: "";
    background-image: url('../images/pro1.jpg');
    /* hover 이미지 경로 */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    z-index: 1;
    border-radius: 8px;
}

.profile-photo:hover::after {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .profile-photo img {
        width: 200px;
    }
}
.profile-bio h2 {
    font-size:20px;
	font-weight:550;
	padding-top:50px
}
.profile-bio > ul > li {
	font-size:12px;
}
.profile-bio a:hover {
    color: #66b8a6;
}
.profile-bio h4 { 
	color: #66b8a6; 
	font-weight:300;
	font-size: 14px;
}
.about-resume h3 {
	font-size: 15px;
	font-weight:500px;
	color: #66b8a6;
}
.about-resume h3:nth-of-type(2) {
	padding-top:30px;
}

/* 이력 박스: 스크롤, 패딩 */
.about-resume {
    flex: 1 1 600px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 0 1rem 0 20px;
}

.about-resume h3 {
    margin-bottom: 1rem;
}

.about-resume li {
    margin-bottom: 10px;
    color: #636161;
}

/* 프로필 연락처 */
.about-profile h4 {
    font-size: 1vw;
    font-weight: 400;
    padding-top: 5px;
}

.about-profile li a {
    font-size: 1vw;
    color: #739993;
}

.about-profile li a:hover {
    color: #71bea1;
}

/* 이력 리스트 */
.resume-list {
    list-style: none;
    padding-left: 0;
}
.resume-list strong { 
	font-weight: 600;
	color: #ddd;
	}
.resume-list li {
    margin-bottom: 0.75rem;
    font-size: 0.8vw;
}

.resume-list li strong {
    display: inline-block;
    width: 30%;
    color: #636161;
    font-size: 0.8vw;
}

/* Past: 필터 탭 */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem 0;
}

.filter-tabs button {
    background: #f0f0f0;
    border: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: rgba(102, 184, 166, 0.5);
    color: #fff;
}

/* Past: 4×2 썸네일 그리드 */
.exhibit-grid {
    display: grid;
    grid-template-columns: repeat(5, 120px);
    grid-template-rows: repeat(2, 120px);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.exhibit-item,
.exhibit-placeholder {
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fafafa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 0.8rem;
    text-align: center;
}

.exhibit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


/* 버튼 너비가 너무 좁게 지정돼 있었다면 지우거나 auto로 바꿔주세요 */
/* 상세보기 버튼을 한 줄로, 너비 자동 */
.btn-detail {
  display: inline-block !important;   /* 너비를 텍스트에 딱 맞게 */
  white-space: nowrap !important;      /* 줄바꿈 방지 */
  width: auto !important;              /* 고정 너비가 있다면 제거 */
  padding: 0.5em 1em;                  /* 필요에 맞게 조정 */
  font-size: 0.8rem;
  background-color:rgba(102, 184, 166, 0.412) !important;
}
/* overlay 버튼 */
.exhibit-item .overlay {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.exhibit-item .overlay button {
    background: rgba(0, 123, 255, 0.8);
    border: none;
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 3px;
    cursor: pointer;
}

/* Past: 페이지네이션 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination button {
    background: #f0f0f0;
    border: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: default;
}
.exhibit-notice { 
	color: #333;
}
.exhibit-notice a:hover {
    text-decoration: underline;
	color:#66b8a6;
}
.news-item {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}
.news-item a {
    color: #006699; /* 원하는 색상 코드로 바꿔도 됨 */
    text-decoration: none;
    transition: color 0.2s;
}

/* 페이징 UI 스타일 
.notice-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem;
}*/

/*.notice-pagination button {
    background: #f0f0f0;
    border: none;
    padding: .3rem .6rem;
    border-radius: 4px;
    cursor: pointer;
}

.notice-pagination button:disabled {
    opacity: .5;
    cursor: default;
}

/* ── 전시 홍보기사 영역 기본 스타일rgba(158, 128, 179, 0.8) ──────────────────────────── */
.exhibit-notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background:  rgba(102, 184, 166, 0.049);
    border-left: 4px solid rgba(102, 184, 166, 1);
    font-size: 0.85rem;
    color: red;
    line-height: 1.4;
    white-space: normal;
	border-radius:1%;
}


/* 한 줄에 하나씩 + 줄 사이 여백 */
/* ── 전시 홍보기사 영역 기본 스타일 ──────────────────────────── */
/* 1) 컨테이너를 flex-column 으로 바꿔서 자동 줄바꿈 */
.exhibit-notice .notice-links {
    display: flex;
    flex-direction: column;
	
}

/* 2) 각 span을 100% 너비의 블록으로 강제 */
.exhibit-notice .notice-links>span {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 0.5rem;
}

/* 3) clearfix 용도 (혹시 float 쓰인 게 남아있다면) */
.exhibit-notice .notice-links::after {
    content: "";
    display: block;
    clear: both;
}

body:not(.en) .exhibit-notice .notice-links span.lang-en {
    display: none !important;
}

/* 영어 모드: 한국어 span 숨기기 */
body.en .exhibit-notice .notice-links span.lang-kr {
    display: none !important;
}

/* 페이징 UI 
.notice-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.notice-pagination button {
    background: #f0f0f0;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
}

.notice-pagination button:disabled {
    opacity: 0.5;
    cursor: default;
}*/

/* 언어 토글 — 기존 lang-kr / lang-en 규칙이 전역에 이미 있어야 합니다. */
/* (body:not(.en) .lang-kr {display:inline;} body.en .lang-en {display:inline;} 등) */

/* 페이징 버튼 스타일 (필요에 따라 조정하세요) 
.notice-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}*/


/* 2) 한국어 모드(body에 .en 가 없을 때): active & lang-kr 인 것만 보임 */
/* body:not(.en) .exhibit-notice .notice-links>span.active.lang-kr {
    display: block;
} */

/* 3) 영어 모드(body에 .en 이 있을 때): active & lang-en 인 것만 보임 */
/* body.en .exhibit-notice .notice-links>span.active.lang-en {
    display: block;
}
 */
/* 내부 fullCalendar 스크롤 강제 */
.upcoming .calendar-widget .fc-scroller {
    overflow: auto !important;
}


/* ── Exhibitions 섹션: 두 컬럼 절대 고정 ── */
.exhibit-layout {
    display: flex;
    /* flex 로 가로 배치 */
    flex-wrap: nowrap;
    /* 무조건 한 줄 */
    justify-content: space-between;
    gap: 2rem;
    /* 컬럼 간격 */
}

/* Past / Upcoming 컬럼 각각 48% 폭 고정 */
.exhibit-layout .past,
.exhibit-layout .upcoming {
    flex: 0 0 48%;
    /* 성장/축소 비허용, 기본폭 48% */
    box-sizing: border-box;
}

/* ── Upcoming: 캘린더 컨테이너 높이 600px 고정 ── */
.upcoming .calendar-widget {
    width: 100% !important;
    /* 부모 컬럼 폭에 맞춰 가득 채움 */
    max-width: 100% !important;
    /* 이전 max-width 제한 해제 */
    height: 650px !important;
    /* 높이 600px로 고정 */
    max-height: 800px !important;
    /* 높이 600px로 고정 */

    margin: 100px 10px !important;
    /* 여백 제거 */
    padding: 0.5rem;
    /* 기존 패딩 유지 */
    border: 1px solid #ddd;
    /* 기존 테두리 */
    box-sizing: border-box;
}

/* 내부 fullCalendar 루트도 높이 맞추기 */
.upcoming .calendar-widget .fc {
    height: 100% !important;
}
/* scripts.js 불러오는 <link>나 <style> 태그 아래에 추가 */
.calendar-widget .fc-toolbar-title {
  display: inline-block;        /* 너비 조정이 가능하도록 */
  white-space: normal !important; /* 줄바꿈 허용 */
  text-align: center;           /* 가운데 정렬 유지 */
  line-height: 2;             /* 줄 간격 조정 */
}

.next-exhibit {
    display: inline-block;
    margin-left: 1rem;
    font-size: 0.9rem;
    color: #555;
    vertical-align: middle;
    transition: color 0.2s;
}



/* ② 페이징 컨트롤 스타일 */
.notice-pagination {
    margin-top: 0.5rem;
    text-align: center;
}

.notice-pagination button {
    margin: 0 0.5rem;
}
.next-exhibit{
    color: rgba(102, 184, 166, 1);
	font-weight:900;
}
.next-exhibit:hover {
	color:#9e80b3;
	font-weight:900;
}

/*───────────────────────────────────────────────────────────────────────*/
/* FullCalendar 내부 요소 축소 (600px 박스 안에 스크롤 없이 딱 맞추기) */
/*───────────────────────────────────────────────────────────────────────*/

/* 1) 툴바 높이·패딩 줄이기 */
.upcoming .calendar-widget .fc .fc-toolbar {
    padding: 0.2rem 0.5rem !important;
    margin-bottom: 0.2rem !important;
}

.upcoming .calendar-widget .fc .fc-toolbar-title {
    font-size: 1.2rem !important;
}

.upcoming .calendar-widget .fc .fc-button {
    padding: 0.2rem 0.4rem !important;
    font-size: 0.8rem !important;
    line-height: 1 !important;
}

/* 2) 요일 헤더 줄 높이 축소 */
.upcoming .calendar-widget .fc .fc-col-header-cell-cushion {
    font-size: 0.75rem !important;
}

/* 3) 날짜 셀 패딩·높이 조정 */
.upcoming .calendar-widget .fc .fc-daygrid-day-frame {
    padding: 0.2rem !important;
}

.upcoming .calendar-widget .fc .fc-daygrid-day {
    min-height: calc((600px - 2.4rem
                /*툴바*/
                - 1.2rem
                /*헤더*/
            ) / 6) !important;
}

/* 4) 이벤트 폰트·패딩 줄이기 */
.upcoming .calendar-widget .fc-event {
    font-size: 0.7rem !important;
    padding: 0.1rem 0.3rem !important;
}

/* 5) 스크롤바 완전히 숨기기 */
.upcoming .calendar-widget .fc-scroller {
    overflow: hidden !important;
}

/*── fullCalendar Toolbar & Cells ─────────────────────────────────────────*/
/* 툴바 버튼 스타일링 */
.fc-toolbar {
    margin-bottom: 1rem;
}

.fc-button {
    background: #6ea0b600 !important;
    border: none !important;
    color: #8298ad79 !important;
    border-radius: 4px !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem !important;
}

.fc-button:hover {
    background: rgba(158, 128, 179, 0.7) !important;
    color: #fff !important;
}

/* 월 표시(title) 스타일 */
.fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(102, 184, 166, 0.5);
	padding-left:10px;
}

/* 날짜 그리드 셀 */
.fc-daygrid-day {
    border: 1px solid #eee;
}

.fc-daygrid-day:hover {
    background-color:  rgba(102, 184, 166, 0.3);
	color: #fff;
}

/* 오늘 강조 */
.fc-day-today {
    background-color:rgb(158, 128, 179,0.3) !important;
}

/* 이벤트 스타일 */
.fc-event {
    background-color: #9acde083 !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem !important;
}

/* 요일(header) 컬러 */
.fc .fc-col-header-cell-cushion {
    color: #666466 !important;
}

.upcoming h3 {
    margin-bottom: 0.5rem !important;
    /* 제목과 캘린더 사이 간격 조금 좁힘 */
}

.upcoming .calendar-widget {
    height: 500px;
    /* 원하는 높이(px)로 조절 */
    max-height: 500px;
    /* 높이 고정 */
    margin-top: 70px !important;
    /* 위쪽 여백 제거 */
}

/*── Gallery Section ───────────────────────────────────────────────────────*/
/* 카테고리 탭 */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.category-tabs button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: border-bottom 0.3s;
}
.category-tabs button:hover {
	color: rgba(102, 184, 166, 0.719);
	border-bottom: 2px solid rgba(102, 184, 166, 0.3);
}
.category-tabs button.active {
    border-bottom: 2px solid rgba(158, 128, 179, 0.3);
    color: rgba(158, 128, 179, 0.644);
}

/* 갤러리 그리드 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.thumb-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

/*── Shop Section ─────────────────────────────────────────────────────────*/
/* 샵 탭 */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.shop-tabs button.active {
    border-bottom: 2px solid #4c857d8c;
    color: #007BFF;
}

/* 제품 리스트 그리드 */
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/*── Notes Section ────────────────────────────────────────────────────────*/
/* 노트 카드 그리드 */
.notes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.note-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

/*── Pamphlet Thumbnails (Modal) ───────────────────────────────────────────*/
/* 모달 내 썸네일 그리드 */
.pamphlet-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pamphlet-item {
    overflow: hidden;
    cursor: pointer;
}

.pamphlet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}



/*── Hide fullPage.js default overflow ────────────────────────────────────*/
html.fp-enabled {
    overflow: hidden;
}

/* 언어 토글 전용 스타일 */
.lang-kr,
.lang-en {
    display: none;
}

body:not(.en) .lang-kr {
    display: inline;
}

body.en .lang-en {
    display: inline;
}

.lang-toggle {
    position: fixed;
    top: 12px;
    right: 13px;
    display: flex;
    gap: 0.5rem;
    z-index: 1100;
    pointer-events: auto;
}

.lang-toggle button {
    background: #fff;
    border: 1px solid #699ea53d;
    padding: 0.3rem 0.3rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s, color 0.2s;
    border-radius: 50%;
}

.lang-toggle button.active {
    background: #6ba6b8c2;
    color: #fff;
    border-color: #ffffff;
}


/*── Footer ───────────────────────────────────────────────────────────────*/
#footer {
    text-align: center;
    padding: 1rem;
    color: #7e9691;
    width:100%;
/*     height: 700px !important; */
	background-color:#fff;
	overflow:hidden !important;	
	margin-top:100px;
}

#footer img { 
    text-align: center;
    /* padding-top: 100px; */
	
}
#footer ul {
    margin-top: 300px;

}
#footer .sns_list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-top: 150px;
}

#footer .sns_list img {
    width: 24px;
    height: 24px;
}

#footer .sns_list li {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 10px;
    position: relative;
}

#footer .sns_list li a {
    display: block;
    width: 100%;
    height: 100%;
}

#footer .sns_list li a img {
    width: 100%;
    height: auto;
    display: block;
}

#footer .sns_list li:nth-child(1) a {
    padding-top: 4px;
}
#footer address > a {font-size: 10px;
    font-weight: 100;
    color:#7e9691 !important;
	padding-bottom: 10px !important;
	}

#footer p { 
    font-size: 10px;
    font-weight: 100;
    color:#7e9691;
	margin-top: 30px;
}

/* ▶ 유튜브 */
#footer .sns_list li:nth-child(1) a:hover img {
    content: url("../images/youtube_hover.png");
}

/* ▶ 인스타그램 hover 시 이미지 변경 */
#footer .sns_list li:nth-child(2) a:hover img {
    content: url("../images/instar_hover.png");
}


/* ▶ 네이버 */
#footer .sns_list li:nth-child(3) a:hover img {
    content: url("../images/naver_hover.png");
}

/* ▶ 페이스북 */
#footer .sns_list li:nth-child(4) a:hover img {
    content: url("../images/facebook_hover.png");
}
address a:hover { color: #7b6788;}
/*── Hide fullPage.js default overflow ────────────────────────────────────*/
html.fp-enabled {
    overflow: hidden !important;
}


.fp-warning, .fp-watermark {display: none;}