/**
 * /* Scss Document
 *
 * @format
 */
/* CSS Document */
/* Var */
/* Title */
.header-title {
  font-size: 56px;
  font-weight: 700;
  color: #586d7f;
}
.header-title span {
  display: block;
  color: #342576;
  margin: 20px 0;
  font-size: 30px;
  line-height: 42px;
}

.section-title {
  display: block;
  color: #342576;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
}

.desc-title {
  display: block;
  color: #342576;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Button */
.btn:nth-of-type(1) {
  z-index: 3;
}

.btn:nth-of-type(2) {
  z-index: 2;
}

.btn:nth-of-type(3) {
  z-index: 1;
}

.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  margin-right: 20px;
  min-width: 180px;
}

.btn--circle {
  padding: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 7px 9px 13px 0px rgba(131, 148, 163, 0.19) inset, -8px -9px 13px 0px rgba(255, 255, 255, 0.69) inset, 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
  margin-top: 30px;
  min-width: 0;
}

.btn--arrow_down {
  background-image: url("../img/icon/arrow-down-icon.png");
  background-repeat: no-repeat;
  background-size: 15px 19px;
  background-position: center;
  transition: all 0.2s ease-in-out;
}
.btn--arrow_down:hover {
  background-position: center bottom 20px;
}

.btn--blue {
  position: relative;
  color: #fff;
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(23, 9, 137);
  background: linear-gradient(128deg, rgb(23, 9, 137) 0%, rgb(29, 13, 160) 100%);
}
.btn--blue:hover {
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.4), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(29, 13, 160);
  background: linear-gradient(128deg, rgb(29, 13, 160) 0%, rgb(23, 9, 137) 100%);
}
.btn--blue:focus, .btn--blue:active {
  box-shadow: none;
}
.btn--blue:focus:after, .btn--blue:active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 7px 9px 13px 0px rgba(20, 10, 106, 0.4) inset, -3px -3px 13px 0px rgb(138, 127, 207) inset;
}

.btn--red {
  position: relative;
  color: #fff;
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(206, 0, 16);
  background: linear-gradient(128deg, rgb(206, 0, 16) 0%, rgb(237, 19, 36) 100%);
}
.btn--red:hover {
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.4), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(237, 19, 36);
  background: linear-gradient(128deg, rgb(237, 19, 36) 0%, rgb(206, 0, 16) 100%);
}
.btn--red:focus, .btn--red:active {
  box-shadow: none;
}
.btn--red:focus:after, .btn--red:active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 7px 9px 13px 0px rgba(116, 8, 17, 0.4) inset, -3px -3px 13px 0px rgb(229, 141, 148) inset;
}

.btn--grey {
  position: relative;
  color: #4229b3;
  background-color: #e3e9ee;
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
}
.btn--grey:hover {
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.4), -15px -13px 40px 0px rgb(255, 255, 255);
}
.btn--grey:focus, .btn--grey:active {
  box-shadow: none;
}
.btn--grey:focus:after, .btn--grey:active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: -3px -3px 13px 0px rgb(255, 255, 255) inset, 7px 9px 13px 0px rgba(131, 148, 163, 0.45) inset;
}

.checkbox {
  display: inline-block;
  border-radius: 5px;
  width: 26px;
  height: 26px;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
  position: relative;
  background-color: #e3e9ee;
}
.checkbox:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  background-image: url("../img/icon/check-icon.png");
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto 3px 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.checkbox--check:before {
  opacity: 1;
  width: 18px;
  height: 24px;
}

.circle {
  display: block;
  border-radius: 50%;
  padding: 60px;
  margin: 100px;
  box-shadow: 7px 9px 13px 0px rgba(131, 148, 163, 0.19) inset, -8px -9px 13px 0px rgba(255, 255, 255, 0.69) inset, 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
  background-color: #e3e9ee;
}

.rectangle {
  display: inline-block;
  border-radius: 50px;
  padding: 60px;
  background-color: #e3e9ee;
}

.rectangle--outside {
  box-shadow: 21px 17px 40px 0px rgba(131, 148, 163, 0.14), -15px -13px 40px 0px rgba(255, 255, 255, 0.5);
}

.rectangle--inside {
  box-shadow: 21px 17px 40px 0px rgba(131, 148, 163, 0.14) inset, -15px -26px 40px 0px rgba(255, 255, 255, 0.5) inset;
}

:root {
  --additional-space: 0px;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.5px;
  color: #586d7f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

body.hidden {
  overflow: hidden;
  position: relative;
  margin-left: -1px;
}

.hide {
  display: none;
}

.no-padding-top {
  padding-top: 0 !important;
}

.side-wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

sup {
  vertical-align: super !important;
  font-size: 0.63em !important;
}

label#email-error.error {
  color: red;
  font-size: 16px;
  line-height: 26px;
  margin-top: -20px;
  margin-bottom: 10px;
  display: block;
}

/* END button style */
/* Menu - style */
#mobile {
  overflow: hidden;
  display: none;
}

#menu_link {
  display: block;
  width: 22px;
  height: 26px;
  position: fixed;
  right: 30px;
  top: 19px;
  z-index: 1003;
  cursor: pointer;
  margin-right: var(--additional-space);
}

#menu_link span {
  display: block;
  height: 2px;
  width: 22px;
  background-color: #a5a9b6;
  margin: 4px 0 6px auto;
  transition: all 0.3s ease-in;
}

#menu_link span.close_1 {
  transform: rotate(45deg);
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: 22px;
  margin: auto;
}

#menu_link span.close_2 {
  display: none;
}

#menu_link span.close_3 {
  transform: rotate(-45deg);
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: 22px;
  margin: auto;
}

#fixed-menu {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 4;
}
#fixed-menu a {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 10px 0;
  box-shadow: 0px 2px 5px 0px rgba(165, 169, 182, 0.58);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#fixed-menu a:hover {
  transform: scale(1.06);
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -o-transform: scale(1.06);
}

#menu-curtain.visible {
  opacity: 1;
  visibility: visible;
}

#menu-curtain {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 4;
  transition: all 0.3s ease-in;
}

/* END MENU - style */
.nk-awb {
  height: 100%;
}

/* CSS Document */
/* Header - menu */
html,
body {
  height: 100%;
}

.side-wrapper {
  position: relative;
  height: 100%;
}
.side-wrapper.--additional-space {
  max-width: calc(90% - var(--additional-space));
  padding-right: var(--additional-space);
}

#top.small {
  top: -40px;
}

#top {
  height: 130px;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  transition: all 0.3s ease-in;
}
#top:before {
  content: "";
  height: 135%;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(227, 233, 238, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to top, transparent 2%, black 28%);
  mask-image: linear-gradient(to top, transparent 2%, black 28%);
  z-index: -1;
}
#top .arrow-down {
  width: 5px;
  height: 5px;
  border: solid #bbc4cb;
  border-width: 0 1px 1px 0;
  padding: 3px;
  position: absolute;
  bottom: 0;
  top: -3px;
  right: 6px;
  margin: auto;
  z-index: 1;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#top h1 {
  text-indent: -9999em;
}
#top #logo {
  display: block;
  position: absolute;
  z-index: 1001;
  left: 0;
  bottom: 10px;
  width: 178px;
  height: 83px;
}
#top #logo img {
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
}
#top #menu {
  position: absolute;
  right: 0px;
  bottom: 0;
}
#top #menu #primary-menu {
  transition: all 0.3s ease-in;
}
#top #menu #primary-menu ul .current_page_item {
  color: #4229b3;
}
#top #menu #primary-menu ul li.menu-item-has-children:hover {
  background-color: #dbe2e8;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
