
/* **************************************************
   Footer
************************************************** */
#footer .foot_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
	padding: 1.5rem 2rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
	gap: 5rem;
}

#footer .foot_top h2 {
    width: 220px;
	height: 80px;
    background-color: #ffffff00;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

#footer .foot_top h2.foot_logo {
	min-width: 220px;
	max-width: 220px;
}



#footer .foot_top h2::before {
    content: "NONE";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    display: none;
}

#footer .foot_top h2[src=""]::before {
    display: block;
    background-color: var(--jw_main);
}

#footer .foot_top h2 > img {
    max-width: 100%;
    width: 100%;
    vertical-align: top;
}

#footer .foot_top ul {
    font-size: 0;
	display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

#footer .foot_top ul li {
    display: inline-block;
}

#footer .foot_top ul li a {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: -0.35pt;
    line-height: 120%;
    transition: all .3s linear;
}

#footer .foot_top ul li a:hover {
    color: #fff;
}

#footer .foot_top ul li a.on {
    font-weight: 700;
    color: var(--jw_point) !important;
}


#footer .foot_info {
	padding: 2rem;
}
#footer .foot_info > span{
    font-weight: 600;
    color: #ffffffbb;
}
#footer .foot_info ul {
    font-size: 0;
	display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#footer .foot_info ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
	font-weight: 500;
    letter-spacing: -0.35pt;
    color: rgba(255, 255, 255, .6);
    line-height: 150%;
    word-break: keep-all;
	display: flex;
    align-items: center;
    gap: .3rem;
}

#footer .foot_info ul li > span{
	font-weight: 400;
}

#footer .foot_info .copyright {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3pt;
    color: rgba(255, 255, 255, .3);
}

#footer .foot_info .copyright span,
#footer .foot_info .copyright a {
    display: inline-block;
    transition: all .3s linear;
    letter-spacing: 0.3pt;
}

#footer .foot_info .copyright a:hover {
    color: rgba(255, 255, 255, 1);
}