@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
.btn {
  width: fit-content;
  padding: 15px 25px;
  border-radius: 50px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn.btn-primary {
  background-color: #F2C306;
  color: #000000;
  border: 1px solid #F2C306;
}
.btn.btn-primary:hover {
  background-color: #FFE064;
  border: 1px solid #FFE064;
}
.btn.btn-secondary {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.btn.btn-secondary:hover {
  background-color: #84B544;
  border: 1px solid #84B544;
}
.btn.btn-secondary.negative {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.btn-secondary.negative:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
}

.arrow-holder .button-arrow {
  transform: translate(0, 3px);
}

body {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
}

h1,
.h1 {
  font-size: 70px;
}
@media all and (max-width: 768px) {
  h1,
.h1 {
    font-size: 55px;
  }
}

h2,
.h2 {
  font-size: 42px;
}
@media all and (max-width: 768px) {
  h2,
.h2 {
    font-size: 35px;
  }
}

h3,
.h3 {
  font-size: 25px;
}
@media all and (max-width: 768px) {
  h3,
.h3 {
    font-size: 20px;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

p {
  font-size: 17px;
  line-height: 160%;
  margin-bottom: 0;
}

strong {
  font-weight: 500;
}

.text-large {
  font-size: 25px;
}

.text-small {
  font-size: 12px;
}

.text-primary {
  color: #1F1F1F !important;
}

.text-secondary {
  color: #D4F6EB !important;
}

.text-tertiary {
  color: #84B544 !important;
}

.new-color {
  color: #0B2630 !important;
}

.bg-primary {
  background-color: #84B544 !important;
}

.bg-secondary {
  background-color: #204D52 !important;
}

.bg-tertiary {
  background-color: #325E61 !important;
}

.bg-light {
  background-color: #EFEFEF !important;
}

.bg-lighter {
  background-color: #f8f3f3 !important;
  background-color: rgba(50, 94, 97, 0.062745098) !important;
}

.bg-light-transparent {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-light-transparent-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-light-transparent-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.border-light {
  border: 1px solid #D4F6EB !important;
  border-color: #D4F6EB !important;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.border-radius-15 {
  border-radius: 15px !important;
}

.border-radius-20 {
  border-radius: 20px !important;
}

.border-top-radius-40 {
  border-top-right-radius: 40px !important;
  border-top-left-radius: 40px !important;
}
@media all and (max-width: 768px) {
  .border-top-radius-40 {
    border-top-right-radius: 20px !important;
    border-top-left-radius: 20px !important;
  }
}

.border-radius-40 {
  border-radius: 40px !important;
}
@media all and (max-width: 768px) {
  .border-radius-40 {
    border-radius: 20px !important;
  }
}

.border-radius-50 {
  border-radius: 50px !important;
}

.br-right-full {
  border-right: 1px solid #000000;
}

header #header-navigation {
  font-size: 0.95em;
}
header #header-navigation p {
  font-size: 0.95em;
}
@media all and (max-width: 992px) {
  header #header-navigation {
    display: none;
  }
  header #header-navigation .col-md-6 {
    width: 100%;
  }
}
header ul li {
  margin-right: 15px;
}
header ul li:last-of-type {
  margin-right: 0;
}
header ul li a span {
  font-weight: 500;
}
@media all and (max-width: 430px) {
  header .mobile-only a.btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media all and (max-width: 390px) {
  header .mobile-only {
    display: none !important;
  }
}
header #navToggler {
  border: 0;
  padding: 0;
}
header #navToggler:focus-visible, header #navToggler:focus {
  outline: none;
  box-shadow: none;
}
header #navToggler .navbar-toggler-icon {
  background-image: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
}
@media all and (max-width: 768px) {
  header #navToggler .navbar-toggler-icon {
    margin-right: 15px;
  }
}
header #navToggler .navbar-toggler-icon span {
  background-color: #1F1F1F;
  width: 30px;
  height: 3px;
  position: absolute;
  transition: 0.3s ease;
}
header #navToggler .navbar-toggler-icon span:nth-of-type(1) {
  transform: translateY(-7px);
}
header #navToggler .navbar-toggler-icon span:nth-of-type(2) {
  opacity: 1;
  width: calc(100% - 5px);
  transform: translate(3px, 0);
}
header #navToggler .navbar-toggler-icon span:nth-of-type(3) {
  transform: translateY(7px);
}
header #navToggler.active {
  transform: rotate(45deg);
}
header #navToggler.active span:nth-of-type(1) {
  transform: rotate(45deg);
}
header #navToggler.active span:nth-of-type(2) {
  opacity: 0;
}
header #navToggler.active span:nth-of-type(3) {
  transform: rotate(-45deg);
}
header.open {
  position: absolute;
  z-index: 9;
  width: 100%;
  margin-top: -74px;
}
@media all and (max-width: 992px) {
  header.open #header-navigation {
    display: block;
  }
}
@media all and (max-width: 992px) {
  header.open {
    background-color: #84B544;
    color: #1F1F1F;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  header.open #navbarText {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  header.open .w-75 {
    width: 100% !important;
  }
  header.open .no-flex-mobile {
    display: block !important;
  }
  header.open .no-flex-mobile .d-flex {
    display: block !important;
  }
  header.open .no-flex-mobile .d-flex.justify-content-between .d-flex a {
    color: #D4F6EB !important;
  }
  header.open .no-flex-mobile .d-flex.justify-content-between .d-flex:last-of-type {
    display: none !important;
  }
}