#top #menu #primary-menu ul li.menu-item-has-children:hover a {
  color: #586d7f;
}
#top #menu #primary-menu ul li.notlink > a:hover {
  color: #586d7f !important;
}
#top #menu #primary-menu ul li.mega-menu ul {
  width: 400px;
  padding: 20px 15px;
}
#top #menu #primary-menu ul li.mega-menu ul li {
  width: 180px;
}
#top #menu #primary-menu ul li.mega-menu ul li ul {
  width: auto;
  padding-top: 10px;
}
#top #menu #primary-menu ul li {
  float: left;
  color: #586d7f;
  font-size: 16px;
  position: relative;
  font-weight: 600;
}
#top #menu #primary-menu ul li a {
  display: inline-block;
  padding: 15px 30px 16px 27px;
  position: relative;
}
#top #menu #primary-menu ul li a:hover {
  cursor: pointer;
  color: #4229b3;
}
#top #menu #primary-menu ul li .arrow-down {
  width: 5px;
  height: 5px;
  border: solid #586d7f;
  border-width: 0 2px 2px 0;
  padding: 3px;
  position: absolute;
  bottom: 0;
  top: -7px;
  right: 10px;
  margin: auto;
  z-index: 1;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#top #menu #primary-menu ul li:hover .arrow-down {
  transform: rotate(225deg);
  top: 3px;
}
#top #menu #primary-menu ul li:hover ul {
  display: block;
}
#top #menu #primary-menu ul li ul {
  position: absolute;
  background-color: #dbe2e8;
  width: 200px;
  min-width: 110%;
  right: 0;
  top: 47px;
  overflow: hidden;
  display: none;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
  text-align: left;
  padding: 20px 10px 15px;
}
#top #menu #primary-menu ul li ul .current_page_item {
  color: #4229b3;
}
#top #menu #primary-menu ul li ul li {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  float: none;
  width: 190px;
  vertical-align: top;
}
#top #menu #primary-menu ul li ul li .arrow-down {
  display: none;
}
#top #menu #primary-menu ul li ul li a {
  display: inline-block;
  padding: 10px 15px;
  text-align: left;
}
#top #menu #primary-menu ul li ul li a:hover {
  color: #4229b3 !important;
}
#top #menu #primary-menu ul li ul li ul {
  position: static;
  width: auto;
  padding: 0;
}
#top #menu #primary-menu ul li ul li ul li {
  display: block;
  width: 100%;
  font-weight: 500;
  line-height: 16px;
  height: auto;
}
#top #menu #primary-menu ul li ul li ul li a {
  padding: 6px 0;
  width: -moz-fit-content;
  width: fit-content;
}
#top #menu #other-menu {
  display: block;
  position: absolute;
  top: -57px;
  right: 0;
  z-index: 3;
}
#top #menu #other-menu ul {
  list-style: none;
}
#top #menu #other-menu ul .calculator.current_page_item a {
  color: #ddd;
}
#top #menu #other-menu ul .calculator {
  position: relative;
  color: #fff;
  margin: 0 20px;
}
#top #menu #other-menu ul .calculator a {
  color: #fff;
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.23), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(23, 9, 137);
  background: linear-gradient(128deg, rgb(23, 9, 137) 0%, rgb(29, 13, 160) 100%);
  border-radius: 13px;
}
#top #menu #other-menu ul .calculator:hover a {
  color: #fff;
  box-shadow: 17px 14px 40px 0px rgba(131, 148, 163, 0.4), -15px -13px 40px 0px rgb(255, 255, 255);
  background: rgb(29, 13, 160);
  background: linear-gradient(128deg, rgb(29, 13, 160) 0%, rgb(23, 9, 137) 100%);
}
#top #menu #other-menu ul .calculator:focus, #top #menu #other-menu ul .calculator:active {
  box-shadow: none;
}
#top #menu #other-menu ul .calculator:focus:after a, #top #menu #other-menu ul .calculator:active:after a {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 7px 9px 13px 0px rgba(20, 10, 106, 0.4) inset, -3px -3px 13px 0px rgb(138, 127, 207) inset;
  z-index: -1;
}
#top #menu #other-menu ul li .arrow-down {
  width: 5px;
  height: 5px;
  border: solid #bbc4cb;
  border-width: 0 1px 1px 0;
  padding: 3px;
  position: absolute;
  bottom: 0;
  top: -3px;
  right: 6px;
  margin: auto;
  z-index: 1;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#top #menu #other-menu ul li:hover .arrow-down {
  border: solid #586d7f;
  border-width: 0 1px 1px 0;
  transform: rotate(225deg);
  top: 4px;
}
#top #menu #other-menu ul li:hover a {
  border-radius: 13px;
  text-decoration: none;
  background-color: #dbe2e8;
  color: #586d7f;
}
#top #menu #other-menu ul li:hover ul {
  display: block;
}
#top #menu #other-menu ul li ul {
  display: none;
  position: absolute;
  background-color: #dbe2e8;
  top: 27px;
  right: 0;
  border-top-left-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  overflow: hidden;
}
#top #menu #other-menu ul li ul li:first-child {
  margin-top: 10px;
}
#top #menu #other-menu ul li ul li {
  float: none;
  margin: 0;
  padding: 0;
  color: #bbc4cb;
  text-transform: uppercase;
  font-weight: 300;
}
#top #menu #other-menu ul li ul li a {
  float: none;
  margin: 0;
  padding: 10px 27px;
  color: inherit;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
#top #menu #other-menu ul li ul li a:hover {
  background-color: rgba(54, 62, 76, 0.1);
  color: #586d7f;
}
#top #menu #other-menu ul li ul li:hover {
  font-weight: 700;
  text-decoration: none;
}
#top #menu #other-menu ul .current_page_item a {
  color: #586d7f;
}
#top #menu #other-menu ul li {
  float: left;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  color: #bbc4cb;
}
#top #menu #other-menu ul li a {
  cursor: pointer;
  padding: 11px 20px;
  display: block;
}
#top #menu #other-menu ul li a:hover {
  color: #586d7f;
}

#top.mobile {
  top: 0;
  height: 60px;
}
#top.mobile .arrow-down {
  transform: rotate(90deg);
  top: -3px !important;
}
#top.mobile #mobile {
  display: block;
}
#top.mobile #menu.open {
  right: 0;
  width: 320px;
}
#top.mobile #menu {
  display: block;
  position: fixed;
  bottom: auto;
  top: 0;
  background: #dbe2e8;
  right: -320px;
  width: 0;
  overflow: auto;
  z-index: 5;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  overflow-x: hidden;
}
#top.mobile #menu #primary-menu {
  margin-left: 30px;
  padding-top: 60px;
}
#top.mobile #menu #primary-menu ul {
  overflow: auto;
  padding-top: 60px;
}
#top.mobile #menu #primary-menu ul li.mega-menu > ul {
  padding-top: 60px;
}
#top.mobile #menu #primary-menu ul li.mega-menu ul li {
  width: 100%;
}
#top.mobile #menu #primary-menu ul li.mega-menu ul li ul {
  position: static;
  padding-left: 0;
  overflow: auto;
  width: 100%;
}
#top.mobile #menu #primary-menu ul li.mega-menu ul li ul .back {
  display: none;
}
#top.mobile #menu #primary-menu ul li.mega-menu ul li ul li {
  padding-left: 0;
  width: 100%;
}
#top.mobile #menu #primary-menu ul li.mega-menu ul li ul li a {
  padding: 7px 15px;
}
#top.mobile #menu #primary-menu ul li {
  float: none;
  padding: 0;
  position: static;
}
#top.mobile #menu #primary-menu ul li .arrow-down {
  right: 5px;
  left: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#top.mobile #menu #primary-menu ul li a {
  display: inline-block;
  padding: 20px 25px 20px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#top.mobile #menu #primary-menu ul li ul {
  position: fixed;
  right: -320px;
  height: 100%;
  top: 0px;
  width: 320px;
  min-width: 0;
  z-index: 2;
  background: #dbe2e8;
  display: block;
  transition: all 0.3s ease-in 0.3s;
}
#top.mobile #menu #primary-menu ul li ul li {
  text-align: left;
}
#top.mobile #menu #primary-menu ul li ul li a {
  display: block;
}
#top.mobile #menu #primary-menu ul li ul .back {
  color: #586d7f;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
#top.mobile #menu #primary-menu ul li ul .back:hover {
  color: #363e4c;
}
#top.mobile #menu #primary-menu ul li ul .back:before {
  content: "";
  width: 1px;
  height: 1px;
  border: solid #586d7f;
  border-width: 0 2px 2px 0;
  padding: 3px;
  position: absolute;
  bottom: 0;
  top: -1px;
  left: 11px;
  margin: auto;
  z-index: 1;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
#top.mobile #menu #primary-menu ul li ul.open {
  right: 0;
}
#top.mobile #menu #other-menu {
  position: static;
  top: 0;
  margin-left: 30px;
}
#top.mobile #menu #other-menu ul li {
  float: none;
  padding: 0;
  font-size: 17px;
}
#top.mobile #menu #other-menu ul li a {
  display: block;
  padding: 20px 25px 20px 10px;
}
#top.mobile #menu #other-menu ul .calculator {
  position: relative;
  margin: 0;
}
#top.mobile #menu #other-menu ul .calculator a {
  color: #bbc4cb;
  border-radius: 13px;
  margin: 0;
  background: none;
  box-shadow: none;
}
#top.mobile #menu #other-menu ul .calculator a:hover {
  box-shadow: none;
  background: none;
  color: #586d7f;
}
#top.mobile #menu #other-menu ul .calculator:hover {
  box-shadow: none;
  background: none;
  color: #586d7f;
}
#top.mobile #menu #other-menu ul .calculator:focus, #top.mobile #menu #other-menu ul .calculator:active {
  box-shadow: none;
}
#top.mobile #menu #other-menu ul .calculator:focus:after, #top.mobile #menu #other-menu ul .calculator:active:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 7px 9px 13px 0px rgba(20, 10, 106, 0.4) inset, -3px -3px 13px 0px rgb(138, 127, 207) inset;
  z-index: -1;
}
#top.mobile #menu #other-menu ul .lang {
  position: absolute;
  top: 60px;
}
#top.mobile #menu #other-menu ul .lang li a {
  padding: 10px 30px;
  margin-left: 0;
}
#top.mobile #menu #other-menu ul li {
  position: relative;
}
#top.mobile #menu #other-menu ul li a {
  display: inline-block;
  position: relative;
}
#top.mobile #menu #other-menu ul li .arrow-down {
  width: 5px;
  height: 5px;
  border-width: 0 2px 2px 0;
  right: 5px;
  left: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#top.mobile #menu #other-menu ul li ul {
  position: fixed;
  right: -320px;
  height: 100%;
  top: 0;
  width: 320px;
  z-index: 2;
  background: #dbe2e8;
  display: block;
  transition: all 0.3s ease-in 0.3s;
  padding: 80px 15px 0;
}
#top.mobile #menu #other-menu ul li ul li {
  text-align: left;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
#top.mobile #menu #other-menu ul li ul li:hover {
  background: #dbe2e8;
}
#top.mobile #menu #other-menu ul li ul li a {
  position: relative;
  text-align: left;
  padding: 10px 30px;
  margin-left: 0;
  color: #bbc4cb;
  background-color: unset;
}
#top.mobile #menu #other-menu ul li ul li:hover a {
  text-decoration: none;
}
#top.mobile #menu #other-menu ul li ul .back {
  color: #586d7f;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
