/* fine_report.css */ /* headBox.scss */
body {
  padding-top: 70px;
}

#headBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 70px;
  box-shadow: 2px 4px 7px 0 rgba(74, 42, 62, 0.1);
  background-color: #fff;
  will-change: transform;
  transition: transform 200ms linear;
}
#headBox.shrink {
  transform: translateY(-100%);
}
#headBox .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
#headBox h1 {
  width: 200px;
  height: 100%;
  background-image: url("../assets/img/logo.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

/*==================== handhelds 320px - 1023px ====================*/
@media all and (max-width: 1023px) {
  #headBox #navBar.active .dropdown_menu {
    display: block;
  }
  #headBox #navBar .nav_button {
    width: 40px;
    height: 100%;
  }
  #headBox #navBar .nav_button svg {
    width: 16px;
  }
  #headBox #navBar .dropdown_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    height: 500px;
    padding: 8px 24px;
    border: 1px solid #efefef;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #242424;
    background-color: #fff;
  }
  #headBox #navBar .dropdown_menu > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 2.2;
  }
  #headBox #navBar .dropdown_menu > li:last-of-type {
    border: 0;
  }
  #headBox #navBar .dropdown_inner_menu {
    padding: 10px 0;
    padding-left: 40px;
    list-style: circle;
    text-transform: capitalize;
  }
  #headBox #navBar .dropdown_inner_menu > li {
    padding: 10px 0;
  }
  .modal_bg {
    display: none;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
  }
  .modal_bg.active {
    display: block;
  }
}
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #headBox .container {
    max-width: 960px;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #headBox .container {
    max-width: 1140px;
  }
  #headBox #navBar {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #headBox #navBar .nav_button {
    display: none;
  }
  #headBox #navBar .dropdown_menu {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: #303030;
    gap: 35px;
  }
  #headBox #navBar .dropdown_menu li,
#headBox #navBar .dropdown_menu a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #headBox #navBar .products {
    position: relative;
  }
  #headBox #navBar .products:hover .dropdown_inner_menu {
    display: flex;
  }
  #headBox #navBar .dropdown_inner_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    justify-content: center;
    align-items: center;
    width: 200vw;
    height: 50px;
    gap: 40px;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
    color: #fff;
    background-color: rgba(41, 43, 55, 0.85);
  }
  #headBox #navBar .dropdown_inner_menu a:hover {
    color: #4BBBFE;
  }
}
/* topButtonBox.scss */
#topButtonBox {
  position: fixed;
  right: 25px;
  bottom: 65px;
  width: 54px;
  height: 54px;
}
#topButtonBox > div {
  width: 100%;
  height: 100%;
}
#topButtonBox button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #cccccc;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s, border 0.3s, color 0.3s, opacity 0.5s ease-in-out, right 0.5s ease-in-out;
  will-change: background-color, border, color, opacity, right;
}
#topButtonBox button:hover {
  background-color: #007cc7;
}
#topButtonBox button:hover svg {
  fill: #fff;
}
#topButtonBox button svg {
  height: 22px;
  fill: #242424;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
@media all and (max-width: 767px) {
  #topButtonBox {
    width: 30px;
    height: 30px;
  }
  #topButtonBox button svg {
    height: 12px;
  }
}
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/
/* footBox.scss */
#footBox {
  color: #fff;
  background-color: #292b37;
}
#footBox .container {
  padding: 30px 0;
}
#footBox .foot_logo {
  width: 220px;
  height: 77px;
  margin: auto;
  margin-bottom: 10px;
  background-image: url("../assets/img/logo_dark.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
#footBox .foot_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
#footBox dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 6px;
  column-gap: 3px;
  max-width: 300px;
  margin: auto;
  font-size: 12px;
  text-align: center;
  margin-bottom: 6px;
}
#footBox dl:last-of-type {
  margin-bottom: 0;
}
#footBox dl .address {
  width: 100%;
}
#footBox dl dd.tel::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 70%;
  margin-left: 9px;
  margin-right: 6px;
  transform: rotate(20deg);
  background-color: #fff;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #footBox .container {
    display: flex;
    justify-content: space-between;
    max-width: 720px;
  }
  #footBox .foot_logo {
    margin: unset;
  }
  #footBox dl {
    justify-content: flex-end;
    text-align: right;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #footBox .container {
    display: flex;
    justify-content: space-between;
  }
  #footBox .foot_logo {
    margin: unset;
  }
  #footBox dl {
    justify-content: flex-end;
    text-align: right;
  }
}
/* _subPages.scss */
#pageHeaderBox {
  display: flex;
  align-items: center;
  background-image: url("../assets/img/subpg_bg.png");
  background-size: cover;
  background-position: center;
}
#pageHeaderBox .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 60px 44px;
  height: auto;
  color: #fff;
}
#pageHeaderBox .container > div {
  min-width: 200px;
  max-width: calc(100% - 230px);
}
#pageHeaderBox h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}
#pageHeaderBox p {
  line-height: 1.625;
}

#contentBox .container {
  padding: 90px 44px;
  text-align: center;
}
#contentBox .title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1.13;
}
#contentBox h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.625;
}
#contentBox .typography {
  line-height: 1.625;
}
#contentBox img {
  width: 100%;
  max-width: fit-content;
  object-fit: contain;
}
#contentBox .img_bg {
  background-image: url("../assets/img/pc002196101.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.88);
  background-blend-mode: lighten;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
@media all and (max-width: 767px) {
  #pageHeaderBox .container > div {
    order: 1;
    max-width: none;
  }
}
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #contentBox .container {
    max-width: 720px;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #contentBox .container {
    max-width: 1140px;
  }
}
#contentBox .purple {
  color: #8a9cff;
}
#contentBox .content_area_01.img_bg {
  background-image: url("../assets/img/about_bg-1.png");
  background-color: transparent;
  background-attachment: unset;
  background-blend-mode: unset;
}
#contentBox .content_area_02 {
  background-color: #ffffff;
  color: #242424;
}
#contentBox .content_area_02 h2 {
  margin-bottom: 50px;
}
#contentBox .content_area_02 .content_wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#contentBox .content_area_02 .content_wrapper > li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#contentBox .content_area_02 .content_wrapper > li:nth-child(2n-1) > *:nth-child(2n) {
  order: -1;
}
#contentBox .content_area_02 dl {
  max-width: 50%;
}
#contentBox .content_area_02 dl dt {
  text-align: left;
  line-height: 1.25;
  font-size: 23px;
  font-weight: 500;
  margin-top: 40px;
  margin-top: 40px;
}
#contentBox .content_area_02 dl dt::after {
  content: "";
  display: block;
  margin: 20px 0 15px;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
#contentBox .content_area_02 dl dd {
  text-align: left;
}
#contentBox .content_area_02 dl dd table,
#contentBox .content_area_02 dl dd tbody,
#contentBox .content_area_02 dl dd tr,
#contentBox .content_area_02 dl dd td {
  padding-left: 2px;
  border: 0;
}
#contentBox .content_area_02 img {
  max-width: 50%;
}
#contentBox .content_area_03 .title {
  text-align: center;
}
#contentBox .content_area_03 p {
  margin-bottom: 60px;
  text-align: center;
}
#contentBox .content_area_03 #screenSlider .slick-arrow {
  z-index: 9999;
  width: 50px;
  height: 100px;
  padding: 35px 10px;
}
#contentBox .content_area_03 #screenSlider .slick-arrow::before {
  display: none;
}
#contentBox .content_area_03 #screenSlider .slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#contentBox .content_area_03 #screenSlider .slick-prev {
  left: 20px;
}
#contentBox .content_area_03 #screenSlider .slick-next {
  right: 20px;
}
#contentBox .content_area_03 #screenSlider .slick-next img {
  transform: rotate(180deg);
}

/*==================== handhelds 320px - 1023px ====================*/
@media all and (max-width: 1023px) {
  #contentBox .content_area_02 .content_wrapper > li {
    flex-direction: column;
  }
  #contentBox .content_area_02 .content_wrapper > li:nth-child(2n-1) > *:nth-child(2n) {
    order: 1;
  }
  #contentBox .content_area_02 .content_wrapper > li > *:nth-child(2n-1) {
    order: 2;
  }
  #contentBox .content_area_02 dl {
    max-width: 100%;
  }
  #contentBox .content_area_02 img {
    max-width: 100%;
  }
  #contentBox .content_area_03 #screenSlider .slick-arrow {
    display: none !important;
  }
}
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/

/*# sourceMappingURL=fine_report.css.map */
