/* Font */
/* Colors */
/* Transitions */
/* Element radius */
/*---- Reset overrides ----*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: Nunito, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

p {
  line-height: 1.65em;
  margin: 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Nunito, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 100;
  line-height: 1.1em;
  margin: 0;
}

h2 {
  margin-bottom: 1.4rem;
}

h3 {
  margin-bottom: 1.2rem;
}

a {
  color: #98A504;
}

a, .btn, button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a:hover, .btn:hover, button:hover {
  text-decoration: none;
}

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

ul > li {
  margin: 7px 0;
}

.dark-bg {
  background-color: #000;
  color: #fff;
}

.lightdark-bg {
  background-color: #272727;
  color: #fff;
}

.content-wide {
  max-width: 962px;
  padding: 60px 20px;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .content-wide {
    padding: 100px 20px;
  }
}

.main-container .content-wide {
  margin-bottom: -50px;
}

.text-quote .rotated-quote{
  margin-left: -2px;
  margin-bottom: -5px;
}

.side-text {
  font-size: 18px;
  margin-left: 15px;
  margin-top: 60px;
}

.additional-styling {
  font-size: 1.4em;
  font-weight: bold;
}

.img-styling{

  display: flex;
  margin-right: 120px;
}

.rotated-quote {
  transform: scaleX(-1) scaleY(-1);
  display: inline-block;
}
.small-text {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: -10px;
}

.custom-header {
  font-size: 38px;
  white-space: nowrap;
  width: 100%;
}

.extraordinary-text {
  font-weight: bold;
}

.content-narrow {
  max-width: 640px;
  margin: 0 auto;
}

.text-highlight {
  font-size: 1.2rem;
}

.text-megahighlight {
  font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
  .text-megahighlight {
    font-size: 1.8rem;
  }
}

.text-superhighlight {
  font-size: 2.4rem;
  line-height: 1.2em;
}

@media only screen and (min-width: 992px) {
  .text-superhighlight {
    font-size: 4rem;
  }
}

.text-quote {
  position: relative;
  margin-left: 24px;
}

.text-quote::before {
  content: '';
  display: block;
  width: 30px;
  height: 22px;
  margin-left: -32px;
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-headline {
  font-weight: 700;
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.text-muted {
  color: #4E4E4E !important;
}

.text-yellow {
  color: #98A504;
}

.text-green {
  color: #9BF2A9;
}

.img-full {
  width: 100%;
  height: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .8rem !important;
}

.mb-2 {
  margin-bottom: 1.6rem !important;
}

.mb-3 {
  margin-bottom: 2.4rem !important;
}

.mb-4 {
  margin-bottom: 3.2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .8rem !important;
}

.mt-2 {
  margin-top: 1.6rem !important;
}

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

.mt-4 {
  margin-top: 3.2rem !important;
}

.loaded .king-nav {
  -webkit-transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.loaded .king-nav.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.loaded .home-globe {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  -webkit-transition: 6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (min-width: 992px) {
  .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 40px;
  }
  .grid-2 {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .grid-8 {
    -ms-grid-columns: (1fr)[8];
        grid-template-columns: repeat(8, 1fr);
  }
  .grid-span-2 {
    grid-column: span 2;
  }
}

@media only screen and (min-width: 992px) {
  .grid-reverse.grid-2 > *:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .grid-reverse.grid-2 > *:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .grid-reverse.grid-3 > *:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .grid-reverse.grid-3 > *:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .grid-reverse.grid-3 > *:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .grid-reverse.grid-4 > *:nth-child(1) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .grid-reverse.grid-4 > *:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .grid-reverse.grid-4 > *:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .grid-reverse.grid-4 > *:nth-child(4) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* Forms */
.form label {
  display: block;
  color: #4E4E4E;
  margin-bottom: 4px;
}