#top.mobile #menu #other-menu ul li ul .back:before {
  content: "";
  width: 1px;
  height: 1px;
  border: solid #586d7f;
  border-width: 0 2px 2px 0;
  padding: 3px;
  position: absolute;
  bottom: 0;
  top: -1px;
  left: 11px;
  margin: auto;
  z-index: 1;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
#top.mobile #menu #other-menu ul li ul.open {
  right: 0;
}

/* CSS Document */
/* Header */
/* HEADER */
#header {
  padding-top: 150px;
}

/* HEADER END */
/* CSS Document */
#video-site-wrapper.home {
  min-height: 100%;
}
#video-site-wrapper.home #header {
  min-height: 1200px;
}
#video-site-wrapper.home #video-wrapper #video {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 90%;
  z-index: -100;
  background-size: cover;
  margin-right: var(--additional-space);
  -webkit-mask-image: linear-gradient(to right, transparent 2%, black 28%), linear-gradient(to bottom, transparent 2%, black 28%);
  mask-image: linear-gradient(to right, transparent 2%, black 28%), linear-gradient(to bottom, transparent 2%, black 28%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
#video-site-wrapper.home h1 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-family: HelveticaNeue, Helvetica, sans-serif;
  font-size: 8vmin;
  text-align: center;
  color: white;
}
#video-site-wrapper.home .content-wrapper--short {
  width: 500px;
  margin-left: 5%;
}
#video-site-wrapper.home .desc-title {
  padding-top: 60px;
}
#video-site-wrapper.home .content-wrapper {
  font-size: 20px;
  font-weight: 700;
  padding-top: 15vh;
}
#video-site-wrapper.home .content-wrapper .desc {
  font-size: 16px;
  line-height: 24px;
  color: #586d7f;
  font-weight: 500;
}
#video-site-wrapper.home .content-wrapper .btn-wrapper {
  margin-top: 60px;
}
#video-site-wrapper.home .content-wrapper ul {
  margin: 50px 0;
  padding-left: 20px;
}
#video-site-wrapper.home .content-wrapper ul li {
  margin: 15px 0;
  line-height: 1.4;
}
#video-site-wrapper.home .content-wrapper .item-wrapper {
  text-align: left;
}
#video-site-wrapper.home .content-wrapper .item-wrapper .item {
  display: inline-block;
  width: 150px;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #342576;
  font-weight: 700;
}
#video-site-wrapper.home .content-wrapper .item-wrapper .item .image-wrapper {
  margin: 0 auto 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#video-site-wrapper.home .content-wrapper .item-wrapper .item p {
  max-width: 80%;
  margin: 0 auto;
}
#video-site-wrapper.home .content-wrapper .item-wrapper .item:hover .circle {
  box-shadow: 7px 9px 13px 0px rgba(131, 148, 163, 0.19) inset, -8px -9px 13px 0px rgba(255, 255, 255, 0.69) inset, 4px 3px 10px 0px rgba(131, 148, 163, 0.23), -4px -3px 10px 0px rgb(255, 255, 255);
}
#video-site-wrapper.home .content-wrapper .circle {
  width: 120px;
  height: 120px;
}
#video-site-wrapper.home .btn {
  min-width: 220px;
}
#video-site-wrapper.home .desc-wrapper {
  height: 1200px;
}
#video-site-wrapper.home .rectangle-item-wrapper {
  margin-top: 60px;
}
#video-site-wrapper.home .rectangle-item-wrapper .item {
  height: 1000px;
  margin-bottom: 50px;
}
#video-site-wrapper.home .rectangle-item-wrapper .item .image-wrapper {
  width: 350px;
  height: 430px;
  padding: 0;
  text-align: center;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center top 150px;
  background-size: 100%;
}
#video-site-wrapper.home #section-2 .content-wrapper .item-wrapper .item .image-wrapper {
  background-size: 60%;
}
#video-site-wrapper.home #section-3 .item .btn {
  width: 100%;
  max-width: 350px;
}
#video-site-wrapper.home #section-4 {
  max-width: 1920px;
  margin: 0 auto;
}
#video-site-wrapper.home #section-4 .container-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
#video-site-wrapper.home #section-4 .section-title {
  position: absolute;
  top: 200px;
  max-width: 1280px;
  width: 90%;
  margin: auto;
  left: 0;
  right: 0;
}
#video-site-wrapper.home #section-4 .space-holder {
  position: relative;
  width: 100%;
}
#video-site-wrapper.home #section-4 .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
#video-site-wrapper.home #section-4 .horizontal {
  position: absolute;
  top: 300px;
  will-change: transform;
}
#video-site-wrapper.home #section-4 .cards {
  position: relative;
  height: 100%;
  padding: 0 0 0 150px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
#video-site-wrapper.home #section-4 .sample-card {
  position: relative;
  height: 420px;
  width: 500px;
  background-color: #e3e9ee;
  margin-right: 75px;
  flex-shrink: 0;
  padding: 30px 30px 50px 30px;
}
#video-site-wrapper.home #section-4 .content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  height: 320px;
  overflow: hidden;
}
#video-site-wrapper.home #section-4 .author {
  font-size: 10px;
  line-height: 1.4;
  width: 90%;
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

#section-1 .content-wrapper .desc-wrapper .desc .btn-wrapper a {
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
#section-1 .content-wrapper .desc-wrapper .desc .btn-wrapper a:last-child {
  margin-right: 0;
  min-width: 190px;
}

/* CSS Document */
#header.welfare {
  max-height: 950px;
  height: 100%;
  min-height: 600px;
}
#header.welfare .content-wrapper {
  padding-top: 20vh;
  max-width: 48%;
}
#header.welfare .header-title span {
  max-width: 530px;
  font-size: 16px;
  line-height: 24px;
}
#header.welfare .image {
  max-width: 50%;
  width: 600px;
  height: 569px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.welfare .section-title {
  max-width: 600px;
  z-index: 1;
  padding-bottom: 65px;
}

#section-1.welfare {
  padding-bottom: 200px;
}
#section-1.welfare p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
}
#section-1.welfare em {
  font-weight: 500;
}
#section-1.welfare ul, #section-1.welfare ol {
  margin: 30px 0;
  padding-left: 20px;
}
#section-1.welfare ul li, #section-1.welfare ol li {
  margin: 25px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
#section-1.welfare .box:nth-child(1) {
  float: left;
  width: 40%;
  max-width: 380px;
}
#section-1.welfare .box:nth-child(2) {
  float: right;
  width: 50%;
  font-size: 14px;
  color: #bbc4cb;
  line-height: 22px;
  font-weight: 700;
  padding-top: 30px;
}
#section-1.welfare .box:nth-child(2) ul, #section-1.welfare .box:nth-child(2) ol {
  margin: 0 0 30px;
}
#section-1.welfare .box:nth-child(2) ul li, #section-1.welfare .box:nth-child(2) ol li {
  font-size: 14px;
  color: #bbc4cb;
  margin: 0;
}

#section-2.welfare .title-desc {
  display: none;
}
#section-2.welfare p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
}
#section-2.welfare ul, #section-2.welfare ol {
  margin: 30px 0 0;
  padding-left: 20px;
}
#section-2.welfare ul li, #section-2.welfare ol li {
  margin: 25px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding-right: 40px;
  position: relative;
}
#section-2.welfare ul li:hover, #section-2.welfare ol li:hover {
  color: #4229b3;
}
#section-2.welfare ul li:last-child, #section-2.welfare ol li:last-child {
  margin-bottom: 0;
}
#section-2.welfare ul li .checkbox, #section-2.welfare ol li .checkbox {
  right: 0;
  top: 0;
  position: absolute;
}
#section-2.welfare .rectangle {
  width: 40%;
  max-width: 600px;
}
#section-2.welfare .item-wrapper {
  transition: all 0.5s ease-in;
  position: relative;
  width: 50%;
  left: 50%;
  box-sizing: border-box;
}
#section-2.welfare .item-wrapper .item .image-sticky-wrapper {
  height: 1500px;
}
#section-2.welfare .item-wrapper .item .text-sticky-wrapper {
  height: 2000px;
}
#section-2.welfare .item-wrapper .item .image-wrapper {
  height: 500px;
  width: 100%;
  border-top-left-radius: 250px;
  border-bottom-left-radius: 250px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: sticky;
}
#section-2.welfare .item-wrapper .item .image-wrapper span {
  display: block;
  height: 60px;
  font-size: 100px;
  font-weight: 700;
  line-height: 60px;
  color: #e2e8ed;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  text-shadow: 6px 5px 40px rgba(131, 148, 163, 0.74);
}
#section-2.welfare .item-wrapper .item .text-wrapper {
  max-width: 650px;
  position: sticky;
}
#section-2.welfare .item-wrapper .item .text-wrapper span {
  display: none;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 10px;
}

/* CSS Document */
/* Header */
#header.birds {
  max-height: 950px;
  height: 100%;
  min-height: 600px;
}
#header.birds .content-wrapper {
  padding-top: 20vh;
  padding-left: 60%;
}
#header.birds .header-title span {
  max-width: 530px;
  font-size: 30px;
  line-height: 36px;
}
#header.birds .image {
  max-width: 55%;
  width: 1000px;
  height: 674px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

/* END Header */
#section-1.birds {
  min-height: 1000px;
  padding-top: 100px;
}

