/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-famaly-hear-end */

/* root */
:root {
  --poppins: "Poppins", sans-serif;
  --jost: "Jost", serif;

  --white-color: #fff;
  --black-color: #000;

  --primary: #EF7A06;
  --secondary: #273474;

  --hover-colo: #000;

  --body-color: #000;
  --heading-color: #000;
}

/* root */

/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
}

a,
button {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--jost);
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

li {
  list-style: none;
}

.aboutBlock-contnet ul { margin-bottom: 37px; }
.aboutBlock-contnet li { list-style: circle; font-size: 18px; line-height: 28px; color: #797979; }
.aboutBlock-contnet a { color: #f37928; }
.aboutBlock-contnet a:hover { color: #243672; }


p {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 15px;
}

label {
  color: var(--body-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* defaults-css--end */

/* theme-css */

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.fs-1 {
  font-size: 72px !important;
  line-height: 79px !important;
}

.fs-2 {
  font-size: 50px !important;
  line-height: 56px !important;
}

.fs-3 {
  font-size: 32px !important;
  line-height: 44px !important;
}

.fs-4 {
  font-size: 22px !important;
  line-height: 1.16 !important;
}



.btn {
  font-size: 17px;
  line-height: 29px;
  text-decoration: none;
  padding: 19px 54px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--poppins);
  font-weight: bold;
}

.btn.btn-light {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary);
}

.btn.btn-light:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white-color);
}

.btn.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white-color);
}

.btn.btn-primary:hover {
  background-color: #fd9832;
  border-color: #fd9832;
  color: var(--white-color);
}


.link {
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.link span {
  display: block;
  line-height: 1;
  transition: .3s;
  position: relative;
  top: -1px;
}

.link:hover span {
  transform: translateX(5px);
}

.link.link-primary {
  color: var(--primary) !important;

}



/* input-box */
.input-box input {
  width: 100%;
  height: 54px;
  border: none;
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 5px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
}

.input-box textarea {
  width: 100%;
  height: 90px;
  border: none;
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 5px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  resize: none;
}



.input-box textarea~label {
  top: 0px;
}

.input-box input:valid~label,
.input-box input:focus~label {
  top: -2px;
  font-size: 13px;
}

.input-box textarea:valid~label,
.input-box textarea:focus~label {
  top: -15px;
  font-size: 13px;
}

.input-box label {
  position: absolute;
  top: 17px;
  font-size: 15px;
  line-height: 1.15;
  color: #fff;
  left: 0px;
  pointer-events: none;
  transition: .3s;
}

.input-box {
  position: relative;
  margin-bottom: 40px;
}

.input-box .nice-select {
  width: 100%;
  height: 54px;
  line-height: 54px;
  border: none;
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 5px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border-radius: 0px !important;
  padding: 0px;
}

.input-box .nice-select::after {
  width: 8px;
  height: 8px;
  border-color: #fff;
}

.input-box .nice-select .list {
  color: #000;
}

.input-box {}

.input-box {}

.input-box {}



/* input-box--end */

/* nice-select */

/* nice-select--end */



/* theme-css-end */

/* ======== header style start ============ */

.header {
  padding: 0 0 16px 0;
}

.header.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 11111;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

}

.header-abs {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 111;
}

.header-nav ul {
  gap: 30px;
}

.header-nav ul li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  display: block;
}

.header-nav ul li a:hover {
  color: var(--primary);
}

.header-nav ul li.current a {
  color: var(--primary);
}

.offcanvas-menu ul li.current a {
  color: var(--primary);
}


/* ======== header style end ============ */

/* ======== hero style start ============ */

.hero-area {
  padding: 252px 0px 160px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.hero-area::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to right, #EF7A06 -1%, #4961da00 52%);
}

.hero-content {
  max-width: 579px;
  position: relative;
  z-index: 11;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 33px;
}

.hero-content p {
  font-size: 15px;
  line-height: 29px;
  color: #fff;
  margin-bottom: 44px;
}

/* ======== hero style end ============ */

/* ======== partner-area style start ============ */

.partner-area {
  border-bottom: 1px solid #000000;
  padding: 33px 0px 33px;
}

.partner-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: space-between;
}

.partner-wrapper a {
  padding: 0px 15px;
  text-align: center;
}

.partner-wrapper a img {
  width: 100%;
  max-width: 50px;
}

.partner-area h4 {
  margin-bottom: 50px;
  color: var(--secondary);
}

/* ======== partner-area style end ============ */

/* ======== calculate-area style start ============ */
.calculate-area {
  padding: 100px 0px 120px;
}

