@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
p {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 6.2777778em;
  width: 100%;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.mycontainer {
  max-width: 1200px;
  width: 88%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 175px;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #333;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li > a {
  display: block;
  color: #333;
  font-size: clamp(16px, 0.9375vw, 18px);
  transition: all 0.5s;
  text-transform: uppercase;
  padding: 0 0.88889em;
  line-height: 6.2777778;
}
header .lv1 > li > a:hover {
  color: #5ca237;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  z-index: 1;
}
header .lv1 .lang {
  font-family: 'Arial Narrow';
}
header .lv1 .lang .on {
  color: #5ca237;
}
header .lv1 > .active > a {
  color: #fff !important;
  background-color: #5ca237;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  transition: all 0.5s;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 0 1em;
  margin-bottom: 0.5em;
  font-size: clamp(14px, 0.9375vw, 18px);
  transition: all 0.5s;
  color: #333;
}
header .lv2 > li::after {
  display: block;
  position: absolute;
  content: "";
  border: 3px solid transparent;
  border-left: 5px solid #5ca237;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.5s;
}
header .lv2 > li > a {
  color: inherit;
}
header .lv2 > li:hover {
  background-color: #5ca237;
  color: #fff;
}
header .lv2 > li:hover::after {
  transform: translate(100%, -50%);
  opacity: 1;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: #fff;
  padding: 0.2em 1.3888889em 0;
  visibility: hidden;
  opacity: 0;
}
header .lv3 li {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #333;
  transition: all 0.5s;
  margin-bottom: 0.5em;
}
header .lv3 li a {
  color: inherit;
}
header .lv3 li:hover {
  color: #5ca237;
}
header nav {
  width: 75%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 22px;
  padding: 0 14px;
  line-height: 40px;
  background-color: #edf5fb;
  margin: 5px 8px;
  color: #5f5f5f;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination .active a {
  color: #fff;
  background-color: #035fa8;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #035fa8;
}
.pagination .btn {
  margin: 0 29px;
}
.pagination .btn a {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: none;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 700;
}
.pagination .btn i {
  margin: 0 20px;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #dcdcdc !important;
  cursor: not-allowed;
  background-color: #f7f7f7;
  pointer-events: none;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active .banner-img {
  transform: scale(1);
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: all 5s;
  transform: scale(1.1);
}
.index-banner .mycontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: clamp(12px, 1.875vw, 36px);
  height: clamp(5px, 0.72916667vw, 14px);
  border-radius: 7px;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
  transition: all 0.5s;
  margin: 0 clamp(3px, 0.46875vw, 9px);
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-title {
  text-align: center;
  margin-bottom: 6px;
}
.index-title h2 {
  font-size: clamp(24px, 2.083333vw, 40px);
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}
.index-title h2 span {
  color: #67a865;
}
.index-title h3 {
  font-size: clamp(24px, 1.875vw, 36px);
  color: #333;
  font-weight: 700;
  position: relative;
  line-height: 1.4;
}
.index-title h3 span {
  font-size: 2em;
  font-style: italic;
  color: #67a865;
}
.index-title h4 {
  font-size: clamp(14px, 1.1458333vw, 22px);
  color: #999;
  font-weight: 300;
  line-height: 1.6;
}
.index-title h5 {
  font-size: clamp(12px, 0.9375vw, 18px);
  color: #999;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-title h5 i {
  position: relative;
  display: block;
  border: 1px solid transparent;
  border-right: 13.333333em solid #999;
  box-sizing: border-box;
  margin-right: 3.888889em;
}
.index-title h5 i::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(13.333333em, -50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  background-color: #66a863;
}
.index-title h5 i:nth-of-type(2) {
  border-right: 0;
  border-left: 13.333333em solid #999;
  margin-left: 3.888889em;
  margin-right: 0;
}
.index-title h5 i:nth-of-type(2)::after {
  transform: translate(-13.333333em, -50%) rotate(45deg);
}
.search-banner {
  background-color: #f5f5f5;
}
.search-banner .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 62px;
  padding: 10px 0;
}
.search-banner .mycontainer .lt {
  flex: 1;
  margin-right: 1em;
  font-size: clamp(14px, 0.9375vw, 16px);
  min-width: 320px;
  color: #333;
}
.search-banner .mycontainer .lt b {
  color: #5da337;
}
.search-banner .mycontainer .lt a {
  color: inherit;
}
.search-banner .mycontainer .lt a:hover {
  text-decoration: underline !important;
}
.search-banner .mycontainer .rt form {
  position: relative;
  font-size: 14px;
}
.search-banner .mycontainer .rt form input {
  display: block;
  width: clamp(270px, 18.125vw, 348px);
  outline: none;
  background-color: #fff;
  border-radius: 2em;
  height: 2.7857143em;
  color: #333;
  padding: 0 4.714286em 0 1em;
  border: 1px solid #5da337;
}
.search-banner .mycontainer .rt form input::placeholder {
  color: #c3c2c2;
}
.search-banner .mycontainer .rt form button {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 1.0714286em;
  width: 3.92857em;
  height: 100%;
  outline: none;
  border-radius: 0 2em 2em 0;
  background-color: #5da337;
  color: #fff;
}
.search-banner .mycontainer .rt form button img {
  width: 1.26666667em;
}
.index-prod {
  margin: 40px 0 5%;
}
.index-prod .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .mycontainer .lt {
  flex: 1;
  margin-right: 3.8333333%;
  max-width: 27.33333%;
  min-width: 200px;
}
.index-prod .mycontainer .lt aside {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.index-prod .mycontainer .lt aside .aside-lv1 {
  font-size: clamp(14px, 1.25vw, 24px);
  padding: 1.6em 0 5px;
}
.index-prod .mycontainer .lt aside .aside-lv1 li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #efefef;
  font-size: inherit;
  margin-bottom: 0.58em;
}
.index-prod .mycontainer .lt aside .aside-lv1 li:last-child {
  border-bottom: 0;
}
.index-prod .mycontainer .lt aside .aside-lv1 li a {
  display: inline-block;
  color: #000;
  font-size: inherit;
  padding-left: 2em;
  padding-right: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: all 0.5s;
}
.index-prod .mycontainer .lt aside .aside-lv1 li a img {
  margin-right: 0.71em;
}
.index-prod .mycontainer .lt aside .aside-lv1 li a:hover {
  color: #5da337;
}
.index-prod .mycontainer .rt {
  width: 68.6666667%;
}
.index-prod .mycontainer .rt .swiper {
  padding: 5px;
}
.index-prod .mycontainer .rt .swiper .swiper-slide {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.index-prod .mycontainer .rt .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .mycontainer .rt .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 87.05882353%;
}
.index-prod .mycontainer .rt .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .mycontainer .rt .swiper .title {
  text-align: center;
  font-size: clamp(14px, 1.04166667vw, 20px);
  color: #333;
  padding: 0.45em 0.5em 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-prod .mycontainer .rt .swiper .title .more {
  display: block;
  font-size: 14px;
  margin: 0 auto;
  border: 1px solid #5ca136;
  border-radius: 3px;
  width: 6.42857em;
  line-height: 1.7857;
  color: inherit;
  transition: all 0.5s;
  margin-top: 4px;
}
.index-prod .mycontainer .rt .swiper .title .more:hover {
  background-color: #5ca136;
  color: #fff;
}
.index-advantage .index-title {
  margin-bottom: 8%;
}
.index-advantage .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
}
.index-advantage .wrapper .bg {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(0px, 22.76041667vw, 437px);
}
.index-advantage .wrapper .block {
  width: 30.833333%;
  margin-bottom: 7.5%;
}
.index-advantage .wrapper .block .title {
  font-size: clamp(18px, 1.35416667vw, 26px);
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.6em;
}
.index-advantage .wrapper .block .title h3 {
  font-weight: inherit;
  position: relative;
}
.index-advantage .wrapper .block .title h3::after {
  position: absolute;
  top: 30%;
  left: 50%;
  content: attr(title);
  font-size: 1.8em;
  color: #67a865;
  opacity: 0.2;
  font-weight: inherit;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.index-advantage .wrapper .block .brief {
  font-size: clamp(14px, 1.0416667vw, 20px);
  color: #333;
}
.index-advantage .wrapper .block .brief p {
  position: relative;
}
.index-advantage .wrapper .block .brief p::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.8em;
  height: 0.45em;
  background: url(../images/index-adv-icon.png);
  background-size: contain;
  left: -1.2em;
  top: 0.8em;
}
.index-slogan img {
  display: block;
  width: 100%;
}
.index-about {
  margin: 5.833333% 0 0;
}
.index-about .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-about .mycontainer .lt {
  width: 49.1666667%;
}
.index-about .mycontainer .lt .title {
  position: relative;
  font-size: clamp(20px, 22.083333vw, 40px);
  padding-bottom: 0.15em;
  margin-bottom: 1em;
}
.index-about .mycontainer .lt .title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5em;
  height: 0.15em;
  background-color: #5da338;
}
.index-about .mycontainer .lt .brief {
  font-size: clamp(14px, 0.833333vw, 16px);
  color: #666;
}
.index-about .mycontainer .lt .more {
  display: flex;
  margin-top: 6.271186%;
}
.index-about .mycontainer .lt .more a {
  display: inline-block;
  width: 9.222222em;
  line-height: 2.5;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  background-color: #5da237;
  text-align: center;
}
.index-about .mycontainer .lt .more a:nth-child(2n) {
  background-color: #e9a126;
}
.index-about .mycontainer .lt .more a:hover {
  animation: pulse 1s;
}
.index-about .mycontainer .rt {
  width: 48.75%;
}
.index-about .mycontainer .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 72.991453%;
}
.index-about .mycontainer .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news {
  margin: 4% 0;
}
.index-news .index-title {
  margin-bottom: 3.5%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 48.333333%;
}
.index-news .wrapper .lt .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 55.862069%;
  margin-bottom: 1%;
}
.index-news .wrapper .lt .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .lt .block:hover .pic img {
  scale: 1.05;
}
.index-news .wrapper .lt .block:hover .title h4 {
  color: #30AA61;
}
.index-news .wrapper .rt {
  width: 48.333333%;
}
.index-news .wrapper .rt .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 3.4483%;
  margin-bottom: 3.4483%;
}
.index-news .wrapper .rt .block:last-child {
  margin-bottom: 0;
}
.index-news .wrapper .rt .block .date {
  background-color: #efefef;
  transition: all 0.5s;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  line-height: 1.3;
  font-size: clamp(20px, 2.2916667vw, 44px);
  padding: 10px 0.6818182em 17px;
  margin-right: 3.10345%;
  color: #30AA61;
}
.index-news .wrapper .rt .block .date h3 {
  transition: all 0s;
}
.index-news .wrapper .rt .block .date h5 {
  font-size: clamp(12px, 0.9375vw, 18px);
  transition: all 0s;
}
.index-news .wrapper .rt .block:hover .date {
  background-color: #30AA61;
  color: #fff;
}
.index-news .wrapper .rt .block:hover .title h4 {
  color: #30AA61;
}
.index-news .wrapper .title h4 {
  font-size: clamp(16px, 1.04166667vw, 20px);
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.4em;
}
.index-news .wrapper .title h4 a {
  color: inherit;
}
.index-news .wrapper .title p {
  font-size: clamp(14px, 0.8333333vw, 16px);
  color: #333;
  line-height: 1.5;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrapper .title p a {
  color: #333;
}
footer {
  background-color: #30AA61;
  padding: 2.34375% 0 0;
}
footer .link {
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #fff;
}
footer .link i {
  margin-right: 0.5em;
}
footer .link nav {
  display: inline-block;
  margin-left: 1.5em;
}
footer .link nav ul {
  display: flex;
}
footer .link nav ul li {
  position: relative;
  font-size: 16px;
  padding-right: clamp(10px, 2.5vw, 48px);
  margin-right: clamp(10px, 2.5vw, 48px);
}
footer .link nav ul li::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background-color: #fff;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
footer .link nav ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer .link nav ul li:last-child::after {
  display: none;
}
footer .link nav ul li a {
  color: inherit;
  font-weight: 300;
}
footer .link nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3% 0 1%;
}
footer .footer-mid .logo {
  text-align: center;
  width: 21.666667%;
}
footer .footer-mid address {
  width: 53.333333%;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-mid address p {
  width: 48%;
  font-size: clamp(14px, 0.9375vw, 16px);
  color: #fff;
}
footer .footer-mid .ewm {
  text-align: center;
}
footer .footer-mid .ewm img {
  width: 77px;
}
footer .footer-mid .ewm h6 {
  font-size: 12px;
  color: #fff;
}
footer .footer-bt {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  font-weight: 300;
  padding: 4px 0 8px;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