.birds {
  margin-bottom: 50px;
}
.birds p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 25px;
}
.birds em {
  font-weight: 500;
}
.birds .sidebar {
  width: 35%;
  max-width: 500px;
  position: absolute;
  top: 0;
  left: 0;
}
.birds .sidebar .rectangle {
  padding: 50px 30px;
}
.birds .sidebar .menu {
  margin-bottom: 200px;
}
.birds .sidebar ul, .birds .sidebar ol {
  margin: 0;
  list-style: none;
}
.birds .sidebar ul li, .birds .sidebar ol li {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #bbc4cb;
}
.birds .sidebar ul li:hover a, .birds .sidebar ol li:hover a {
  color: #342576;
}
.birds .sidebar .item-wrapper {
  width: 220px;
}
.birds .sidebar .item-wrapper .item {
  margin-top: 50px;
}
.birds .sidebar .item-wrapper .item .image-wrapper {
  width: 150px;
  height: 150px;
  margin: 30px auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 2;
}
.birds .sidebar .item-wrapper .btn {
  position: relative;
  z-index: 1;
  min-width: 100%;
}
.birds .section-content-wrapper {
  padding-left: 40%;
}
.birds .section-content-wrapper h1, .birds .section-content-wrapper h2, .birds .section-content-wrapper h3, .birds .section-content-wrapper h4, .birds .section-content-wrapper h5, .birds .section-content-wrapper h6 {
  display: block;
  color: #342576;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin: 110px 0 25px;
}
.birds .section-content-wrapper h1:first-child, .birds .section-content-wrapper h2:first-child, .birds .section-content-wrapper h3:first-child, .birds .section-content-wrapper h4:first-child, .birds .section-content-wrapper h5:first-child, .birds .section-content-wrapper h6:first-child {
  margin-top: 0;
}
.birds .section-content-wrapper ul {
  list-style: disc;
  margin-bottom: 55px;
  padding-left: 20px;
}
.birds .section-content-wrapper ul li {
  line-height: 24px;
}
.birds .section-content-wrapper .text-wrapper {
  max-width: 800px;
}
.birds .section-content-wrapper img.right {
  display: block;
  float: right;
  width: 30%;
  height: auto;
  margin: 20px 0 20px 5%;
}
.birds .section-content-wrapper img.normal {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 20px 0 20px 0;
}
.birds .section-content-wrapper .btn {
  margin-top: 40px;
}

/* CSS Document */
/* Header */
#header.technology {
  max-height: 950px;
  height: 100%;
  min-height: 600px;
}
#header.technology .content-wrapper {
  padding-top: 20vh;
  padding-left: 60%;
}
#header.technology .header-title span {
  max-width: 530px;
  font-size: 30px;
  line-height: 36px;
}

/* END Header */
#section-1.technology {
  position: relative;
}
#section-1.technology .image.no-fixed {
  position: absolute;
  bottom: -50px;
}
#section-1.technology .image {
  max-width: 50%;
  width: 1000px;
  height: 674px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: fixed;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
#section-1.technology .image .lupe {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 5%;
  left: 25%;
  margin: auto;
  width: 370px;
  height: 370px;
  max-width: 30%;
  transition: all 0.3s ease-in;
}
#section-1.technology .image .lupe-1.visible, #section-1.technology .image .lupe-2.visible {
  opacity: 1;
}
#section-1.technology .image .lupe-1 {
  z-index: 1;
  opacity: 0;
}
#section-1.technology .image .lupe-2 {
  z-index: 2;
  opacity: 0;
}
#section-1.technology .section-title {
  margin-bottom: 30px;
}
#section-1.technology .item-wrapper {
  padding-top: 100px;
  width: 500px;
  margin: 0 0 0 auto;
  min-height: 2000px;
  max-width: 45%;
}
#section-1.technology .item-wrapper .item {
  padding-top: 20vh;
}

.technology {
  margin-bottom: 50px;
}
.technology p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 25px;
}
.technology em {
  font-weight: 500;
}

/* Technology */
#section-2.technology {
  height: 600px;
  position: relative;
  margin-bottom: -160px;
  z-index: 1;
}
#section-2.technology .nk-awb {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* CSS Document */
/* Header */
#header.mites {
  padding-bottom: 150px;
}
#header.mites .content-wrapper {
  padding-top: 20vh;
}

/* END Header */
.mites {
  margin-bottom: 50px;
}
.mites .sidebar {
  width: 35%;
  max-width: 500px;
  position: absolute;
  top: 0;
  left: 0;
}
.mites .sidebar .rectangle {
  padding: 50px 30px;
}
.mites .sidebar ul, .mites .sidebar ol {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.mites .sidebar ul li, .mites .sidebar ol li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-style: italic;
}
.mites .sidebar ul li span, .mites .sidebar ol li span {
  font-weight: 700;
  width: 120px;
  display: inline-block;
  font-style: normal;
}
.mites .sidebar .item-wrapper {
  width: 220px;
}
.mites .sidebar .item-wrapper .item {
  margin-top: 50px;
}
.mites .sidebar .item-wrapper .item .image-wrapper {
  width: 150px;
  height: 150px;
  margin: 30px auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 2;
}
.mites .sidebar .item-wrapper .btn {
  position: relative;
  z-index: 1;
  min-width: 100%;
}
.mites .section-content-wrapper {
  padding-left: 40%;
}
.mites .section-content-wrapper .section-title {
  margin-bottom: 25px;
}
.mites .section-content-wrapper .text-wrapper p {
  margin-bottom: 25px;
}
.mites .section-content-wrapper .text-wrapper--short {
  padding-right: 400px;
  position: relative;
  min-height: 350px;
}
.mites .section-content-wrapper .image-wrapper {
  display: block;
  width: 350px;
  height: 350px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.mites .section-content-wrapper .btn {
  margin-top: 40px;
}
.mites .rectangle {
  padding: 40px;
}
.mites p {
  line-height: 24px;
  font-size: 16px;
}
.mites em {
  font-weight: 500;
}

/* Section 1 */
#section-2.mites {
  min-height: 600px;
}

/* CSS Document */
/* Header */
#header.use {
  max-height: 950px;
  height: 100%;
  min-height: 600px;
}
#header.use .content-wrapper {
  padding-top: 20vh;
  max-width: 28%;
}
#header.use .header-title span {
  max-width: 530px;
  font-size: 30px;
  line-height: 32px;
}
#header.use .image {
  max-width: 70%;
  width: 840px;
  height: 583px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

/* END Header */
#section-1.use {
  min-height: 1000px;
  padding-top: 100px;
}

/* USE General style */
.use {
  margin-bottom: 50px;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 25px;
  /* sidebar */
  /* END Sidebar */
}
.use em {
  font-weight: 500;
}
.use .sidebar {
  width: 35%;
  max-width: 500px;
  position: absolute;
  top: 0;
  left: 0;
}
.use .sidebar .rectangle {
  padding: 50px 30px;
}
.use .sidebar .menu {
  margin-bottom: 50px;
}
.use .sidebar ul, .use .sidebar ol {
  margin: 0;
  list-style: none;
}
.use .sidebar ul li, .use .sidebar ol li {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #bbc4cb;
}
.use .sidebar ul li:hover a, .use .sidebar ol li:hover a {
  color: #342576;
}
.use .sidebar .item-wrapper {
  width: 220px;
}
.use .sidebar .item-wrapper .section-title {
  margin-bottom: 50px;
}
.use .sidebar .item-wrapper .item {
  margin-top: 25px;
}
.use .sidebar .item-wrapper .item .image-wrapper {
  width: 150px;
  height: 150px;
  margin: 30px auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 2;
}
.use .sidebar .item-wrapper .btn {
  position: relative;
  z-index: 1;
  min-width: 100%;
}
.use .section-content-wrapper {
  padding-left: 40%;
  /* BOX */
  /* END BOX */
  /* Treatment */
  /* END Treatment */
  /* Equipment */
  /* END Equipment */
  /* Protocol */
  /* END Protocol */
  /* Control */
  /* END Control */
}
.use .section-content-wrapper h1, .use .section-content-wrapper h2, .use .section-content-wrapper h3, .use .section-content-wrapper h4, .use .section-content-wrapper h5, .use .section-content-wrapper h6 {
  display: block;
  color: #342576;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin: 110px 0 25px;
}
.use .section-content-wrapper h1:first-child, .use .section-content-wrapper h2:first-child, .use .section-content-wrapper h3:first-child, .use .section-content-wrapper h4:first-child, .use .section-content-wrapper h5:first-child, .use .section-content-wrapper h6:first-child {
  margin-top: 0;
}
.use .section-content-wrapper ul {
  list-style: disc;
  margin-bottom: 55px;
  padding-left: 20px;
}
.use .section-content-wrapper ul li {
  line-height: 24px;
}
.use .section-content-wrapper ol {
  margin-bottom: 55px;
  padding-left: 20px;
}
.use .section-content-wrapper ol li {
  line-height: 24px;
}
.use .section-content-wrapper .title {
  font-size: 24px;
  line-height: 36px;
  color: #342576;
  font-weight: 700;
}
.use .section-content-wrapper .title h1, .use .section-content-wrapper .title h2, .use .section-content-wrapper .title h3, .use .section-content-wrapper .title h4, .use .section-content-wrapper .title h5, .use .section-content-wrapper .title h6 {
  font-size: inherit;
  line-height: inherit;
}
.use .section-content-wrapper .box {
  margin-bottom: 80px;
}
.use .section-content-wrapper .box .section-title {
  margin-bottom: 50px;
}
.use .section-content-wrapper #box-1 .rectangle {
  width: 100%;
}
.use .section-content-wrapper #box-1 .rectangle ul {
  padding: 0;
  margin: 0;
}
.use .section-content-wrapper #box-1 .rectangle ul li {
  list-style: none;
  font-size: 20px;
  line-height: 28px;
  margin: 15px 0;
}
.use .section-content-wrapper #box-1 .rectangle ul li span {
  display: inline-block;
  width: 350px;
  max-width: 60%;
  font-weight: 700;
}
.use .section-content-wrapper #box-2 .title {
  letter-spacing: 2px;
}
.use .section-content-wrapper #box-2 .item {
  min-height: 300px;
  position: relative;
  margin: 50px 0;
}
.use .section-content-wrapper #box-2 .image-wrapper {
  width: 230px;
  height: 230px;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.use .section-content-wrapper #box-2 .content {
  padding-left: 280px;
}
.use .section-content-wrapper #box-4 .title {
  margin-bottom: 20px;
}
.use .section-content-wrapper #box-4 .circle {
  width: 100px;
  height: 100px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.use .section-content-wrapper #box-4 .image-circle-section {
  color: #4229b3;
  padding: 50px 50px 50px 150px;
  min-height: 150px;
  position: relative;
  margin: 50px 0;
}
.use .section-content-wrapper #box-4 .image-circle-section .circle {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.use .section-content-wrapper #box-4 .image-section {
  padding-right: 450px;
  margin-top: 100px;
  position: relative;
}
.use .section-content-wrapper #box-4 .image-section .image {
  width: 430px;
  position: absolute;
  top: -30px;
  right: 0;
  height: 600px;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.use .section-content-wrapper #box-4 .btn-section {
  position: relative;
  padding-right: 300px;
  margin-bottom: 50px;
}
.use .section-content-wrapper #box-4 .btn-section .btn {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin: 0;
}
.use .section-content-wrapper #box-4 .item-wrapper {
  text-align: center;
  margin: 25px 0 50px;
}
.use .section-content-wrapper #box-4 .item {
  display: inline-block;
  width: 30%;
  margin: 20px 1%;
  min-width: 200px;
  vertical-align: top;
  font-size: 12px;
  line-height: 16px;
}
.use .section-content-wrapper #box-4 .item .circle {
  margin: 0 auto 28px auto;
}
.use .section-content-wrapper #box-6 .title {
  margin-bottom: 40px;
}
.use .section-content-wrapper #box-6 .rectangle {
  margin-bottom: 75px;
}
.use .section-content-wrapper #box-6 ol, .use .section-content-wrapper #box-6 ul {
  margin-bottom: 0;
}
.use .section-content-wrapper #box-6 ol li, .use .section-content-wrapper #box-6 ul li {
  margin-bottom: 20px;
  line-height: 28px;
}
.use .section-content-wrapper #box-6 ol li ul, .use .section-content-wrapper #box-6 ul li ul {
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}
.use .section-content-wrapper #box-6 ol li ul li, .use .section-content-wrapper #box-6 ul li ul li {
  margin-bottom: 5px;
  padding-left: 40px;
  position: relative;
}
.use .section-content-wrapper #box-6 ol li ul li:before, .use .section-content-wrapper #box-6 ul li ul li:before {
  content: "-";
  display: inline-block;
  position: absolute;
  left: 0;
}
.use .section-content-wrapper .text-wrapper {
  max-width: 800px;
}
.use .section-content-wrapper .btn {
  margin-top: 40px;
}

/* END USE General style */
/* END Section-2*/
/* CSS Document */
#header.faq .side-wrapper {
  max-width: 1200px;
  padding-bottom: 120px;
}
#header.faq .content-wrapper {
  padding-top: 20vh;
}
#header.faq .image {
  width: 684px;
  height: 394px;
  max-width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: -1;
}

#section-1.faq {
  font-size: 16px;
  line-height: 24px;
}
#section-1.faq .side-wrapper {
  max-width: 1200px;
}
#section-1.faq .item-wrapper .item {
  margin-bottom: 55px;
}
#section-1.faq .item-wrapper .item.active .faq-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 110px;
}
#section-1.faq .item-wrapper .faq-title {
  cursor: pointer;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  width: 100%;
}
#section-1.faq .item-wrapper .faq-content {
  margin-top: -50px;
  display: none;
  position: relative;
  z-index: 2;
  width: 100%;
}
#section-1.faq .item-wrapper .faq-content p {
  margin-bottom: 25px;
}

/* CSS Document */
/* HEADER */
#header.error-site {
  min-height: 950px;
}
#header.error-site .content-wrapper {
  padding-top: 20vh;
}
#header.error-site .image {
  width: 776px;
  height: 950px;
  max-width: 80%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: -1;
}

/* HEADER END */
/* CSS Document */
/* Header */
#header.calculator {
  padding-bottom: 150px;
}
#header.calculator .content-wrapper {
  padding-top: 20vh;
}

/* END Header */
/* Section-1 */
button {
  border: 0;
}

#result.visible {
  display: block;
}

.error-message {
  display: none;
  color: #ed1324;
  line-height: 1.2;
  font-size: 12px;
  max-width: 100px;
  font-weight: 500;
  margin-top: 10px;
  position: absolute;
}

#result {
  position: relative;
  margin-bottom: 100px;
  display: none;
}
#result .result-content {
  max-width: 800px;
  width: 65%;
}
#result .image {
  position: absolute;
  width: 30%;
  right: 0;
  bottom: 0;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
#result span {
  display: inline-block;
  width: 44%;
  vertical-align: top;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #342576;
  margin-right: 5%;
}
#result span span {
  display: inline-block;
  width: auto;
  font-size: 46px;
  color: #4229b3;
  vertical-align: baseline;
}
#result button {
  display: block;
  margin-top: 50px;
}

#data-input.unvisible {
  display: none;
}

#data-input.calculator {
  /* Size wrapper */
  /* END Size wrapper */
  /* Data input wrapper */
  /* END Data input wrapper */
  /* Buttom wrapper */
  /* END Button wrapper */
}
#data-input.calculator input[type=range] {
  -webkit-appearance: none;
  margin: 40px 0 0;
  width: 100%;
  border-radius: 25px;
}
#data-input.calculator input[type=range]:focus {
  outline: none;
}
#data-input.calculator input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 17px;
  cursor: pointer;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
  background: #e3e9ee;
  border-radius: 25px;
  border: 0px solid #000101;
}
#data-input.calculator input[type=range]::-webkit-slider-thumb {
  box-shadow: 8px 7px 13px 0px rgba(131, 148, 163, 0.14), -5px -4px 8px 0px rgba(255, 255, 255, 0.5);
  border: 0px solid #000000;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  background: #e3e9ee;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}
#data-input.calculator input[type=range]:focus::-webkit-slider-runnable-track {
  background: #e3e9ee;
}
#data-input.calculator input[type=range]::-moz-range-track {
  width: 100%;
  height: 17px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
  background: #e3e9ee;
  border-radius: 25px;
  border: 0px solid #000101;
}
#data-input.calculator input[type=range]::-moz-range-thumb {
  box-shadow: 8px 7px 13px 0px rgba(131, 148, 163, 0.14), -5px -4px 8px 0px rgba(255, 255, 255, 0.5);
  border: 0px solid #000000;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  background: #e3e9ee;
  cursor: pointer;
}
#data-input.calculator input[type=range]::-ms-track {
  width: 100%;
  height: 17px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
#data-input.calculator input[type=range]::-ms-fill-lower {
  background: #e3e9ee;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
}
#data-input.calculator input[type=range]::-ms-fill-upper {
  background: #e3e9ee;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
}
#data-input.calculator input[type=range]::-ms-thumb {
  box-shadow: 8px 7px 13px 0px rgba(131, 148, 163, 0.14), -5px -4px 8px 0px rgba(255, 255, 255, 0.5);
  border: 0px solid #000000;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  background: #e3e9ee;
  cursor: pointer;
}
#data-input.calculator input[type=range]:focus::-ms-fill-lower {
  background: #e3e9ee;
}
#data-input.calculator input[type=range]:focus::-ms-fill-upper {
  background: #e3e9ee;
}
#data-input.calculator input[type=number].warning {
  border: 1px solid #ed1324 !important;
}
#data-input.calculator input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
#data-input.calculator input[type=number]::-webkit-inner-spin-button,
#data-input.calculator input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#data-input.calculator .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #342576;
}
#data-input.calculator label {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #4229b3;
  letter-spacing: 1px;
}
#data-input.calculator .size-wrapper {
  padding-bottom: 90px;
}
#data-input.calculator .size-wrapper label {
  position: absolute;
  max-width: 200px;
}
#data-input.calculator .size-wrapper input {
  border: 0;
  width: 100px;
  height: 28px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 24px;
  color: #4229b3;
  font-weight: 700;
  border-radius: 5px;
  background-color: #e3e9ee;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
  -webkit-appearance: none;
}
#data-input.calculator .size-wrapper input::-moz-placeholder {
  color: #bbc4cb;
}
#data-input.calculator .size-wrapper input::placeholder {
  color: #bbc4cb;
}
#data-input.calculator .size-wrapper #house-width {
  left: 0;
  bottom: 0;
}
#data-input.calculator .size-wrapper #house-length {
  right: 0;
  bottom: 0;
}
#data-input.calculator .size-wrapper #house-height {
  right: -150px;
  bottom: 250px;
}
#data-input.calculator .size-wrapper #cage-width {
  left: 0;
  bottom: -30px;
}
#data-input.calculator .size-wrapper #cage-length {
  right: 0;
  bottom: -30px;
}
#data-input.calculator .size-wrapper #cage-height {
  right: -150px;
  bottom: 200px;
}
#data-input.calculator #house {
  width: 550px;
  height: 521px;
  max-width: 90%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8%;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
#data-input.calculator #cage {
  width: 300px;
  height: 388px;
  max-width: 90%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6%;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