.form-control {
  -webkit-transition: .2s border-color, .25s box-shadow, .5s background-color;
  transition: .2s border-color, .25s box-shadow, .5s background-color;
  font-size: 1.2rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  border: 1px solid #4E4E4E;
  height: 48px;
  color: #272727;
  display: block;
  width: 100%;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.form-control:focus {
  border-color: #4E4E4E;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
}

.form-control.form-area {
  height: auto;
}

.form-control::-webkit-input-placeholder {
  color: rgba(39, 39, 39, 0.5);
}

.form-control::-moz-placeholder {
  color: rgba(39, 39, 39, 0.5);
}

.form-control:-ms-input-placeholder {
  color: rgba(39, 39, 39, 0.5);
}

.form-control:-moz-placeholder {
  color: rgba(39, 39, 39, 0.5);
}

.form-control.error {
  border-color: #F24738;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(1em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.error.custom-select {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-error {
  display: none;
  font-size: 13px;
  padding: 4px 0;
  color: #F24738;
}

.form .invalid-feedback {
  margin-bottom: 10px;
}

.form .help-block {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 7px;
}

/* Buttons */
.btn {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  border: none;
  border-radius: 0;
  padding: 11px 20px;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  color: #000;
  display: inline-block;
  cursor: pointer;
}

@media only screen and (min-width: 992px) {
  .btn {
    padding: 18px 32px;
  }
}

.btn:hover {
  text-decoration: none;
  border: none;
}

.btn:focus {
  outline: none !important;
}

.btn-primary,
.btn-primary:focus {
  background-color: #98A504;
}

.btn-primary:hover, .btn-primary:active,
.btn-primary:focus:hover,
.btn-primary:focus:active {
  background-color: #b4c305 !important;
  color: #000;
}

.btn-white {
  background-color: #fff;
  color: #272727;
}

.btn-white:hover {
  background-color: #F5F6F9;
  color: #272727;
}

.btn-outline,
.btn-outline:focus {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 1px #98A504 !important;
          box-shadow: inset 0 0 0 1px #98A504 !important;
  color: #98A504;
}

.btn-outline:hover,
.btn-outline:focus:hover {
  background-color: #afbe05;
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-large {
  font-size: 1rem;
  padding: 12px 32px;
}

@media only screen and (min-width: 992px) {
  .btn-large {
    padding: 24px 48px;
  }
}

.btn--wide {
  min-width: 200px;
}

.btn-text {
  border-bottom: 1px solid rgba(155, 242, 169, 0.35);
  color: #9BF2A9;
}

.btn-text:hover {
  color: #272727;
  border-bottom-color: transparent;
}

.king-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
  z-index: 10;
}

.king-header-branding img, .king-header-branding svg {
  width: 48px;
  height: auto;
}

.king-header-logomark {
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 17px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 8px;
}

.king-header-tagline {
  text-transform: none;
  font-size: .86rem;
  margin: 0;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (min-width: 767px) {
  .king-header-tagline {
    font-size: 4rem;
  }
}

.king-header-menu {
  position: relative;
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 6px;
  z-index: 6;
}

.king-header-menu span {
  width: 80%;
  left: 10%;
  display: block;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.king-header-menu:not(.active):hover span:nth-child(2) {
  width: 60%;
}

.king-header-menu:not(.active):hover span:nth-child(3) {
  width: 40%;
}

.king-header-menu.active span {
  background-color: #000;
}

.king-header-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(11px);
          transform: rotate(45deg) translateY(11px);
}

.king-header-menu.active span:nth-child(2) {
  opacity: 0;
}

.king-header-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-11px);
          transform: rotate(-45deg) translateY(-11px);
}

.king-header-popmenu {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
  -webkit-transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
  -webkit-box-shadow: -1px 1px 32px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 1px 32px rgba(0, 0, 0, 0.1);
}

.king-header-popmenu.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.king-header-popmenu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 80px 40px;
  min-width: 340px;
}

.king-header-popmenu-link {
  display: block;
  padding: 16px 0;
  line-height: 1.2em;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.king-header-popmenu-link span {
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
}

.king-header-popmenu-link::before {
  content: attr(data-text);
  position: absolute;
  top: 60%;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  color: #98A504;
}

.king-header-popmenu-link:hover::before {
  top: 25%;
  opacity: 1;
}

.king-header-popmenu-link:hover span {
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  opacity: 0;
}

.king-header-popmenu-link-secondary {
  font-size: 1rem;
}

.king-header-dark {
  color: #000;
  background-color: white
}

.king-header-lite{
  color: #ffffff;
  background-color: rgb(0, 0, 0)
}

.img-shepperd{
  margin-left: -350px;
  margin-top: 100px;
}

.alignbox{
  margin-top: 10px
}

.king-header-dark .king-header-branding path {
  stroke: #000;
}

.king-header-dark .king-header-menu span {
  background-color: #000;
}

.king {
  padding-bottom: 56px;
}

.king-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #000;
  z-index: 5;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-color: #fff;
}

