html {
  font-size: 62.5%;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50%;
  }
}
body {
  background: #F4F4F4;
  font-size: 1.6rem;
}

.small-headline {
  font-size: 1.6rem;
  font-weight: 600;
}

@media (min-width: 767px) {
  .row-24 {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
  .row-24 [class*=col-] {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
.section-headline {
  font-size: 3.6rem;
}

@media (max-width: 1319px) {
  h1, .h1 {
    font-size: 6rem;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 4rem;
  }
  h2, .h2 {
    font-size: 3rem;
  }
  h3, .h3 {
    font-size: 2.8rem;
  }
  h4, .h4 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
  .section-headline {
    font-size: 2.4rem;
  }
}
.btn {
  border-radius: 3.2rem;
  padding: 1.1rem 3.2rem;
  z-index: 10;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.8rem 2.4rem;
  }
  .btn img, .btn svg {
    width: 2rem;
  }
}
.btn-primary {
  background: #F55400;
  color: #ffffff;
}
.btn-primary svg {
  margin-left: 0.8rem;
}
.btn-primary:hover {
  color: #ffffff;
}
.btn-white-outlined {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outlined img,
.btn-white-outlined svg {
  margin-left: 0.8rem;
}
.btn-white-outlined svg path {
  transition: all 0.3s;
}
.btn-white-outlined:hover {
  background: #ffffff;
  color: #F55400;
}
.btn-white-outlined:hover svg path {
  stroke: #F55400;
}
.btn-circle-arrow {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}
.btn-circle-arrow svg path {
  transition: all 0.3s;
}
.btn-circle-arrow:hover {
  background: #ffffff;
}
.btn-circle-arrow:hover svg path {
  stroke: #F55400;
}
.btn-filter {
  border-radius: 3.2rem;
  border-color: #424242;
  background: #ffffff;
  padding: 1.1rem 2.4rem;
  font-weight: 400;
  color: #424242;
}
.btn-filter img {
  margin-right: 1.2rem;
}
.btn-filter:after {
  display: none;
}
.btn-filter:hover {
  border-color: #424242;
  background: #ffffff;
  color: #424242;
}
.btn-filter.show, .btn-filter:active, .btn-filter:focus {
  background: #ffffff !important;
  color: #424242 !important;
  border-color: #424242 !important;
}
@media (max-width: 767px) {
  .btn-filter {
    padding: 0.8rem 2rem;
  }
  .btn-filter img {
    margin-right: 0.8rem;
    width: 2rem;
  }
}
.btn-dropdown {
  font-weight: 400;
  padding: 0;
  padding-right: 3.2rem;
  min-height: 2.4rem;
  color: #424242;
}
.btn-dropdown:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 2.4rem;
  width: 2.4rem;
  background: url("./../images/arrow_down.svg") no-repeat center;
  background-size: contain;
  border: none;
  transition: all 0.3s;
}
.btn-dropdown.show, .btn-dropdown:active, .btn-dropdown:focus {
  background: transparent !important;
  color: #424242 !important;
  border-color: transparent !important;
}
.btn-dropdown.show:after, .btn-dropdown:active:after, .btn-dropdown:focus:after {
  transform: rotate(180deg);
}

.check-styled {
  width: auto;
  position: relative;
  margin-bottom: 0rem;
  display: block;
  padding: 0;
}
.check-styled input[type=checkbox] {
  opacity: 0;
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
}
.check-styled input[type=checkbox] + label {
  padding-left: 3.6rem;
  font-size: 1.6rem;
  text-transform: none;
}
.check-styled input[type=checkbox] + label:before {
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  border: 1px solid #F55400;
  background-color: transparent;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  display: block;
}
.check-styled input[type=checkbox] + label:after {
  margin-top: 0rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: #F55400 url("./../images/check.svg") no-repeat center;
  border: 1px solid #F55400;
  content: "";
  border-radius: 0.2rem;
  position: absolute;
  left: 0rem;
  top: 0rem;
  transition: all 0.3s;
  opacity: 0;
}
.check-styled input[type=checkbox]:checked + label:before {
  border-color: #F55400;
}
.check-styled input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.check-list .check-styled {
  margin-bottom: 1.6rem;
}
.check-list .check-styled:last-child {
  margin: 0;
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-control {
  height: 4.8rem;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  color: #424242;
  font-size: 1.6rem;
}
.form-control::placeholder {
  color: #424242;
  font-weight: 300;
}
.form-control:focus {
  color: #424242;
}

textarea.form-control {
  height: 10rem;
}

.date-input {
  background: #ffffff url("./../images/calendar.svg") no-repeat 2.4rem center;
  padding-left: 6rem;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 3.2rem 0;
}
.header-logo {
  width: 10rem;
}
.header-logo-text {
  font-size: 1.4rem;
  color: #F55400;
  font-weight: 300;
  margin-left: 1.6rem;
}
.header-main-menu {
  display: flex;
  margin-left: auto;
}
.header-main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header-main-menu ul li {
  margin: 1.2rem;
  padding: 0;
}
.header-main-menu ul li a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #959595;
  transition: all 0.3s;
  text-decoration: none;
}
.header-main-menu ul li a:hover, .header-main-menu ul li a.active {
  color: #F55400;
}

.header-menu-toggle {
  display: none;
  width: 4rem;
  height: 4rem;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-right: 2.4rem;
  margin-left: auto;
}
@media (max-width: 991px) {
  .header-menu-toggle {
    display: block;
  }
}
.header-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 3.2rem;
  background: #F55400;
  border-radius: 1px;
  opacity: 1;
  left: 1.6rem;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header-menu-toggle span:nth-child(1) {
  top: 0.8rem;
}
.header-menu-toggle span:nth-child(2) {
  top: 1.8rem;
}
.header-menu-toggle span:nth-child(3) {
  top: 2.8rem;
}
.header-menu-toggle.open span:nth-child(1) {
  top: 1.8rem;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header-menu-toggle.open span:nth-child(3) {
  top: 1.8rem;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 1319px) {
  .header-logo-text {
    font-size: 1.3rem;
    margin-left: 0.8rem;
  }
  .header-main-menu ul li {
    margin: 1rem;
  }
}
@media (max-width: 1199px) {
  .header-logo-text {
    display: none;
  }
  .header-main-menu ul li {
    margin: 1rem;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 8rem;
  }
  .header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6rem;
    z-index: 1000;
  }
  .header-content {
    padding: 0rem 0;
  }
  .header-logo {
    width: 10rem;
    height: 6rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    margin-left: 1.2rem;
  }
  .header-logo img {
    max-width: 100%;
    max-height: 100%;
  }
  .header-logo-text {
    display: none;
  }
  .header-main-menu {
    display: none;
    transition: all 0.3s;
    position: fixed;
    height: calc(100vh - 6rem);
    top: 6rem;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 10vh;
    padding-bottom: 4rem;
  }
  .header-main-menu.opening {
    display: flex;
    opacity: 0;
  }
  .header-main-menu.open {
    opacity: 1;
  }
  .header-main-menu ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .header-main-menu ul li {
    margin: 1.4rem 0;
  }
  .header-main-menu ul li a {
    font-size: 2rem;
  }
}
.footer {
  margin-bottom: 3.2rem;
}
.footer-content {
  background: #ffffff;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 2.4rem;
}
.footer-content p {
  margin-bottom: 0rem;
}
.footer-content a {
  color: #959595;
  text-decoration: none;
  display: block;
}
.footer-content a:hover {
  color: #F55400;
}
.footer-main-content {
  justify-content: center;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.footer-main-item {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  line-height: 1.5;
  margin-right: 6rem;
  white-space: nowrap;
}
.footer-main-item .small-headline {
  color: #424242;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.footer-social {
  position: absolute;
  right: 3.2rem;
  display: flex;
  justify-content: flex-end;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3.2rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  opacity: 0.8;
}

@media (max-width: 1199px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-main-content {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .footer-main-item {
    width: 25%;
    margin-right: 0;
    white-space: normal;
    padding: 0 2.4rem;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .footer-social {
    position: relative;
    right: 0;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0rem;
  }
  .footer-social a {
    margin-left: 1.2rem;
  }
}
@media (max-width: 991px) {
  .footer-main-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-content {
    padding: 2.4rem 0;
  }
  .footer-main-item {
    width: 100%;
  }
  .footer-social {
    padding: 0 2.4rem;
  }
}
.full-img {
  border-radius: 2.4rem;
  overflow: hidden;
}
.full-img img {
  width: 100%;
}

.primary-text-col {
  display: flex;
  flex-direction: column;
}

.primary-text-box {
  padding: 3.2rem;
  background: #F55400;
  color: #ffffff;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.primary-text-box ul {
  margin-bottom: 4rem;
}
.primary-text-box h1,
.primary-text-box h2 {
  color: #ffffff;
}
.primary-text-box p {
  margin-bottom: 4rem;
}
.primary-text-box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .primary-text-box {
    padding: 2.4rem;
  }
}
.white-text-box {
  padding: 3.2rem;
  background: #ffffff;
  color: #959595;
  border-radius: 2.4rem;
}
.white-text-box-contact {
  position: relative;
}
.white-text-box-contact-logo {
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  width: 11.3rem;
}
.white-text-box-contact-logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .white-text-box-contact {
    padding-top: 6rem !important;
  }
  .white-text-box-contact-logo {
    right: 2.4rem;
    top: 2.4rem;
  }
}
.white-text-box ul {
  margin-bottom: 4rem;
}
.white-text-box p:last-child {
  margin-bottom: 0;
}
.white-text-box h6 {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  color: #F55400;
}
.white-text-box h1,
.white-text-box h2 {
  color: #424242;
}
@media (max-width: 767px) {
  .white-text-box {
    padding: 2.4rem;
  }
}
.white-img-text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.6rem 1.6rem 0 0;
}
.white-img-text-box-col {
  display: flex;
}
.white-img-text-box a {
  text-decoration: none;
}
.white-img-text-box-img {
  border-radius: 1.6rem 1.6rem 0 0;
  position: relative;
}
.white-img-text-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.white-img-text-box-bottom {
  background-color: #ffffff;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 1.6rem 1.6rem;
  flex-grow: 1;
}
.white-img-text-box .section-headline {
  color: #424242;
}
.white-img-text-box .small-headline {
  color: #424242;
}
.white-img-text-box p {
  margin-bottom: 0rem;
}

.half-img-box {
  display: flex;
  height: 100%;
  border-radius: 2.4rem;
  overflow: hidden;
  position: relative;
}
.half-img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .col-xl-6 .half-img-box img {
    position: relative;
  }
}
@media (max-width: 991px) {
  .col-lg-6 .half-img-box img {
    position: relative;
  }
}
.primary-box-link {
  background: #F55400;
  border-radius: 1.6rem;
  padding: 2.4rem 3.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary-box-link a {
  color: #ffffff;
}
.primary-box-link-left {
  font-size: 2rem;
}
.primary-box-link-right {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.primary-box-link-right span {
  margin-right: 1.6rem;
}

@media (max-width: 1199px) {
  .primary-box-link {
    padding: 2.4rem;
  }
  .primary-box-link-left {
    font-size: 1.8rem;
  }
  .primary-box-link-right {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  .primary-box-link {
    padding: 2.4rem;
  }
  .primary-box-link-left {
    font-size: 1.4rem;
  }
  .primary-box-link-right {
    font-size: 1.4rem;
  }
  .primary-box-link-right span {
    margin-right: 0.8rem;
  }
  .primary-box-link-right .btn-circle-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .primary-box-link-right .btn-circle-arrow svg {
    width: 1.8rem;
  }
}
@media (max-width: 767px) {
  .primary-box-link {
    padding: 2.4rem 1.2rem;
    flex-direction: column;
    align-items: center;
  }
  .primary-box-link-left {
    text-align: center;
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .primary-box-link-right {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    justify-content: center;
  }
  .primary-box-link-right span {
    margin-right: 0.8rem;
  }
  .primary-box-link-right .btn-circle-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .primary-box-link-right .btn-circle-arrow svg {
    width: 1.8rem;
  }
}
.news-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.news-item-col {
  display: flex;
}
.news-item a {
  text-decoration: none;
}
.news-item-img {
  border-radius: 1.6rem 1.6rem 0 0;
  overflow: hidden;
}
.news-item-img a {
  display: flex;
}
.news-item-img a:hover img {
  transform: scale(1.1);
}
.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.news-item-bottom {
  background-color: #ffffff;
  padding: 3.2rem 2.4rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 1.6rem 1.6rem;
  flex-grow: 1;
}
.news-item-title {
  font-weight: 600;
  color: #424242;
  margin-bottom: 2.4rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}
.news-item-title:hover {
  color: #F55400;
}
.news-item p {
  margin-bottom: 4rem;
}
.news-item p:last-child {
  margin-bottom: 0;
}
.news-item .btn {
  margin-top: auto;
  width: 100%;
}

.half-news-col {
  display: flex;
}
.half-news-col .news-item-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
}
.half-news-col .news-item {
  width: calc(50% - 1.6rem);
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

@media (max-width: 575px) {
  .half-news-col .news-item-list {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .half-news-col .news-item {
    width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.partner-section {
  padding: 9.6rem 0 12rem 0;
  text-align: center;
}
.partner-section .section-headline {
  color: #424242;
  margin-bottom: 4rem;
}
.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-item {
  width: 18rem;
  height: 18rem;
  margin: 0.8rem;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  padding: 1rem;
}
.partner-item img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 991px) {
  .partner-item {
    width: calc(25% - 1.6rem);
    height: 15rem;
  }
}
@media (max-width: 767px) {
  .partner-section {
    padding: 4rem 0;
  }
  .partner-item {
    width: calc(25% - 1.6rem);
    height: 12rem;
  }
}
@media (max-width: 575px) {
  .partner-item {
    width: calc(50% - 1.6rem);
    height: 12rem;
  }
}
.product-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 1.6rem;
  overflow: hidden;
}
.product-item-col {
  display: flex;
}
.product-item a {
  text-decoration: none;
}
.product-item-img {
  border-radius: 1.6rem;
  overflow: hidden;
}
.product-item-img a {
  display: flex;
}
.product-item-img a:hover img {
  transform: scale(1.1);
}
.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.product-item-bottom {
  background-color: #ffffff;
  padding: 3.2rem 2.4rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 1.6rem 1.6rem;
  flex-grow: 1;
}
.product-item-title {
  font-weight: 600;
  color: #F55400;
  margin-bottom: 2.4rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}
.product-item-title:hover {
  color: #424242;
}
.product-item p {
  margin-bottom: 0rem;
}

.review-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.6rem;
  position: relative;
}
.review-item-col {
  display: flex;
}
.review-item a {
  text-decoration: none;
}
.review-item-img {
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
}
.review-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.review-item-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #ffffff;
  padding: 3.2rem 2.4rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 1.6rem 1.6rem;
  flex-grow: 1;
}
.review-item-bottom.full {
  position: relative;
}
.review-item-bottom.full:after {
  top: 0;
  z-index: -1;
}
.review-item-bottom:after {
  width: 6.8rem;
  height: 6.8rem;
  content: "";
  display: block;
  position: absolute;
  right: 3.2rem;
  top: -3.6rem;
  background: url("./../images/review.svg") no-repeat center;
  background-size: contain;
}
.review-item-title {
  font-weight: 600;
  color: #424242;
  margin-bottom: 1.6rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}
.review-item p {
  margin-bottom: 0rem;
}

.dropdown-menu {
  border-radius: 1.6rem;
  border: 1px solid #424242;
  background: #ffffff;
  padding: 2.4rem;
  margin-top: 1.6rem !important;
}
.dropdown-menu a {
  color: #424242;
  text-decoration: none;
}
.dropdown-menu a:hover {
  color: #F55400;
}
.dropdown-item {
  padding: 0;
  background: transparent;
  margin-bottom: 0.8rem;
}
.dropdown-item:last-child {
  margin-bottom: 0;
}
.dropdown-item:hover {
  background: transparent;
}

.filter-content {
  display: flex;
  flex-direction: column;
}
.filter-content-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.filter-content-top-left {
  margin-bottom: 2.4rem;
}
.filter-content-top-right {
  margin-bottom: 2.4rem;
}
.filter-content-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.filter-content-bottom-left {
  margin-bottom: 2.4rem;
  display: flex;
  flex-wrap: wrap;
}
.filter-content-bottom-left .active-filter-item {
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
}
.filter-content-bottom-right {
  margin-bottom: 2.4rem;
  text-align: right;
  color: #424242;
  font-size: 1.4rem;
}
.filter-menu {
  display: flex;
  flex-direction: column;
}
.filter-menu-outer {
  min-width: 23rem;
}
.filter-menu-title {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #959595;
  margin-bottom: 2.4rem;
  color: #424242;
}
.filter-menu-item {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #959595;
  margin-bottom: 2.4rem;
}
.filter-menu-item-title {
  color: #424242;
  display: block;
  margin-bottom: 1.6rem;
}
.filter-menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.ui-widget.ui-widget-content {
  border: none !important;
  border-radius: 0;
  background-color: #959595;
  height: 1px;
  border-radius: 8px;
}

.ui-slider .ui-slider-range {
  background: #F55400;
  height: 2px;
  border-radius: 16px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border-radius: 50%;
  border: 2px solid #F55400;
  background: #ffffff;
  margin-top: -0.3rem !important;
}

.price-slider-text {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  font-size: 1.2rem;
}
.price-slider-text input {
  font-size: 1.2rem;
  border: 0;
  color: #959595;
  flex-shrink: 1;
  width: 6rem;
  padding: 0;
  padding-left: 0.5rem;
}

.active-filter-item {
  background: #F55400;
  border-radius: 3.2rem;
  padding: 1rem 1.6rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.active-filter-item-close {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.6rem;
  transition: all 0.3s;
}
.active-filter-item-close img {
  max-width: 100%;
}
.active-filter-item-close:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .filter-content-bottom-left {
    width: 100%;
  }
  .filter-content-bottom-right {
    width: 100%;
  }
}
.pagination {
  justify-content: center;
}

.page-item {
  margin: 0.4rem;
  color: #000;
}
.page-item.active .page-link {
  font-weight: 700;
  background: #F55400;
  color: #ffffff;
}
.page-item.active .page-link:hover {
  color: #ffffff;
}
.page-item .page-link {
  border-radius: 2px !important;
  padding: 0.2rem 0.2rem;
  line-height: 1;
  background: transparent;
  border: none;
  color: #000;
}
.page-item .page-link:hover {
  color: #F55400;
}

.gallery-item {
  overflow: hidden;
  width: 100%;
  display: block;
  border-radius: 1.6rem;
}
.gallery-item-col {
  display: flex;
}
.gallery-item img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.modal-content {
  border: none;
  border-radius: 3.6rem;
}
.modal-header {
  border: none;
  padding: 3.2rem;
}
.modal-body {
  padding: 0 3.2rem 3.2rem;
}
@media (max-width: 767px) {
  .modal-content {
    border-radius: 2.4rem;
  }
  .modal-header {
    padding: 2.4rem;
  }
  .modal-body {
    padding: 0 2.4rem 2.4rems;
  }
}

.text-page {
  color: #424242;
  background: #ffffff;
  padding: 4.8rem 3.2rem;
  border-radius: 1.6rem;
}
.text-page-two-col {
  column-count: 2;
  column-gap: 2.6rem;
}
@media (max-width: 991px) {
  .text-page-two-col {
    column-count: 1;
  }
}
.text-page h1,
.text-page h2,
.text-page h3,
.text-page h4,
.text-page h5,
.text-page h6 {
  color: #424242;
  margin-bottom: 4.8rem;
}
.text-page p {
  margin-bottom: 4.8rem;
}
.text-page ul {
  margin-bottom: 4.8rem;
}
.text-page .table-box {
  background: #F4F4F4;
  border-radius: 1.6rem;
  padding: 3.2rem;
  margin-bottom: 3.2rem;
}
.text-page table {
  width: 100%;
}
.text-page table th {
  height: 4.8rem;
  font-size: 2rem;
  font-weight: 700;
  vertical-align: text-top;
  border-bottom: 1px solid #E6E6E6;
}
.text-page table td {
  border-bottom: 1px solid #E6E6E6;
  height: 5rem;
  padding-right: 1.6rem;
}
@media (max-width: 767px) {
  .text-page {
    padding: 2.4rem 2.4rem;
  }
  .text-page h1,
  .text-page h2,
  .text-page h3,
  .text-page h4,
  .text-page h5,
  .text-page h6 {
    margin-bottom: 2.4rem;
  }
  .text-page p {
    margin-bottom: 2.4rem;
  }
  .text-page ul {
    margin-bottom: 2.4rem;
  }
  .text-page .table-box {
    padding: 1.6rem 2.4rem;
  }
  .text-page table td, .text-page table th {
    white-space: nowrap;
  }
}
/*# sourceMappingURL=style.css.map */
