/* @font-face {
  font-family: "NotoSerifCJK";
  src: url(../fonts/NotoSerifCJKtc-Regular.otf);
} */
body {
  font-family: "Nunito Sans", "微軟正黑體", sans-serif;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}
.mainwrapper {
  max-width: 100%;
  overflow-x: hidden;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 25px 0;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.header__scroll {
  background-color: #000;
}
.header__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.logo a {
  display: block;
}
.logo img {
  height: 67px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav__btn {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.nav__btn:hover,
.header__scroll .nav__btn:hover {
  color: #d60323;
}
.nav__btn:nth-child(n + 2) {
  margin-left: 60px;
}
.header__scroll .nav__btn {
  color: #fff;
}

.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown-more {
  text-align: left !important;
}
.dropdown-more > li{
  padding: 0px 10px;
}
.dropdown-more .dropdown:after {
  position: absolute;
  content: "";
  top: 10px;
  right: -13px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #ffffff transparent transparent transparent;
}
.dropdown-more .dropdown:before{
  position: absolute;
  content: "";
  top: 10px;
  right: -15px;
  width: 0;
  height: 0;
  border: 8px solid;
  border-color: #C72B25 transparent transparent transparent;
}
.dropdown-more .dropdown-content {
  left: 26px;
}
.dropdown__select {
  min-width: 100px;
}
.dropdown-content {
  top: 18px;
  left: 20px;
  display: none;
  position: absolute;
  width: 130%;
  box-shadow: 9px 15px 20px -5px rgb(0 0 0 / 40%);
  padding: 18px 0px 0px 0px;
  text-align: center;
  font-weight: bold;
}
.dropdown-content li {
  background-color: #FFF;
  list-style: none;
}
.dropdown-content li:first-child {
  padding-top: 10px;
}
.dropdown-content li:last-child {
  padding-bottom: 5px;
}
.dropdown:hover > ul.dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  color: #6D6D6D;
  padding: 5px;
  text-decoration: none;
}
.dropdown-content a:hover {
  color: #000;
}

.dropdown-content:before {
  border: solid transparent;
  content: " ";
  height: 0;
  top: -8px;
  position: absolute;
  width: 0;
  border-width: 12px;
  border-bottom-color: #C72B25;
  left: 40%;
}

.dropdown-content:after {
  content: " ";
  position: absolute;
  width: 100%;
  border: solid;
  border-width: 100%;
  border-color: #C72B25;
  top: 15px;
  left: 0px;
}


.dropdown-arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin: 0 0px 3px 5px;
}

.dropdown-arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.dropdown-arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.dropdown-arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.dropdown-arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
@media (max-width: 1199px) {
  .nav__btn:nth-child(n + 2) {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .burger__box {
    display: none;
  }
  .menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .header {
    display: none;
  }
  .burger__box {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
  }
  .burger {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background-color: #d60323;
  }
  .burger__line {
    position: absolute;
    left: 11px;
    display: block;
    width: 24px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .burger__line:first-child {
    top: 12px;
  }
  .menu--open .burger__line:first-child {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    -moz-transform: rotate(45deg) translate(6px, 6px);
    transform: rotate(45deg) translate(6px, 6px);
  }
  .burger__line:nth-child(2) {
    top: 22px;
  }
  .menu--open .burger__line:nth-child(2) {
    opacity: 0;
  }
  .burger__line:nth-child(3) {
    top: 32px;
  }
  .menu--open .burger__line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
    -moz-transform: rotate(-45deg) translate(8px, -8px);
    transform: rotate(-45deg) translate(8px, -8px);
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    background-color: #000;
    overflow-y: auto;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
  }
  .menu--open .menu {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  
  .menu__itembox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 20px;
  }
  .menu__itembox i {
    margin-left: 1.5rem;
  }
  .menu__item {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }
  .menu__item:nth-child(n + 2) {
    margin-top: 35px;
  }
  .menu__item--close  > .menu__item ,
  .menu__item--open  > .menu__item ,
  .menu__item.menu__itembox > .menu__item {
    font-weight: 300;
  }
  /* .menu__item--close > a ,
  .menu__item--open > a{
    margin-left: 20px;
  } */
  .menu__item--open > a ,
  .menu__item--open > i {
    color: #D60323;
    border-color: #D60323;
  }
  .menu__item--close > .menu__itembox{
    display: none;
  }
  .menu__item--open > .menu__itembox {
    display: flex;
  }
}
.footer {
  position: relative;
  background-color: #000;
}
.footer__main {
  padding: 100px 0;
}
.footer__main a {
  color: #fff;
}
.footer__container {
  position: relative;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}
.footer__box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__logo {
  max-width: 300px;
}
@media (min-width: 1200px) {
  .footer__logo img:nth-child(2) {
    display: none;
  }
}
@media (max-width: 1199px) {
  .footer__logo img:first-child {
    display: none;
  }
}
.footer__content {
  width: 73.33%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 40px 0 0 40px;
}
.footer__content-title {
  width: 100%;
  height: 1em;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__new {
  width: 100px;
  text-align: center;
}
.footer__new-title {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer__new a {
  display: inline-block;
  width: 74px;
}
.footer__content-item {
  width: 33.333%;
}
.footer__content-item h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.footer__content-item h4:nth-of-type(2) {
  margin-top: 25px;
}
.footer__content-item h4::before {
  content: attr(data-text);
}
.footer__content-item p {
  color: #fff;
  font-size: 15px;
  line-height: 1.67;
}
.copyright__main {
  width: 100%;
  max-width: 1520px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #c62b25;
}
.copyright__textbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.copyright p {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.copyright p:nth-child(n + 2) {
  margin-left: 175px;
}
.text__mask {
  position: relative;
  overflow: hidden;
}
.text__mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #c62b25;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}
.text__mask--animated {
  animation: maskText 1.5s ease-in-out forwards;
}
.text__mask--animated::before {
  animation-name: mask;
  animation-duration: 0.8s;
}
@-webkit-keyframes maskText {
  0% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mask {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  45% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-moz-keyframes mask {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  45% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes mask {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  45% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.scroll {
  position: absolute;
  bottom: -55px;
  left: 50%;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.scroll p {
  color: #000;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 25px;
  opacity: 0;
}
.scroll__linebox {
  position: relative;
  width: 1px;
  height: 125px;
  overflow: hidden;
}
.scroll__line {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d60323;
}
.slider__wrap {
  height: 100vh;
}
.slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide__textimg {
  position: absolute;
  bottom: 4.5%;
  left: 14.5%;
}
.slide__textbox {
  position: absolute;
  left: 9%;
  bottom: 17%;
}
.slide__textbox h2 {
  position: relative;
  color: #fff;
  font-size: 115px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  mix-blend-mode: difference;
}
.slide__textbox h2:first-child {
  padding-left: 80px;
}
.slide__textbox h2:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 60px;
  height: 15px;
  background-color: #fff;
}
.slide__textbox h2:nth-child(3) {
  margin-right: -0.25em;
  color: #099;
}
.service {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 75px 10% 0;
  background-color: #fff;
}
.service__imgbox:first-child {
  width: 48%;
}
.service__imgbox:last-child {
  width: 35%;
}
.service__box {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: -35px;
  width: 500px;
  padding: 120px 25px 70px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.service__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}
.service__title {
  opacity: 0;
  color: #c72b25;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}
.service__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 7px;
  margin-top: 30px;
  background-color: #c72b25;
}
.service__subtitle {
  opacity: 0;
  color: #000;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-top: 5px;
}
.service__sectitle {
  color: #c62b25;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 35px 0 20px;
}
.service__text {
  max-width: 370px;
  color: #231815;
  font-size: 15px;
  line-height: 2.3;
  letter-spacing: 0.025em;
}
.team {
  position: relative;
  padding: 0 0 100px 5%;
  background-color: #efefef;
}
.team__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 35px;
}
.team__title {
  opacity: 0;
  color: #c62b25;
  font-size: 65px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}
.team__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  background-color: #c62b25;
  margin-top: 20px;
}
.team__subtitle {
  opacity: 0;
  color: #231815;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.team__itembox {
  position: relative;
  padding: 0 10%;
  background-color: #fff;
}
.team__item {
  position: relative;
}
.team__item-img {
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.team__item-titlebox {
  display: flex;
  justify-content: flex-end;
  margin-top: -40px;
}
.team__item-name {
  color: #000;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.team__item-subname {
  color: #000;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 18px;
}
.team__item-line {
  margin-top: 10px;
}
.team__item-box {
  height: 0;
  overflow: hidden;
  width: 85%;
  margin-left: 8%;
  position: relative;
  color: #fff;
  padding: 20px;
  background-color: #c62b25;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.team__item-box svg {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
}
.team__item-box polygon {
  fill: #c62b25;
}
.team__item-textbox:nth-child(n + 2) {
  margin-top: -5px;
}
.team__itembox .team__item .skill {
  margin-top: 12px;
}
.team__item-textbox h4 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 6px;
}
.team__item-textbox p {
  font-size: 14px;
  line-height: 1.67;
}
.blog {
  position: relative;
  padding: 0 0 0 5%;
  background-color: #efefef;
}
.blog__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 35px;
}
.blog__title {
  opacity: 0;
  color: #c62b25;
  font-size: 65px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}
.blog__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  background-color: #c62b25;
  margin-top: 20px;
}
.blog__item {
  padding:0px 30px 0px 10px;
  cursor: pointer;
}
.blog__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6d6d6d; /* default color */

  /* "to left" / "to right" - affects initial color */
  background: linear-gradient(to left, #6d6d6d 50%, #c62b25 50%) right;
  background-size: 200%;
  margin-top: 20px;
  transition: all .5s linear;
}
.blog__item:hover::after {
  background-position: left;
  /* background-color: #c62b25; */
}
.blog__item:hover .blog__item-arrow::after {
  border-color: #c62b25;
  right: 10px;
}
.content__textarea .blog__item-date::before,
.list__item .blog__item-date::before,
.blog__item:hover .blog__item-date::before {
  border-color:#C62B25;
  width: 30px;
}
.blog__item-arrow {
  position: relative;
  padding-right: 10px;
}
.blog__item-arrow::after {
  width: 20px;
  height: 20px;
  border-right: 2px solid #231815;
  border-top: 2px solid #231815;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  transition: all .5s linear;
}
.blog__item-title {
  width: 95%; 
  overflow: hidden;
  text-overflow: ellipsis; 
  margin-top: 5px;
}
.list__item .blog__item-title,
.blog__item .blog__item-title {
  white-space: nowrap; 
}
@media (max-width: 767.98px) {
  .list__item .blog__item-title,
  .blog__item-title {
    white-space: break-spaces; 
  }
}
.blog__item-footer {
  cursor: pointer;
  float: right;
  border: 1px solid #000000;
  padding: 2px 10px;
  margin: 20px 15px 10px;
}

.blog__item-footer:hover img:not(.hover),
.blog__item-footer .hover {
  display: none;
}
.blog__item-footer:hover{
  background-color: #C62B25;
  border-color: #C62B25;
  color:#FFFFFF
}
.blog__item-footer:hover .hover {
  display: inline-block;
}
.blog__item-footer > img {
  height: 10px;
}
.blog__item-footer > p {
  font-size: 16px;
}
.blog__item-img {
  height: 250px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.blog__item-img
.blog__item-img > img {
  width: 100%;
}
.list__item:hover > .blog__item-img > img {
  -webkit-transition: transform .4s ease;
  -moz-transition: transform .4s ease;
  transition: transform .4s ease;
}
.list__item:hover > .blog__item-img > img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.blog__item-date {
  color: #c62b25;
  margin-right: 10px;
  position: relative;
}
.blog__item-date::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  background-color: #919090;
  margin-left: 10px;
}
.blog__item-date::before {
  border: solid #EFEFEF;
  content: "";
  height: 0;
  top: -10px;
  position: absolute;
  width: 0;
  /* display: none; */
  transition: all .5s linear;
} 
.blog__item-subcategory,
.blog__item-category {
  color: #6D6D6D;
  font-weight: bold;
}
.blog__item-subcategory::before{
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  -moz-border-radius: 1.5px;
  -webkit-border-radius: 1.5px;
  border-radius: 1.5px;
  background-color: #C62B25;
  margin: 0.3rem;
} 
.blog__link {
  width: 260px;
  height: 76px;
  padding: 10px;
  border: 1.5px solid #c62b25;
}
.blog__link:hover {
  background-color:#c62b25 ;
}
.blog__link:hover img:not(.hover) ,
.blog__link .hover {
  display: none;
}
.blog__link:hover .hover {
  display:inline-block;
}
.blog__link:hover .blog__link-title{
  color: #fff;
}
.blog__link > * {
  vertical-align: middle;
}
.blog__link-title {
  color: #000;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 18px 10px 0px 10px;
  display: inline-block;
}
.blog__link-line {
  max-width: 20%;
  display: inline-block;
  margin-top: 18px;
}
.blog__subtitle {
  opacity: 0;
  color: #231815;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.news {
  position: relative;
  padding: 50px 0;
  background-color: #efefef;
}
.news__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
.news__titlebox > div {
  margin-left: 150px;
}
.news__title {
  opacity: 0;
  position: relative;
  color: #c62b25;
  font-size: 65px;
  line-height: 1;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.news__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 7px;
  background-color: #c62b25;
}
.news__subtitle {
  opacity: 0;
  color: #000;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  padding-top: 5px;
}
.news__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin-top: -90px;
}
.news__img {
  margin-right: -170px;
}
.news__content {
  opacity: 0;
  width: calc(100% - 20px);
  max-width: 590px;
  height: 290px;
  position: relative;
  background-color: #fff;
  padding: 35px;
  margin-bottom: 50px;
}
.news__content-text {
  color: #231815;
  font-size: 15px;
  line-height: 1.67;
}
.facebook {
  position: absolute;
  right: 35px;
  bottom: 35px;
  overflow: hidden;
  cursor: pointer;
}
.facebook__text {
  color: #231815;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.practice {
  position: relative;
  padding: 200px 0 150px;
  background-color: #efefef;
}
.practice__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.practice__title {
  opacity: 0;
  color: #c62b25;
  font-size: 65px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}
.practice__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  margin: 20px auto 0;
  background-color: #c62b25;
}
.practice__subtitle {
  padding-top: 5px;
  opacity: 0;
  color: #231815;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.practice__itembox {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: 70px auto 0;
}
.practice__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
}
.practice__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.practice__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.practice__item:hover .practice__img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.practice__item-title {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.practice__itembox--mobile .practice__item-title {
  z-index: 2;
}
.practice__item:hover .practice__item-title {
  opacity: 0;
}
.practice__item-title h4 {
  font-size: 28px;
  line-height: 1;
}
.practice__item-title h4::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  margin: 30px auto 0;
  background-color: #fff;
}
.practice__item-title p {
  display: none;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 15px;
}
.practice__itembox--mobile .practice__item-title p {
  display: block;
}
.practice__item-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: rgba(51, 41, 48, 0.9);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
  -moz-transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
  transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
}
.practice__item:hover .practice__item-mask {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  opacity: 1;
}
.practice__itembox--mobile .practice__item-mask {
  background-color: rgba(89, 87, 87, 1);
  opacity: 0.6;
}
.practice__item-inner {
  width: 100%;
  position: relative;
  color: #fff;
  text-align: center;
}
.practice__itembox--mobile .practice__item-inner {
  display: none;
}
.practice__item-inner::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 25px);
  left: calc(50% - 11px);
  width: 22px;
  height: 3px;
  background-color: #fff;
}
.practice__item-inner p {
  font-size: 15px;
  line-height: 1.67;
}
.man {
  position: relative;
  padding: 50px 0;
  background-color: #efefef;
}
.man__top {
  width: 100%;
  margin: 0 auto;
}
.man__top-row {
  display: flex;
  flex-wrap: wrap;
}
.man__top-row:first-child .man__top-title {
  padding-left: 75px;
}
.man__top-row:first-child .man__top-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 60px;
  height: 12px;
  background-color: #000;
}
.man__top-row:last-child {
  justify-content: flex-end;
}
.man__top-title {
  opacity: 0;
  color: #c62b25;
  font-size: 100px;
  font-weight: 800;
  line-height: 1.2;
}
.man__block {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}
.man__box {
  position: relative;
  margin: 0 auto;
}
.man__textbox {
  opacity: 0;
  position: absolute;
  bottom: 50px;
  left: -50px;
  padding: 50px 25px 45px;
  background-color: #fff;
}
.man__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}
.man__titlebox::before {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  background-color: #c62b25;
  margin-bottom: 25px;
}
.man__titlebox h3 {
  padding-top: 5px;
  opacity: 0;
  color: #231815;
  font-size: 34px;
  line-height: 1;
}
.man__text {
  width: 320px;
  color: #231815;
  font-size: 15px;
  line-height: 1.67;
  margin-top: 25px;
}
.links {
  position: relative;
  padding: 100px 90px 240px;
  background-color: #efefef;
}
.links__main {
  position: relative;
  padding: 0 40px 130px;
  background-color: #fff;
}
.links__titlebox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 40px;
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  transform: translateY(-60px);
}
.links__titlebox h3 {
  opacity: 0;
  color: #c62b25;
  font-size: 65px;
  font-weight: 800;
  line-height: 1;
  padding: 25px;
  margin-bottom: 12px;
  background-color: #efefef;
}
.links__titlebox h3:nth-of-type(2) {
  margin-bottom: 25px;
}
.links__titlebox p {
  color: #231815;
  font-size: 26px;
  line-height: 1;
  padding: 20px 25px;
  background-color: #efefef;
}
.links__itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.links__item {
  text-align: center;
  padding: 0 10px;
}
.links__item a {
  font-family: "Noto Serif", "NotoSerifCJK", serif !important;
  display: inline-block;
  color: #000;
  font-size: 25px;
  line-height: 1.2;
}
@media (max-width: 1479px) and (min-width: 992px) {
  .man__top {
    max-width: 800px;
  }
  .man__top-title {
    font-size: 50px;
  }
}
@media (max-width: 1365px) {
  .man__textbox {
    left: 0;
  }
}
@media (max-width: 1365px) and (min-width: 992px) {
  .man__top {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .links__item {
    width: 25%;
  }
  .links__item:nth-child(n + 5) {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .footer__logo {
    margin: 0 auto;
  }
  .footer__content {
    width: 100%;
    padding: 20px 0 0;
  }
  .footer__content-title {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .footer__content-item h4:nth-of-type(2),
  .footer__content-item h4:nth-of-type(2) + p {
    display: none;
  }
}
@media (min-width: 1200px) {
  .footer__content-item:nth-of-type(4) {
    display: none;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .slide__textbox {
    left: 4%;
    bottom: 17%;
  }
  .slide__textbox h2 {
    font-size: 80px;
  }
  .links__item {
    width: 33.3333%;
  }
  .links__item:nth-child(n + 4) {
    margin-top: 40px;
  }
  .footer__content-item {
    width: 50%;
    text-align: center;
    margin-top: 20px;
  }
  .footer__new {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .practice__item {
    width: calc((100% - 140px) / 3);
    margin: 40px 70px 0 0;
  }
  .practice__item:nth-child(-n + 3) {
    margin-top: 0;
  }
  .practice__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .service__title {
    font-size: 48px;
  }
  .service__subtitle {
    font-size: 30px;
  }
  .service__text {
    font-size: 12px;
  }
  .team__titlebox {
    margin-bottom: 100px;
  }
  .team__title {
    font-size: 48px;
  }
  .team__itembox {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 0 3%;
  }
  .team__item-name {
    font-size: 26px;
  }
  .team__item-subname {
    color: #c72b25;
    font-size: 16px;
    margin-top: 10px;
  }
  .team__item-line {
    display: none;
  }
  .team__item-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    margin-top: 179px;
  }
  .news__titlebox {
    align-items: flex-end;
    padding-right: 40px;
  }
  .news__title {
    font-size: 48px;
  }
  .news__main {
    justify-content: flex-end;
  }
  .practice {
    padding: 50px 0;
  }
  .practice__title {
    font-size: 48px;
  }
  .man__top {
    max-width: 600px;
  }
  .man__top-title {
    font-size: 32px;
  }
  .man__textbox {
    position: static;
  }
  .man__text {
    width: 100%;
  }
  .links {
    padding: 50px 15px;
  }
  .links__main {
    padding: 0 0 50px;
  }
  .links__titlebox {
    padding-left: 5px;
  }
  .links__titlebox h3 {
    font-size: 38px;
  }
  .links__titlebox p {
    font-size: 24px;
  }
  .copyright__main {
    flex-direction: column;
  }
  .copyright__textbox {
    flex-direction: column;
  }
  .copyright__textbox:nth-child(2) {
    margin: 15px 0 0;
  }
  .copyright p:nth-child(n + 2) {
    margin: 15px 0 0;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .practice__item {
    width: calc((100% - 30px) / 2);
    margin: 30px 30px 0 0;
  }
  .practice__item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .practice__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .scroll {
    bottom: -105px;
  }
  .scroll p {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .slider__wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
  }
  .slide__textimg {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .slide__textbox {
    position: static;
    bottom: auto;
    left: auto;
  }
  .slide__textbox h2 {
    font-size: 42px;
  }
  .service {
    padding: 30px 0 0;
    background-color: #efefef;
  }
  .service__imgbox {
    display: none;
  }
  .service__box {
    position: static;
    left: auto;
    top: auto;
    width: calc(100% - 30px);
    margin: 0 auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  .team {
    padding: 50px 0 50px 20px;
    margin: 0;
  }
  .links__item {
    width: 100%;
  }
  .links__item:nth-child(n + 2) {
    margin-top: 50px;
  }
  .footer__main {
    padding: 40px 0;
  }
  .footer__content-item {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .footer__content-item h4::before {
    content: attr(data-text-mobile);
  }
  .footer__content-item h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #c62b25;
    margin: 7px auto 0;
  }
  .footer__new {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .service__box {
    padding: 80px 20px 20px;
  }
  .practice__item {
    width: 100%;
  }
  .practice__item:nth-child(n + 2) {
    margin-top: 20px;
  }
  .links__item a {
    font-family: "Noto Serif", "NotoSerifCJK", serif !important;
  }
}
.loader {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9998;
  text-align: center;
  top: 0;
}
.openingText {
  z-index: 9999;
  display: none;
  font-weight: 400;
}
.openingText span {
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: none;
  font-size: 30px;
  display: inline-block;
  background-color: #c62b25;
  color: #fff;
  padding: 5px 1px 7px 10px;
  letter-spacing: 0.1em;
}
.hideLoader {
  animation: hideLoaderAnimation 0.45s ease-in-out forwards;
}
@keyframes hideLoaderAnimation {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
.links__item a:hover {
  color: #c72b25;
}
.itemTextUp {
  position: absolute;
  height: auto;
  overflow: visible;
  opacity: 1;
  transform: translateY(-150px);
}
.team__item:hover .team__item-name {
  color: #c72b25;
}
.facebook:hover p.facebook__text {
  color: #c72b25;
}
.arrow {
  animation: arrowAnimation 3s ease-in-out infinite;
}
@keyframes arrowAnimation {
  0%,
  100%,
  30% {
    transform: translateX(0px);
    opacity: 1;
  }
  14% {
    transform: translateX(40%);
    opacity: 0;
  }
  16% {
    transform: translateX(-40%);
    opacity: 0;
  }
}
.sliderZoomOut {
  animation: zoomOutAnimation 1s ease-in-out forwards;
}
@keyframes zoomOutAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.sliderZoomIn {
  animation: zoomInAnimation 2s ease-in-out forwards;
}
@keyframes zoomInAnimation {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.showPractices__item:nth-child(3n + 1) {
  animation: showPractices 1s ease-in-out forwards;
}
.showPractices__item:nth-child(3n-1) {
  animation: showPractices 1s ease-in-out 0.25s forwards;
}
.showPractices__item:nth-child(3n) {
  animation: showPractices 1s ease-in-out 0.5s forwards;
}
@keyframes showPractices {
  0% {
    opacity: 0;
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
}
.eleUp:nth-child(1) {
  opacity: 0;
  animation: eleUpAnimation 0.5s ease-in-out 0.5s forwards;
}
.eleUp:nth-child(2) {
  opacity: 0;
  animation: eleUpAnimation 0.5s ease-in-out 0.75s forwards;
}
.eleUp:nth-child(3) {
  opacity: 0;
  animation: eleUpAnimation 0.5s ease-in-out 1s forwards;
}
.eleUpSlow:nth-child(1) {
  opacity: 0;
  animation: eleUpAnimation 0.6s ease-in-out 0.9s forwards;
}
.eleUpSlow:nth-child(2) {
  opacity: 0;
  animation: eleUpAnimation 0.6s ease-in-out 1.2s forwards;
  visibility: hidden;
}
.eleUpSlow:nth-child(3) {
  opacity: 0;
  animation: eleUpAnimation 0.6s ease-in-out 1.5s forwards;
}
@keyframes eleUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes eleToLeftAnimation {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.aboutLift {
  opacity: 0;
  animation: aboutLiftAnimation 1s ease-in-out forwards;
}
@keyframes aboutLiftAnimation {
  0% {
    opacity: 0;
    transform: translate(-50% 80%);
  }
  100% {
    opacity: 1;
    transform: translate(-50% 0);
  }
}
.fadeInText {
  animation: fadeInTextAnimation 1s ease-in-out 0.5s forwards;
}
@keyframes fadeInTextAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scrollLine {
  animation: scrollLineAnimation 2s ease 1s infinite;
}
@keyframes scrollLineAnimation {
  0% {
    opacity: 1;
    transform-origin: 50% 0;
    transform: scaleY(0);
  }
  25% {
    opacity: 1;
    transform-origin: 50% 0;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform-origin: 50% 100%;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 100%;
    transform: scaleY(0);
  }
}
@media (min-width: 992px) {
  .eleToLeft {
    opacity: 0;
    animation: eleToLeftAnimation 0.8s ease-in-out forwards;
  }
}
@media (max-width: 1442px) and (min-width: 992px) {
  .team__item-name {
    font-size: 28px;
  }
  .team__item-subname {
    font-size: 16px;
    margin-top: 12px;
  }
  .arrow {
    max-width: 70%;
  }
  .man__text {
    width: 320px;
  }
  .team__item {
    padding: 0 30px;
  }
  .service__title {
    font-size: 55px;
  }
  .service__subtitle,
  .service__sectitle {
    font-size: 26px;
  }
  .service__imgbox:last-child {
    margin-top: 40px;
  }
  .footer__main {
    padding: 100px 50px;
  }
  .copyright {
    padding: 0 50px;
  }
  .footer__content-item {
    padding-left: 25px;
  }
}
@media (max-width: 991px) {
  .team__item-box {
    overflow: visible;
    height: auto;
    width: 100%;
    margin-left: 0;
  }
  .news__content {
    margin-top: -150px;
  }
  .eleToLeft {
    opacity: 1;
  }
  .eleUpSlow:nth-child(1) {
    opacity: 0;
    animation: eleUpAnimation 0.6s ease-in-out 0.5s forwards;
  }
  .eleUpSlow:nth-child(2) {
    opacity: 0;
    animation: eleUpAnimation 0.6s ease-in-out 0.3s forwards;
    display: none;
  }
  .eleUpSlow:nth-child(3) {
    opacity: 0;
    animation: eleUpAnimation 0.6s ease-in-out 0.3s forwards;
  }
  .showPractices__item {
    animation: showPractices 1s ease-in-out forwards;
  }
  .eleUp:nth-child(2) {
    opacity: 0;
    animation: eleUpAnimation 0.5s ease-in-out forwards;
  }
}
@media (max-width: 767px) {
  .openingText span {
    font-size: 16px;
  }
  .slide__textbox h2:first-child::before {
    left: 34px;
    top: 17px;
    width: 36px;
    height: 9px;
  }
  .man__top-row:first-child .man__top-title::after {
    left: 27px;
    top: 17px;
    width: 31px;
    height: 6px;
  }
}
.team__slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team__slider {
  padding: 50px 0 90px;
}
.team__slider .slick-list {
  overflow: visible;
}
.team__slider .slick-slide {
  display: flex;
  justify-content: center;
  outline: none;
}
.team__item:hover .team__item-subname {
  color: #c72b25;
}
.footer__info {
  width: 26.67%;
}
@media (max-width: 1199px) {
  .footer__info {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.logo__mobile {
  position: fixed;
  top: 5px;
  left: 15px;
  z-index: 99990;
}
.logo__mobile img {
  height: 20px;
}
.menu__logo {
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 2;
  height: 20px;
}
@media (min-width: 992px) {
  .logo__mobile {
    display: none;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(4, 0, 0, 0.88);
}
.lightbox--open {
  display: flex;
}
.lightbox__main {
  position: relative;
  width: calc(100% - 30px);
  max-width: 500px;
  max-height: calc(100% - 40px);
  overflow-x: hidden;
  overflow-y: auto;
}
.lightbox__main-inner {
  position: relative;
}
.lightbox__img {
  position: relative;
  z-index: 2;
  margin-bottom: -20px;
}
.lightbox__content {
  min-height: 300px;
  display: flex;
  justify-content: space-between;
  padding: 45px 25px;
  background-color: #bc2e26;
}
.lightbox__content-block {
  position: relative;
  width: calc(50% - 5px);
  color: #fff;
}
.lightbox__content-block h4 {
  font-size: 30px;
  line-height: 1.2;
}
.lightbox__content-block p {
  font-size: 18px;
  line-height: 1.5;
}
.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 30px;
}
.thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  background-color: #efefef;
}
.thumb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.thumb__btn:hover {
  background-color: #c62b25;
}
.thumb__info {
  width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thumb__info span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.thumb__info span:first-child {
  color: #c62b25;
}
.thumb__info span:nth-child(2) {
  width: 20px;
  height: 1px;
  margin: 0 15px;
  background-color: #595757;
}
.thumb__info span:nth-child(3) {
  color: #595757;
}
@media (max-width: 767px) {
  .thumb {
    width: 100%;
  }
  .thumb__info {
    width: calc(100% - 120px);
  }
  .lightbox__content {
    padding: 30px 20px;
  }
  .lightbox__content-block h4 {
    font-size: 18px;
  }
  .lightbox__content-block p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .team__item-titlebox {
    margin-top: -10px;
    transition: opacity 0.4s;
    opacity: 0;
  }
  .team__item--active .team__item-titlebox {
    opacity: 1;
  }
  .team__item-name {
    color: #c72b25;
  }
  .team__item-line {
    width: 90px;
    margin-top: 10px;
  }
}
.team__slider:not(.slick-slider) .team__item:nth-child(n + 2) {
  display: none;
}
.lightbox__btnbox {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  text-align: center;
}
.lightbox__btnbox a {
  display: inline-block;
  max-width: 150px;
}
.team__slider .team__item:not(.team__item--active) .team__item-img {
  transform: scale(0.7);
}
.team__slider .team__item > div {
  width: 100%;
  max-width: 300px;
  transition: transform 0.4s ease;
}
.team__slider:not(.slick-slider) {
  display: none;
}
.lightbox__img {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