#data-input.calculator .data-wrapper {
  position: relative;
}
#data-input.calculator .data-input-wrapper {
  width: 500px;
}
#data-input.calculator .data-input-wrapper .right-column {
  position: absolute;
  top: -50px;
  left: 550px;
  width: calc(100% - 550px);
}
#data-input.calculator .data-input-wrapper .right-column .image {
  width: 100%;
  max-width: 742px;
  height: 526px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#data-input.calculator .data-input-wrapper .right-column .title {
  margin-top: -50px;
}
#data-input.calculator .data-input-wrapper .title {
  margin: 40px 0 25px;
}
#data-input.calculator .data-input-wrapper .info-message {
  margin: 20px 0;
  display: none;
  color: #ed1324;
  font-weight: 500;
}
#data-input.calculator .data-input-wrapper input[type=number] {
  border: 0;
  width: 100px;
  height: 28px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 24px;
  color: #4229b3;
  font-weight: 700;
  border-radius: 5px;
  background-color: #e3e9ee;
  box-shadow: 3px 3px 10px 0px rgba(131, 148, 163, 0.23) inset, -2px -3px 10px 0px rgba(255, 255, 255, 0.83) inset;
  -webkit-appearance: none;
}
#data-input.calculator .data-input-wrapper .box.cage-surface {
  margin-bottom: 80px;
}
#data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group {
  width: 50%;
  margin-left: 0;
}
#data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group label {
  width: 28%;
}
#data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group label:nth-child(1) {
  text-align: left;
}
#data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group label:nth-child(2) {
  text-align: center;
}
#data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group label:nth-child(3) {
  text-align: right;
}
#data-input.calculator .data-input-wrapper .box.wall-structure .input-range-group {
  width: 100%;
}
#data-input.calculator .data-input-wrapper .box.wall-structure .input-range-group label {
  width: 30%;
}
#data-input.calculator .data-input-wrapper .box.wall-structure .input-range-group input[type=range] {
  margin-top: 60px;
  width: 70%;
  margin-left: 15%;
}
#data-input.calculator .data-input-wrapper .box.row-input .input-group {
  margin-top: 30px;
}
#data-input.calculator .data-input-wrapper .box.row-input label {
  position: absolute;
  top: -26px;
  left: 5px;
}
#data-input.calculator .data-input-wrapper .input-range-group {
  position: relative;
}
#data-input.calculator .data-input-wrapper .input-range-group label:nth-child(1) {
  left: 0;
}
#data-input.calculator .data-input-wrapper .input-range-group label:nth-child(2) {
  left: 35%;
}
#data-input.calculator .data-input-wrapper .input-range-group label:nth-child(3) {
  right: 0;
}
#data-input.calculator .data-input-wrapper .input-range-group label {
  position: absolute;
  text-align: center;
  width: 28%;
}
#data-input.calculator .data-input-wrapper .input-group {
  position: relative;
  width: 100px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 25px;
}
#data-input.calculator .data-input-wrapper .input-group input {
  padding: 0 24px;
  text-align: center;
}
#data-input.calculator .data-input-wrapper .input-group .btn-minus {
  position: absolute;
  width: 0px;
  height: 0px;
  background: none;
  padding: 14px 10px;
  border: none;
  cursor: pointer;
  top: 0;
  left: 0;
}
#data-input.calculator .data-input-wrapper .input-group .btn-minus:after {
  content: "";
  display: block;
  position: absolute;
  padding: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #4229b3;
  cursor: pointer;
  top: 9px;
  left: 7px;
}
#data-input.calculator .data-input-wrapper .input-group .btn-plus {
  position: absolute;
  width: 0px;
  height: 0px;
  background: none;
  padding: 14px 10px;
  border: none;
  cursor: pointer;
  top: 0;
  right: 0;
}
#data-input.calculator .data-input-wrapper .input-group .btn-plus:after {
  content: "";
  display: block;
  position: absolute;
  padding: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #4229b3;
  cursor: pointer;
  top: 9px;
  right: 7px;
}
#data-input.calculator .btn-wrapper {
  padding: 100px 0 50px;
  margin: 0 auto;
  text-align: center;
}
#data-input.calculator .btn-wrapper .btn {
  margin: 10px;
}
#data-input.calculator .btn-wrapper .warning-message {
  display: none;
  color: #ed1324;
}
#data-input.calculator .btn-wrapper .warning-message.visible {
  display: block;
  margin-top: 20px;
}
#data-input.calculator .info-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: none;
}
#data-input.calculator .info-popup .container-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  max-width: 400px;
  width: 80%;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper .text-wrapper {
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper .text-wrapper h4 {
  text-align: center;
  padding-bottom: 10px;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper .text-wrapper span {
  color: #4229b3;
  font-weight: 600;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper .button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#data-input.calculator .info-popup .container-wrapper .data-wrapper .button-wrapper a {
  padding: 13px 20px 12px;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  min-width: 150px;
}

/* CSS Document */
/* Header */
#header.contact {
  padding-bottom: 150px;
}
#header.contact .content-wrapper {
  padding-top: 20vh;
}

/* END Header */
/* Section-1 */
#section-1.contact {
  padding-top: 100px;
}
#section-1.contact .rectangle {
  width: 100%;
}
#section-1.contact .rectangle .section-title span {
  display: block;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 2px;
}
#section-1.contact .rectangle .person-contact {
  margin-top: 40px;
}
#section-1.contact .rectangle .person-contact .item {
  position: relative;
  padding-left: 150px;
  min-height: 170px;
  display: inline-block;
  width: 48%;
  margin-left: 1%;
  vertical-align: top;
  margin-bottom: 50px;
}
#section-1.contact .rectangle .person-contact .item .image {
  position: absolute;
  width: 120px;
  height: 170px;
  left: 0;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#section-1.contact .rectangle .person-contact .item .content {
  letter-spacing: 1px;
  line-height: 24px;
  margin-top: 20px;
}
#section-1.contact .rectangle .person-contact .item .content .position {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0;
}
#section-1.contact .rectangle .person-contact .item .content .name {
  color: #4229b3;
}
#section-1.contact .rectangle .person-contact .item .content .phone:hover,
#section-1.contact .rectangle .person-contact .item .content .mail:hover {
  text-decoration: underline;
  cursor: pointer;
}
#section-1.contact .rectangle .company-address {
  margin-top: 80px;
  position: relative;
}
#section-1.contact .rectangle .company-address .image {
  position: absolute;
  width: 50%;
  height: 170px;
  top: 0;
  right: 0;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#section-1.contact .rectangle .company-address .item-wrapper {
  width: 50%;
  margin-top: 30px;
}
#section-1.contact .rectangle .company-address .item {
  display: inline-block;
  width: 45%;
  margin-right: 4%;
  vertical-align: top;
}
#section-1.contact .rectangle .company-address .item .place {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
#section-1.contact .rectangle .company-address .item address {
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
}

#section-2.contact #map-module {
  margin: 110px auto 0;
  width: 1157px;
  position: relative;
}
#section-2.contact #map-module #map {
  margin: 110px auto 0;
  width: 1157px;
  height: 614px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#section-2.contact #map-module .item .close {
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
}
#section-2.contact #map-module .item .close:before, #section-2.contact #map-module .item .close:after {
  position: absolute;
  left: 17px;
  content: " ";
  height: 17px;
  width: 2px;
  top: 9px;
  background-color: #4229b3;
}
#section-2.contact #map-module .item .close:before {
  transform: rotate(45deg);
}
#section-2.contact #map-module .item .close:after {
  transform: rotate(-45deg);
}
#section-2.contact #map-module .item .point.active:after {
  width: 6px;
  height: 6px;
  background-color: #ed1324;
}
#section-2.contact #map-module .item .point {
  display: block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  position: absolute;
}
#section-2.contact #map-module .item .point span {
  position: absolute;
  display: none;
  bottom: 15px;
  width: 200px;
  text-align: center;
  left: -96px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 10px;
  z-index: 2;
}
#section-2.contact #map-module .item .point .dot {
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #4229b3;
  border-radius: 50%;
  z-index: 1;
}
#section-2.contact #map-module .item .point:hover .dot {
  width: 6px;
  height: 6px;
  background-color: #ed1324;
}
#section-2.contact #map-module .item .point:hover span {
  display: block;
}
#section-2.contact #map-module .item .rectangle.active {
  display: block;
}
#section-2.contact #map-module .item .rectangle {
  display: none;
  width: 390px;
  height: 500px;
  line-height: 24px;
  padding: 30px 40px;
  position: absolute;
  top: 100px;
  right: 0px;
  z-index: 2;
}
#section-2.contact #map-module .item .rectangle .company-wrapper {
  height: calc(95% - 30px);
  overflow-x: visible;
  overflow-y: auto;
}
#section-2.contact #map-module .item .rectangle .company:first-child .name {
  margin-top: 0;
}
#section-2.contact #map-module .item .rectangle .country {
  color: #4229b3;
  margin-bottom: 10px;
  padding-right: 40px;
}
#section-2.contact #map-module .item .rectangle .name {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 16px 0;
}
#section-2.contact #map-module .item .rectangle .name:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #586d7f;
  margin-bottom: 20px;
}
#section-2.contact #map-module .item .rectangle address {
  font-style: normal;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
#section-2.contact #map-module .item .rectangle a:hover {
  cursor: pointer;
  color: #4229b3;
}
#section-2.contact #map-module .item .rectangle .btn {
  display: inline-block;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  margin-right: 20px;
  min-width: 150px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  color: #fff;
  background: #170989;
  background: linear-gradient(128deg, #170989 0%, #1d0da0 100%);
}
#section-2.contact #map-module .item .rectangle .btn:hover {
  text-decoration: none;
  background: #1d0da0;
  background: linear-gradient(128deg, #1d0da0 0%, #170989 100%);
  color: #fff;
}