.king-nav > a {
  display: block;
  padding: 20px 12px;
  font-size: .85rem;
  line-height: 1em;
  border-left: 1px solid #000;
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .king-nav > a {
    padding: 20px;
    font-size: 1rem;
  }
}

.king-nav > a span {
  position: relative;
  z-index: 1;
}

.king-nav > a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.king-nav > a:hover, .king-nav > a.active, .king-nav > a.active:hover {
  color: #fff;
}

.king-nav > a:hover::before, .king-nav > a.active::before, .king-nav > a.active:hover::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.line-dotted {
  margin: 32px 0;
  border-bottom: 1.5px dotted #000;
}

@media only screen and (min-width: 992px) {
  .line-dotted {
    margin: 64px 0;
  }
}

.hero {
  height: 100vh;
  position: relative;
}

.hero::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}

.hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-msg {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px 20px;
  z-index: 2;
  width: 100%;
  color: #fff;
}

.hero-msg .content-wide {
  padding: 0 20px;
}

@media only screen and (min-width: 992px) {
  .hero-msg h1 {
    max-width: 66%;
  }
}

.profit-text{
  font-size: 20px;
  font-weight: bold;
}

.scroll-more {
  position: relative;
  margin-top: -1px;
}

.scroll-more-line {
  width: 1px;
  height: 16px;
  margin-top: 2px;
  display: inline-block;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
}

.scroll-more-line span {
  width: 1px;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: scrolline 2.4s linear infinite;
          animation: scrolline 2.4s linear infinite;
}

@-webkit-keyframes scrolline {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scrolline {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*** Brokerage ***/
.brokerage-particles {
  width: 100%;
  height: 80vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

@media only screen and (max-width: 992px) {
  .services-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1px;
            column-gap: 1px;
  }
  .services-nav > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.services1 {
  position: relative;
}

.services-img {
  margin-top: 40px;
  position: relative;
}

.services-img-text {
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: 100%;
  max-width: 320px;
  margin: 0;
}

.services-img .text-quote::before {
  background-image: url("../img/quote-wh.svg");
}

.services-action {
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  line-height: 1.2em;
  -webkit-transition: .2s;
  transition: .2s;
  font-weight: 700;
}

@media only screen and (max-width: 992px) {
  .services-action {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: .9rem;
  }
}

.services-action:hover, .services-action.active, .services-action.active:hover {
  color: #98A504;
  background-color: transparent;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 12;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .8s;
  transition: .8s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.sub-services-panels {
  position: fixed;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
  width: 100%;
  max-width: 720px;
  background-color: #000;
  color: #fff;
  z-index: 14;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (min-width: 768px) {
  .sub-services-panels {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}

.sub-services-panels.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

@media only screen and (min-width: 768px) {
  .sub-services-panels.active {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.sub-services-panels > div {
  background-color: #000;
  display: none;
  padding: 32px 24px;
  max-height: 100vh;
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden; /* Disable horizontal scrolling */
  }
  .custom-header {
    font-size: 17px; /* Adjust font size for smaller screens */
    line-height: 1.7;
  }

.scroll-more{
    margin-bottom: 180px;
  }

  .text-megahighlight.text-quote {
    font-size: 18px; /* Adjust font size for smaller screens */
    line-height: 1.5; /* Adjust line height for better readability on smaller screens */
  }

 }

@media only screen and (min-width: 768px) {
  .sub-services-panels > div {
    padding: 60px 40px;
  }
}

.sub-services-panels > div.active {
  display: block;
}

.sub-services-panels-img {
  float: right;
  width: 100px;
  height: 100px;
  padding-left: 20px;
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .sub-services-panels-img {
    width: 140px;
    height: 140px;
  }
}

.sub-services-panels-img svg {
  width: 100%;
  height: auto;
  opacity: .35;
}

.sub-services-panels-img svg path {
  fill: #98A504;
}

.sub-services-close {
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
}

.sub-services-close.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sub-services-close:hover {
  background-color: #98A504;
}

.sub-services-ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sub-services-ctrl svg path {
  -webkit-transition: .4s;
  transition: .4s;
}

.sub-services-ctrl > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 8px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 12px;
  -webkit-column-gap: 12px;
          column-gap: 12px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .4s;
  transition: .4s;
  border-top: 1px solid #98A504;
  border-left: 1px solid #98A504;
}

@media only screen and (min-width: 767px) {
  .sub-services-ctrl > a {
    width: calc(33.333% - 8px);
  }
}

.sub-services-ctrl > a:hover, .sub-services-ctrl > a.active, .sub-services-ctrl > a.active:hover {
  -webkit-box-shadow: inset 1px 1px 0 #98A504;
          box-shadow: inset 1px 1px 0 #98A504;
  color: #98A504;
}

.sub-services-ctrl > a:hover svg path, .sub-services-ctrl > a.active svg path, .sub-services-ctrl > a.active:hover svg path {
  fill: #98A504;
}

.imgroller {
  width: 100%;
  overflow: hidden;
}

.imgroller-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.imgroller-img {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.imgroller-img:hover img {
  -webkit-filter: saturate(1);
          filter: saturate(1);
}

.imgroller-img:hover .imgroller-label {
  opacity: 1;
}

.imgroller-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  line-height: 1em;
  font-size: 2rem;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  margin: 0;
}

@media only screen and (min-width: 992px) {
  .imgroller-label {
    font-size: 3.2rem;
  }
}

.imgroller img {
  height: 32vh;
  width: auto;
  -webkit-filter: saturate(0);
          filter: saturate(0);
  -webkit-transition: .8s filter;
  transition: .8s filter;
}

@media only screen and (min-width: 992px) {
  .imgroller img {
    height: 420px;
  }
}

.outro-inset {
  padding-left: 40px;
  margin-top: -50px;
  margin-bottom: 30px;
}

.outro .btn {
  margin-top: 20px;
}

/*** CRE Investing ***/
.cre-investing-particles, .cre-investing-particles2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 80vh;
  z-index: 1;
  pointer-events: none;
}

.cre-investing-particles2 {
  top: auto;
  margin-top: -200px;
}

.bold-intro {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

@media only screen and (min-width: 768px) {
  .bold-intro {
    padding-top: 80px;
  }
}

.bold-intro h1 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  .bold-intro h1 {
    font-size: 2.4rem;
  }
}

.bold-intro p {
  font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
  .bold-intro p {
    font-size: 1.6rem;
  }
}

.skyline {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.approach {
  padding: 120px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  background-image: url(../img/approach-top-bg.png), url(../img/approach-bot-bg.png);
  background-repeat: repeat-x, repeat-x;
  background-position: top left, bottom left;
  background-size: auto 200px, auto 200px;
}

.approach-intro {
  margin-bottom: 24px;
}

@media only screen and (min-width: 992px) {
  .approach-intro {
    margin-bottom: 40px;
  }
}

.strategies {
  text-align: center;
}

.strategies-img {
  display: inline-block;
  position: relative;
  margin: 24px 0;
}

.strategies-img img {
  width: 100%;
  height: auto;
}

.strategies-imglabel {
  font-size: 1.2rem;
}

@media only screen and (min-width: 992px) {
  .strategies-imglabel {
    position: absolute;
    left: 88%;
    top: 40%;
    white-space: nowrap;
    font-size: 1.7rem;
  }
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

@media only screen and (min-width: 992px) {
  .steps {
    gap: 16px;
  }
}

.step {
  padding: 20px;
  border: 1px solid #E6E9EC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  width: calc(50% - 4px);
}

@media only screen and (min-width: 992px) {
  .step {
    width: calc(25% - 12px);
  }
}

.step p {
  margin: 0;
  line-height: 1.2em;
}

.step-large {
  font-size: 3.6rem;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 4px;
  color: #6C6C6C;
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .step-large {
    font-size: 5rem;
  }
}

.ready {
  position: relative;
  z-index: 2;
}

.ready .col2 {
  padding-top: 8px;
}

@media only screen and (min-width: 992px) {
  .ready .col2 {
    padding-top: 0;
    text-align: right;
  }
}

@media only screen and (max-width: 600px) {
  .investment-products-img {
    display: none;
  }
}

.investment-products-img-mobile {
  display: none;
}

@media only screen and (max-width: 600px) {
  .investment-products-img-mobile {
    display: block;
  }
}

/*** Proptech ***/
.proptech .bold-intro {
  padding-top: 80px;
}

@media only screen and (min-width: 992px) {
  .proptech .bold-intro {
    padding-top: 140px;
  }
}

.proptech-particles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 64vh;
}

.highlight {
  color: #9BF2A9;
}

.king-darkbg {
  background-color: #000;
  color: #fff;
}

.kpis {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.insights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

@media only screen and (min-width: 992px) {
  .insights {
    gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.insights + .insights {
  margin-top: 8px;
}

@media only screen and (min-width: 992px) {
  .insights + .insights {
    margin-top: 20px;
  }
}

.insight {
  background-color: #272727;
  padding: 20px 16px;
  text-align: center;
  width: calc(50% - 4px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media only screen and (min-width: 992px) {
  .insight {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}

.insight-large {
  font-size: 1.4rem;
  line-height: 1.2em;
  margin-top: 0;
}

@media only screen and (min-width: 992px) {
  .insight-large {
    font-size: 1.6rem;
  }
}

.insight-full {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.insight p {
  margin-bottom: 0;
  line-height: 1.3em;
}

.insight-medium {
  font-weight: 700;
  margin: 0;
}

.insight-red {
  color: #F24738;
}

.insight-green {
  color: #00C853;
}

.timeline {
  position: relative;
  padding-bottom: 80px;
}

@media only screen and (min-width: 992px) {
  .timeline {
    padding-bottom: 240px;
  }
}

.timeline::after {
  content: '';
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/superline.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
  margin-top: -600px;
  height: calc(100% + 260px);
}

@media only screen and (min-width: 992px) {
  .timeline::after {
    margin-top: -540px;
    height: calc(100% + 540px);
  }
}

.timeline::before {
  content: '';
  display: block;
  width: 100vw;
  height: 50vh;
  background-color: #000;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.timeline h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  color: #9BF2A9;
}

.timeline p {
  margin: 0;
}

.timeline-item {
  margin: 140px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}

.timeline-item:nth-child(even) {
  padding-left: 32px;
}

@media only screen and (min-width: 992px) {
  .timeline-item:nth-child(even) {
    max-width: 80%;
    margin-left: 20%;
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.timeline-item:nth-child(odd) {
  padding-right: 32px;
}

@media only screen and (min-width: 992px) {
  .timeline-item:nth-child(odd) {
    max-width: 80%;
    margin-right: 20%;
  }
}

.timeline-item h3, .timeline-item p {
  max-width: 400px;
}

@media only screen and (min-width: 992px) {
  .timeline-item {
    margin: 260px 0;
  }
}

.timeline-item-img {
  margin-top: 20px;
}

.timeline-item-img img {
  width: 100%;
  height: auto;
}

.timeline-conclusion .text-quote::before {
  background-image: url("../img/quote-wh.svg");
  display: inline-block;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}

.timeline-textbg {
  background-color: #000;
}

/*** Our Story ***/
.ourstory {
  padding-top: 80px;
}

.ourstory-particles {
  position: absolute;
  top: calc(100% - 60px);
  left: 0;
  width: 100%;
  height: 1240px;
  pointer-events: none;
  z-index: 2;
}

@media only screen and (min-width: 992px) {
  .ourstory-particles {
    top: calc(100% - 100px);
  }
}

.bold-intro-ourstory {
  background-image: url(../img/ourstory-hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 0;
}

.qareport {
  position: relative;
}

.qareport-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .qareport-box {
    border-width: 4px;
  }
}

.qareport-boxperc {
  background-color: #000;
  color: #fff;
  padding: 16px 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

@media only screen and (min-width: 992px) {
  .qareport-boxperc {
    padding: 32px 48px;
  }
}

.qareport-boxperc p {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
}

@media only screen and (min-width: 992px) {
  .qareport-boxperc p {
    font-size: 3rem;
  }
}

.qareport-boxcopy {
  padding: 16px 20px;
}

@media only screen and (min-width: 992px) {
  .qareport-boxcopy {
    padding: 24px 48px;
  }
}

.qareport-boxcopy p {
  margin: 0;
  max-width: 240px;
}

@media only screen and (min-width: 767px) {
  .qareport-boxcopy p {
    max-width: 480px;
  }
}

@media only screen and (min-width: 992px) {
  .qareport-boxcopy p {
    font-size: 1.2rem;
    max-width: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .intro-secondary .col2 {
    padding-top: 120px;
  }
}

.vismis-box {
  text-align: center;
  padding: 32px;
  background-color: #4E4E4E;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.vismis-box:nth-child(2) {
  top: 100px;
}

.vismis-box:nth-child(3) {
  top: 120px;
}

.vismis-box:nth-child(4) {
  top: 140px;
}

@media only screen and (min-width: 992px) {
  .vismis-box {
    min-height: 60vh;
    padding: 80px 40px;
  }
}

.vismis-box-1 {
  background-image: url(../img/vision-bg.jpg);
}

.vismis-box-2 {
  background-image: url(../img/mission-bg.jpg);
}

.vismis-box-3 {
  background-image: url(../img/purpose-bg.jpg);
}

.vismis-box-5 {
  background-color: transparent;
  min-height: 30vh;
}

.vismis-box h2 {
  color: #9BF2A9;
  text-transform: uppercase;
}

.vismis-box h2:after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  border-right: 2px dotted #9BF2A9;
  margin: 16px auto;
}

@media only screen and (min-width: 992px) {
  .vismis-box h2:after {
    border-right-width: 4px;
    height: 80px;
  }
}

.vismis-box h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

@media only screen and (min-width: 992px) {
  .vismis-box h3 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .vismis-box h3, .vismis-box p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.list-values {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .list-values {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.list-values > li {
  width: 33.333%;
  padding: 0 16px;
}

@media only screen and (min-width: 992px) {
  .list-values > li {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .list-values > li:not(:nth-child(1)) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.list-values > li p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.list-values-icon {
  width: 48px;
  height: auto;
}

.team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team-member {
  position: relative;
  width: 50%;
}

.team-member:hover .team-img2 {
  opacity: 1;
}

@media only screen and (min-width: 992px) {
  .team-member {
    width: 25%;
  }
}

.team-member-info {
  background-color: #000;
  color: #fff;
  padding: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media only screen and (min-width: 992px) {
  .team-member-info {
    padding: 16px 20px;
  }
}

.team-member-name {
  font-weight: 700;
  margin: 0;
}

.team-member-role {
  font-weight: 400;
  font-size: .86rem;
  margin: 0;
}

.team-imgcontainer {
  position: relative;
}

.team-img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.team-img2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 1;
}

.join-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.join-us-block {
  background-color: #4E4E4E;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 32px 20px;
  min-height: 220px;
  text-align: center;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) {
  .join-us-block {
    min-height: 280px;
  }
}

.join-us-block-2 {
  background-color: #6C6C6C;
}

.join-us-block-full {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.join-us-block.dark-bg {
  background-color: #000;
}

.join-us h4 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  .join-us p {
    max-width: 80%;
  }
}

.join-us .btn {
  margin-top: 12px;
}

/*** Contact ***/
.contact {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
  .contact .bold-intro {
    padding-top: 100px;
  }
}

.contact-circle {
  width: 96vw;
  height: 96vw;
  max-width: 1200px;
  max-height: 1200px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  background: url(../img/dotted-circle.svg) no-repeat center;
  background-size: cover;
  z-index: 0;
  -webkit-animation: rotate 80s linear infinite;
          animation: rotate 80s linear infinite;
}

@media only screen and (min-width: 768px) {
  .contact-circle {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    width: 80vw;
    height: 80vw;
  }
}

.contact-link {
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
          column-gap: 12px;
  color: #000;
  text-decoration: none;
  -webkit-transform: .8s;
          transform: .8s;
}

@media only screen and (min-width: 992px) {
  .contact-link {
    font-size: 1.6rem;
  }
}

.contact-link:hover {
  color: #98A504;
}

.contact-link img {
  width: 24px;
  height: auto;
}

.contact .form .btn-primary {
  width: 50%;
}

.contact .form-name {
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
  .contact .form-name {
    margin-bottom: 0;
  }
}

.contact-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.services{
  margin-top: -5px;
}

@media only screen and (min-width: 992px) {
  .contact-contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-contacts > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -30%) rotate(0deg);
            transform: translate(-50%, -30%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -30%) rotate(360deg);
            transform: translate(-50%, -30%) rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -30%) rotate(0deg);
            transform: translate(-50%, -30%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -30%) rotate(360deg);
            transform: translate(-50%, -30%) rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */