@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
  --primary-dark: #00473c;
  --primary-light: #faf9f6;
  --button-secondary: #eeebda;
  --white: #fff;

  --hover-button: #00a310;
  --primary: #00b011;

  --borders: #e1dcd4;
  --button-secondary: #eeebda;
}

/* .meetings-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
     min-height: 800px;
  }
  .meetings-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 800px!important;
    border: 0;
  } */
* {
  box-sizing: border-box;
}

body {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  color: var(--primary-dark);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.para-lg {
  font-size: 18px;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn {
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 400;
  transition: border-color .2s, background-color .2s;
  border-radius: 0;
  text-decoration: none;
  display: block;
}

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

.btn.btn-default:hover {
  background-color: var(--hover-button);
  color: var(--white);
}

.btn.is-large {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Small: ≥576px */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium: ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large: ≥992px */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra Large: ≥1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XXL: ≥1400px */
@media (min-width: 1360px) {
  .container {
    max-width: 1280px;
  }
}

.mainBannerHolder {
  padding: 5rem 0;
}

.mainBannerSec {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mainBannerFormSec {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mainBannerContent {
  width: calc(100% - 2rem - 500px - 10%);
}

.mainBannerContent img {
  max-width: 100%;
  width: 428px;
  border-radius: 10px;
}

.mainBannerContent h1 {
  margin: 0;
}

.allInOneSolutionHolder {
  padding: 5rem 0;
}

.allInOneSolutionSec {
  position: relative;
  background: linear-gradient(180deg, var(--primary-light) 70%, white 70%);
}

/* .allInOneSolutionSec::before{
    background: linear-gradient(180deg, var(--primary-light) 84%, white 85%);
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    bottom: 200px;
    position: absolute;
   } */
.allInOneSolutionSp {
  padding: 3.2rem;
}

.allInOneSolutionContent {
  width: 100%;
  max-width: 512px;
}

.allInOneSolutionContent h3 {
  margin: 0;
}

.allInOneCalloutSec {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.allInOneCalloutSec .allInOneCallout {
  border: 1px solid var(--button-secondary);
  background-color: var(--white);
  text-align: center;
  border-radius: .25rem;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.6rem 2.5rem;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.allInOneCalloutSec .allInOneCallout h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.allInOneCalloutSec .allInOneCallout>* {
  margin: 0;
}

.allInOneCalloutSec .allInOneCallout p {
  font-size: .875rem;
}

.allInOneCalloutSec .allInOneCallout img {
  max-width: 4rem;
}

.allInOneBtnSec {
  width: 100%;
}

.allInOneBtnSec .btn {
  width: 100%;
}

.leadManagementHolder {
  padding: 5rem 0;
  background: var(--primary-light);
}

.leadManagementSec {
  display: flex;
  gap: 4rem;
}

.leadManagementSec .leadManagementImgSec {
  width: 100%;
  max-width: 450px;
  position: relative;
}

.leadManagementSec .leadManagementContent {
  width: 100%;
  max-width: 603px;
  margin-left: auto;
  margin-right: auto;
}

.leadManagementSec .leadManagementImgSec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leadManagementSec .leadManagementImgSec .leadManagementCounter {
  position: absolute;
  bottom: 2.5rem;
  right: -3rem;
  border: 1px solid var(--borders);
  background-color: var(--white);
  border-radius: .25rem;
  flex-direction: column;
  padding: 1.3rem;
  display: flex;
  position: absolute;
  gap: 0.5rem;
}

.leadManagementSec .leadManagementImgSec .leadManagementCounter strong {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
}

.leadManagementSec .leadManagementImgSec .leadManagementCounter p {
  font-size: .875rem;
  margin: 0;
}

.leadManagementSec .leadManagementContent h2 {
  margin: 0;
}

.powerCombineHolder {
  padding: 5rem;
}

.powerCombineSec {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.powerCombineCounterSec {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.powerCombineCounterSec .powerCombineCounterBlock {
  position: relative;
}

.powerCombineCounterSec .powerCombineCounterBlock::before {
  border-left: 2px solid var(--primary-light);
  right: calc(100% + 2rem);
  top: 0;
  bottom: 0;
  content: '';
  position: absolute;
}

.powerCombineCounterSec .powerCombineCounterBlock strong {
  color: var(--primary);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.3;
}

.powerCombineSec .powerCombineContent {
  width: 100%;
  max-width: 320px;
}

.powerCombineSec .powerCombineContent h2 {
  margin: 0;
}

.propertyVideoSec {
  position: relative;
}

.propertyVideoSec:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(#082b2433, #082b2433);
}

.propertyVideoSec>img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.propertyVideoTrigger {
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.propertyVideoTrigger:after {
  z-index: 10;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  transition: all .3s;
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.propertyVideoTrigger:hover:after {
  width: 94px;
  height: 94px;
}

.propertyVideoTrigger svg path {

  transition: all .3s;
}

.propertyVideoTrigger:hover svg path {
  fill: var(--primary);
}

.propertyVideoHolder {
  position: relative;
}

.propertyVideoHolder>.btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bottomContentSec {
  padding: 5rem 0;
  text-align: center;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.bottomContentSec h2 {
  font-weight: 500;
}

.testimonialsHolder {
  padding: 5rem 0;
  background: var(--primary-light);
}

.testimonialSec {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.testimonialSliderSec .paraLg {
  letter-spacing: -1.3px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3em;
}

.testimonialSliderSec.swiper-horizontal .swiper-pagination-bullet {
  background-color: var(--button-secondary);
  border-radius: 5px;
  width: 50px;
  height: 10px;
  opacity: 1;
  padding: 0;
}

.testimonialSliderSec.swiper-horizontal {
  padding-bottom: 3rem;
  margin-top: 2rem;
}

.testimonialSliderSec.swiper-horizontal .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.modalSp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.modalSp.show {
  opacity: 1;
  visibility: visible;
}

.modalSp .modalOverlaySp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.modalSp .modalOverlaySp a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
}

.modalSp .modalOverlaySp svg {
  width: 20px;
  height: 20px;
}

.modalSp .modalOverlaySp svg path {
  fill: #fff;
}

.modalSp .modalVideoIframe {
  border: 0;
  width: 100%;
  max-width: 940px;
  padding: 0;
  position: relative;
  z-index: 2;
  max-height: calc(100vh - 30px);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1339px) {
  .mainBannerContent {
    width: calc(100% - 2rem - 500px);
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainBannerContent {
    width: calc(100% - 2rem - 300px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.8rem;
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 3rem;
  }

  .powerCombineSec {
    flex-direction: column;
    align-items: flex-start;
  }

  .powerCombineSec .powerCombineContent {
    max-width: 100%;
  }

  .propertyVideoSec>img {
    height: 440px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainBannerHolder {
    padding: 2rem 0 0 0;
  }

  .allInOneSolutionHolder {
    padding: 2rem 0;
  }

  .mainBannerContent {
    width: 100%;
  }

  .mainBannerFormSec {
    width: 100%;
  }

  .mainBannerSec {
    flex-direction: column;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.8rem;
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 3rem;
  }

  .allInOneSolutionSp {
    padding: 2rem;
  }

  .d-flex {
    flex-direction: column !important;
  }

  .allInOneSolutionContent.mx-auto {
    margin-left: 0 !important;
  }

  .allInOneCalloutSec {
    gap: 1rem;
  }

  .allInOneCalloutSec .allInOneCallout {
    margin-top: 1rem;
    padding: 2rem 1.1rem 2.5rem;
  }

  .leadManagementSec {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .leadManagementSec .leadManagementContent {
    margin-left: 0;
  }

  .leadManagementSec .leadManagementImgSec {
    max-width: 100%;
  }

  .leadManagementSec .leadManagementImgSec .leadManagementCounter {
    right: 2rem;
  }

  .powerCombineHolder {
    overflow: hidden;
  }

  .powerCombineCounterSec {
    gap: 2rem;
  }

  .powerCombineSec {
    flex-direction: column;
    align-items: flex-start;
  }

  .powerCombineSec .powerCombineContent {
    max-width: 100%;
  }

  .propertyVideoSec>img {
    height: 440px;
  }

  .leadManagementSec .leadManagementImgSec img {
    height: auto;
  }

  .modalSp .modalVideoIframe iframe {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .mainBannerHolder {
    padding: 2rem 0;
  }

  .allInOneSolutionHolder {
    padding: 2rem 0;
  }

  .mainBannerContent {
    width: 100%;
  }

  .mainBannerFormSec {
    width: 100%;
  }

  .mainBannerSec {
    flex-direction: column;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.5rem;
  }

  .powerCombineCounterSec .powerCombineCounterBlock strong {
    font-size: 2rem;
  }

  .allInOneSolutionSp {
    padding: 2rem;
  }

  .d-flex {
    flex-direction: column !important;
  }

  .allInOneSolutionContent.mx-auto {
    margin-left: 0 !important;
  }

  .allInOneCalloutSec {
    gap: 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .allInOneCalloutSec .allInOneCallout {
    margin-top: 1rem;
    padding: 2rem 1.1rem 2.5rem;
  }

  .leadManagementSec {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .leadManagementSec .leadManagementContent {
    margin-left: 0;
  }

  .leadManagementSec .leadManagementImgSec {
    max-width: 100%;
  }

  .leadManagementSec .leadManagementImgSec .leadManagementCounter {
    right: 1rem;
    bottom: 1rem;
  }

  .leadManagementSec .leadManagementImgSec .leadManagementCounter strong {
    font-size: 2rem;
  }

  .powerCombineHolder {
    overflow: hidden;
  }

  .powerCombineSec {
    flex-direction: column;
    gap: 0;
  }

  .powerCombineCounterSec {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .powerCombineSec {
    flex-direction: column;
    align-items: flex-start;
  }

  .powerCombineSec .powerCombineContent {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .propertyVideoSec>img {
    height: 440px;
  }

  .btn.is-large {
    padding: .75rem 1.5rem;
    font-size: 1rem;
  }

  .testimonialSliderSec.swiper-horizontal {
    margin-top: 0;
  }

  .trophiesHolder,
  .powerCombineHolder,
  .testimonialsHolder,
  .leadManagementHolder,
  .bottomContentSec {
    padding: 2rem 0;
  }

  .leadManagementSec .leadManagementImgSec img {
    height: auto;
  }

  .modalSp .modalVideoIframe iframe {
    height: 450px;
  }
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .mainBannerFormSec h3 {
    font-size: 1.5rem;
  }

  .propertyVideoSec>img {
    height: 300px;
  }

  .powerCombineCounterSec {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .modalSp .modalVideoIframe iframe {
    height: 350px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
