/* ??logo?????? */
.logo {
  display: block;
  font-size: 0;
  text-align: center;
}

.logo img {
  height: 80px;
  margin: 36px 0;
  object-fit: contain;
}
.sticky-header .logo img{
  height: 48px ;
  margin: unset;
}
@media screen and (max-width: 768px){
  .logo{
    text-align: center;
  }
  .logo img{
    width: 100%;
		height: 100%;
		max-width: 300px;
		max-height: 30px;
    margin: 24px 0;
  }

}
/* ?? Start */
header {
  background-color: var(--main-bg-color) ;
}

header .wrapper {
  padding: 0 25px 55px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-left {
  margin-right: 32px;
}

.search-bar {
  display: flex;
  align-items: center;
  padding: 0 16px;
  width: 100%;
  height: 48px;
  background-color: #fff;
}

.search-bar .search {
  flex: 1;
  padding: 0;
  color: var(--theme-color-font-secondary);
  font-size: 14px;
  height: 100%;
  line-height: 40px;
  background: transparent;
  border: none;
}

.search-bar .search::placeholder {
	font-size: 18px;
	color: var(--theme-color-font-secondary);
}

header .header-left .search-bar i,
header .sticky-header .search-bar i {
  font-style: normal;
	font-size: 20px;
  color: var(--theme-nav-color);
  cursor: pointer;
}

.header-main .logo {
  flex: 1;
}

header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .header-right a.iconfont {
  display: block;
  /* font-size: 0; */
  line-height: 40px;
}

.header-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 6px;
  left: -8px;
  /* display: none; */
  width: 16px;
  height: 16px;
  color: var(--main-bg-color);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
}

.header-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--theme-nav-column-gap);
  margin-right: 40px;
}

.header-nav .nav-item {
  position: relative;
  line-height: 1;
  font-weight: normal;
  padding: 12px 0;
}

.header-nav .nav-item.has-children::after {
  display: none;
  position: absolute;
  bottom: 0;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  content: "";
  color: #000;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--main-bg-color);
  border-left: 8px solid transparent;
}

.header-nav .nav-item.has-children:hover::after {
  display: block;
}

.wrapper .header-nav .nav-item i {
  padding-left: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  color: var(--theme-nav-color);
}
.nav-item:hover{
  opacity: .7;
}
.header-nav  .nav-link {
  display: flex;
  align-items: center;
  color: var(--theme-nav-color);
  font-size: var(--theme-nav-font-size);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}


.header-nav .nav-item:hover .header-dropdown {
  display: flex;
}

.header-dropdown {
  display: none;
  position: fixed;
  top: 136px;
  z-index: 120;
  overflow-x: auto;
  background-color:var(--main-bg-color);
}

/* .header-dropdown .animation-underline::before {
  background-color: var(--main-bg-color);
} */

.header-dropdown::before {
  content: "";
}
/* 
.header-dropdown::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
}

.header-dropdown::-webkit-scrollbar-thumb { 
	border-radius: 6px; 
	border: 2px solid rgba(255,255,255,.4); 
	background-color: rgba(0, 0, 0, .5);
} */

.header-dropdown.vertical {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 16px;
  /* width: fit-content; */
  max-height: 52vh;
  background-color: var(--main-bg-color);
  column-count: 2;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -o-writing-mode: vertical-lr;
  border-top: 1px solid var(--theme-color-font);
}

.header-dropdown.vertical .dropdown-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 50vh;
  background-color: #fff;
}

.header-dropdown.vertical section:hover>a {
  opacity: .7;
}

.header-dropdown:not(.vertical) {
  left: 0;
  right: 0;
}

.header-dropdown:not(.vertical) .dropdown-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 22px 0;
  margin: auto;
  width: 100%;
  max-width: calc(var(--max-width) - 50px);
  max-height: 70vh;
  border-top: 1px  solid var(--theme-color-font);
}

.header-dropdown:not(.vertical) .second-link {
  width: 100%;
  color: var(--theme-color-font);
  font-size: 18px;
  border-bottom: 1px solid var(--theme-color-font);
}

.header-dropdown:not(.vertical) section {
  padding: 0 40px 24px 0;
  width: 25%;
}