/** @format */
.cookies {
  margin-top: 240px;
}
.cookies .side-wrapper .inside-wrapper {
  margin: auto;
  height: 100%;
  max-width: 1000px;
  line-height: 1.7;
}
.cookies .side-wrapper .inside-wrapper h3 {
  font-weight: bold;
  text-align: center;
}
.cookies .side-wrapper .inside-wrapper ul {
  padding-left: 35px;
}
.cookies .side-wrapper .inside-wrapper a {
  color: #4229b3;
}
.cookies .side-wrapper .inside-wrapper a:hover {
  text-decoration: underline;
}
.cookies .side-wrapper .inside-wrapper .btn-home {
  color: white;
  padding: 10px 15px;
  text-align: center;
  width: 170px;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  margin: auto;
  margin-top: 50px;
  border-radius: 13px;
}
.cookies .side-wrapper .inside-wrapper .btn-home:hover {
  text-decoration: none;
}

/* CSS Document */
/* Footer */
#footer {
  background-color: #342576;
  color: #fff;
  margin-top: 160px;
  position: relative;
  z-index: 2;
}
#footer .side-wrapper {
  position: relative;
  padding: 140px 0 20px;
}
#footer .side-wrapper:before {
  content: "";
  display: block;
  width: 258px;
  height: 93px;
  background-image: url("../img/background/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  top: -93px;
  right: 0;
}
#footer .side-wrapper .box-wrapper {
  margin-bottom: 100px;
  overflow: hidden;
}
#footer .side-wrapper .box {
  width: 24%;
  float: left;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 22px;
  padding-right: 50px;
  padding-top: 40px;
}
#footer .side-wrapper .box span {
  display: block;
}
#footer .side-wrapper .box .btn {
  margin-top: 30px;
  padding: 15px 15px;
  box-shadow: none !important;
}
#footer .side-wrapper .box .btn:hover {
  box-shadow: none !important;
  text-decoration: none;
}
#footer .side-wrapper .box:nth-child(4) {
  border-left: 2px solid #60539c;
  padding-left: 120px;
  padding-right: 0;
  padding: 60px 0px 60px 120px;
}
#footer .side-wrapper .box:nth-child(4) ul {
  list-style: none;
}
#footer .side-wrapper .box:nth-child(4) ul li {
  margin-bottom: 20px;
}
#footer .side-wrapper .item {
  margin-bottom: 20px;
}
#footer .side-wrapper .box-title {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 16px;
}
#footer .side-wrapper a {
  display: inline-block;
}
#footer .side-wrapper a img {
  display: block;
  width: 204px;
  height: auto;
}
#footer .side-wrapper a:hover {
  text-decoration: underline;
}
#footer .side-wrapper .company-name {
  margin-top: 30px;
}
#footer .side-wrapper address {
  font-style: normal;
}
#footer .side-wrapper #copyright {
  color: #60539c;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/**
 * /* CSS Document
 *
 * @format
 */