.form-background-left {
  width: 120%;
  transform: translate(-20%);
  padding-left: 25%;
}
@media all and (max-width: 992px) {
  .form-background-left {
    padding-left: 0;
    width: 100%;
    transform: translate(0);
  }
}

@media all and (max-width: 992px) {
  body .contact .form-background-md-100 {
    width: 100%;
  }
}

footer p,
footer a {
  line-height: 2;
}
footer hr.text-secondary {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #D4F6EB;
  margin: 1em 0;
  padding: 0;
  opacity: 1;
}
footer ul#footer-menu li {
  line-height: 2;
}
footer ul#footer-menu li a {
  color: #D4F6EB;
}
footer ul {
  list-style: none;
  padding-left: 0;
  columns: 2;
}
@media all and (max-width: 768px) {
  footer ul {
    columns: 1;
  }
}
footer ul li {
  line-height: 2;
}
footer ul li a {
  color: #1F1F1F;
}
@media all and (max-width: 768px) {
  footer .disclaimers ul {
    display: block !important;
    text-align: right;
  }
}
footer .disclaimers ul li {
  display: inline-block;
  margin-right: 15px;
}
@media all and (max-width: 768px) {
  footer .disclaimers ul li {
    width: 100%;
  }
}
footer .disclaimers ul li a {
  color: #A6A6A6;
}
@media all and (max-width: 768px) {
  footer .disclaimers ul li a {
    width: 100%;
  }
}
@media all and (max-width: 1200px) {
  footer .offset-md-6 {
    margin-left: 0;
  }
}

@media all and (max-width: 1200px) {
  body footer .col-md-6 {
    width: 100%;
  }
  body footer .col-md-3 {
    width: 50%;
  }
  body footer .mb-mobile-3 {
    margin-bottom: 1rem !important;
  }
}
@media all and (max-width: 768px) {
  body footer .col-md-6 {
    width: 100%;
  }
  body footer .col-md-3 {
    width: 100%;
  }
}