.header-dropdown.vertical section {
  padding: 10px 16px;
  line-height: 1;
  writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  -moz-writing-mode: horizontal-tb;
  -o-writing-mode: horizontal-tb;
}

.header-dropdown.vertical section .second-link {
  font-size: 14px;
}

.header-dropdown section .second-link {
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  border-bottom: 1px solid var(--theme-color-font);
}

.dropdown-wrapper .third-links {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}

.dropdown-wrapper .third-links .third-link {
  width: fit-content;
  color: #000;
  font-size: 14px;
  white-space: normal;
  margin: 6px 0;
  /* border-bottom: 1px solid var(--theme-nav-color); */
}

.dropdown-wrapper .third-links .third-link:hover {
  opacity: .5;
}

/* .third-link.animation-underline::before {
  height: 1px;
  bottom: 4px;
} */

header .wrapper .iconfont {
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 53px;
  left: -100vw;
  z-index: 512;
  padding: 0 12.5px 200px;
  width: 100vw;
  height: calc(100vh - 53px);
  overflow: hidden auto;
  background-color: var(--main-bg-color);
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}

.mobile-nav .remind {
  text-align: left;
}

.mobile-nav .remind a {
  color: var(--theme-nav-color);
  font-size: 16px;
}
.mobile-nav .remind a u{
  color: #fff;
}
.mobile-nav .side-menu {
  margin-bottom: 20px;
}
.mobile-nav-account a{
  color: var(--theme-color-font);
}
.mobile-nav-account>li{
  margin-bottom: 14px;
}
.side-menu li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.side-menu .menu-item {
  color: var(--theme-nav-color);
  font-size: 16px;
}

.j-menu-item>i {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 20px;
  color: #333;
}

.side-menu .menu-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  color: var(--theme-nav-color);
  font-size: 20px;
  border-bottom: 1px solid #333;
}
.side-menu .menu-header span{
  flex: 1;
}
.side-menu .menu-header i {
  float: left;
  font-size: 24px;
  line-height: 30px;
  color: #333;
}

.secondary-menu,
.third-menu {
  display: none;
  position: fixed;
  left: -100vw;
  top: 60px;
  padding: 0 12.5px 160px;
  height: calc(100vh - 60px);
  width: 100vw;
  overflow: hidden auto;
  background-color: var(--main-bg-color);
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}

.secondary-menu {
  z-index: 15;
}

.third-menu {
  z-index: 20;
}
.header-dropdown::-webkit-scrollbar{
  width: 80%;
  height: 10px;
}
.header-dropdown::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(180, 180, 180, .5);
  border-radius: 6px;
  background-color: #eee;
}
.header-dropdown::-webkit-scrollbar-thumb {
  border-radius: 6px;
  box-shadow: inset 0 0 0px rgba(180, 180, 180, .5);
  background-color: #ddd;
}

@media screen and (max-width: 1370px){
  .header-dropdown{
    padding:0 25px;
  }
}
@media screen and (max-height: 900px){
  .header-dropdown:not(.vertical) .dropdown-wrapper{
    height: 85vh;
    
  }
}

@media screen and (min-width: 760px) {
	header .header-left {
		max-width: 320px;
	}
}
/* ??? Start */
.announcement{
  padding: 8px 0;
}
.announcement-wrapper {
  display: block;
  margin: auto;
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .announcement {
    margin-top: 8px;
  }
}
/* ??? End */

/* ???? Start */
.sticky-header {
  /* display: none; */
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 256;
  width: 100vw;
  background-color: var(--main-bg-color);
  visibility: hidden;
  transition: .3s all ease;
  -moz-transition: .3s all ease;
  -webkit-transition: .3s all ease;
}

.sticky-header .header-main {
  align-items: center;
  padding: 16px 0;
}

.sticky-header .main-left {
  display: flex;
  align-items: center;
  flex: 2;
  min-width: 320px;
  font-size: 0;
}

.sticky-menu-button {
  margin-right: 40px;
  line-height: 2;
}

.sticky-header .search-bar {
  flex: 3;
      max-width: 495px;
}

.sticky-header .main-right {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  min-width: 200px;
}

.sticky-header .header-main .logo {
  min-width: unset;
}

.sticky-nav {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  background-color: var(--main-bg-color);
}

.sticky-header .nav-wrapper {
  display: flex;
  margin: auto;
  padding: 0 25px;
  width: 100%;
  max-width: var(--max-width);
}
.sticky-header .wrapper{
  padding: 0 25px;
}
.sticky-nav .nav-left {
  display: flex;
  justify-content: center;
  padding: 0  0 12px;
  width: 100%;
  overflow-y: auto;
}

.sticky-nav .nav-left::-webkit-scrollbar {
  display: none;
}

.sticky-nav .nav-left .first-link {
  display: inline-block;
  height: 48px;
  color: var(--theme-color-font);
  line-height: 48px;
  font-size: 20px;
}
.sticky-nav .nav-left .first-link:not(:first-child){
  padding-left: 40px;
}
.sticky-nav .nav-left .first-link i {
  float: right;
  color: var(--theme-color-font);
  font-size: 20px;
}
.sticky-nav .nav-left .first-link:hover{
  opacity: .7;
}
.nav-left .first-link.current {
  opacity: .7;
}

.nav-left .first-link.current i {
  color: inherit;
}

.sticky-nav .nav-right {
  flex: 1;
  padding: 24px 40px;
  overflow: auto;
}

.sticky-nav .nav-right::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
}

.sticky-nav .nav-right::-webkit-scrollbar-thumb { 
	border-radius: 6px; 
	border: 2px solid rgba(255,255,255,.4); 
	background-color: rgba(0, 0, 0, .5);
}


.sticky-nav .nav-right .nav-panel {
  display: none;
  flex-flow: column wrap;
  width: 100%;
  height: 100%;
  gap: 24px;
}

.sticky-nav .nav-panel section {
  min-width: calc(25% - 18px);
}

.nav-panel .second-link {
  /* padding-bottom: 12px; */
  font-weight: bold;
  white-space: nowrap;
  border-bottom: 1px solid var(--theme-nav-color);
  color: var(--theme-nav-color)
}

.nav-panel a.second-link {
  /* display: block; */
  cursor: pointer;
}

/* .nav-panel .second-link.animation-underline::before {
  background-color: var(--main-bg-color);
} */

.nav-panel .third-links {
  margin-top: 12px;
}

.nav-panel .third-link:not(:last-child) {
  margin-bottom: 6px;
}

.nav-panel .third-link,
.nav-panel .third-link a {
  color: var(--theme-color-font);
  font-size: 14px;
}

.nav-panel .third-link:hover,
.nav-panel .third-link:hover a ,
.nav-panel .second-link:hover
{
  color: #fff;
}
.nav-panel .second-link:hover {
  border-color: #fff ;
}
/* .nav-panel .third-link .animation-underline::before {
  background-color: var(--main-bg-color);
} */

.shelter {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .3;
}

.sticky-header .cart-badge {
  top: -4px;
}

@media screen and (max-width: 768px) {
  .sticky-header {
    display: none;
  }
	header .header-left .search-bar i {
		display: none;
	}
  header .header_dropdown .dropdown-toggle i{
    color: var(--theme-nav-color);
  }
  .currencies.dropdown span.dropdown-toggle .state_icon{
    color: var(--theme-nav-color);
    letter-spacing: unset;
    text-overflow: unset;
  }
  .mobile-nav .currencies.dropdown{
    margin-bottom: 7px;
  }
}
/* ???? End */

/* minicart Start */
.header-right-minicart {
  font-size: 0;
}

.header-minicart-subtotal{
  padding-bottom: 16px;
  border-bottom: 1px solid var(--theme-sub-color);
}
#paypal-button-container-cart-popup{
  margin-top: 8px;
}

.minicart-list{
  max-height: 400px;
  margin-top: 24px;
  background-color: #fff;
  overflow-y: scroll;
}
.minicart-list::-webkit-scrollbar{display: none;}
.minicart-item{
  margin-bottom: 24px;
  width: 100%;
  height: 100%;
}

.minicart-item:last-child {
  margin-bottom: 0;
}

.minicart-item-content{
  display: flex;
}

.minicart-item-img{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
  border: 1px solid #e6e6e6;
}

