/**********************************************************
                         footer                           
***********************************************************/
.footer{
  width: 100%;
  height:224px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ftr-left{
  display: flex;
  gap: 24px;
  font-size:12px;
  line-height: 2;
  text-transform: uppercase;
  width:36%;
  flex-direction: column;
  align-items: flex-end;
}
.ftr-right{
  width: calc(100% - 36%);
  margin-left: 10%;
  font-size:14px;
  line-height: 1.7;
}

.footer .ftr-logo img { height: 45px; }

.ftr-right ul{
  display: flex;
  width: 100%;
}
.ftr-right ul li{
  width: calc(100% / 4);
}
.ftr-right ul li:nth-of-type(4)~li .list-text > p:nth-of-type(1){
  margin-top:0px;
}
.ftr-right ul li:nth-of-type(4)~li .list-text {
  margin-top: 0px;
}
.ftr-right ul li:nth-of-type(4)~li .list-text > p{
  margin-top:11px;
}
.ftr-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.btm-list{
  margin-top:12px;
}
.list-title{
  font-weight: bold;
}
.list-text{
  margin-top:12px;
  width: 100%;
}
.list-text p{
  width:100%;
  overflow: hidden;
  text-overflow: ellipsis;

}
/**********************************************************
                        responsive                           
***********************************************************/
@media screen and (max-width: 1023px) {
  .footer{
    flex-direction: column;
    height: auto;
  }
  .ftr-left{
    flex-direction: column;
    width:100%;
    align-items: flex-start;
    margin-top: 30px;
  }
  .ftr-right{
    width:100%;
    margin-left: 0%;
    margin-top:20px;
    font-size: 12px;
  }
  .footer .ftr-logo img { height: 30px; }

  .ftr-info {align-items: flex-start;}
}
@media screen and (max-width: 799px) {
}
@media screen and (max-width: 639px) {
  .ftr-right ul{
    flex-wrap: wrap;
  }
  .ftr-right ul li{
    width:calc(100% / 2);
  }
  .ftr-right ul li:nth-of-type(2)~li .list-text{
    margin-top:10px;
  }
  .list-text{
    margin-top:0px;
  }
}
@media screen and (max-width: 500px) {
  .footer{
    padding:0px 16px;
    padding-top:32px;
    padding-bottom: 40px;
  }
  .ftr-right{
    margin-top:32px;
  }
  .ftr-right ul{
    flex-direction: column;
  }
  .ftr-right ul li:nth-of-type(1){
    margin-top:0px;
  }
  .ftr-right ul li{
    width:calc(100%);
    margin-top:32px;
  }
  .list-text{
    margin-top:12px;
  }

}
@media screen and (max-width: 399px) {
}