.contact .gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-flex;
  flex-direction: column;
}
.contact .gform_wrapper .gform_body .gform_fields .gfield.gfield--width-half {
  width: 50%;
}
@media all and (max-width: 768px) {
  .contact .gform_wrapper .gform_body .gform_fields .gfield.gfield--width-half {
    width: 100% !important;
  }
}
.contact .gform_wrapper .gform_body .gform_fields .gfield:nth-child(odd) {
  padding-right: 15px;
}
@media all and (max-width: 768px) {
  .contact .gform_wrapper .gform_body .gform_fields .gfield:nth-child(odd) {
    padding-right: 0;
  }
}
@media all and (max-width: 992px) {
  .contact .gform_wrapper .gform_body .gform_fields .gfield .ginput_container input {
    padding-right: 0 !important;
  }
}

.vacancy .gform_wrapper .gform_heading .gform_title {
  display: none;
}
.vacancy .gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}
.vacancy .gform_wrapper .gform_body .gform_fields .gfield:nth-child(odd) {
  padding-right: 0px;
}
.vacancy .gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.vacancy .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  width: 100%;
}

.gform_wrapper .gform_heading .gform_title {
  color: #D4F6EB !important;
  font-size: 42px !important;
  margin-bottom: 15px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  margin-top: 15px;
}
.gform_wrapper .gform_body .gform_fields .gfield.gfield--width-half {
  width: 50% !important;
}
.gform_wrapper .gform_body .gform_fields .gfield:nth-child(odd) {
  padding-right: 15px;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  color: #D4F6EB !important;
  margin-bottom: 10px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container input,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input {
  width: 100%;
  background-color: transparent !important;
  border: 1px solid #EFEFEF !important;
  border-radius: 8px !important;
  padding: 16px !important;
  color: #EFEFEF !important;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  width: calc(200% + 30px);
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea textarea {
  color: #EFEFEF !important;
  width: 100%;
  border: 1px solid #EFEFEF !important;
  border-radius: 8px !important;
  padding: 16px !important;
  background-color: transparent !important;
}
.gform_wrapper .gform_footer input.gform_button {
  margin-top: 15px;
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-color: #F2C306;
  color: #000000;
  border: 1px solid #F2C306;
}
.gform_wrapper .gform_footer input.gform_button:hover {
  background-color: #FFE064;
  border: 1px solid #FFE064;
}

section .card .card-img-top {
  object-fit: cover;
  object-position: center;
}

.single-service .image-container img {
  object-fit: cover;
  object-position: center;
  height: 700px;
  width: 100%;
}
@media all and (max-width: 992px) {
  .single-service .image-container .info-card {
    width: calc(100% - 20px) !important;
    margin-left: 10px;
  }
}
@media all and (max-width: 1200px) {
  .single-service .mobile-column-reverse .offset-md-1 {
    margin-left: 0;
    padding-right: 0 !important;
  }
  .single-service .mobile-column-reverse .offset-md-1 .w-75 {
    width: 100% !important;
  }
}
@media all and (max-width: 992px) {
  .single-service .mobile-column-reverse .offset-md-1 {
    margin-left: 0;
  }
  .single-service .mobile-column-reverse .col-md-5 {
    width: 100%;
  }
}
.single-service img.check {
  width: 27px;
  height: 27px;
}
.single-service ul.list-unstyled li {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 0;
}

.gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-flex;
  flex-direction: column;
  width: 33%;
  margin-top: 15px;
  padding-right: 15px;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  width: 100%;
}
.gform_wrapper .gform_footer input.gform_button {
  width: fit-content;
}

@media all and (max-width: 768px) {
  .page-template-template-overview .filter-holder {
    display: block !important;
  }
  .page-template-template-overview .search-holder {
    margin-top: 25px;
  }
}
.page-template-template-overview .fix-bg-not-full-height {
  margin-top: -730px;
}
.page-template-template-overview .filter-holder {
  border-bottom: 2px solid #EFEFEF;
  padding-bottom: 13px;
}
.page-template-template-overview .filter-holder ul#category-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
@media all and (max-width: 768px) {
  .page-template-template-overview .filter-holder ul#category-list {
    display: block !important;
  }
}
.page-template-template-overview .filter-holder ul#category-list li {
  display: inline-block;
  margin-right: 35px;
}
@media all and (max-width: 768px) {
  .page-template-template-overview .filter-holder ul#category-list li {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.page-template-template-overview .filter-holder ul#category-list li a {
  font-size: 17px;
}
.page-template-template-overview .filter-holder ul#category-list li a.active {
  color: #84B544 !important;
  border-bottom: 3px solid #84B544;
  padding-bottom: 13px;
}
@media all and (max-width: 768px) {
  .page-template-template-overview .filter-holder ul#category-list li a.active {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.page-template-template-overview .filter-holder .search-holder input {
  width: 200px;
  background-color: transparent;
  position: relative;
  border: 0;
  color: #D4F6EB;
}
.page-template-template-overview .filter-holder .search-holder input:focus-visible {
  outline: none;
}
.page-template-template-overview .filter-holder .search-holder .search-icon {
  cursor: pointer;
}
.page-template-template-overview .filter-holder .search-holder .search-icon span {
  margin-left: 10px;
}
.page-template-template-overview .filter-holder .search-holder .search-icon img {
  margin-top: -2px;
}
.page-template-template-overview .filter-holder .search-holder .search-icon img:hover {
  filter: brightness(0) invert(1);
}
.page-template-template-overview .filter-holder .search-holder .loading-indicator {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.page-template-template-overview .filter-holder .search-holder .loading-circle {
  width: 20px;
  height: 20px;
  border: 4px solid rgba(0, 0, 0, 0);
  border-top-color: #84B544;
  border-radius: 50%;
  animation: rotateBorder 1s linear infinite;
}
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.page-template-template-overview .filter-holder .search-holder #clearButton {
  cursor: pointer;
}
.page-template-template-overview .filter-holder .search-holder #clearButton:hover {
  color: #84B544 !important;
}
.page-template-template-overview .search-results .card-holder:nth-of-type(-n+3) .card-title {
  color: #FFFFFF;
}
.page-template-template-overview .search-results .card-holder .card {
  background-color: transparent;
}
.page-template-template-overview .search-results .card-holder .card img.card-img-top {
  height: 350px;
}
.page-template-template-overview .search-results .card-holder .card .tags-top {
  pointer-events: none;
}
.page-template-template-overview .search-results .card-holder .card .card-body {
  padding: 10px;
}
.page-template-template-overview .search-results .card-holder .card .card-body .card-title {
  font-size: 20px;
}
@media all and (max-width: 768px) {
  .page-template-template-overview .search-results .card-holder .card .card-body .card-title {
    color: #1F1F1F;
  }
}
.page-template-template-overview .search-results .card-holder .card .card-body a:nth-of-type(2) {
  margin-top: 10px;
}
.page-template-template-overview .search-results .card-holder .card:hover {
  background-color: transparent;
  padding: 0;
}
.page-template-template-overview #clearButton {
  display: none;
}
.page-template-template-overview #clearButton:hover svg {
  fill: #84B544 !important;
}
.page-template-template-overview #autofillDropdown {
  display: none;
}
.page-template-template-overview #autofillInput {
  width: 0;
  transition: width 0.3s ease-in-out;
}
.page-template-template-overview #autofillInput.open {
  width: 200px;
  transition: width 0.3s ease-in-out;
}

@media all and (max-width: 768px) {
  .advice h1 {
    text-align: left !important;
  }
}
.advice .accordion .open .number {
  margin-bottom: 25px !important;
}
.advice .accordion .closed.accordion-item {
  display: flex;
  justify-content: start;
}
.advice .accordion .closed .number {
  display: flex;
}
.advice .accordion .closed .accordion-header {
  display: flex;
  font-weight: bold;
}
.advice .accordion .closed .accordion-header a {
  height: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.vacancy-holder a {
  height: fit-content;
  width: 200px;
}

@media all and (max-width: 768px) {
  .offerte h1 {
    text-align: left !important;
  }
}
.offerte .mt--300 {
  margin-top: -300px;
}
@media all and (max-width: 768px) {
  .offerte .mt--300 {
    margin-top: 0px;
  }
}
.offerte .gform_wrapper .gform_heading .gform_title {
  display: none;
}
.offerte .gform_wrapper .gform_body .gform_fields {
  display: block;
}
.offerte .gform_wrapper .gform_body .gform_fields .gfield {
  width: 100%;
}
.offerte .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  height: auto;
}

.contact h1 {
  font-size: 220px;
  opacity: 9%;
  color: #D4F6EB;
}
@media all and (max-width: 992px) {
  .contact h1 {
    font-size: 150px;
  }
}
@media all and (max-width: 768px) {
  .contact h1 {
    font-size: 100px;
  }
}
.contact .share-height {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .gform_wrapper .gform_heading .gform_title {
  font-size: 25px !important;
}
.contact .gform_wrapper .gform_body .gform_fields {
  display: block;
}
.contact .gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
  padding-right: 0;
}
@media all and (max-width: 992px) {
  .contact .gform_wrapper .gform_body .gform_fields .gfield {
    padding-right: 0;
  }
}
.contact .gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.contact .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  width: 100%;
  height: auto;
}
@media all and (max-width: 992px) {
  .contact .gform_wrapper {
    margin-bottom: 15px;
  }
}

.single-vacancy .image-container img {
  object-fit: cover;
  object-position: center;
  height: 500px;
  margin-top: -75px;
  margin-bottom: -75px;
  width: 100%;
}
.single-vacancy img.check {
  width: 27px;
  height: 27px;
}

.we-are img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.gform_wrapper .gform_body .gform_fields {
  display: grid;
  grid-template-columns: auto auto auto;
}
@media all and (max-width: 900px) {
  .gform_wrapper .gform_body .gform_fields {
    display: block;
  }
}
.gform_wrapper .gform_body .gform_fields .gfield {
  width: 100%;
  margin-top: 15px;
  padding-right: 15px;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
  width: 100%;
  height: 0;
}
@media all and (max-width: 900px) {
  .gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea {
    height: inherit;
  }
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea textarea {
  height: 165px;
}
@media all and (max-width: 900px) {
  .gform_wrapper .gform_body .gform_fields .gfield .gfield_container.ginput_container_textarea textarea,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_textarea textarea {
    height: 200px;
  }
}
.gform_wrapper .gform_footer input.gform_button {
  width: fit-content;
}

html {
  margin-top: 0 !important;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #000000;
  margin: 1em 0;
  padding: 0;
  opacity: 1;
}

.bg-secondary .breadcrumb-item + .breadcrumb-item:before,
.single-service .breadcrumb-item + .breadcrumb-item:before,
.single-projects .breadcrumb-item + .breadcrumb-item:before,
.page-template-template-overview .breadcrumb-item + .breadcrumb-item:before,
.single-vacancy .breadcrumb-item + .breadcrumb-item:before {
  color: #D4F6EB;
}

.row-extended {
  width: 120%;
}

.mobile-only {
  display: none !important;
}
@media all and (max-width: 992px) {
  .mobile-only {
    display: block !important;
  }
}

.desktop-only {
  display: block !important;
}
@media all and (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
}

.header-image img {
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
.header-image .header-tag {
  bottom: 30px;
  left: 30px;
}
@media all and (max-width: 992px) {
  .header-image .header-tag {
    top: 15px;
  }
}

.mt--5 {
  margin-top: -3rem !important;
}

.tags-top {
  top: 25px;
  left: 15px;
}
.tags-top .tag {
  display: inline-block;
  margin-bottom: 8px;
}

.tag {
  padding: 10px 20px;
  color: #000000;
}
@media all and (max-width: 992px) {
  .tag {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
  }
}

.card {
  transition: all 0.3s ease-in-out;
}
.card .hovered {
  display: none;
}
.card .hovered a:nth-of-type(2) {
  height: 50px;
  padding-top: 15px;
}
.card .card-body a:nth-of-type(2) {
  height: 50px;
  padding-top: 15px;
}
.card:hover {
  background-color: #EFEFEF;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.card:hover .hovered {
  display: block;
  margin-bottom: 15px;
}
.card:hover .hovered a:nth-of-type(2) {
  background-color: #204D52;
  height: 50px;
  padding-top: 15px;
}
.card:hover .card-body a:nth-of-type(2) {
  background-color: #204D52;
  margin-top: 10px;
}
.card:hover .card-body a:nth-of-type(2).bg-secondary img {
  transition: filter 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}

.card-title {
  margin-bottom: 0;
  line-height: 2.5;
}

.mt-top--50 {
  margin-top: -50px !important;
}

.bg-not-full-height {
  height: 800px;
}

.fix-bg-not-full-height {
  margin-top: -700px;
}

.bg-not-full-height-700 {
  height: 700px;
}

.fix-bg-not-full-height-700 {
  margin-top: -650px;
}

.bg-not-full-height-800 {
  height: 900px;
}

.fix-bg-not-full-height-800 {
  margin-top: -800px;
}

.large-padding {
  padding: 75px;
}

.height-fit-content {
  height: fit-content;
}

.large-padding-x {
  padding-left: 75px;
  padding-right: 75px;
}
@media all and (max-width: 900px) {
  .large-padding-x {
    padding-left: 0;
    padding-right: 0;
  }
}

.large-padding-y {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media all and (max-width: 900px) {
  .large-padding-y {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media all and (max-width: 992px) {
  body.menu-open {
    margin-top: 74px;
  }
  body .offset-md-6 {
    margin-left: 0;
  }
  body .col-md-6 {
    width: 100%;
  }
  body .col-md-4,
body .col-md-3 {
    width: 50%;
  }
}
@media all and (max-width: 576px) {
  body .col-md-6,
body .col-md-4,
body .col-md-3 {
    width: 100%;
  }
}
@media all and (max-width: 992px) {
  .row-extended {
    width: 100%;
  }
  .mobile-w-100 {
    width: 100% !important;
  }
  .p-mobile-0 {
    padding: 0 !important;
  }
  .py-mobile-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-mobile-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .pt-mobile-0 {
    padding-top: 0 !important;
  }
  .pb-mobile-0 {
    padding-bottom: 0 !important;
  }
  .pb-mobile-3 {
    padding-bottom: 1rem !important;
  }
  .pb-mobile-5 {
    padding-bottom: 3rem !important;
  }
  .pt-mobile-5 {
    padding-top: 3rem !important;
  }
  .ps-mobile-0 {
    padding-left: 0 !important;
  }
  .pe-mobile-0 {
    padding-right: 0 !important;
  }
  .px-mobile-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-mobile-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-mobile-0 {
    margin: 0 !important;
  }
  .my-mobile-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mt-mobile-0 {
    margin-top: 0 !important;
  }
  .mb-mobile-0 {
    margin-bottom: 0 !important;
  }
  .me-mobile-0 {
    margin-right: 0 !important;
  }
  .ms-mobile-0 {
    margin-left: 0 !important;
  }
  .mx-mobile-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-mobile-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mx-mobile-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mt-mobile-3 {
    margin-top: 1rem !important;
  }
  .mb-mobile-3 {
    margin-bottom: 1rem !important;
  }
  .mb-mobile-5 {
    margin-bottom: 3rem !important;
  }
  .mt-mobile-5 {
    margin-top: 3rem !important;
  }
  .justify-mobile-start {
    justify-content: start !important;
  }
  .mobile-row-reverse {
    flex-direction: row-reverse !important;
  }
  .mobile-column-reverse {
    flex-direction: column-reverse !important;
  }
  .mobile-d-block {
    display: block !important;
  }
}

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