.minicart-item-img img {
  width: 80px;
}

.minicart-item-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: calc(100% - 5rem);
  font-size: 14px;
}

.minicart-item-name {
  color: var(--theme-color-font);
  overflow: hidden;
  text-overflow:ellipsis ;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.minicart-item-sku{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: var(--theme-color-font-secondary);
}
.minicart-item-price{
  font-weight: 600;
}
.show-now-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}
.header-account-info, .header-minicart-info{
  display: none;
  position: absolute;
  right: 0;
  z-index: 128;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.18);
}

.header-main .header-right .header-account-info a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
}

.header-main .header-right .header-account-info .header-login-btn {
  line-height: 1;
}

.header-minicart-info{
  min-width: 368px;
  max-width: 400px;
  padding: 24px;
}

.header-minicart-subtotal .button--primary {
  width: 100%;
  padding: 0 56px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.header-info-login{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--theme-sub-color);
}
.header-login-btn{
  width: 175px;
  height: 48px;
  margin-bottom: 16px;
  padding: 14px 0;
  border: 1px solid var(--main-bg-color);
  line-height: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-nav-color);
  background-color: var(--main-bg-color);
}
.header-register-btn{
  margin-bottom: 8px;
  font-size: 14px;
}
.header-register-btn a {
  text-decoration: underline;
  font-weight: 600;
}
.header-info-list{
  display: inline-flex;
  flex-direction: column;
}
.header-info-list a{
  margin-bottom: 16px;
  color: #333;
  font-size: 15px;
}

.header-info-list a:hover {
  opacity: .7;
}

.header-sign-out{
  padding-top: 16px;
  font-size: 14px;
  border-top: 1px solid var(--theme-sub-color);

}
.sign-out-btn{
  color: var(--main-bg-color);
}

.sign-out-btn.animation-underline::before {
  background-color: var(--theme-color-font-link);
}
.header-account-register{
  margin-right: 20px ;
}
.header-right-account .header-account, .header-account-register{
  font-size: var(--theme-nav-font-size);
  line-height: 1;
}

.greet {
	font-size: var(--theme-nav-font-size);
}

.sign-out-btn {
	margin-left: 20px;
	color: var(--theme-nav-color);
	text-decoration: underline;
}

.minicart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.minicart-header .minicart-subtotal {
  font-size: 16px;
}
.minicart-header .minicart-subtotal i{
  font-weight: 700;
}
.header-minicart-subtotal .minicart-header a {
  font-size: 16px;
}

.cartEmpty-link-wrapper {
  max-width: 368px;
  font-size: 14px;
}

.show-now-link {
  margin-top: 16px;
  font-size: 14px;
}


/* minicart End */

@media screen and (max-width: 768px) {
  header {
    padding-top: 160px;
  }
  header .wrapper {
    position: fixed;
    top: 0;
    z-index: 256;
    padding: 0 20px;
    width: 100%;
    background-color: var(--main-bg-color);
  }
  .header-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-nav{
    flex-wrap: nowrap;
    column-gap:20px;
    margin: 0;
    width: 100%;
    overflow-x: scroll;
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
  .header-nav .nav-link.active{
    border-bottom: 2px solid var(--theme-nav-color);
    font-weight: 700;
  }
  .header-nav .nav-link{
    font-size: 15px;
		line-height: 1.2;
    white-space: nowrap;
  }
  .header-main .header-right {
    display: none;
  }
  .header-right-account{
    margin: 0;
  }
  header .header-left {
		display: flex;
		align-items: center;
		justify-content: space-between;
    flex: 1;
    width: 100%;
    margin: unset;
    order: -1;
  }
  header .wrapper .header-main .iconfont {
    font-size: 24px;
    
  }
  header .header-right a.iconfont {
    line-height: 1;
  }
  header .header-left i {
    padding: 2px 0 0 10px;
    border-left: 1px solid #eee;
    font-size: 15px;
  }
 
	header .header-left a {
		margin: 0;
		padding: 0;
		height: unset;
		font-size: 14px;
		white-space: nowrap;
		font-weight: normal;
	}
  
  .cart-badge {
    top: -2px;
    left: -8px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
  }
 
  .search-bar {
    align-items: center;
    padding: 0 12px;
    margin: 0;
    height: 36px;
		width: calc(100% - 112px);
    border-radius: var(--theme-border-radius);
    border: none;
  }
  .search-bar::before{
    content: "\e7b0";
    font-family: 'iconfont';
    font-size: 18px;
    color: var(--theme-color-font);
  }
  .search-bar .search {
    order: 0;
    padding: 2px 0 0 10px;
    height: 100%;
    font-size: 16px;
  }
  .search-bar i.iconfont {
    order: 1;
    color: var(--main-bg-color);
    font-size: 24px;
  }

	.greet {
		margin-left: 8px;
		font-size: 14px;
		white-space: nowrap;
	}
	.header-left .sign-out-btn {
		margin-left: 8px;
	}
  .footer-info {
    margin-top: 0;
    margin-bottom: 16px;
  }
	.header-left .header-account-register,
	.header-left .header-account {
		margin-left: 8px;
	}
	.header-nav .nav-item {
		padding: 12px 0;
	}
}

@media screen and (min-width: 769px) {
  .main-right .header_dropdown .dropdown-toggle{
    margin-right: 24px;
  }
  .mobile-nav {
    display: none;
  }
  .header-main .logo {
    padding-right: 16px;
    min-width: 300px;
  }
}
/* ?? End */

/* ?? Start */


.footer-main.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px var(--side-padding) 72px;
}