.calculate-item {
  padding: 38px;
  min-height: 418px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  background-image: linear-gradient(to bottom, #EAEAEA, #FFEAD4);
}

.calculate-item form {
  width: 100%;
}

.calculate-item span.icon {
  margin-bottom: 20px;
}

.calculate-item p {
  font-family: var(--jost);
  text-transform: uppercase;
  margin-bottom: 0px;
}

.calculate-item h3 {
  font-size: 34px;
  line-height: 42px;
  color: var(--secondary);
  margin-bottom: 55px;
  text-transform: uppercase;
}

.calculate-input span.input-text {
  font-size: 21px;
  color: #000;
  padding: 0px 9px;
  border-right: 1px solid #00000033;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.calculate-input input {
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: 1px solid #00000033;
  padding-left: 50px;
  font-size: 21px;
  color: #000;
  border-radius: 6px;
  padding-right: 154px;
}

.calculate-input input::placeholder {
  font-size: 21px;
  color: #00000033;
}

.calculate-input .link {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}

.calculate-input {
  position: relative;
}


/* ======== calculate-area style end ============ */

/* ======== sed-area style start ============ */

.sed-area {
  padding: 100px 0px 135px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  margin-bottom: 0px;
  text-transform: uppercase;
}

.sed-area .section-title h2 {
  text-transform: uppercase;
  color: #fff;
}

.bg-after {
  position: relative;
  z-index: 1;
}

.bg-after::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #273474BD;
  z-index: -1;
}

.sedItem {
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 38px 60px;
  text-align: center;
}

.sedItem-icon {
  background-color: var(--secondary);
  width: 83px;
  height: 83px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.sedItem-content h4 {
  font-size: 23px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.sedItem-content p {
  font-size: 13px;
  color: #797979;
  margin-bottom: 0px;
}



/* ======== sed-area style end ============ */

/* ======== about-area style start ============ */
.aboutBlock {
  padding: 95px 0px 95px;
  z-index: 1;
}


.aboutBlock-img img {
  width: 100%;
  height: 501px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.aboutBlock-contnet {
  /* max-width: 543px; */
}

.aboutBlock-contnet h2 {
  font-size: 42px;
  font-weight: normal;
  font-family: var(--poppins);
}

.aboutBlock-contnet p {
  font-size: 18px;
  line-height: 28px;
  color: #797979;
  margin-bottom: 36px;
}

.aboutBlock-logo {
  max-width: 370px;
  margin-bottom: 18px;
}

.about-obj-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  max-width: 100%;
  z-index: -1;
}



/* ======== about-area style end ============ */

/* ======== cta-area style start ============ */
.cta-area {
  padding: 72px 0px 89px;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 37px;

}

.cta-wrapper {
  position: relative;
  z-index: 2;
}

.cta-icon {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  max-width: 100%;
}

.cta-icon-image {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-image img {
  max-width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.cta-content h2 {
  font-size: 52px;
  line-height: 68px;
  color: #fff;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.cta-content h2 span {
  display: block;
}

.cta-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 34px;
}

.cta-links a.link {
  font-size: 30px;
  color: #fff;
  font-family: var(--jost);
  font-weight: 300;
}

.cta-links a.btn.btn-primary:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary);
}

.cta-links a.btn {}

.cta-obj-1 {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

/* ======== cta-area style end ============ */

/* ======== testimonial-area style start ============ */
.testimonial-area {
  padding: 84px 0px 105px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.testimonial-item {
  padding: 42px 17px 33px 29px;
  background-color: #fff;
  border-radius: 10px;
}

.testimonial-desc {
  min-height: 180px;
}

.testimonial-desc .stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-desc p {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 25px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimonial-meta h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 0px;
  color: #000;
  font-family: var(--poppins);
}

.testimonial-meta h5 span {
  display: block;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  font-weight: normal;
  font-family: var(--poppins);
}

.testimonials-row {
  margin-bottom: 85px;
  --bs-gutter-y: 37px;
  --bs-gutter-x: 37px;
}


/* ======== testimonial-area style end ============ */

/* ======== faq-area style start ============ */

.faq-area {
  padding: 100px 0px 162px;
  position: relative;
}

.bg-gd {
  background-image: linear-gradient(to bottom, #EAEAEA, #FFEAD4) !important;
}

.faq-obj-1 {
  position: absolute;
  left: 0px;
  top: 0px;
}

.faq-content h2.fs-2 {
  margin-bottom: 38px;
}

.faq-content {
  max-width: 585px;
}

.faq-wrapper.accordion .accordion-item {
  border: none;
  border-radius: 0px !important;
  padding: 18px 0px 18px;
  border-bottom: 1px solid #ADADAD;
}

.faq-wrapper.accordion .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none;
}

.faq-wrapper.accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  padding: 0px;
  line-height: 1.5;
}

.faq-wrapper.accordion .accordion-button::after {
  background-image: none !important;
  content: "\2b";
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: "Font Awesome 6 Pro";
}

.faq-wrapper.accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-wrapper.accordion .accordion-body {
  padding: 8px 0px 0px;
}

.faq-wrapper.accordion .accordion-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #797979;
  margin-bottom: 0px;
}

.faq-wrapper.accordion .accordion-body a {
  color: var(--secondary);
}

.faq-wrapper.accordion .accordion-body a:hover {
  color: var(--primary);
}

img.faq-img {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 725px;
  height: 607px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* ======== faq-area style end ============ */

/* ======== news-area style start ============ */

.news-area {
  padding: 74px 0px 112px;
}

.newsItem {
  background-color: #FFFFFF;
  border-radius: 10px;
}

.newsItem-img {
  border-radius: 10px;
  overflow: hidden;
  height: 344px;
}

.newsItem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .3s;
}

.newsItem-content span.date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #909090;
  font-size: 15px;
  margin-bottom: 9px;
  line-height: 1.15;
}

.newsItem-content h4 {
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--secondary);
}

.newsItem-content {
  padding: 22px 15px 37px 30px;
}

.newsItem-row {
  margin-bottom: 69px;
}

/* ======== news-area style end ============ */

/* ======== contact-area style start ============ */
.contact-area {
  padding: 107px 0px 107px;
}

.contact-info {
  max-width: 470px;
}

.contact-info--header {
  margin-bottom: 20px;
}

.contact-info ul li a {
  padding: 25px 0px 25px;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  color: #797979;
  text-decoration: none;
  line-height: 1;
}

.contact-info ul li a span.icon {
  flex: 0 0 auto;
  width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  transform: translateY(7px);
}

.contact-info ul li a span.text {
  line-height: 1.7;
}

.contact-info ul li a span.text strong {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  font-family: var(--jost);

}

.contact-info ul li a span {
  line-height: 1;
}


.contact-form {
  z-index: 1;
  position: relative;
  padding: 90px 60px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-form {}

.contact-obj {
  position: absolute;
  right: -159px;
  bottom: -192px;
  z-index: -1;
}

/* ======== contact-area style end ============ */

/* ======== sections style start ============ */
/* ======== sections style end ============ */

/* ======== sections style start ============ */
/* ======== sections style end ============ */

/* ======== footer style start ============ */
.footer {
  background-color: #161616;
}

.footer-bottom {
  background-color: var(--secondary);
  padding: 12px 0px;
}

.footer-bottom p {
  color: #fff;
  margin-bottom: 0px;
}

.footer-top {
  padding: 55px 0px 50px;
}

.footer-content a {
  margin-bottom: 39px;
  display: block;
}

.footer-content .social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-content .social a {
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff43;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.footer-widget h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.footer-widget ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.footer-widget ul li a:hover {
  color: var(--primary);
}

.footer-widget ul li {
  color: #fff;
  text-decoration: none;
  line-height: 38px;
  font-size: 14px;
}



/* ======== footer style end ============ */




/* offcanvas-mmenu */

.header-bar button {
  background-color: transparent;
  border: none;
  padding: 0px;
}

.header-bar button {
  font-size: 28px;
  color: #fff;
}

.offcanvas {
  z-index: 111111;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.offcanvas-menu ul li a {
  display: block;
  padding: 12px 0px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #00000080;
  text-decoration: none;
}

.offcanvas-menu ul li a:hover {
  color: #F2C507;
}


/* offcanvas-mmenu--end */

.subItem { margin: 0 50px 0 0; }

.aboutBlock ul, .aboutBlock ul li { list-style: circle; }
.aboutBlock li { margin-left: 15px; }

.top-bar { margin-bottom: 10px; padding: 16px 0; background: var(--primary); color: #fff; }
.top-bar .phone { text-align: right; }

.reviews a { text-decoration: none; color: #fff; }
.subPages { margin-top: -200px; }

.owl-carousel .owl-item img { width: auto !important; }

p.white { color: #fff; }

.calculate-item button { background: none; border: 0; }

.grecaptcha-badge{visibility:collapse!important}

.newsItem-content a { color: var(--primary); }
.newsItem-content a:hover { color: var(--secondary); }

.objecten-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #ededed;
}

.kenmerken .item { margin-bottom: 20px; }
.object-image { padding-bottom: 20px; }
.city { font-family: arial; font-weight: bold; }
.address { font-family: arial; font-size: 20px; font-weight: bold; color: #006fad; }
.objecten-item table { width: 275px !important; border: 0 !important; }
.objecten-item td { padding: 0 !important; }
.status { font-family: arial; font-weight: bold; }
.object-image img { max-width: 100%; border-radius: 20px; }

.object { padding: 0 30px 40px 30px; border-radius: 20px; background: #ededed; }
.object img { border-radius: 20px; }

.objecten { position: relative; margin-bottom: 20px; }
.objecten img { border-radius: 20px; }
.objecten-info { position: absolute; bottom: 20px; left: 20px; color: #fff; }
.objecten-info h2 { font-size: 1.4rem; font-weight: normal; color: #fff; }

.hecs { margin-left: 40px; width: 150px; max-width: 100%; }

.aboutBlock-desc img { max-width: 100% !important; height: auto !important; }

.languages { float: right; margin-left: 20px; }
.languages img { width: 20px; }