/* #region VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;700&display=swap");
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}
.absolute.top {
  top: 0;
}
.absolute.bottom {
  bottom: 0;
}
.absolute.left {
  left: 0;
}
.absolute.right {
  right: 0;
}

.flex {
  display: flex;
}
.flex.align_center {
  align-items: center;
}
.flex.align_start {
  align-items: flex-start;
}
.flex.align_end {
  align-items: flex-end;
}
.flex.justify_start {
  justify-content: flex-start;
}
.flex.justify_center {
  justify-content: center;
}
.flex.justify_end {
  justify-content: flex-end;
}
.flex.space_between {
  justify-content: space-between;
}
.flex.space_evenly {
  justify-content: space-evenly;
}

.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_column.align_center {
  align-items: center;
}
.flex_column.align_start {
  align-items: flex-start;
}
.flex_column.align_end {
  align-items: flex-end;
}
.flex_column.justify_start {
  justify-content: flex-start;
}
.flex_column.justify_center {
  justify-content: center;
}
.flex_column.justify_end {
  justify-content: flex-end;
}
.flex_column.space_between {
  justify-content: space-between;
}
.flex_column.space_evenly {
  justify-content: space-evenly;
}

.overflow {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.pointer {
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button {
  border: none;
  background: transparent;
}

.line {
  display: block;
}
.line.vertical {
  width: 1px;
}
.line.vertical.strong {
  width: 2px;
}
.line.horizontal {
  height: 1px;
}
.line.horizontal.strong {
  height: 2px;
}

/* #endregion */
/* #region GLOBALS */
* {
  position: relative;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  overflow: hidden auto;
  padding: 2.5em 2.5em 0 2.5em;
  background-color: #C2C2C2;
}
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  body.fixed_body {
    position: fixed;
    overflow: hidden;
  }
}