.footer-main .main-left{
  margin-bottom: 34px;
}

.footer-main .logo {
  height: 48px;
  object-fit: contain;
  object-position: left;
}

.social {
  white-space: normal;
}

.social a {
  margin-right: 10px;
  font-size: 24px;
}

.social a:last-child {
  margin-right: 0;
}

.social img {
	height: 24px;
	width: 24px;
	border-radius: 50%;
}

.footer-main .main-right {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 24px;
  font-size: 20px;
}
.footer-main .menu-list{
  display: flex;
  column-gap: var(--theme-nav-column-gap);
	font-weight: bold;
}


.footer-menu .menu-title,.footer-info-text .menu-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.footer-menu .menu-title i {
  float: right;
  font-size: 16px;
  line-height: 20px;
}

.footer-bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
}


.footer-bottom img {
  max-height: 40px;
  object-fit: contain;
}

.footer-info {
  margin-top: 4px;
}

.footer-info.rich-text * {
  color: #fff;
  font-size: 14px;
}

.footer-infomation {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-special-desc{
      align-self: end;
}
@media screen and (max-width: 768px) {
  .footer-main.wrapper {
    align-items: flex-start;
    padding: 20px var(--side-padding) 12px;
  }
  .footer-main .main-left {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 16px auto 36px;
  }
  .footer-main .main-right {
    flex-direction: column;
    row-gap: unset;
    width: 100%;
  }
  .footer-main .menu-list {
    flex-direction: column;
		border-top: 1px solid var(--theme-border-color);
  }

  .footer-main .logo {
    height: 32px;
  }
  .footer-menu {
    margin-top: 0;
  }
  .footer-menu .menu-title {
    margin-bottom: 0;
    padding: 20px 0;
    font-size: 18px;
  }
  .footer-contact{
    margin-bottom: 39px;
  }
  .footer-menu .menu-item {
    padding: 22px 0;
		font-weight: normal;
		line-height: 24px;
		border-bottom: 1px solid var(--theme-border-color);
  }
	.footer-menu .menu-item a {
		display: inline-block;
		width: 100%;
		line-height: 24px;
	}
  .footer-menu .menu-item a,.footer-service-email  {
    font-size: 20px;
  }
  .footer-info-text{
    margin-top: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    padding-top: 24px;
    margin: 0;
    border-top: 1px solid var(--theme-border-color);
		font-size: 13px;
  }
  .footer-infomation{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom p {
    margin-right: 0;
    font-size: 13px;
  }
  .footer-special-desc{
    align-self: unset;
    margin: 10px 0;
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  .footer-menu .menu-title i {
    display: none;
  }
  .footer-menu .menu-item a, .footer-service-email {
    display: inline-block;
    margin: 3px 0;
    line-height: 1.5;
  }
  
}
/* ?? End */