@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/


.blog_list_le {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    aspect-ratio: 1 / 1;
    max-width: 450px;
    max-height: 450px;
    height: 100%;
}
/*==============================LOGO進入畫面=====================*/
@-webkit-keyframes bodybg {
    0% {opacity: 1;-webkit-filter: blur(4px);}
    5% {-webkit-filter: blur(0px);}
    50% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-transform: scale(1.5);transform: scale(1.5);-webkit-filter: blur(4px);}
  }
  @keyframes bodybg {
    0% {opacity: 1;-webkit-filter: blur(4px);}
    5% {-webkit-filter: blur(0px);}
    50% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-transform: scale(1.5);transform: scale(1.5);-webkit-filter: blur(4px);}
  }
body.pageIndex::before {
  content: '';
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://pic03.eapple.com.tw/0963985266/A00-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  animation: bodybg 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

/* 新的彈跳+淡出動畫 */
@keyframes bounce-fade {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: blur(4px);
  }
  20% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    filter: blur(0);
  }
  40% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  60% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    filter: blur(3px);
  }
}

body.pageIndex::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 15%;
  max-width: 220px;
  aspect-ratio: 30 / 16;
  padding-bottom: 100%;
  background-image: url(https://pic03.eapple.com.tw/0963985266/A00-02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 100000000;
animation: bounce-twice-fade-soft 2.5s ease-in-out forwards;
}

@keyframes bounce-twice-fade-soft {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    filter: blur(4px);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    filter: blur(0);
  }
  45% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  65% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  85% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    filter: blur(3px);
  }
}

/* RWD */
  @media screen and (max-width: 768px){body.pageIndex::after {width: 30%}}
  @media screen and (max-width: 600px){}
  @media screen and (max-width: 450px){body.pageIndex::after {width: 50%}}

/* END */

.me_tp_features {
    display: none;
}
.header_area {
    background: #ffffff;
     box-shadow: 0 4px 4px rgb(0 0 0 / 12%);
     transition: 0.5s;
}
.header_area.sticky {
    background: #ffffff;
    padding: 5px;
}
.navigation {
display: flex;
align-items: center;
}
.nav-header {
    max-width: 100px;
}

/* 選單 */
.stellarnav > ul > li > a {
margin: 0 0 0 35px;
font-size: 19px;
font-family: "Noto Serif", serif;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2a4f22;
    transition: .5s;
}
.stellarnav > ul > li:hover > a {
color: #5fb54d;
transition: .5s;
}
.stellarnav li.has-sub > a:after {
    border-top: 6px solid #2a4f22;
    transition: .5s;
}
.stellarnav li.has-sub:hover > a:after {
    border-top: 6px solid #5fb54d;
    transition: .5s;
}
/* 下拉 */
.stellarnav ul ul {
    left: 0;
    background: #2a4f22;
}
.stellarnav li a {
    color: #ffffff;
    font-size: 17px;
    font-family: "Noto Serif", serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.stellarnav li li:hover a {
    background: #5fb54d;
    transition: 0.5s;
}

/* footer */
.footer {
background: #ffffff;
}
.box_link {
    display: none;
}

.footer_info {
    display: grid;
    align-items: center;
    padding-right: 0;
}

.footer_info ul {
    display: grid;
    gap: 15px;
    grid-template-columns: 2fr 3fr;
}
.footer_info li:nth-child(1):before {
    content: "CONTACT";
}
.footer_info li:before {
    color: #5fb54d;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 10px;
    display: block;
}
.footer_info li:nth-child(2) {
    margin: 8px 0 auto;
}

.footer_logo {
    margin: 0 auto;
}
.footer_logo img {
    max-width: 65%;
}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));
    max-width: 280px;
    gap: 5px;
}

.footer_menu a {
    text-align: center;
    border: 1px #60B44E solid;
    color: #60B44E;
    background: #f0f0f000;
    font-size: 13px;
    margin: 0 8px 5px;
}

.footer_menu a:hover {
    background: #60B44E;
    color: #fff;
    transition: 0.5s;
}

.footer_info li p {
    font-size: 13px;
}

.copy {
    font-size: 11px;
    color: #ffffff;
    border-top: 1px #dddddd00 solid;
    background: #60B44E;
    padding: 4px 0;
}

.copy a {
    color: #ffffff;
}

/*banner*/
.banner {
    background:url(https://pic03.eapple.com.tw/0963985266/banner-01.png) no-repeat;height: 400px;position: relative;overflow: hidden;}
.banner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom:0;
  width: 100%;
  height: 100%;
  background: url(https://pic03.eapple.com.tw/0963985266/banner-02.png) repeat-x;
  background-size: 50% auto;
  opacity: 0.4;
  animation: cloudMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.banner:after {
  content: "";
  position: absolute;
  left: 800px;
  bottom:0;
  width: 100%;
  height: 100%;
  background: url(https://pic03.eapple.com.tw/0963985266/banner-02.png) repeat-x;
  background-size: 50% auto;
  opacity: 0.4;
  animation: cloudMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes cloudMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cloudMove2 {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.banner h5 {
    display: flex;
    flex-direction: column;
    color: #000000;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 4px;
    z-index: 1;
}
.banblog h5:before {
    content: "Installation Cases";
    color: #000000;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    z-index: 1;
}


/*安裝案例*/
h5.blog_le_t {color: #2a4f22;text-align: center;}
.accordion li .link a {
  letter-spacing: 1px;
  color: #2a4f22;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 16px;
    transition: .5s;
}
.blog_le .accordion li .link i {
  font-size: 13px;
    color: #000000;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #60b44e !important;color:#fff;transition: .5s;}
.submenu a {color: #000000;line-height: 2.25;}
.submenu li.on_this_category a, .submenu a:hover {background: #000000;}
.submenu a i {display: none;}
.submenu {background: #fff8ea;}

.module_i_news ul {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.module_i_news li a {
  display: flex;
  flex-direction: column;
}
.subbox_item a, .module_i_news li a {
    padding: 9px;
    border: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 14%);
    z-index: 1;
    border-radius: 15px;
}
.subbox_item a:after {border: 1px #dddddd00 solid;background: rgb(255 255 255 / 0%);}
.blog_list_le img {height: 95%;}
.subbox_item:hover .blog_list_le img {transform: scale(1.02);transition: 1s;}
.blog_list_ri h5 {color: #2a4f22;font-weight: 600;text-align: center;letter-spacing: 1px;}
.blog_list_ri em {font-size: 13px;color: #2a4f22;}
.blog_list_ri p {display: none;}
.blog_list_ri {padding: 5px 0;}
.subbox_item a:before {
    right: 40%;
    letter-spacing: 1px;
    opacity: 0;
    display: block;
    color: #ffffff;
    transition: all .5s;
}
.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
}
.subbox_item a:after {
    border: none;
    top: 100%;
    background: #60b44e;
    border-radius: 15px 15px 0 0;
    transition: all .5s;
}
.subbox_item a:hover:after {
    top: 92%;
    transition: all .5s;
}
h4.blog_category_title {color: #000000;letter-spacing: 2px;}
.blog_shareData {display: none;}

.blog_back a.article_btn_prev {background: #000000;}
.blog_back a.article_btn_back {background: #60b44e;}
.blog_back a.article_btn_next {background: #000000;}

.news_related {background: #ffffff;}
.news_related h6 span:before {color: #000000;}
.news_related_list li {transition: 1s;}
.news_related_list li:hover a img {transform: scale(1.05);transition: 1s;}

.news_related_list li a p {color: #2a4f22;font-weight: 600;}
.lastPage {background: #60b44e;}
/*===========================================================*/

/*商品介紹*/
.banF h5:before {
    content: "Products";
    color: #000000;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    z-index: 1;
}
.path {display: none;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #000000; padding-bottom: 5px;}
.product-layer-two li a {background: #f3f3f300;padding: 35px 16px 14px;color: #000000;font-weight: 600;text-align: center;border: 1px #ffffff00 solid;transition: .5s;}
.product-layer-two li:hover a {color: #2a4f22;transition: .5s; }
.product-layer-two li.active a {border: 1px #cccccc00 solid;}
.product-layer-two li.active li a {color: #000000;transition: .5s;}
.product-layer-two li li.active a {background: rgb(0 0 0 / 0%);}
.product-layer-two li li:hover > a {background: #ffffff00;color: #2a4f22;transition: .5s;}
.product-layer-two li li:hover > a:before {background: #2a4f22;transition: .5s;}
/*按鈕*/.product-layer-two li i {top: 29px;}

.products-list {grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-gap: 45px;}
.products-list .pic img {transition: 1s;}
.products-list .item:hover .pic img {transform: scale(1.05);transition: 1s;}
.products-list .name {
    text-align: center;
    font-size:16px;
    color: #2a4f22;
    position: relative;
    margin: 10px 0;
    font-weight: 600;
}

.products-list .price {display: none;}
.products-list .more {border: 1px solid #2a4f22;color: #2a4f22;transition: all 1s; }
.products-list .item a:hover .more {background: #2a4f22;transition: all 1s;}

.sidebarBtn {
  border: 1px #00000000 solid;
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 1px;
    background: #000000;
}

.proImgSwiper li {align-items: flex-start;}
.pd_tabTitle li.activeTab a {
    color: #ffffff;
    background: #000;
    font-family: "Noto Sans", sans-serif;
    letter-spacing: 4px;
    font-size: 20px;
}
.pd_tabTitle li a {padding: 4px 10px;}
.pd_tabTitle li.activeTab::after {background: #99999900;}
.prod_related {background: #f3f3f300;}
.inquiry_a3 {background: #2a4f22;}
.prod_related h6 span:before {color: #2a4f22;}
/*=========================================================*/

/*常見問題*/
.article_b .banblog h5:before {
    content: "FAQ";
    color: #000000;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    z-index: 1;
}

/*聯絡我們*/
.path {display: none;}
.banC {display: none;}
.contact_editbox {padding: 0;}
.contact_content .information_left {display: none;}
.blank_letter {text-align: center;}
.contact_content .information_right {
	max-width: 1200px;
	width: 90%;
    margin: 0px auto;
    padding: 0 10px;
    display: block;}
.contact_form li input.noborder {border: 1px #dddddd00 solid;}
.contact_form li {
    width: 100%;
    padding: 15px;
    display: flex;
    background: #fff;
    margin: 10px 0;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 10%);
    border-radius: 15px;
}
.contact_form li .form__label {
    color: #2a4f22;
	font-weight: 600;
    font-size: 18px;
    width: 120px;
	text-align: left;
}
.contact_form li textarea.noborder {border: 1px #3b591c00 solid;}
.contact_form li.last {justify-content: center;}
.contact_form li.last blockquote {color: #ffffff;font-weight: 600;transition: .5s;}
.contact_form li.last blockquote, .contact_form li.last cite {border: 1px #dfd4c300 solid;background: #60b44e;border-radius: 17px;}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 2px;transition: .5s;}
.contact_form li.last cite {background: #60b44e;border-radius: 17px;color: #ffffff;font-weight: 600;transition: .5s;}
.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {background: #2a4f22;border-radius: 17px;transition: .5s;}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {margin:0;transition: .5s;}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 0; }
#to_top { bottom:60px;}



.stellarnav > ul > li > a {margin: 0 0 0 20px;}
.stellarnav .menu-toggle span.bars span {background: #60b44e;}
.stellarnav .menu-toggle:after {color: #60b44e;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #60b44e;color: #fff;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {border-bottom: solid 3px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before,.stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 3px #2a4f22;}
.stellarnav li a {color: #2a4f22;}
.stellarnav.mobile li.open {background: #ffffff;}
.stellarnav.mobile > ul > li {border-bottom: 1px #dddddd00 solid;}
.stellarnav li li {border: 1px #eeeeee00 solid;}
.stellarnav li li:hover a {color: #fff;}
.stellarnav.mobile li li a {padding: 10px 0 10px 30px;}

.footer_info {display: flex;flex-direction: column;}
.footer_logo img {max-width: 100%;}
.footer_logo {max-width: 135px;}
.footer_info ul {grid-template-columns: 1fr 1fr;}

}

@media screen and (max-width: 425px) { 
.header_area {padding: 3px;}
.nav-header {max-width: 85px;}

.footer_info li:before {text-align: center;}
.footer_info li {text-align: center;}
.footer_info ul {display: flex;flex-direction: column;align-items: center;}
.footer_menu a {padding: 5px 2px;margin: 0 6px 2px;}



}




