@charset "utf-8";
/* CSS Document */

:root {
  /* --grey: #757575; */
  --white: #fff;
  --black: #000;
  --orange: #e97411;
  --dark-orange: #f68420;
  --purple: #782a90;
  --light-grey: #f7f7f7;
}

body {
  color: var(--black);
  font-family: "Space Grotesk";
  font-size: 22px;
  line-height: 28px;
}

figure {
  margin: 0;
}

a,
input,
button,
textarea {
  outline: none !important;
}

a {
  text-decoration: none;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

p a,
a {
  text-decoration: none;
  color: inherit;
}

p a:hover {
  color: var(--dark-orange);
}

ul li,
ol li {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ul li a,
ol li a {
  text-decoration: none;
  color: inherit;
}

ul li a:hover,
ol li a:hover {
  color: var(--orange);
}

/* Common Style Start */

.main-title {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: var(--black);
}

.main-title * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  text-decoration: none;
}

.block-title {
  color: var(--black);
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
}

.block-title * {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}

.large-paragraph {
  color: var(--black);
  font-family: "Space Grotesk";
  font-weight: 300;
  font-size: 24px;
  line-height: 31px;
}
.large-paragraph * {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  padding: 17px 67px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-purple {
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-purple:hover , .btn-purple:focus , .btn-purple:focus-visible , 
.btn-orange:active  {
  background-color: var(--purple) !important;
  color: var(--white) !important;
}

.btn-orange {
  color: var(--dark-orange);
  border: 2px solid var(--dark-orange);
}

.btn-orange:hover , .btn-orange:focus , .btn-orange:active  , .btn-orange:focus-visible {
  background-color: var(--dark-orange) !important;
  color: var(--white) !important;
}

/* Common Style End */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/

.header .navbar {
  padding: 0;
  max-width: 1760px;
  margin: 0 auto;
}

.header {
  padding: 25px 0 30px 0;
}

.header .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 414px;
  z-index: 11;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

.header .navbar-brand * {
  width: 100%;
}

.header .navbar-nav .nav-item {
  padding: 0 30px;
}

.header .navbar-nav .nav-item .nav-link {
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  color: var(--dark-orange);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.header .navbar-nav .nav-item .nav-link.active,
.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .current-menu-item .nav-link {
  color: var(--purple);
}

.header .navbar-nav .nav-item .nav-link.active::before,
.header .navbar-nav .nav-item .nav-link:hover::before,
.header .navbar-nav .current-menu-item .nav-link::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url("../images/header-vector.svg") no-repeat;
  background-size: 100% 100%;
  left: -32px;
  top: 0;
}
/*========== Header End ==========*/
/*footer*/

.footer-wrap {
  background: var(--light-grey);
  padding: 50px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-right {
  display: flex;
}
.footer-right ul {
  padding-left: 0;
}
.footer-right ul li {
  list-style-type: none;
}

.footer-right ul li a {
  display: inline-flex;
}

.footer-right ul li a,
.footer-right ul li {
  font-family: "Space Grotesk";
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.footer-right ul li.ofc-adress {
  max-width: 161px;
}
.footer-right ul li a:hover,
.footer-right ul li a.active,
.footer-right ul .current-menu-item .nav-link {
  color: var(--purple);
}

.footer-right ul li a:hover span {
  color: var(--black);
}

.footer-right ul {
  padding: 10px 0 10px 0;
  margin: 0;
}

.footer-right > *:not(:last-child) {
  margin: 0 49px 0 0;
  padding: 10px 55px 10px 0;
  border-right: 2px solid #070707;
}

.footer-bottom {
  padding: 21px 0 23px 0;
}

.footer-bottom .block-text {
  font-family: "Space Grotesk";
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
  font-weight: 500;
}
.footer-bottom .block-text * {
  margin: 0;
}
.footer-bottom .block-text a {
  text-decoration: underline;
}
/*footer*/

/*reportit*/
.reportit-main {
  padding: 153px 0;
}

.reportit-right .block-title {
  font-weight: 500;
}

.reportit-right .large-paragraph {
  font-weight: 300;
}

.reportit-right {
  max-width: 1399px;
}

.reportit-right .btn {
  margin: 24px 0 0 0;
}

.reportit-text {
  max-width: 1289px;
}

/*reportit*/

/*common*/
.disc {
  position: relative;
}

.disc::before {
  content: "";
  position: absolute;
  width: 102px;
  height: 75px;
  background: url("../images/common-vector.svg") no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}

.common-space-vector {
  padding-left: 120px;
}
/*common*/

.mikroliitti-oy-img * {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.mikroliitti-oy-img {
  /* width: 100%;
  margin: 0 0 0 auto; */
  width: 38%;
}

.mikroliitti-oy-right {
  width: 100%;
}

.mikroliitti-oy-right * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mikroliitti-oy-wrp {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
}

.mikroliitti-oy-main {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.mikroliitti-oy-odd-even > *:nth-child(even) {
  flex-direction: row-reverse;
}

.mikroliitti-oy-odd-even > *:nth-child(even) .mikroliitti-oy-img {
  width: 101%;
}
.mikroliitti-oy-odd-even > *:nth-child(even) .mikroliitti-inner-block {
  margin-left: 108px;
}

.mikroliitti-inner-block {
  max-width: 671px;
  margin-left: calc(50vw - 888px);
  overflow: hidden;
}

.mikroliitti-inner-block .btn-purple {
  padding: 15px 77px;
}

.mikroliitti-inner-block ul li {
  font-size: 24px;
  line-height: 31px;
}

.mikroliitti-inner-block ul li::marker {
  font-size: 17px;
  line-height: 17px;
}

.mikroliitti-inner-block .large-paragraph {
  margin-bottom: 24px;
  font-weight: 300;
}

.mikroliitti-inner-block ul {
  margin: 0 0 10px 0;
}

/* .mikroliitti-oy-odd-even > *:nth-child(even) .mikroliitti-oy-img {
  width: 60%;
  margin: auto 0 0 0;
} */

.mikroliitti-oy-odd-even > *:nth-child(even) {
  background: var(--light-grey);
}

.mikroliitti-oy-odd-even > *:nth-child(even) .mikroliitti-oy-wrp .row {
  justify-content: flex-end;
}

/* .mikroliitti-oy-odd-even > *:nth-child(even) .mikroliitti-inner {
  max-width: 588px;
  margin: 0 0 0 auto;
} */

.mikroliitti-inner {
  width: 62%;
  padding: 15px 0;
}

/*banner*/

.banner-inner {
  display: flex;
}
.banner-wrapper {
  position: relative;
  background: var(--light-grey);
}
.banner-img {
  width: 100%;
  height: 100%;
}

.banner-left {
  width: 65%;
  /* display: flex; */
}
.banner-img * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-right {
  width: 40%;
}

/* .banner-right {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  height: 100%;
} */
.banner-right .row {
  justify-content: flex-end;
  height: 100%;
}

.banner-content {
  padding: 262px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.banner-content-main {
  max-width: 651px;
  /* margin: 0 0 0 45px; */
  margin: 0 auto 0 auto;
}

.banner-right .container {
  height: 100%;
}
.banner-content .main-title {
  margin: 0 0 15px 0;
}
.banner-btn-flx .btn:not(:last-child) {
  margin: 0 40px 0 0;
}

.banner-bottom-vector * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.read-more-link {
  background: var(--white);
  position: relative;
  z-index: 1;
  padding: 33px 0 70px;
}

.read-more-link-inner {
  max-width: 613px;
  margin: 0 auto;
  border-top: 2px solid var(--black);
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
}

.read-more-link-inner a {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #070707;
  display: inline-flex;
  margin: 0 0 0 auto;
}

.read-more-link-inner a:hover {
  color: var(--dark-orange);
}

.read-more-link-inner a:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(421%)
    hue-rotate(330deg) brightness(99%) contrast(91%);
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(98%)
    saturate(421%) hue-rotate(330deg) brightness(99%) contrast(91%);
}

.read-more-link-inner a img {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  margin-left: 12px;
  height: 10px;
}

.banner-btn-flx .btn {
  padding: 15px 65px;
}

.banner-btn-flx .btn.btn-orange {
  padding: 15px 72px;
}

.banner-btn-flx {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

/*banner*/

/*tietoa&historiaa page*/
.inner-banner {
  position: relative;
}

.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.inner-banner-vector {
  position: absolute;
  bottom: -36px;
}
.inner-banner .inner-banner-detail {
  padding: 123px 0 296px 0;
  position: relative;
}

.inner-banner .inner-banner-detail .main-title {
  color: var(--white);
}

.info-history-main .reportit-main {
  padding: 56px 0 142px 0;
}

.info-history-main .reportit-main:not(:last-child) {
  border-bottom: 2px solid var(--black);
}
.info-history-main .reportit-main:nth-child(even) {
  padding: 98px 0;
}
.info-history-main .reportit-right .btn {
  margin: 15px 0 0 0;
  padding: 15px 60px;
}
.info-history-main .reportit-right .btn.btn-purple {
  padding: 15px 72px;
}
.info-history-main .reportit-right {
  max-width: 100%;
}
.info-history-main .reportit-right .reportit-text {
  max-width: 100%;
}

.inner-banner-vector {
  width: 100%;
}

.inner-banner-vector * {
  width: 100%;
  object-fit: cover;
}
/*tietoa&historiaa page*/

.act-for-customer {
  padding: 56px 0 74px 0;
}

.act-for-customer .read-more-link .read-more-link-inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.act-for-customer .read-more-link {
  padding: 74px 0 0px;
}
.act-for-customer .reportit-right {
  max-width: 1551px;
}
.act-for-customer .reportit-text {
  max-width: 1412px;
}

.services-main {
  padding: 0 0 107px 0;
  border-bottom: 2px solid #070707;
}

.services-wrapper {
  max-width: 1502px;
  margin: 0 auto;
}

.services-wrapper .row > * {
  padding-left: 30px;
  padding-right: 30px;
}
.services-wrapper .row {
  margin-left: -30px;
  margin-right: -30px;
}

.services-detail {
  background: var(--dark-orange);
  height: 100%;
  padding: 7px 10px 25px 17px;
  min-height: 245px;
}
.services-img {
  background: var(--light-grey);
  padding: 23px 10px 25px 10px;
  min-height: 257px;
  /* height: inherit; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-img figure {
  height: 100%;
  margin: auto;
}
.services-img img {
  margin: 0 auto;
  display: block;
  height: inherit;
}

.services-detail * {
  color: var(--white);
}

.services-detail .common-text {
  font-size: 18px;
  line-height: 23px;
  font-weight: 300;
  margin: 5px 0 0 0;
}

.sevrices-block {
  display: flex;
  flex-direction: column;
  height: Calc(100% - 60px);
  margin: 0 0 60px 0;
}

.services-wrapper .btn-flx {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;
  margin: 50px 0 0 0;
}
.services-wrapper .btn-flx .btn:not(:last-child) {
  margin-right: 40px;
}

.services-wrapper .btn-flx .btn.btn-orange {
  padding: 15px 72px;
}

.services-wrapper .btn-flx .btn.btn-purple {
  padding: 15px 65px;
}

.filter-wrapper {
  background: #f7f7f7;
}

.filter-wrapper {
  position: relative;
}
.filter-wrapper::before {
  content: "";
  width: 60000px;
  height: 100%;
  right: 0;
  top: -6px;
  background: #f7f7f7;
  position: absolute;
  z-index: -1;
}

.tulokset-main {
  border-bottom: 2px solid #070707;
}
.tulokset-inner {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}
.filter-wrapper {
  padding: 39px 78px 85px 95px;
  max-width: 495px;
}

.year-range-container {
  display: flex;
  align-items: center;
}
.year-range-container select {
  margin-right: 12px;
}
.year-range-container select:last-child {
  margin-left: 12px;
}

.filter-wrapper .form-control {
  font-size: 24px;
  line-height: 31px;
  font-weight: 300;
  font-family: "Space Grotesk";
  border: 1px solid #707070;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
}
.filter-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--black);
}
.filter-inner {
  margin-bottom: 44px;
}
.filter-inner .main-title {
  margin-bottom: 21px;
}

.tulokset-right {
  margin-left: 77px;
}

.tulokset-right p {
  margin: 0;
}
.filter-content-block .location {
  font-size: 26px;
  line-height: 34px;
}

.filter-content-block .year {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;

  margin: 7px 0;
}
.filter-content-block .link {
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  text-decoration: underline;
}
.filter-content-block .link:hover {
  color: var(--purple);
}

.tulokset-right .main-title {
  margin-bottom: 62px;
}

.filter-content-block {
  margin-bottom: 51px;
}

.filter-location .form-control {
  max-width: 269px;
  position: relative;
  margin: 0 !important;
  text-align: left;
}

.filter-location select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url(../images/btm-arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 23% 26%;
}

input[type="radio"]:checked {
  background-color: #707070;
}

input[type="radio"] {
  margin-right: 8px;
}

.filter-order .form-group {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  /* cursor: pointer; */
}
.filter-order .form-group label {
  cursor: pointer;
}
.filter-order .form-group .form-control {
  width: 23px;
  height: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  border-color: #707070;
}

.selected-location {
  margin-top: 20px;
}

.selected-location p:hover {
  color: var(--dark-orange);
  cursor: pointer;
}

.selected-location p {
  margin-bottom: 10px;
  transition: 0.4s;
}

.selected-location span {
  margin-right: 10px;
}

.clear-all {
  text-decoration: underline;
}

.clear-all:hover {
  color: var(--purple);
}

/*Yhteystiedot page*/
/*mikroliitti-location*/

.mikroliitti-location-inner {
  display: flex;
}

.mikroliitti-location {
  padding-right: 99px;
  border-right: 2px solid #070707;
  margin-right: 36px;
}

.mikroliitti-location a:hover {
  color: var(--dark-orange);
}

.mikroliitti-location-text {
  margin-right: 58px;
  padding-top: 20px;
  font-weight: 300;
}
.mikroliitti-location-text p {
  margin-bottom: 0;
}

.mikroliitti-location-text p span {
  display: block;
}
.mikroliitti-location .large-paragraph {
  font-weight: 300;
}

.mikroliitti-location-wrap {
  padding-bottom: 97px;
  border-bottom: 2px solid #070707;
  margin-bottom: 98px;
}
.mikroliitti-location-main {
  padding: 30px 0;
}

.filter-button .form-check:has(.form-check-input:checked) .form-check-label {
  color: var(--dark-orange) !important;
}
.filter-button .form-check-label {
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.filter-button .form-check-label:hover {
  color: var(--dark-orange) !important;
}
/*mikroliitti-location*/

/*Yhteystiedot page*/

/*staff*/
.staff-wrapper {
  max-width: 1505px;
  margin: 80px auto 0 auto;
}

.staff-block {
  position: relative;
}
.staff-detail {
  position: relative;
  background: var(--dark-orange);
}

.staff-img * {
  width: 100%;
  height: 471px;
}

.staff-wrapper {
  max-width: 1515px;
  /* max-width: 1472px; */
  margin: 41px auto 0 auto;
}

.staff-wrapper .row > * {
  padding-left: 30px;
  padding-right: 30px;
}
.staff-wrapper .row {
  margin-left: -30px;
  margin-right: -30px;
}

.staff-block {
  position: relative;
  height: Calc(100% - 75px);
  margin: 0 0 75px 0;
  display: flex;
  flex-direction: column;
}

.staff-block .staff-img {
  height: 279px;
}
.staff-detail * {
  color: var(--white);
}

.staff-detail .block-title {
  font-size: 28px;
  font-weight: 500;
}

.staff-detail {
  padding: 8px 15px 10px 15px;
  height: 100%;
}

.staff-detail .large-paragraph {
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  margin: 10px 0 22px;
}

.staff-contact a:hover {
  color: var(--purple);
}

.staff-contact {
  display: flex;
  flex-direction: column;
}

/*staff */

/*contact*/

.contact-main {
  background: #f7f7f7;
  padding: 80px 0 55px 0;
}

.contact-wrap .form-group {
  margin: 0 0 24px 0;
}
.contact-wrap .form-group a {
  text-decoration: underline;
}
.contact-wrap .form-group a:hover {
  color: var(--dark-orange);
}

/* .contact-wrap .wpcf7-not-valid-tip {
  position: absolute;
    left: 0;
    width: 100%;
right: 0;
} */

.contact-wrap .form-group label[for="privacyPolicy"] .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  width: 100%;
  right: 0;
}

.contact-wrap .wpcf7-response-output {
  margin: 0px !important;
  padding: 5px 0px !important;
  border: 0px !important;
}

.contact-wrap .wpcf7-form.invalid .wpcf7-response-output,
.contact-wrap .wpcf7-form.failed .wpcf7-response-output {
  color: #dc3232;
}
.contact-wrap .wpcf7-form.sent .wpcf7-response-output,
.contact-wrap .wpcf7-form.success .wpcf7-response-output {
  color: green;
}

.contact-wrap .wpcf7-list-item {
  margin: 0;
}

.contact-wrap .form-group .form-control {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  font-size: 24px;
  line-height: 31px;
  font-family: "Space Grotesk";
  padding: 15px 19px;
  border: 1px solid #707070;
  font-weight: 300;
}
.contact-wrap .form-group .form-control:focus {
  box-shadow: unset;
}

.form-group input[type="checkbox"].form-control {
  padding: 0px !important;
  border-radius: 6px;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}

.contact-wrap {
  margin: 16px 0 0 0;
}

.contact-wrap textarea {
  min-height: 161px;
  resize: none;
}

.contact-wrap .btn {
  padding: 17px 100px;
  display: block;
  margin: 0 0 0 auto;
}
/* 
.contact-wrap .wpcf7-spinner {
 
  position: relative;
  top: -40px;
} */
.contact-wrap .wpcf7-spinner {
  top: -42px;
  right: 65px;
}
/*contact*/

/*========== 404 Page Start ==========*/
.error-page .typography-main {
  text-align: center;
}

.typography-wrp {
  padding: 150px 0;
}

.typography-wrp .main-title {
  color: var(--black);
  margin: 0 0 40px;
}

.typography-wrp .block-title {
  margin: 0 0 30px;
}

.typography-wrp .common-detail {
  margin: 0 0 30px;
}
/*========== 404 Page End ==========*/

/*========== Typography Page Start ==========*/
.alignright {
  float: right;
  margin: 20px 0 20px 20px;
}

.aligncenter {
  float: none;
  display: block;
  margin: 20px auto;
}

.alignleft {
  float: left;
  margin: 20px 40px 20px 0;
}

.typography-main .main-title {
  text-align: center;
}

.typography-content h1 {
  font-size: 32px;
  line-height: 40px;
}

.typography-content h2 {
  font-size: 32px;
  line-height: 40px;
}

.typography-content h3 {
  font-size: 28px;
  line-height: 36px;
}

.typography-content h4 {
  font-size: 22px;
  line-height: 32px;
}

.typography-content h5 {
  font-size: 20px;
  line-height: 28px;
}

.typography-content h6 {
  font-size: 18px;
  line-height: 28px;
}

/*========== Typography Page End ==========*/

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  margin-right: 8px;
  cursor: pointer;
}

input[type="checkbox"].form-control {
  background-color: transparent;
}
input[type="checkbox"]:focus {
  box-shadow: unset;
}

input[type="checkbox"]:checked {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}

/*filter*/

.filter-button .title {
  font-size: 24px;
  line-height: 31px;
  font-weight: 300;
  font-family: "Space Grotesk";
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  padding: 10px 55px 10px 10px;
  margin: 0;
  position: relative;
}
.filter-button .title::after {
  content: "";
  position: absolute;
  right: 10px;
  background: url(../images/btm-arrow.svg) no-repeat;
  height: 10px;
  width: 21px;
  background-size: 100% 100%;
  top: 22px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.filter-button .title[aria-expanded="true"]::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.filter-location {
  position: relative;
  max-width: 269px;
}

.filter-button .accordion-body {
  position: absolute;
  width: calc(100% + 1px);
  margin: -7px -1px;
  border: 1px solid #707070;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  background: #f7f7f7;
  z-index: 3;
  padding: 0 20px !important;
  max-width: 269px;
}

.filter-button {
  /* padding : 10px 10px; */
  border: 1px solid #707070;
  max-width: 269px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
}
.filter-button input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.accordion-body .form-check {
  margin-bottom: 7px;
}

.filter-button .accordion-body {
  padding: 10px 10px !important;
}

.filter-button .form-check-input {
  border-color: #707070;
}