h2.small {
  color: #373737;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
h2.big {
  color: #373737;
  font-size: 3.75em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.16em;
  text-align: center;
}
@media (max-width: 800px) {
  h2.small {
    font-size: 2em;
  }
  h2.big {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  h2.small {
    font-size: 2em;
  }
  h2.big {
    font-size: 2.5em;
  }
}

p {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
}

span {
  display: block;
}

input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  border: none;
}

section.subpage {
  min-height: 100vh;
}

.fancybox-navigation .fancybox-button {
  top: calc(50vh - 50px) !important;
}

.btn {
  width: fit-content;
  height: fit-content;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.7em 1em;
  min-width: 140px;
}
.btn span {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.28em;
  text-align: center;
  z-index: 5;
}
.btn.black {
  background: #373737;
  box-shadow: 0 6px 10px 0 rgba(41, 42, 43, 0.15);
  background: -moz-linear-gradient(-45deg, #373737 0%, #373737 40%, #ffffff 50%, #373737 60%, #373737 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #373737), color-stop(40%, #373737), color-stop(50%, #ffffff), color-stop(60%, #373737), color-stop(100%, #373737));
  background: -webkit-linear-gradient(-45deg, #373737 0%, #373737 40%, #ffffff 50%, #373737 60%, #373737 100%);
  background: -o-linear-gradient(-45deg, #373737 0%, #373737 40%, #ffffff 50%, #373737 60%, #373737 100%);
  background: -ms-linear-gradient(-45deg, #373737 0%, #373737 40%, #ffffff 50%, #373737 60%, #373737 100%);
  background: linear-gradient(135deg, #373737 0%, #373737 40%, #ffffff 50%, #373737 60%, #373737 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#373737", endColorstr="#373737",GradientType=1 );
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 300%;
}
.btn.black span {
  color: #ffffff;
}
.btn.white {
  background: linear-gradient(0deg, #FFFFFF 0%, #FBFDFF 100%);
  box-shadow: 0 6px 10px 0 rgba(41, 42, 43, 0.15);
  background: -moz-linear-gradient(-45deg, #fff 0%, #fff 40%, rgba(0, 0, 0, 0.2) 50%, #fff 60%, #fff 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fff), color-stop(40%, #fff), color-stop(50%, rgba(0, 0, 0, 0.2)), color-stop(60%, #fff), color-stop(100%, #fff));
  background: -webkit-linear-gradient(-45deg, #fff 0%, #fff 40%, rgba(0, 0, 0, 0.2) 50%, #fff 60%, #fff 100%);
  background: -o-linear-gradient(-45deg, #fff 0%, #fff 40%, rgba(0, 0, 0, 0.2) 50%, #fff 60%, #fff 100%);
  background: -ms-linear-gradient(-45deg, #fff 0%, #fff 40%, rgba(0, 0, 0, 0.2) 50%, #fff 60%, #fff 100%);
  background: linear-gradient(135deg, #fff 0%, #fff 40%, rgba(0, 0, 0, 0.2) 50%, #fff 60%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0003", endColorstr="#0003",GradientType=1 );
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 300%;
}
.btn.white span {
  color: #373737;
}
.btn:hover {
  animation: light 1s;
  -webkit-animation: light 1s;
}
@keyframes light {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
@-webkit-keyframes light {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}

.redactor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.redactor.no_flex {
  display: block;
}
.redactor * {
  margin-bottom: 1em;
}
.redactor *:last-child {
  margin-bottom: 0;
}
.redactor.center {
  align-items: center;
}
.redactor.center p {
  text-align: center;
}
.redactor.start {
  align-items: flex-start;
}
.redactor.start p {
  text-align: left;
}
.redactor.end {
  align-items: flex-end;
}
.redactor.end p {
  text-align: right;
}
.redactor p strong {
  font-weight: 700;
}
.redactor ul {
  width: 100%;
  list-style: disc outside;
  padding: 0 0 0 1.2em;
}
.redactor ul li {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
.redactor ul li strong {
  font-weight: 700;
}
.redactor figure {
  width: 100%;
  max-width: 1000px;
}
.redactor figure img {
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_text {
  width: 100%;
  margin-top: 1em;
}
.recaptcha_text a {
  color: #3B61B7;
  text-decoration: underline;
}

.subpage_universal {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 5em auto;
}
.subpage_universal.error {
  padding: 8em 0;
}
.subpage_universal h1 {
  color: #373737;
  font-size: 3.75em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.16em;
  text-align: center;
}
@media (max-width: 800px) {
  .subpage_universal h1 {
    font-size: 3em;
  }
}
@media (max-width: 600px) {
  .subpage_universal h1 {
    font-size: 2.5em;
  }
}
.subpage_universal .error_title {
  color: transparent;
  font-size: 20vw;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1em;
  text-align: center;
  -webkit-text-stroke: 1px #DADADA;
}
.subpage_universal .error_text {
  color: #373737;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  text-align: center;
  margin: 2em 0;
}
.subpage_universal .error_image {
  left: -15%;
  top: -33%;
  width: 44vw;
}
@media (max-width: 1000px) {
  .subpage_universal .error_title {
    font-size: 40vw;
  }
  .subpage_universal .error_image {
    width: 88vw;
  }
}
.subpage_universal .customer_header {
  width: 100%;
  margin-bottom: 1.6em;
}
.subpage_universal .customer_header img {
  width: 100%;
}
.subpage_universal .customer_header h1 {
  left: 1.6em;
  text-align: left;
}
@media (max-width: 700px) {
  .subpage_universal .customer_header h1 {
    left: 0.5em;
  }
}
@media (max-width: 480px) {
  .subpage_universal .customer_header {
    flex-direction: column;
    align-items: flex-start;
  }
  .subpage_universal .customer_header h1 {
    position: relative;
    left: auto;
    width: 100%;
    text-align: center;
    margin-top: 0.5em;
  }
}
.subpage_universal .redactor {
  width: 100%;
}
.subpage_universal .redactor h2 {
  color: #373737;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.subpage_universal .redactor h3 {
  color: #373737;
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
}
.subpage_universal .redactor ul li {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 2em;
}
@media (max-width: 700px) {
  .subpage_universal .redactor h2 {
    font-size: 2em;
  }
}

/* #endregion */
header {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 0 2.5em 0;
  z-index: 400;
}
header .header_logo {
  width: 15em;
  margin-right: auto;
}
header .header_logo img {
  width: 100%;
}
header .nav {
  margin-left: 2em;
}
header .nav .nav_item {
  margin: 0 0.5em;
}
header .nav .nav_item.basic span {
  color: #373737;
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: center;
  text-transform: lowercase;
}
header .nav .nav_item.basic::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #373737;
  transition: all 0.3s ease;
}
header .nav .nav_item.basic:hover::after {
  width: 100%;
}
header .nav .nav_item.nav_item_price {
  width: 180px;
}
header .nav .nav_item.calculator_nav_item {
  width: 180px;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 8px));
  font-size: 0.8em;
  margin: 0 1.25em;
}
header .hamburger {
  height: 14px;
  width: 16px;
}
header .hamburger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #373737;
}
header .hamburger span:nth-child(1) {
  top: 0;
}
header .hamburger span:nth-child(2) {
  top: 6px;
}
header .hamburger span:nth-child(3) {
  top: 12px;
  width: 80%;
}
@media (min-width: 1131px) {
  header .hamburger {
    display: none;
  }
}
@media (max-width: 1130px) {
  header {
    padding: 10px 10px 2.5em 10px;
  }
  header .header_logo {
    width: 100px;
  }
  header .nav {
    display: none;
  }
}

.menu {
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #fff;
  z-index: 200;
}
.menu.animate {
  transition: all 0.5s ease;
}
.menu.open {
  transform: translateX(0%);
}
.menu .nav .nav_item {
  margin: 1em 0;
}
.menu .nav .nav_item.basic span {
  color: #373737;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: right;
  text-transform: lowercase;
}
.menu .nav .nav_item.btn span {
  font-size: 1.5em;
}

footer {
  width: 100vw;
  background-color: #fff;
  padding: 5em 2.5em 0 2.5em;
  margin: 0;
}
footer .footer_content {
  width: 100%;
  max-width: 1920px;
}
footer .footer_content .footer_column {
  padding-bottom: 4.25em;
}
footer .footer_content .footer_column:nth-child(1) {
  width: 90px;
}
footer .footer_content .footer_column:nth-child(2) {
  width: 200px;
}
footer .footer_content .footer_column:nth-child(3) {
  width: 200px;
}
footer .footer_content .footer_column:nth-child(4) {
  width: 180px;
  align-self: center;
}
footer .footer_content .footer_column:nth-child(5) {
  width: 470px;
}
footer .footer_content .footer_column .footer_nav {
  color: #373737;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 0.75em;
}
@media (max-width: 600px) {
  footer .footer_content .footer_column .footer_nav.desktop {
    display: none;
  }
}
@media (min-width: 600px) {
  footer .footer_content .footer_column .footer_nav.mobile {
    display: none;
  }
}
footer .footer_content .footer_column .footer_nav::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #373737;
  transition: all 0.3s ease;
}
footer .footer_content .footer_column .footer_nav:hover::after {
  width: 100%;
}
footer .footer_content .footer_column .footer_title {
  color: #373737;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1em;
}
footer .footer_content .footer_column p {
  color: #373737;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
footer .footer_content .footer_column .footer_link {
  color: #373737;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.5em;
}
footer .footer_content .footer_column .footer_social {
  height: 36px;
  width: 36px;
  margin-right: 16px;
}
footer .footer_content .footer_column .footer_social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer_content .footer_column .footer_newsletter_text {
  color: #373737;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
}
footer .footer_content .footer_column .checkbox_input {
  width: 100%;
  border: 2px solid #373737;
  color: #A8A8A8;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 1em;
  margin: 20px 0;
}
footer .footer_content .footer_column .checkbox_input::placeholder {
  font-size: 1em;
}
footer .footer_content .footer_column .footer_newsletter_checkbox {
  margin-right: 10px;
}
footer .footer_content .footer_column .footer_newsletter_checkbox .custom_checkbox {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #373737;
}
footer .footer_content .footer_column .footer_newsletter_checkbox .custom_checkbox::after {
  content: " ";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #373737;
  transform: scale(0);
  transition: all 0.3s ease;
}
footer .footer_content .footer_column .footer_newsletter_checkbox .custom_checkbox.active::after {
  transform: scale(1);
}
footer .footer_content .footer_column .footer_newsletter_checkbox input {
  height: 20px;
  width: 20px;
  cursor: pointer;
  opacity: 0;
}
footer .footer_content .footer_column .footer_newsletter_checkbox p {
  width: calc(100% - 30px);
  color: #373737;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 14px;
  margin-left: 10px;
}
footer .footer_content .footer_column .footer_newsletter_checkbox p a {
  font-weight: 700;
}
footer .footer_content .footer_column .newsletter_btn {
  align-self: flex-end;
  margin-top: 1em;
}
footer .footer_bottom {
  width: 100%;
  max-width: 1920px;
  border-top: 2px solid #373737;
  padding: 1.25em 0;
}
footer .footer_bottom span {
  color: #373737;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 18px;
}
footer .footer_bottom span a {
  font-weight: bold;
}
@media (max-width: 1250px) {
  footer .footer_content {
    display: grid;
    grid-gap: 2.5em;
    grid-template-columns: 1fr 1fr 1fr;
  }
  footer .footer_content .footer_column {
    width: 100% !important;
  }
  footer .footer_content .footer_column:nth-child(5) {
    grid-column: 2/4;
  }
  footer .footer_content .footer_column .footer_newsletter_box {
    flex-direction: column;
  }
  footer .footer_content .footer_column .footer_newsletter_box .footer_newsletter_checkbox {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer_content .footer_column .footer_newsletter_box .btn {
    width: 100%;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 5em 10px 0 10px;
  }
}
@media (max-width: 550px) {
  footer .footer_content {
    display: grid;
    grid-gap: 2.5em;
    grid-template-columns: 100%;
    justify-items: center;
  }
  footer .footer_content .footer_column {
    max-width: 210px;
  }
  footer .footer_content .footer_column:nth-child(5) {
    width: 100% !important;
    max-width: 100%;
    grid-column: 1/2;
  }
  footer .footer_bottom {
    flex-direction: column;
  }
  footer .footer_bottom span {
    font-size: 10px;
  }
  footer .footer_bottom span:first-child {
    margin-bottom: 1em;
  }
}

.price_offer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  padding: 2.5em;
  z-index: 500;
  transform: scale(0);
  opacity: 0;
  transform-origin: center;
}
.price_offer.animate {
  transition: all 0.3s ease;
}
.price_offer.animate.openLoad {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s ease 0.5s;
}
.price_offer.open {
  transform: scale(1);
  opacity: 1;
}
.price_offer .price_offer_close {
  top: 2.5em;
  right: 2.5em;
  width: 40px;
}
.price_offer .price_offer_close img {
  width: 100%;
}
.price_offer .price_offer_title {
  color: #373737;
  font-size: 6.25em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.1em;
  margin-bottom: 40px;
}
.price_offer .price_offer_form {
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5em;
}
.price_offer .price_offer_form input {
  width: 100%;
  border: 2px solid #373737;
  color: #373737;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 1em;
}
.price_offer .price_offer_form input::placeholder {
  color: #A8A8A8;
  font-size: 1em;
}
.price_offer .price_offer_form textarea {
  grid-column: 1/3;
  width: 100%;
  border: 2px solid #373737;
  color: #A8A8A8;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 1em;
}
.price_offer .price_offer_form textarea::placeholder {
  font-size: 1em;
}
.price_offer .price_offer_form .price_offer_dropdown {
  width: 100%;
  z-index: 50;
}
.price_offer .price_offer_form .price_offer_dropdown .input {
  width: 100%;
  border: 2px solid #373737;
  cursor: pointer;
}
.price_offer .price_offer_form .price_offer_dropdown .input .value {
  color: #A8A8A8;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 1em;
}
.price_offer .price_offer_form .price_offer_dropdown .input .dropdown_arrow {
  width: 20px;
  right: 5px;
  top: calc(50% - 6.25px);
  transition: all 0.3s ease;
}
.price_offer .price_offer_form .price_offer_dropdown .input .dropdown_arrow.active {
  transform: rotateX(180deg);
}
.price_offer .price_offer_form .price_offer_dropdown .dropdown_container {
  top: 100%;
  left: 0;
  width: 100%;
  border: 2px solid #373737;
  border-top: none;
  background-color: #fff;
  display: none;
}
.price_offer .price_offer_form .price_offer_dropdown .dropdown_container .dropdown_wrapper {
  width: 100%;
}
.price_offer .price_offer_form .price_offer_dropdown .dropdown_container .dropdown_wrapper .dropdown_item {
  width: 100%;
  color: #A8A8A8;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 1em;
  cursor: pointer;
}
.price_offer .price_offer_form .price_offer_dropdown .dropdown_container .dropdown_wrapper .dropdown_item:hover {
  background-color: #fafafa;
}
.price_offer .price_offer_form .btn {
  grid-column: 1/3;
  justify-self: center;
}
@media (max-width: 700px) {
  .price_offer .price_offer_title {
    font-size: 5em;
  }
}
@media (max-width: 550px) {
  .price_offer {
    padding-top: 80px;
    padding-bottom: 100px;
    justify-content: flex-start !important;
    overflow: scroll;
  }
  .price_offer .price_offer_title {
    font-size: 3em;
    text-align: center;
  }
  .price_offer .price_offer_form {
    grid-template-columns: 100%;
  }
  .price_offer .price_offer_form input, .price_offer .price_offer_form textarea, .price_offer .price_offer_form .price_offer_dropdown {
    grid-column: 1/2;
  }
}

.svg_bg_1 {
  position: absolute;
  left: -6.25vw;
  top: -19.2vw;
  width: 75vw;
}
.svg_bg_1 #artifical_dots_mirror {
  display: none;
}

.homepage_header {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.homepage_header .homepage_header_left {
  width: calc(50% - 1.25em);
  align-self: stretch;
  padding-top: 17%;
  margin-right: 1.25em;
}
.homepage_header .homepage_header_left h1 {
  color: #373737;
  font-size: 6.25em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.1em;
}
.homepage_header .homepage_header_left span {
  color: #373737;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.15em;
  margin-bottom: 1em;
}
.homepage_header .homepage_header_left .homepage_header_left_btn {
  display: block;
  width: 85px;
  height: 85px;
  border: 8px solid rgba(255, 255, 255, 0.6);
  border-radius: 90px;
  text-align: center;
  color: #fff;
  line-height: 100px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}
.homepage_header .homepage_header_left .homepage_header_left_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
.homepage_header .homepage_header_left .homepage_header_left_btn:hover {
  animation: pulse 0.5s;
}
.homepage_header .homepage_header_left .homepage_header_left_btn i {
  font-size: 2em;
  padding-left: 5px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  to {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}
.homepage_header .homepage_header_left .homepage_header_left_btn_text {
  width: calc(100% - 100px);
  max-width: 300px;
  color: #373737;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.5em;
  text-align: left;
  margin-left: 15px;
}
.homepage_header .homepage_header_left .homepage_header_left_btn_text strong {
  font-weight: bold;
}
.homepage_header .homepage_header_left .homepage_header_badge {
  bottom: 5%;
  left: 55%;
  width: 200px;
  animation: pulse infinite 1.8s ease-in-out;
}
.homepage_header .homepage_header_left .homepage_header_badge img {
  width: 100%;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1150px) {
  .homepage_header .homepage_header_left .homepage_header_badge {
    bottom: 5%;
    left: 53%;
  }
}
@media (max-width: 1000px) {
  .homepage_header .homepage_header_left .homepage_header_badge {
    bottom: 5%;
    left: 27%;
  }
}
@media (max-width: 750px) {
  .homepage_header .homepage_header_left .homepage_header_badge {
    bottom: 0%;
    left: auto;
    right: 0;
    width: 34vw;
  }
}
@media (max-width: 370px) {
  .homepage_header .homepage_header_left .homepage_header_badge {
    bottom: -10%;
    z-index: 20;
  }
}
.homepage_header .homepage_header_left .homepage_header_nav {
  right: 0;
  bottom: 0;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_next {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_next.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_first {
  color: #373737;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 18px;
  margin: 10px 0;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_progress {
  position: relative;
  top: auto;
  left: auto;
  height: 66px;
  width: 2px;
  border-radius: 1px;
  background-color: #DFDFDF;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_progress .swiper-pagination-progressbar-fill {
  border-radius: 1px;
  background-color: #373737;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_last {
  color: #373737;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  margin: 10px 0;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_prev {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_prev.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_header .homepage_header_left .homepage_header_nav .homepage_nav_prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_header .homepage_header_right {
  width: calc(50% - 1.25em);
  margin-left: 1.25em;
}
.homepage_header .homepage_header_right .homepage_header_nav {
  display: none;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_next {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_next.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_first {
  color: #373737;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 18px;
  margin: 10px 0;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_progress {
  position: relative;
  top: auto;
  left: auto;
  height: 66px;
  width: 2px;
  border-radius: 1px;
  background-color: #DFDFDF;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_progress .swiper-pagination-progressbar-fill {
  border-radius: 1px;
  background-color: #373737;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_last {
  color: #373737;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  margin: 10px 0;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_prev {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_prev.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_header .homepage_header_right .homepage_header_nav .homepage_nav_prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_header .homepage_header_right .homepage_header_swiper {
  width: 100%;
  height: 80vh;
  max-height: 790px;
  overflow: hidden;
}
.homepage_header .homepage_header_right .homepage_header_swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.homepage_header .homepage_header_right .homepage_header_swiper #svg {
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 1000px) {
  .homepage_header .homepage_header_left h1 {
    font-size: 4em;
  }
  .homepage_header .homepage_header_left span {
    font-size: 2em;
  }
}
@media (max-width: 750px) {
  .homepage_header {
    flex-direction: column;
  }
  .homepage_header .homepage_header_left {
    width: 100%;
    height: auto;
    max-height: auto;
    margin: 0 0 12px 0;
  }
  .homepage_header .homepage_header_left .homepage_header_nav {
    display: none;
  }
  .homepage_header .homepage_header_right {
    width: 100%;
    margin-left: 0;
  }
  .homepage_header .homepage_header_right .homepage_header_nav {
    display: flex;
    left: 24px;
    bottom: 0;
  }
  .homepage_header .homepage_header_right .homepage_header_swiper {
    width: calc(100% - 75px);
    margin-left: 75px;
  }
}
@media (max-width: 500px) {
  .homepage_header .homepage_header_left h1 {
    font-size: 3.5em;
  }
  .homepage_header .homepage_header_left span {
    font-size: 2em;
  }
  .homepage_header .homepage_header_right .homepage_header_swiper {
    width: calc(100% - 75px);
    height: 300px;
    margin-left: 75px;
  }
}

.homepage_system {
  width: 100%;
  max-width: 1380px;
  margin: 9.375em auto 0 auto;
}
.homepage_system h2 {
  margin-bottom: 2em;
}
.homepage_system .homepage_system_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 3.75em;
}
.homepage_system .homepage_system_grid .homepage_system_item {
  width: 100%;
}
.homepage_system .homepage_system_grid .homepage_system_item .homepage_system_image_holder {
  width: 120px;
  margin: 0 auto;
}
.homepage_system .homepage_system_grid .homepage_system_item .homepage_system_image_holder .image_holder_bg {
  width: 100%;
}
.homepage_system .homepage_system_grid .homepage_system_item .homepage_system_image_holder .image_holder_icon {
  width: 60px;
  margin-top: 15px;
}
.homepage_system .homepage_system_grid .homepage_system_item h3 {
  color: #373737;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.08em;
  text-align: center;
  margin-top: 15px;
}
.homepage_system .homepage_system_grid .homepage_system_item span {
  color: #373737;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.28em;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .homepage_system .homepage_system_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .homepage_system .homepage_system_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.homepage_content {
  width: 100%;
  max-width: 1380px;
  margin: 9.25em auto 0 auto;
  z-index: 5;
}
.homepage_content .homepage_content_column h2 {
  margin-bottom: 1em;
}
.homepage_content .homepage_content_column p {
  line-height: 1.6em;
  margin-bottom: 1em;
}
.homepage_content .homepage_content_column p a {
  font-weight: bold;
}
.homepage_content .homepage_content_column ul {
  margin: 0 0 1em 1em;
  list-style: disc;
}
.homepage_content .homepage_content_column ul li {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}
.homepage_content.homepage_content_1 .homepage_content_image {
  width: 48%;
}
.homepage_content.homepage_content_1 .homepage_content_image .swiper-slide img {
  width: 100%;
}
.homepage_content.homepage_content_1 .homepage_content_column {
  width: 48%;
}
.homepage_content.homepage_content_2 .homepage_content_image {
  width: 59%;
}
.homepage_content.homepage_content_2 .homepage_content_column {
  width: 37%;
}
@media (max-width: 700px) {
  .homepage_content.homepage_content_1 {
    flex-direction: column-reverse;
  }
  .homepage_content.homepage_content_2 {
    flex-direction: column;
  }
  .homepage_content .homepage_content_column {
    width: 100% !important;
  }
  .homepage_content .homepage_content_column p a {
    font-size: 21px;
  }
  .homepage_content .homepage_content_column .btn {
    width: 100%;
    margin-top: 30px;
  }
  .homepage_content.homepage_content_1 .homepage_content_image {
    width: 100%;
  }
  .homepage_content img {
    width: 100% !important;
    margin-bottom: 30px;
  }
}

.homepage_review {
  width: 100%;
  margin: 9.25em 0 0 0;
  z-index: 5;
}
.homepage_review .btn {
  margin: 1.875em 0 3.75em 0;
}
.homepage_review .index_review_swiper {
  width: 100%;
  max-width: calc(1380px + 7.5em);
  padding: 0 3.75em;
  overflow: hidden;
}
.homepage_review .index_review_swiper .swiper-slide {
  gap: 10px;
}
.homepage_review .index_review_swiper .swiper-slide .text {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
}
.homepage_review .index_review_swiper .swiper-slide .name {
  color: #373737;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0;
  align-self: flex-end;
}
.homepage_review .index_review_swiper .index_review_prev {
  top: calc(50% - 1.25em);
  left: 0;
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/arrow_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.homepage_review .index_review_swiper .index_review_prev.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_review .index_review_swiper .index_review_next {
  top: calc(50% - 1.25em);
  right: 0;
  width: 2.5em;
  height: 2.5em;
  background-image: url("../svg/arrow_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.homepage_review .index_review_swiper .index_review_next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 1100px) {
  .homepage_review .index_review_swiper {
    max-width: calc(1380px + 5em);
    padding: 0 2.5em;
  }
}
@media (max-width: 600px) {
  .homepage_review .index_review_swiper {
    padding: 0 0 5em 0;
  }
  .homepage_review .index_review_swiper .index_review_prev {
    top: auto;
    bottom: 0;
    left: calc(50% - 5em);
  }
  .homepage_review .index_review_swiper .index_review_next {
    top: auto;
    bottom: 0;
    right: calc(50% - 5em);
  }
}

.homepage_review_popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #C2C2C2;
  padding: 2.5em;
  opacity: 0;
  transform: scale(0);
  z-index: 200;
  transition: all 0.3s ease;
}
.homepage_review_popup .review_popup_close {
  top: 2.5em;
  right: max(2.5em, (100% - 1380px) / 2);
  gap: 10px;
  cursor: pointer;
  z-index: 20;
}
.homepage_review_popup .review_popup_close .text {
  opacity: 1;
  color: #373737;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0;
  text-align: right;
  line-height: 1.5em;
}
.homepage_review_popup .review_popup_close .icon {
  width: 1.25em;
  height: 1.25em;
  background-image: url("../svg/close.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.homepage_review_popup .review_title {
  width: 100%;
  max-width: 1380px;
  color: #373737;
  font-size: 3.75em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16em;
}
.homepage_review_popup .review_popup_wrapper {
  width: 100%;
  max-width: 1380px;
  gap: 5em;
  margin-top: 9em;
}
.homepage_review_popup .review_popup_wrapper .popup_column {
  width: calc(50% - 2.5em);
}
.homepage_review_popup .review_popup_wrapper .popup_column .subtitle {
  color: #373737;
  font-size: 1.625em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16em;
  margin-bottom: 1.5em;
}
.homepage_review_popup .review_popup_wrapper .popup_column .google_wrapper {
  width: 100%;
  gap: 2.5em;
}
.homepage_review_popup .review_popup_wrapper .popup_column .google_wrapper .google_logo {
  width: 14.375em;
  height: 7.375em;
  background-image: url("../svg/google_logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.homepage_review_popup .review_popup_wrapper .popup_column .review_input {
  width: 100%;
  border: 1px solid #979797;
  padding: 0.55em;
  resize: none;
  margin-bottom: 1.1em;
  color: #373737;
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}
.homepage_review_popup .review_popup_wrapper .popup_column .review_input::placeholder {
  color: #7A7A7A;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr {
  width: 100%;
  gap: 10px;
  margin-bottom: 1.25em;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr input {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr .custom_checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #373737;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr .custom_checkbox::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #373737;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr input:checked ~ .custom_checkbox::after {
  opacity: 1;
  transform: scale(1);
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr label {
  width: calc(100% - 30px);
  color: #373737;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  line-height: 14px;
}
.homepage_review_popup .review_popup_wrapper .popup_column .gdpr label a {
  color: #373737;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: left;
  line-height: 14px;
}
.homepage_review_popup .review_popup_wrapper .popup_column button {
  align-self: flex-end;
}
@media (max-width: 700px) {
  .homepage_review_popup {
    overflow: scroll;
  }
  .homepage_review_popup .review_title {
    max-width: 60%;
    font-size: 2.75em;
    margin-right: auto;
  }
  .homepage_review_popup .review_popup_wrapper {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  .homepage_review_popup .review_popup_wrapper .popup_column {
    width: 100%;
  }
  .homepage_review_popup .review_popup_wrapper .popup_column .google_wrapper {
    flex-direction: column;
  }
  .homepage_review_popup .review_popup_wrapper .popup_column .btn {
    width: 100%;
    height: 60px;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .homepage_review_popup {
    padding: 2.5em 10px;
  }
}
.homepage_review_popup.open {
  opacity: 1;
  transform: scale(1);
}

.homepage_articles {
  width: 100%;
  max-width: 1380px;
  display: grid;
  grid-template-columns: calc(31% - 1.25em) calc(69% - 1.25em);
  grid-gap: 2.5em;
  margin: 7em auto 0 auto;
}
.homepage_articles h2 {
  grid-column: 1/3;
  margin-bottom: 0.5em;
}
@media (max-width: 900px) {
  .homepage_articles {
    grid-template-columns: 100%;
  }
  .homepage_articles h2 {
    grid-column: 1/2;
  }
}
.homepage_articles .homepage_articles_item {
  width: 100%;
}
.homepage_articles .homepage_articles_item .homepage_articles_image {
  width: 100%;
  margin-bottom: 1.25em;
}
.homepage_articles .homepage_articles_item .homepage_articles_image .image {
  width: 100%;
}
.homepage_articles .homepage_articles_item .homepage_articles_image .logo {
  width: 6.875em;
  height: 2.5em;
  background-color: #FFFFFF;
  padding: 0.31em 0.81em;
}
.homepage_articles .homepage_articles_item .homepage_articles_image .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_articles .homepage_articles_item .homepage_articles_text {
  width: 100%;
}
.homepage_articles .homepage_articles_item .homepage_articles_text h3 {
  color: #373737;
  font-size: 1.625em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.15em;
  margin-bottom: 0.5em;
}
.homepage_articles .homepage_articles_item .homepage_articles_text p {
  font-size: 1em;
}
@media (min-width: 900px) {
  .homepage_articles .homepage_articles_item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .homepage_articles .homepage_articles_item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
    flex-direction: row;
  }
  .homepage_articles .homepage_articles_item:nth-child(3) .homepage_articles_image {
    width: 43%;
    margin: 0 1.25em 0 0;
  }
  .homepage_articles .homepage_articles_item:nth-child(3) .homepage_articles_text {
    width: calc(57% - 1.25em);
  }
  .homepage_articles .homepage_articles_item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
    flex-direction: row;
  }
  .homepage_articles .homepage_articles_item:nth-child(4) .homepage_articles_image {
    width: 43%;
    margin: 0 1.25em 0 0;
  }
  .homepage_articles .homepage_articles_item:nth-child(4) .homepage_articles_text {
    width: calc(57% - 1.25em);
  }
  .homepage_articles .homepage_articles_item:nth-child(5) {
    grid-column: 1/3;
    grid-row: 4/5;
    flex-direction: row;
  }
  .homepage_articles .homepage_articles_item:nth-child(5) .homepage_articles_image {
    width: 43%;
    margin: 0 1.25em 0 0;
  }
  .homepage_articles .homepage_articles_item:nth-child(5) .homepage_articles_text {
    width: calc(57% - 1.25em);
  }
}
@media (max-width: 900px) {
  .homepage_articles .homepage_articles_item {
    flex-direction: row;
  }
  .homepage_articles .homepage_articles_item .homepage_articles_image {
    width: 43%;
    margin: 0 1.25em 0 0;
  }
  .homepage_articles .homepage_articles_item .homepage_articles_text {
    width: calc(57% - 1.25em);
  }
}
@media (max-width: 600px) {
  .homepage_articles .homepage_articles_item {
    flex-direction: column;
  }
  .homepage_articles .homepage_articles_item .homepage_articles_image {
    width: 100%;
    margin: 0 0 1.25em 0;
  }
  .homepage_articles .homepage_articles_item .homepage_articles_text {
    width: 100%;
  }
}

.homepage_house {
  width: 100%;
  max-width: 1380px;
  margin: 9.25em auto 0 auto;
}
.homepage_house .svg_bg_2 {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  width: 100%;
  min-width: 800px;
}
.homepage_house .homepage_house_title {
  margin-bottom: 0.6em;
}
.homepage_house .homepage_house_text {
  max-width: 580px;
  text-align: center;
  margin-bottom: 5em;
}
.homepage_house .homepage_house_container {
  width: 100%;
}
.homepage_house .homepage_house_container .homepage_house_image {
  width: 100%;
}
.homepage_house .homepage_house_container .homepage_house_dot {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage_house .homepage_house_container .homepage_house_dot.open {
  z-index: 8;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_1 {
  top: 63%;
  left: 86%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_2 {
  top: 53%;
  left: 59%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_3 {
  top: 19%;
  left: 46%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_4 {
  top: 66%;
  left: 13%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_5 {
  top: 31%;
  left: 23%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_6 {
  top: 39%;
  left: 77%;
}
.homepage_house .homepage_house_container .homepage_house_dot.dot_7 {
  top: 69%;
  left: 41%;
}
@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
.homepage_house .homepage_house_container .homepage_house_dot .pulse {
  position: absolute;
  height: 50px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-animation: pulsate 1s ease-out 0.5s;
  -webkit-animation-iteration-count: infinite;
  z-index: 5;
}
.homepage_house .homepage_house_container .homepage_house_dot .dot {
  height: 30px;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 6;
}
.homepage_house .homepage_house_container .homepage_house_dot .marker {
  position: absolute;
  height: 12px;
  width: 12px;
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 7;
}
.homepage_house .homepage_house_container .homepage_house_dot .marker.open {
  transform: rotate(-45deg);
}
.homepage_house .homepage_house_container .homepage_house_dot .homepage_house_box {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 10px 20px 25px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  transform-origin: left bottom;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  padding: 1em 1.25em;
  z-index: 4;
}
.homepage_house .homepage_house_container .homepage_house_dot .homepage_house_box.left_side {
  right: 50%;
  left: auto;
  transform-origin: right bottom;
}
.homepage_house .homepage_house_container .homepage_house_dot .homepage_house_box.open {
  transform: scale(1);
  opacity: 1;
}
.homepage_house .homepage_house_container .homepage_house_dot .homepage_house_box h3 {
  color: #373737;
  font-size: 1.625em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.15em;
  text-transform: uppercase;
}
.homepage_house .homepage_house_container .homepage_house_dot .homepage_house_box p {
  color: #373737;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.35em;
  margin-top: 1.25em;
}
.homepage_house .calculation_container h2 {
  margin-top: 2em;
}
.homepage_house .calculation_container .redactor {
  width: 100%;
  margin-top: 2.5em;
}
.homepage_house .calculation_container .redactor p {
  max-width: 671px;
}
.homepage_house .calculation_container .redactor table {
  width: 100%;
  border-collapse: collapse;
}
.homepage_house .calculation_container .redactor table tr td {
  width: calc(100% - 12.5em);
  color: #373737;
  font-size: 1.375em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  text-transform: uppercase;
  vertical-align: top;
  padding: 0.9em 0;
}
.homepage_house .calculation_container .redactor table tr td:last-child {
  width: 12.5em;
  text-align: right;
}
.homepage_house .calculation_container .redactor table tr td strong {
  font-size: 1.45em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
}
@media (max-width: 600px) {
  .homepage_house .calculation_container .redactor table tr td {
    font-size: 1em;
  }
}
.homepage_house .calculation_container .redactor table tr:last-child td {
  border-top: 1px solid #373737;
}
.homepage_house .calculation_container .redactor blockquote {
  color: #373737;
  font-size: 0.875em;
  letter-spacing: 0;
  line-height: 1.5em;
}
.homepage_house .price_title {
  margin-top: 2em;
}
.homepage_house .homepage_house_btn {
  margin-top: 2em;
}
@media (max-width: 600px) {
  .homepage_house {
    display: none;
  }
}

.homepage_house_mobile {
  width: 100%;
  margin: 9.25em auto 0 auto;
}
.homepage_house_mobile .homepage_house_title {
  margin-bottom: 0.6em;
}
.homepage_house_mobile .homepage_house_text {
  max-width: 580px;
  text-align: center;
  margin-bottom: 5em;
}
.homepage_house_mobile .homepage_house_swiper {
  width: 100%;
  overflow: hidden;
}
.homepage_house_mobile .homepage_house_swiper .homepage_house_slide .homepage_house_image {
  width: 140%;
}
.homepage_house_mobile .homepage_house_swiper .homepage_house_slide h3 {
  color: #373737;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
}
.homepage_house_mobile .homepage_house_nav {
  margin-top: 2em;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_prev {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_prev.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg);
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_progress {
  position: relative;
  left: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  width: auto;
  margin: 0 2em;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_next {
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_next.swiper-button-disabled {
  opacity: 0.5;
}
.homepage_house_mobile .homepage_house_nav .homepage_house_nav_next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg);
}
.homepage_house_mobile .calculation_container h2 {
  margin-top: 2em;
}
.homepage_house_mobile .calculation_container .redactor {
  width: 100%;
  margin-top: 2.5em;
}
.homepage_house_mobile .calculation_container .redactor p {
  max-width: 671px;
}
.homepage_house_mobile .calculation_container .redactor table {
  width: 100%;
  border-collapse: collapse;
}
.homepage_house_mobile .calculation_container .redactor table tr td {
  width: calc(100% - 12.5em);
  color: #373737;
  font-size: 1.375em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  text-transform: uppercase;
  vertical-align: top;
  padding: 0.9em 0;
}
.homepage_house_mobile .calculation_container .redactor table tr td:last-child {
  width: 12.5em;
  text-align: right;
}
.homepage_house_mobile .calculation_container .redactor table tr td strong {
  color: #FFFFFF;
  font-size: 1.45em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
}
@media (max-width: 600px) {
  .homepage_house_mobile .calculation_container .redactor table tr td {
    font-size: 1em;
  }
}
.homepage_house_mobile .calculation_container .redactor table tr:last-child td {
  border-top: 1px solid #373737;
}
.homepage_house_mobile .calculation_container .redactor blockquote {
  color: #373737;
  font-size: 0.875em;
  letter-spacing: 0;
  line-height: 1.5em;
}
.homepage_house_mobile .price_title {
  margin-top: 30px;
}
.homepage_house_mobile .homepage_house_btn {
  margin-top: 10px;
}
@media (min-width: 600px) {
  .homepage_house_mobile {
    display: none;
  }
}

.homepage_partners {
  width: 100%;
  max-width: 1380px;
  margin: 6.25em auto 7.5em auto;
}
.homepage_partners .homepage_partners_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-gap: 2.5em;
  align-items: center;
  justify-items: center;
  margin-top: 4em;
}
.homepage_partners .homepage_partners_grid .homepage_partners_item {
  width: 100%;
  max-width: 120px;
}
@media (max-width: 1100px) {
  .homepage_partners .homepage_partners_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 450px) {
  .homepage_partners .homepage_partners_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.subpage_contact {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 5em auto;
}
.subpage_contact .subpage_contact_left {
  width: calc(50% - 1.25em);
  margin-right: 1.25em;
}
.subpage_contact .subpage_contact_left h1 {
  color: #373737;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.25em;
  margin-bottom: 1em;
}
.subpage_contact .subpage_contact_left .subpage_contact_box {
  width: 100%;
  margin-bottom: 2.5em;
}
.subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column {
  width: calc(50% - 10px);
}
.subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column h2 {
  color: #373737;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1em;
}
.subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column p, .subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column a {
  font-size: 1em;
}
.subpage_contact .subpage_contact_left .subpage_contact_map {
  width: 100%;
  border: 1px solid #979797;
}
.subpage_contact .subpage_contact_left .subpage_contact_map img {
  width: 100%;
}
.subpage_contact .subpage_contact_right {
  width: calc(50% - 1.25em);
  margin-left: 1.25em;
}
.subpage_contact .subpage_contact_right .thanks {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C2C2C2;
  z-index: 50;
  color: #272727;
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5em;
  text-transform: uppercase;
}
.subpage_contact .subpage_contact_right h2 {
  color: #373737;
  font-size: 1.625em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.15em;
  margin-bottom: 1.5em;
}
.subpage_contact .subpage_contact_right input {
  width: 100%;
  border: 1px solid #979797;
  background-color: #DADADA;
  padding: 10px;
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.subpage_contact .subpage_contact_right input::placeholder {
  color: #7A7A7A;
  font-size: 1em;
}
.subpage_contact .subpage_contact_right #email2 {
  display: none;
}
.subpage_contact .subpage_contact_right textarea {
  width: 100%;
  border: 1px solid #979797;
  background-color: #DADADA;
  padding: 10px;
  color: #7A7A7A;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 20px;
  resize: none;
}
.subpage_contact .subpage_contact_right textarea::placeholder {
  color: #7A7A7A;
  font-size: 1em;
}
.subpage_contact .subpage_contact_right .btn {
  align-self: flex-end;
}
@media (max-width: 750px) {
  .subpage_contact {
    flex-direction: column;
    align-items: center !important;
  }
  .subpage_contact .subpage_contact_left {
    width: 100%;
    max-width: 500px;
    margin: 0 0 2.5em 0;
  }
  .subpage_contact .subpage_contact_right {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
  }
}
@media (max-width: 450px) {
  .subpage_contact .subpage_contact_left h1 {
    align-self: center;
  }
  .subpage_contact .subpage_contact_left .subpage_contact_box {
    flex-direction: column;
  }
  .subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column {
    width: 100%;
    align-items: center;
  }
  .subpage_contact .subpage_contact_left .subpage_contact_box .subpage_contact_box_column:first-child {
    margin-bottom: 20px;
  }
  .subpage_contact .subpage_contact_right h2 {
    align-self: center;
    text-align: center;
  }
}

.subpage_references {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 5em auto;
}
.subpage_references h1 {
  width: 100%;
  font-size: 2.5em;
  text-align: left;
  font-weight: 700;
  margin-bottom: 1em;
}
.subpage_references .references_item {
  width: 100%;
  gap: 2.5em;
  margin-bottom: 3.75em;
}
.subpage_references .references_item .column {
  width: calc(50% - 1.25em);
  gap: 1.25em;
}
.subpage_references .references_item .column h2 {
  font-size: 1.625em;
  font-weight: 700;
}
.subpage_references .references_item .column .redactor {
  width: 100%;
}
.subpage_references .references_item .column .redactor ul li {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 0;
}
.subpage_references .references_item .column .references_line {
  width: 100%;
  gap: 1em;
}
.subpage_references .references_item .column .references_line .icon {
  width: 1.68em;
  height: 1.68em;
  object-fit: contain;
}
.subpage_references .references_item .column .references_line .text {
  width: calc(100% - 2.39em);
  font-size: 1.125em;
}
.subpage_references .references_item .column .btn {
  align-self: flex-end;
  margin-top: 2.5em;
}
.subpage_references .references_item .references_swiper {
  width: 100%;
  overflow: hidden;
}
.subpage_references .references_item .references_swiper .swiper-slide.video {
  height: auto;
}
.subpage_references .references_item .references_swiper .swiper-slide img {
  width: 100%;
}
.subpage_references .references_item .references_swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage_references .references_item .references_swiper .references_swiper_prev {
  top: calc(50% - 0.9375em);
  left: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.subpage_references .references_item .references_swiper .references_swiper_prev.swiper-button-disabled {
  opacity: 0.5;
}
.subpage_references .references_item .references_swiper .references_swiper_next {
  top: calc(50% - 0.9375em);
  right: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.subpage_references .references_item .references_swiper .references_swiper_next.swiper-button-disabled {
  opacity: 0.5;
}
.subpage_references .references_item .references_swiper svg {
  position: absolute;
  top: calc(50% - 2.1875em);
  left: calc(50% - 2.1875em);
  width: 4.375em;
  height: 4.375em;
  cursor: pointer;
  z-index: 50;
}
.subpage_references .references_item .references_swiper svg #Oval-3 {
  transform-origin: center;
  animation: pulse infinite 2s ease;
}
.subpage_references .references_item .references_swiper svg #Oval-2 {
  transform-origin: center;
  animation: pulse infinite 2s ease;
}
@keyframes pulse {
  0% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.subpage_references .references_item.even {
  flex-direction: row-reverse;
}
.subpage_references .references_item.even .column .btn {
  align-self: flex-start;
}
@media (max-width: 700px) {
  .subpage_references .references_item {
    flex-direction: column !important;
    gap: 40px;
  }
  .subpage_references .references_item .column {
    width: 100%;
  }
  .subpage_references .references_item .column .btn {
    align-self: flex-end !important;
  }
  .subpage_references .references_item .references_swiper {
    width: 100%;
  }
}

.universal {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 5em auto;
}
.universal h1 {
  width: 100%;
  font-size: 3.75em;
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.33em;
}
@media (max-width: 600px) {
  .universal h1 {
    font-size: 3em;
  }
}
.universal .universal_cover {
  width: 100%;
  max-width: 800px;
  margin-top: 2.5em;
}
.universal .universal_cover img {
  width: 100%;
}
.universal .universal_redactor {
  width: 100%;
  margin-top: 2.5em;
}
.universal .universal_redactor ul li {
  color: #373737;
  font-size: 1.125em;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 0;
}
.universal .universal_matrix {
  width: 100%;
}
.universal .universal_matrix .universal_matrix_elem {
  width: 100%;
  margin-bottom: 3.75em;
}
.universal .universal_matrix .universal_matrix_elem.titleBlock {
  margin-bottom: 1.25em;
}
.universal .universal_matrix .universal_matrix_elem.titleBlock h2 {
  font-size: 2.5em;
  font-weight: 700;
}
@media (max-width: 600px) {
  .universal .universal_matrix .universal_matrix_elem.titleBlock h2 {
    font-size: 2em;
  }
}
.universal .universal_matrix .universal_matrix_elem.titleBlock h3 {
  font-size: 1.625em;
  font-weight: 700;
}
@media (max-width: 600px) {
  .universal .universal_matrix .universal_matrix_elem.titleBlock h3 {
    font-size: 1.5em;
  }
}
.universal .universal_matrix .universal_matrix_elem.textBlock .redactor {
  width: 100%;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock {
  gap: 2.5em;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock.left {
  flex-direction: row-reverse;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .redactor {
  width: calc(50% - 1.25em);
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper {
  width: calc(50% - 1.25em);
  overflow: hidden;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper .swiper-slide img {
  width: 100%;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper .image_swiper_prev {
  top: calc(50% - 0.9375em);
  left: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper .image_swiper_prev.swiper-button-disabled {
  opacity: 0.5;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper .image_swiper_next {
  top: calc(50% - 0.9375em);
  right: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper .image_swiper_next.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 800px) {
  .universal .universal_matrix .universal_matrix_elem.textImageBlock {
    flex-direction: column !important;
  }
  .universal .universal_matrix .universal_matrix_elem.textImageBlock .redactor {
    width: 100%;
  }
  .universal .universal_matrix .universal_matrix_elem.textImageBlock .image_swiper {
    width: 100%;
  }
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper {
  width: 100%;
  overflow: hidden;
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper .swiper-slide img {
  width: 100%;
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper .image_swiper_prev {
  top: calc(50% - 0.9375em);
  left: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_prev.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper .image_swiper_prev.swiper-button-disabled {
  opacity: 0.5;
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper .image_swiper_next {
  top: calc(50% - 0.9375em);
  right: 0.625em;
  width: 1.875em;
  height: 1.875em;
  background-image: url("../svg/arrow_round_next.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.universal .universal_matrix .universal_matrix_elem.imageBlock .image_swiper .image_swiper_next.swiper-button-disabled {
  opacity: 0.5;
}
.universal .universal_video {
  width: 100%;
  max-width: 900px;
}
.universal .universal_video video {
  width: 100%;
}
.universal .universal_video svg {
  position: absolute;
  top: calc(50% - 2.1875em);
  left: calc(50% - 2.1875em);
  width: 4.375em;
  height: 4.375em;
  cursor: pointer;
  z-index: 50;
}
.universal .universal_video svg #Oval-3 {
  transform-origin: center;
  animation: pulse infinite 2s ease;
}
.universal .universal_video svg #Oval-2 {
  transform-origin: center;
  animation: pulse infinite 2s ease;
}
@keyframes pulse {
  0% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.videogallery-page {
  max-width: 1380px;
}
.videogallery-page h1 {
  font-weight: 700;
  text-align: left;
  color: #373737;
}

.videogallery {
  display: grid;
  max-width: 100%;
  grid-template-columns: auto auto auto;
  grid-column-gap: 30px;
  grid-row-gap: 3rem;
  margin: 2rem auto 4rem auto;
}
@media (max-width: 1420px) {
  .videogallery {
    justify-content: center;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 800px) {
  .videogallery {
    grid-template-columns: auto;
  }
}
.videogallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  width: 440px;
}
@media (max-width: 1440px) {
  .videogallery .gallery-item {
    width: 432px;
  }
}
@media (max-width: 1280px) {
  .videogallery .gallery-item {
    width: 360px;
  }
}
@media (max-width: 520px) {
  .videogallery .gallery-item {
    width: 260px;
  }
}
.videogallery .gallery-item img {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videogallery .gallery-item .youtube-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
}
@media (max-width: 1440px) {
  .videogallery .gallery-item .youtube-video {
    height: 240px;
  }
}
@media (max-width: 520px) {
  .videogallery .gallery-item .youtube-video {
    height: 180px;
  }
}
.videogallery .gallery-item .youtube-video .playbutton {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
}
.videogallery .gallery-item .youtube-video .playbutton img {
  object-fit: contain;
}
.videogallery .gallery-item .title {
  margin: 1rem 0 0 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}
@media (max-width: 520px) {
  .videogallery .gallery-item .title {
    margin: 1rem 0 0 0;
    font-size: 20px;
    line-height: 26px;
  }
}
.videogallery .gallery-item .description {
  margin: 1rem 0 0 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}
@media (max-width: 520px) {
  .videogallery .gallery-item .description {
    margin: 1rem 0 0 0;
    font-size: 15px;
    line-height: 20px;
  }
}

.subpage_universal.calculation_subpage {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 5em auto;
}
.subpage_universal.calculation_subpage h1 {
  width: 100%;
  font-size: 2.5em;
  text-align: left;
}
.subpage_universal.calculation_subpage .redactor {
  width: 100%;
  margin-top: 2.5em;
}
.subpage_universal.calculation_subpage .redactor p {
  max-width: 671px;
}
.subpage_universal.calculation_subpage .redactor table {
  width: 100%;
  border-collapse: collapse;
}
.subpage_universal.calculation_subpage .redactor table tr td {
  width: calc(100% - 12.5em);
  color: #373737;
  font-size: 1.375em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
  text-transform: uppercase;
  vertical-align: top;
  padding: 0.9em 0;
}
.subpage_universal.calculation_subpage .redactor table tr td:last-child {
  width: 12.5em;
  text-align: right;
}
.subpage_universal.calculation_subpage .redactor table tr td strong {
  color: #FFFFFF;
  font-size: 1.45em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5em;
}
@media (max-width: 600px) {
  .subpage_universal.calculation_subpage .redactor table tr td {
    font-size: 1em;
  }
}
.subpage_universal.calculation_subpage .redactor table tr:last-child td {
  border-top: 1px solid #373737;
}
.subpage_universal.calculation_subpage .redactor blockquote {
  color: #373737;
  font-size: 0.875em;
  letter-spacing: 0;
  line-height: 1.5em;
}

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