/* Responsive */
@media all and (max-width: 1500px) {
  #top #menu #primary-menu ul li a {
    padding: 15px 23px 16px;
  }
  #video-site-wrapper.home #section-4 .sample-card {
    height: 300px;
  }
  #video-site-wrapper.home #section-4 .horizontal {
    top: 270px;
  }
  #video-site-wrapper.home #section-4 .content {
    font-size: 14px;
    line-height: 1.4;
  }
  /* Welfare */
  #section-2.welfare .section-title {
    padding-bottom: 35px;
  }
  #section-2.welfare .rectangle {
    padding: 30px;
  }
  #section-2.welfare .item-wrapper .item .image-wrapper {
    height: 350px;
  }
}
@media all and (max-width: 1250px) {
  #header {
    margin-top: 80px;
    padding-top: 80px;
  }
  #top {
    height: 60px;
  }
  #top #menu {
    right: -320px;
    height: 100%;
  }
  #top #logo {
    width: 100px;
    height: 100%;
    top: 0;
  }
  #top #logo img {
    height: 45px;
    width: auto;
    margin: auto;
  }
  #top {
    top: 0;
  }
  #top .arrow-down {
    transform: rotate(90deg);
  }
  #top #mobile {
    display: block;
  }
  #top #menu-wrapper {
    opacity: 0;
  }
  #top #menu-wrapper.open {
    opacity: 1;
  }
  #top #menu.open {
    right: 0;
  }
  #top #menu {
    display: block;
    position: fixed;
    bottom: auto;
    top: 60px;
    background: #586d7f;
    right: -320px;
    width: 320px;
    overflow: auto;
    z-index: 5;
    transition: all 0.3s ease-in 0.3s;
  }
  #top #menu #primary-menu div > ul > li:hover > a,
  #top #menu #primary-menu div > ul > li.current_page_item > a {
    display: inline-block;
  }
  #top #menu #primary-menu {
    margin-left: 30px;
    padding-top: 60px;
    position: relative;
  }
  #top #menu #primary-menu ul li {
    float: none;
    padding: 0;
    position: static;
  }
  #top #menu #primary-menu ul li ul {
    position: fixed;
    right: -400px;
    height: 100%;
    top: 80px;
    width: 320px;
    z-index: 2;
    background: transparent;
    display: block;
    transition: all 0.3s ease-in 0.3s;
  }
  #top #menu #primary-menu ul li ul .current_page_item {
    background-color: rgba(255, 255, 255, 0);
  }
  #top #menu #primary-menu ul li ul li {
    text-align: left;
    padding-left: 50px;
    width: 100%;
  }
  #top #menu #primary-menu ul li ul li:hover {
    background-color: rgba(255, 255, 255, 0);
  }
  #top #menu #primary-menu ul li ul .back {
    color: #586d7f;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-left: 70px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #top #menu #primary-menu ul li ul .back:hover {
    color: #363e4c;
  }
  #top #menu #primary-menu ul li ul .back:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #586d7f;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 50px;
  }
  #top #menu #primary-menu ul li ul.open {
    right: 0;
  }
  /* Header */
  #header {
    padding-top: 70px;
  }
  #header.contact .content-wrapper {
    padding-top: 0;
  }
  .header-title {
    font-size: 41px;
  }
  .header-title span {
    font-size: 32.5px;
    line-height: 1.4;
  }
  #header.faq .content-wrapper,
  #header.mites .content-wrapper {
    padding-top: 0px;
  }
  /* HOME */
  .home #header .content-wrapper--short {
    padding-top: 50px !important;
  }
  #video-site-wrapper.home .content-wrapper {
    padding-top: 100px;
  }
  #video-site-wrapper.home #header,
  #video-site-wrapper.home .desc-wrapper {
    min-height: auto;
    height: auto;
  }
  #video-site-wrapper.home .rectangle-item-wrapper .item {
    height: auto;
  }
  #video-site-wrapper.home .content-wrapper--short {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
  }
  #video-site-wrapper.home .rectangle-item-wrapper .item .image-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
  }
  #video-site-wrapper.home #section-3 .item .btn {
    width: 100%;
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
  #video-site-wrapper.home .btn {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  #video-site-wrapper.home .content-wrapper ul li {
    font-size: 18px;
  }
  #video-site-wrapper.home .content-wrapper .item-wrapper {
    margin-bottom: 50px;
  }
  /* Calculator */
  #header.calculator .content-wrapper {
    padding-top: 0;
  }
  /* Welfare */
  #header.welfare {
    padding-top: 0;
  }
  #section-1.welfare .box:nth-child(1),
  #section-1.welfare .box:nth-child(2) {
    float: none;
    width: 100%;
  }
  #section-2.welfare .rectangle {
    display: none;
  }
  #section-2.welfare .item-wrapper .item {
    padding: 80px 0 50px;
  }
  #section-2.welfare .item-wrapper .item .image-wrapper {
    border-radius: 50px;
    height: 250px;
  }
  #section-2.welfare .item-wrapper {
    width: 90%;
    max-width: 600px;
    left: 5%;
  }
  #section-2.welfare .item-wrapper .item .image-sticky-wrapper {
    height: auto;
    margin-bottom: 50px;
  }
  #section-2.welfare .item-wrapper .item .text-sticky-wrapper {
    height: auto;
  }
  #section-2.welfare .title-desc {
    display: block;
  }
  #section-2.welfare .item-wrapper .item .text-wrapper span {
    display: block;
  }
  /* Mites */
  #section-1.mites .sidebar {
    margin-bottom: 50px;
  }
  #section-1.mites .sidebar ul li,
  #section-1.mites .sidebar ol li {
    font-size: 16px;
    line-height: 24px;
  }
  #section-1.mites .sidebar .rectangle {
    width: 100%;
    max-width: 500px;
  }
  #section-2.mites .sidebar {
    margin-top: 50px;
  }
  #section-2.mites .sidebar .item-wrapper {
    width: 100%;
  }
  #section-2.mites .sidebar .item {
    display: inline-block;
    width: 220px;
    margin-right: 20px;
  }
  .mites .section-content-wrapper {
    padding-left: 0;
    max-width: 850px;
  }
  .mites .sidebar {
    width: 100%;
    position: static;
  }
  /* Technology */
  #section-1.technology .item-wrapper {
    min-height: auto;
    padding-top: 50px;
  }
  #section-1.technology .item-wrapper .item {
    padding-top: 0;
  }
  #section-1.technology .image .lupe {
    top: 22%;
  }
  /* USE */
  .use .section-content-wrapper #box-4 .image-section .image {
    position: static;
    background-position: center;
    height: 400px;
    margin-top: 50px;
    max-width: 100%;
  }
  .use .section-content-wrapper #box-4 .image-section {
    padding-right: 0;
  }
  /* Calculator */
  #data-input.calculator #house {
    display: block;
    margin: 0 auto 100px;
    max-width: 100%;
    width: 400px;
    height: 480px;
  }
  #data-input.calculator #cage {
    display: block;
    margin: 0 auto;
  }
  #data-input.calculator .data-input-wrapper .right-column {
    position: static;
    left: 0;
    top: 0;
    width: 90%;
    margin: 0 auto;
    max-width: 742px;
  }
  #data-input.calculator .data-input-wrapper .right-column .image {
    height: 450px;
  }
  #data-input.calculator .data-input-wrapper {
    margin: 0 auto;
  }
  /* FAQ */
  #section-1.faq {
    padding-top: 80px;
  }
  #header.faq .image {
    bottom: -80px;
  }
  #section-1.faq .item-wrapper .item {
    margin-bottom: 35px;
  }
  #section-1.faq .item-wrapper .item .faq-title {
    font-size: 16px;
  }
  #section-1.faq .item-wrapper .item .faq-content {
    font-size: 14px;
  }
  /* Contact */
  #section-1.contact .rectangle .person-contact .item {
    width: 100%;
    margin: 20px auto;
  }
  #section-1.contact .rectangle .company-address .item {
    width: 100%;
    margin: 20px auto;
  }
  #section-1.contact .rectangle .company-address .image {
    bottom: 0;
    margin: auto;
  }
  #section-1.contact .rectangle {
    overflow: auto;
    padding: 30px;
  }
  /* Contact - map */
  #section-2.contact #map-module #map {
    display: none;
  }
  #section-2.contact #map-module {
    width: 100%;
  }
  #section-2.contact #map-module .contact-wrapper {
    text-align: center;
  }
  #section-2.contact #map-module .item {
    width: 350px;
    height: 500px;
    max-width: 90%;
    height: auto;
    margin: 20px;
    vertical-align: top;
    display: inline-block;
  }
  #section-2.contact #map-module .item .close {
    display: none;
  }
  #section-2.contact #map-module .item .point .dot {
    display: none;
  }
  #section-2.contact #map-module .item .rectangle {
    display: block;
    position: static;
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }
  /* Footer */
  #footer .side-wrapper {
    padding-top: 80px;
  }
  #footer .side-wrapper .box-wrapper {
    margin-bottom: 0;
  }
  #footer .side-wrapper .box {
    width: 33.33%;
    padding-top: 0;
  }
  #footer .side-wrapper .box:nth-child(4) {
    float: left;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #60539c;
    clear: both;
    margin-top: 50px;
    padding: 30px 0;
    width: 100%;
  }
  .cookies {
    margin-top: 130px;
  }
}
@media all and (max-width: 1000px) {
  /* HOME */
  #video-site-wrapper.home #video-wrapper #video {
    display: none;
  }
  /* USE */
  .use .section-content-wrapper #box-2 .content {
    padding-left: 0;
  }
  .use .section-content-wrapper #box-2 .image-wrapper {
    position: static;
    margin-bottom: 50px;
  }
  .use .section-content-wrapper #box-1 .rectangle,
  .use .section-content-wrapper #box-6 .rectangle {
    padding: 30px;
  }
  /* Technology */
  #header.technology {
    height: auto;
    min-height: auto;
  }
  #header.technology .content-wrapper {
    padding-top: 0;
    padding-left: 0;
  }
  #section-1.technology .image {
    position: static;
    max-width: 80%;
    display: none;
  }
  #section-1.technology .item-wrapper {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
  }
  #section-2.technology {
    height: 400px;
  }
  /* Calculator */
  #result .image {
    display: none;
  }
  #result .result-content {
    width: 100%;
    max-width: 100%;
  }
  #result span {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    margin-bottom: 40px;
  }
  #result span span {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 760px) {
  /* Header */
  .header-title {
    font-size: 35px;
  }
  .header-title span {
    font-size: 25px;
    line-height: 32px;
  }
  .section-title {
    font-size: 25px;
    line-height: 1.4;
  }
  /* Birds */
  #header.birds {
    min-height: 0;
    height: 100%;
  }
  #header.birds .image {
    position: static;
    margin: 0 auto;
    height: 300px;
    max-width: 600px;
    width: 80%;
  }
  #header.birds .content-wrapper {
    padding-top: 20px;
    width: 100%;
    max-width: 600px;
    padding-left: 0;
  }
  .birds .section-content-wrapper {
    padding-left: 0;
    max-width: 850px;
  }
  #section-1.birds {
    padding-top: 20px;
  }
  .birds .sidebar {
    position: static;
    width: 100%;
    max-width: 850px;
  }
  .birds .sidebar .menu {
    display: none;
  }
  .birds .sidebar .item-wrapper {
    width: 100%;
  }
  .birds .sidebar .item-wrapper .item {
    display: inline-block;
    width: 220px;
    margin-right: 20px;
  }
  /* Protocole */
  #header.use {
    min-height: 0;
    height: 100%;
  }
  #header.use .image {
    position: static;
    margin: 0 auto;
    height: 300px;
    max-width: 600px;
    width: 80%;
  }
  #header.use .content-wrapper {
    padding-top: 20px;
    width: 100%;
    max-width: 600px;
  }
  #section-1.use {
    padding-top: 20px;
  }
  .use .section-content-wrapper {
    padding-left: 0;
    width: 100%;
    max-width: 850px;
  }
  .use .sidebar {
    position: static;
    width: 100%;
    max-width: 850px;
  }
  .use .sidebar .menu {
    display: none;
  }
  .use .sidebar .item-wrapper {
    width: 100%;
  }
  .use .sidebar .item-wrapper .item {
    display: inline-block;
    width: 220px;
    margin-right: 20px;
  }
  /* Welfare */
  #header.welfare {
    min-height: 0;
    height: 100%;
  }
  #header.welfare .image {
    position: static;
    margin: 0 auto;
    height: 300px;
    max-width: 600px;
    width: 80%;
  }
  #header.welfare .content-wrapper {
    padding-top: 20px;
    width: 100%;
    max-width: 600px;
  }
  #section-1.welfare {
    padding-bottom: 100px;
    padding-top: 50px;
  }
  #section-1.welfare .rectangle {
    padding: 30px;
  }
  /* Mites */
  .mites .section-content-wrapper .image-wrapper {
    position: static;
  }
  .mites .section-content-wrapper .text-wrapper--short {
    padding-right: 0;
  }
  /* Calculator */
  #data-input.calculator .size-wrapper {
    padding-bottom: 30px;
  }
  #data-input.calculator .data-input-wrapper {
    width: 100%;
    max-width: 500px;
  }
  #data-input .error-message {
    position: static;
  }
  #data-input.calculator #house {
    width: 90%;
    max-width: 400px;
    height: auto;
    background-position: center top;
  }
  #data-input.calculator #cage {
    width: 90%;
    max-width: 400px;
    height: auto;
    background-size: 80% auto;
    background-position: center top;
  }
  #data-input.calculator .size-wrapper .title {
    margin-bottom: 350px;
  }
  #data-input.calculator .size-wrapper label {
    position: static;
    margin: 0 15px 20px;
    display: inline-block;
  }
  /* Contact */
  #section-2.contact #map-module {
    margin-top: 50px;
  }
  #section-1.contact .rectangle .person-contact .item {
    padding-top: 170px;
    padding-left: 0;
  }
  #section-1.contact .rectangle .person-contact .item .image {
    top: 0;
  }
  #section-1.contact .rectangle .company-address .image {
    position: static;
    width: 500px;
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
    height: 140px;
  }
}
@media all and (max-width: 700px) {
  /* FAQ */
  #footer .side-wrapper .box {
    float: none;
    width: 100%;
    margin-bottom: 50px;
  }
}
@media all and (max-width: 600px) {
  /* Home */
  #video-site-wrapper.home .content-wrapper .item-wrapper .item {
    width: 30%;
    min-width: 120px;
    margin-bottom: 20px;
    margin: 0 1%;
  }
  #video-site-wrapper.home .content-wrapper .circle {
    width: 80px;
    height: 80px;
    padding: 40px;
  }
  #video-site-wrapper.home .content-wrapper .item-wrapper .item {
    min-width: 80px;
    font-size: 14px;
    line-height: 22px;
  }
  #video-site-wrapper.home #section-4 .sample-card {
    width: 350px;
    height: 400px;
  }
  /* Calculator */
  #data-input.calculator .data-input-wrapper .box.cage-surface .input-range-group {
    width: 100%;
  }
  #data-input.calculator .data-input-wrapper .box.wall-structure .input-range-group label {
    font-size: 10px;
  }
  #data-input.calculator .data-input-wrapper .box.wall-structure .input-range-group input[type=range] {
    width: 100%;
    margin-left: 0;
  }
  #data-input.calculator .data-input-wrapper .right-column .image {
    height: 320px;
  }
  #result span {
    font-size: 20px;
  }
  #result span span {
    font-size: 36.5px;
  }
  #result button {
    margin-top: 30px;
  }
  /* FAQ */
  #section-1.faq .item-wrapper .item .rectangle {
    padding: 35px;
  }
  #section-1.faq .item-wrapper .item.active .faq-title {
    padding-bottom: 80px;
  }
  #section-1.faq .item-wrapper .item .faq-title,
  #section-1.faq .item-wrapper .item .faq-content {
    font-size: 14px;
    line-height: 22px;
  }
}
@media all and (max-width: 400px) {
  .cookies .side-wrapper .inside-wrapper ul {
    padding-left: 20px;
  }
  #data-input.calculator .size-wrapper .title {
    margin-bottom: 300px;
  }
  #data-input.calculator #house,
  #data-input.calculator #cage {
    background-position: center top 50px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */