  :root {
  --width-50: 50px;
  --ws: 660px;
  --grey-5: #fafafa;
  --grey-6: #2e2e2e;

  --gap: 100px;

  --seagreen: #3abfc2;
  --purple: #5148b5;
}

/*common
**************************************/
body{
  font-weight: 400;
  line-height: 1.25;
  color: rgb(0 0 0 / 82%);
}
.bg-stone {
  background-color: var(--stone);
}
.bg-white {
  background-color: var(--stone);
}
.bg-slate {
  background-color: var(--slate);
}
.accent-divider.bg-yellow,
.bg-yellow {
  background-color: var(--yellow);
}
.inner.bg-blue,
.bg-blue {
  background-color: var(--blue);
}

.bg-grey-1 {
  background-color: var(--grey-1);
}
.bg-grey-2 {
  background-color: var(--grey-2);
}
.bg-grey-5 {
  background-color: var(--grey-5);
}
.bg-grey-6 {
  background-color: var(--grey-6);
}
.bg-grey-light {
  background-color: rgb(0 0 0 / 2%);
}

.h-left-bdr {
  border-left: 8px solid var(--blue);
  padding-left: 1.5rem;
}
.bdr-blue::before {
  background-color: var(--blue);
}
.bdr-slate::before {
  background-color: var(--slate);
}
.accent-divider {
  height: 8px;
  width: min(200px, 100%);
  margin-block: 1em;
  background-color: var(--slate);
}
.text-right {
  text-align: right;
}
.text-white .btn-txt {
  color: var(--white);
  border-bottom-color: var(--white);
}
.text-white .btn-txt::after {
  color: var(--white);
}
.top-nav {
  position: relative;
}
header {
  z-index: 99999;
}
header::before {
  display: none;
}
.top-nav::before {
  --right: calc(var(--single-gutter) + var(--container-padding));
  background-color: var(--stone);
  content: "";
  height: 0.5rem;
  inset: 0 var(--right) auto 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .logged-in header {
    margin-top: 30px;
  }
}
.short-message {
  padding-block: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
}
.sub-title {
  font-size: clamp(16px, 2dvw, 24px);
  opacity: 0.76;
  font-weight: 500;
}
.short-message .h2 {
  font-size: 1.5rem;
  line-height: 2rem;
}
.short-message .btn-txt {
  font-size: 1rem;
  line-height: 1.25em;
  font-weight: 500;
}
.top-nav .navbar {
  position: relative;
}
.top-nav .navbar::before {
  content: "";
  height: 0.5rem;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: var(--stone);
  top: 0;
}
@media screen and (max-width: 767px) {
  .short-message [class*="col-"]:last-child {
    padding-top: 1rem;
    text-align: left;
  }
}
footer .sitemap a.category {
  background-color: rgb(255 255 255 / 18%);
  margin-bottom: 8px;
}
.video-banner .btn-txt {
  border-color: var(--white);
}
/*accordion fullwidth*
*************************************/
.accordion-fullwidth {
  background-color: transparent;
  padding-bottom: 4rem;
  position: relative;
}
.accordion-fullwidth .accordion {
  background: var(--grey-5);
}
.callout-image-right .inner {
  position: relative;
  isolation: isolate;
}
.callout-image-right .content {
  padding: 1rem;
}
/*accordion-banner*
********************************************/
.accordion-banner.bg-white h2 {
  color: var(--black);
}
.accordion-banner.bg-white .accordion {
  background-color: var(--grey-5);
}
.accordion-bottom {
  max-width: var(--col-8);
  border-radius: var(--border-radius);
  padding: var(--subspacer) calc(var(--subspacer) / 2)
  calc(var(--subspacer) / 2) 0;
}
@media screen and (max-width: 991px) {
  .accordion-bottom {
    margin-bottom: var(--gap);
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .accordion-fullwidth .accordion {
    padding: calc(var(--subspacer) / 2);
  }
}
/*callout content single
*******************************************/
.callout-content-single {
  min-height: inherit;
}
.callout-content-single.grey {
  background-color: rgb(0 0 0 / 2%);
}
.callout-content.darkgrey {
  --bg-color: var(--slate);
  color: var(--white);
}
.callout-content.darkgrey .btn-txt,
.callout-content.darkgrey .btn-txt:after,
.callout-content.darkgrey .btn-txt:hover {
  color: var(--white);
}
.callout-image .btn-txt,
.callout-content.darkgrey .btn-txt {
  border-bottom-color: var(--white);
}
.callout-content img.aligncenter {
  width: auto;
  display: block;
  margin: auto;
}
.callout-content > img.right-shape {
  inset: -75% 0 0 auto;
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 47%;
}
.callout-content.callout-content-single h2 {
  max-width: none;
}
/*callout image right

******************************************/
.callout-image-right {
  position: relative;
}
.callout-image-right .inner::before {
  position: absolute;
  content: "";
  background-color: var(--grey-2);
  z-index: -1;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  left: 0;
  top: 0;
}
.texture-img > img {
  inset: auto 0 35% auto;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  width: 35%;
  z-index: 1;
}
.callout-image-right > img.shape-full {
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  width: 100%;
  inset: auto 0 0 0;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .texture-img > img {
    width: 35%;
  }
/*.callout-image-right>img:first-of-type{
mix-blend-mode: multiply;
object-fit: contain;
position: absolute;
width: 25%;
right: 0;
top: -300px;
}
.callout-image-right>img:last-of-type{
mix-blend-mode: multiply;
object-fit: contain;
position: absolute;
width: 25%;
left: 0;
top: -200px;
}*/

.callout-image-right .inner::before {
  width: 80%;
}
.callout-image-right .content {
  padding: 3.5rem;
}
.callout-image-right .image-wrap {
  position: relative;
  top: calc(var(--width-50) * -1);
}
}
@media screen and (max-width: 991px) {
  .callout-image-right .image-wrap {
    padding: 1rem;
  }
  .callout-image .image-wrap {
    display: none;
  }
}
.card-grid-columns.wrapper {
  padding-block: calc(var(--spacer) / 2);
}
.card-grid-columns.card-bottom-spacer {
  padding-block: var(--spacer);
}

.card-grid-columns {
  position: relative;
  z-index: 2;
}
.card-grid-columns .content.content-spacing {
  padding-bottom: 11rem;
  position: relative;
}
.card-grid-columns .content.content-spacing .btn-wrap {
  position: absolute;
  bottom: 4rem;
}
.card-grid-columns > img {
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*.card-grid-columns > img {
mix-blend-mode: multiply;
object-fit: contain;
position: absolute;
width: 35%;
right: 0;
top: 0;
z-index: 1;
}*/
.card-grid-columns .col {
  margin-bottom: var(--bs-gutter-x);
}
.card-grid-columns .intro {
  padding-bottom: 5rem;
  width: min(1024px, 100%);
  margin-inline: auto;
}

.card-grid-columns .content {
  padding: calc(var(--spacer) / 2);
  height: 100%;
  border-radius: var(--border-radius);
}
.card-grid-columns .content .btn-wrap > * + * {
  margin-top: var(--gutter);
}
.card-grid-columns h2 {
  margin-bottom: 0.9em;
}
@media screen and (min-width: 992px) {
  .card-grid-columns h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .card-grid-columns .col {
    width: 100%;
    flex: 100% 0 0;
  }
}

/* Fullwidth Image bottom card
----------------------------------------------------
*/
.fullwidth-image-bottom-card {
  --wcard: 916px;
  position: relative;
  background: rgb(0 0 0 / 2%);
  padding-top: 0;
  z-index: 2;
}
.fullwidth-image-bottom-card .image-wrap img {
  border-radius: 0;
}

.fullwidth-image-bottom-card > img {
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  width: 35%;
  right: 0;
  top: 0;
  z-index: 1;
}
.fullwidth-image-bottom-card .btn-txt:after {
  color: var(--white);
}
.fullwidth-image-bottom-card .content {
  padding: var(--subspacer);
  border-radius: var(--border-radius);
  width: min(916px, 100%);
  margin-top: calc(var(--gap) * -1);
}
.fullwidth-image-bottom-card .accent {
  margin-top: calc(var(--gap) * -1);
  display: inline-block;
  vertical-align: top;
  width: 24px;
  margin-left: 32px;
  height: calc(var(--gap) * 2);
  background-color: var(--yellow);
  border-radius: var(--border-radius);
}

@media screen and (max-width: 767px) {
  .fullwidth-image-bottom-card .accent {
    display: none;
  }
}
/*image bottom card*
***********************************************/
.image-bottom-card {
  --wcard: 700px;
  position: relative;
  z-index: 1;
}
.image-bottom-card > img.right-shape {
  position: absolute;
  inset: 80% 2% 0 auto;
  width: 40%;
  rotate: 88deg;
  aspect-ratio: 9/16;
  transform-origin: 100%;
  z-index: -1;
}
.image-bottom-card .content {
  padding: var(--subspacer);
  border-radius: var(--border-radius);
  width: min(var(--wcard), 100%);
  margin-top: calc(var(--gap) * -1);
  margin-left: 5%;
  z-index: 1;
}
.image-bottom-card .accent {
  width: calc(100% - var(--wcard) - var(--gap));
  background-color: var(--yellow);
  border-radius: var(--border-radius);
  height: 24px;
  margin-left: auto;
  margin-top: calc(var(--gutter) * 3.5);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .image-bottom-card .content {
    margin-inline: 20px;
    margin-top: calc(var(--gap) / 2 * -1);
  }
  .image-bottom-card .accent {
    display: none;
  }
}
/*Title with content
**************************************/
.title-with-contnet .content {
  padding: var(--subspacer);
  border-radius: var(--border-radius);
}
.title-with-contnet {
  position: relative;
}

.title-with-contnet > img {
  aspect-ratio: 9 / 16;
  inset: auto 0 0 auto;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  width: 35%;
  left: 0;
  z-index: 1;
}
.title-with-contnet .container {
  position: relative;
  z-index: 1;
}
.title-with-contnet > img.shape-full {
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .title-with-contnet h2 {
    font-size: 2.5rem;
  }
  .title-with-contnet .container {
    max-width: 1300px;
  }
}
@media screen and (min-width: 1441px) {
  .title-with-contnet > img.texture-5 {
    inset: auto 0 -184% 0;
  }
  .title-with-contnet > img.texture-6 {
    inset: auto 0 -227% 0;
  }
}
@media screen and (max-width: 1440px) {
  .title-with-contnet > img.texture-5 {
    inset: auto 0 -100% 0;
  }
  .title-with-contnet > img.texture-6 {
    inset: auto 0 -83% 0;
  }
}
@media screen and (max-width: 767px) {
  .head-wrap {
    margin-bottom: var(--bs-gutter-x);
  }
}
/* card grid icons
***************************************/
.card-grid-icons {
  padding-block: var(--spacer) 0;
}
.card-grid-icons__inner .content,
.content__list .content {
  padding: var(--subspacer);
  border-radius: var(--border-radius);
  height: 100%;
}
.card-grid-icons .intro {
  padding-bottom: var(--subspacer);
  width: min(1024px, 100%);
  margin-inline: auto;
}
.car__icon + .car__icon {
  margin-top: var(--bs-gutter-x);
}
.car__icon .media {
  height: 80px;
}
.car__icon .desc {
  flex: 1 0 0;
}
.card-grid-icons .intro img {
  width: auto;
}
@media screen and (min-width: 768px) {
  .car__icon .media {
    padding-right: calc(var(--width-50) / 2);
  }
  .car__icon {
    display: flex;
  }
}
.car__icon .media img {
  height: 100%;
  width: auto;
}
.card-grid-icons__inner {
  margin-bottom: calc(var(--width-50) * -1);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .car__icon .media {
    padding-bottom: calc(var(--width-50) / 2);
  }
  .card-grid-icons [class*="col-"] + [class*="col-"] {
    margin-top: var(--bs-gutter-x);
  }
}
.rellax.hideShape {
  display: none;
}
/*banner*/
.bottom-spacer {
  margin-bottom: calc(var(--gutter) * -2);
  z-index: 1;
}
.banner.bottom-spacer .inner {
  overflow: hidden;
}
.fullwidth-image-banner .content .accent {
  width: 24px;
  height: 160px;
  inset: auto -8% 1% auto;
}
.fullwidth-image-banner .btn-txt {
  border-bottom-color: var(--white);
}
.banner .btn-txt {
  border-bottom-color: var(--white);
}
@media (min-width: 1200px) {
  .fullwidth-image-banner.content-full .content {
    width: var(--col-8);
  }
}
@media (min-width: 1400px) {
  .video-banner .headline {
    width: var(--col-5);
  }
}

@media (min-width: 992px) {
  .video-banner .headline h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .video-banner .headline h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .video-slides .progressbar .indicators a {
    margin: var(--gutter) 0.2rem 0;
  }
  .video-slides .slide .container {
    padding-top: 50vh;
  }
}
@media (min-width: 1400px) {
  .callout-content.callout-content-single .container {
    max-width: var(--container-col-10);
  }
}
/*split content middle*
*******************************************/
.split__inner .row {
  margin-inline: 0;
}
.split-content-middle {
  z-index: 2;
  position: relative;
  background-color: transparent;
}
.split-content-middle .wrapper {
  padding-block: 0;
}
.split__inner {
  border-radius: 8px;
}
.split__inner [class*="col-"]:last-child {
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  .split-content-middle {
    margin-block: calc(var(--gap) / 2 * -1);
  }
}
@media screen and (max-width: 992px) {
  .split__inner .row.row-lg > :not(:last-child) {
    margin-bottom: 0;
    padding: calc(var(--bs-gutter-x));
  }
  .split-content-middle {
    padding-block: var(--spacer);
  }
  .split-content-middle .row > .content {
    padding: var(--bs-gutter-x);
  }
  .split__inner [class*="col-"]:last-child {
    padding-inline: 0;
  }
}
/*callout-image*
***********************************************/
@media screen and (min-width: 1200px) {
  .callout-image h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .callout-image h2 {
    font-size: calc(1.375rem + 1vw);
  }
  .callout-image__bottom .content__list {
    padding-top: 30px;
  }
}
.callout-image__bottom .content__list h2 {
  font-size: 1.5rem;
  opacity: 0.76;
}
.callout-section.callout-image .outer {
  position: relative;
}
.callout-section {
  z-index: 1;
}
.callout-image__bottom .content {
  margin: 0;
}
.callout-image__bottom .content + .content {
  margin-top: calc(var(--bs-gutter-x) / 2);
}
.callout-image__bottom {
  bottom: calc(var(--gap) / 2 * -1);
  position: relative;
  margin-top: calc(var(--gap) / 2 * -1);
}
.callout-image__bottom {
  position: relative;
  isolation: isolate;
}
.callout-image__bottom .left-shape {
  position: absolute;
  inset: -40% 0 0 -24%;
  height: 900px;
  width: 700px;
  z-index: 0;
  rotate: -45deg;
  transform-origin: 50%;
}

/*image right banner*/

.image-right-banner .intro {
  width: min(495px, 100%);
}

.image-right-banner__content .content {
  max-width: var(--col-8);
  padding: calc(var(--gap) / 2);
  border-radius: var(--border-radius);
}
.image-right-banner__content .content h2 {
  max-width: var(--col-8);
}
.image-right-banner .image-wrap {
  padding-left: 2.5rem;
}
.image-right-banner .image-wrap .accent, .callout-content-hero .image-wrap .accent {
  width: 24px;
  height: 50%;
  inset: 75px 0 0 0;
  background-color: var(--yellow);
  border-radius: var(--border-radius);
  content: "";
  position: absolute;
  z-index: 2;
}
.image-right-banner .image-wrap, .callout-content-hero .image-wrap {
  position: relative;
}
.image-right-banner > img, .callout-content-hero > img {
  position: absolute;
  aspect-ratio: 9/16;
  inset: -49% 0 0 auto;
  width: 50%;
  rotate: 42deg;
  z-index: -1;
}

.image-right-banner, .callout-content-hero {
  position: relative;
  isolation: isolate;
  margin-bottom: calc(var(--spacer) / 2 * -1);
  z-index: 3;
}
.full-width-media {
  margin-block: calc(var(--spacer) / 2 * -1);
}
.fw-image .container,
.fw-image .full-width-media {
  z-index: 1;
  position: relative;
}
main {
  margin-top: 220px;
}
.page-title img {
  width: auto;
}
.page-title .container {
  position: relative;
  z-index: 2;
}
.prefooter-form__inner {
  width: min(800px, 100%);
  margin-inline: auto;
  padding-top: 10px;
}
@media screen and (min-width: 992px) {
  .image-right-banner .intro h1 {
    font-size: 2.5rem;
    line-height: 1.2em;
  }
  .image-right-banner .intro {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .full-width-media img {
    min-height: 400px;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .image-right-banner__content .content h2 {
    max-width: 100%;
  }
  .image-right-banner__content .content {
    max-width: 100%;
    padding: calc(var(--gap) / 4);
  }

  .image-right-banner__content {
    padding-top: var(--spacer);
  }
}
/*callout content grid*/
.content__inner .content {
  padding: var(--subspacer);
}
.content__inner + .content__inner {
  margin-top: var(--gutter);
}
.callout-content-grid.wrapper {
  padding-block: var(--gutter);
}

@media screen and (min-width: 992px) {
  .callout-content-grid div[class*="col-"]:first-child {
    display: grid;
    place-items: center;
  }
  .callout-content-grid .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .callout-content-grid.wrapper {
    padding-bottom: var(--spacer);
  }
}
@media screen and (max-width: 767px) {
  .short-message .h2 {
    font-size: 1rem;
    line-height: 1.2em;
  }
  .short-message {
    font-size: 0.7rem;
    padding-block: 0.8rem;
  }
  .short-message [class*="col-"]:last-child {
    padding-top: 8px;
  }
  .short-message .btn-txt {
    font-size: 0.8rem;
    padding-bottom: 6px;
  }
  .short-message .btn-txt:after {
    font-size: 0.5rem;
    top: 5px;
  }
}

/* Form Style */

.prefooter-form {
  padding-bottom: 20px;
/*overflow: hidden;*/
}

.prefooter-form select {
  line-height: 1.9 !important;
}

.gform-body input:not([type="submit"]),
.gform-body select {
  border: none !important;
  border-bottom: 0.125rem solid var(--grey-3) !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 0 0.5rem 0 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #1a1a1a !important;
}

.gform-body select {
  background-image: url("icons/_source/chevron-down.svg") !important;
  background-repeat: no-repeat, repeat !important;
  background-position: calc(100% - 0.5rem) 50% !important;
  background-size: 0.75rem auto !important;
}

.gform-body input:not([type="submit"]):hover,
.gform-body select:hover {
  border-bottom-color: var(--blue) !important;
}

.gform-body textarea {
  background-color: var(--white) !important;
  border: 0.125rem solid var(--grey-3) !important;
  border-radius: var(--border-radius) !important;
  padding: 1rem !important;
  position: relative !important;
  margin-top: 1rem !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #1a1a1a !important;
}

.gform-body textarea:hover {
  border-color: var(--blue) !important;
}

.gform-body input:not([type="submit"]):focus,
.gform-body select:focus,
.gform-body textarea:focus {
  outline: none !important;
}

.gform_footer {
  border: 1px solid red;
  width: 130px !important;
  margin-left: auto !important;
  justify-content: end !important;
  position: relative !important;
}

.gform_footer:before {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: var(--yellow);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

.gform_footer:hover:before {
  width: 0;
}

.gform_footer:after {
  content: var(--arrow);
  display: inline-block;
  font-size: 0.875rem;
  font-family: var(--icons) !important;
  color: var(--stone);
  margin-left: var(--margin-left);
  --margin-left: 0.5rem;
  position: absolute !important;
  top: 0.0625rem;
  right: 0;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gform_footer:hover:after {
  -webkit-transform: translateX(0.375rem);
  transform: translateX(0.375rem);
}

.gform_button {
  display: inline-flex !important;
  width: 100% !important;
  height: 1.875rem !important;
  position: static !important;
  border: 0 !important;
  border-bottom: 0.125rem solid var(--blue) !important;
  border-radius: 0 !important;
  font-size: 1.125rem !important;
  font-weight: var(--weight-700) !important;
  padding: 0 0 0.75rem !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue) !important;
  text-align: left !important;
  justify-content: flex-start !important;
  cursor: pointer !important;
  z-index: 999 !important;
}

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

.gform_validation_errors {
  display: none !important;
}

.gform_wrapper span#gform_ajax_spinner_1 {
  display: none !important;
}

.gform_wrapper .validation_message {
  font-size: 12px !important;
  color: var(--red) !important;
}

.gform_confirmation_message {
  margin: 160px 0.5em 1em !important;
  padding: 0.2em 1em !important;
  font-size: 18px !important;
  text-align: center !important;
  position: relative !important;
}

.gform_confirmation_message:before {
  content: "";
  width: 80px;
  height: 80px;
  background: url("../img/success-icon.png") no-repeat;
  position: absolute;
  top: -100px;
  left: 50%;
  background-size: 100%;
  transform: translateX(-50%);
}
.page-id-1605 ul.navbar-nav {
  display: none;
}

.wfdr--heading {
  font-size: 40px;
}

.prefooter-form form {
  margin: var(--spacer) 0;
}

.page-id-1639 .content.section strong,
.page-id-1672 .content.section strong {
  font-weight: 500 !important;
}

.page-id-1639 .content.section h2,
.page-id-1672 .content.section h2 {
  font-size: 24px;
  line-height: 133.333%;
  letter-spacing: 0.48px;
  font-weight: 500;
}

.page-id-1639 .content.section a,
.page-id-1672 .content.section a {
  font-weight: 500;
}

.page-id-1639 .content.section :is(p, h2),
.page-id-1672 .content.section :is(p, h2) {
  color: rgba(0, 0, 0, 0.82);
}

.page-id-1639 .page-title.section,
.page-id-1639 .content.section,
.page-id-1672 .page-title.section,
.page-id-1672 .content.section {
  margin-bottom: 5rem;
}

.prefooter-form .gform-theme--foundation .ginput_address_city,
.prefooter-form .gform-theme--foundation .ginput_address_zip {
  width: 100%;
}

.prefooter-form .ginput_container .ginput_counter.warningTextareaInfo {
  display: none;
}

@media (min-width: 992px) {
  .page-id-1639 .page-title.section .container,
  .page-id-1639 .content.section .container,
  .page-id-1672 .page-title.section .container,
  .page-id-1672 .content.section .container {
    max-width: var(--container-col-11);
  }

  .steps--img {
    max-width: 50%;
    height: auto;
  }

  .page-id-1639 .content.section :is(p, h2),
  .page-id-1672 .content.section :is(p, h2) {
    max-width: calc((100% / 12) * 10);
  }

  .page-id-1639 .content.section p:has(.steps--img),
  .page-id-1672 .content.section p:has(.steps--img) {
    max-width: 100%;
  }
}

@media (min-width: 640px) {
  .gform-theme--foundation .gform_fields {
    grid-row-gap: 32px !important;
  }
}

@media (max-width: 767px) {
  .gform_confirmation_message {
    margin: 130px 0.5em 1em !important;
  }

  .wfdr--heading {
    font-size: 32px;
  }

  .page-id-1639 .content.section p > br {
    display: none;
  }
}

@media (max-width: 640px) {
  .gform_wrapper .ginput_container--name {
    row-gap: 20px !important;
  }
  .gform-theme--foundation .gform_fields {
    grid-row-gap: 20px !important;
  }
}

/* New Style*/

.card-two-columns .row {
  max-width: 1500px;
  width: 100%;
  margin-inline: auto;
}

#grid_two_columns {
  padding-top: 30px !important;
}

.card-two-columns .row > div.item {
  width: calc(100% / 2);
  flex: auto;
}

.card__icon {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-two-columns .item h2 {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.18;
}

.card-two-columns .item p {
  font-weight: 400;
}

.card-two-columns .intro {
  max-width: 800px;
  width: 100%;
  margin: 0;
  padding-top: 24px;
  position: relative;
}

.card-two-columns .intro:before {
  content: "";
  width: 180px;
  height: 8px;
  background: rgba(255, 177, 0, 1);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.card-two-columns .intro p {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.card-two-columns .btn-wrap a {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
}

.card-two-columns .btn-wrap a:before {
  display: none;
}

.card-two-columns .btn-wrap a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

.callout-numbers.fullwidth_section {
  padding-top: var(--spacer);
}

.callout-numbers.fullwidth_section .counters {
  margin-top: 80px;
}

.callout-numbers.fullwidth_section .count {
  padding-block: 100px 70px;
}

.callout-numbers.fullwidth_section .count:after {
  line-height: 0.8;
  top: 0;
  transform: translateX(-50%);
}

.callout-numbers.fullwidth_section .count h3 {
  height: auto;
}

.callout-numbers.fullwidth_section .counters .count h3:after {
  width: 80px;
  height: 2px;
  border-radius: 2px;
}

.callout-numbers.fullwidth_section .count p {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}

.callout-numbers.fullwidth_section .count p a {
  font-weight: 500;
  text-decoration: none;
}

.callout-numbers.fullwidth_section .counters > div:last-child {
  margin-top: 0;
}

.callout-numbers.fullwidth_section .inner {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}

.callout-numbers.fullwidth_section .inner h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
}

.callout-numbers.fullwidth_section .inner p {
  font-size: 24px;
  font-weight: 500;
  color: #3f74b5;
  line-height: 1.2;
}

.callout-numbers.fullwidth_section .btn-wrap {
  margin-top: 0;
}

.callout-numbers.fullwidth_section .btn_with_bg a {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
}

.callout-numbers.fullwidth_section .btn_with_bg a:before {
  display: none;
}

.callout-numbers.fullwidth_section .btn_with_bg a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

#owvi_page_info {
  background: #6b87a6;
  overflow: hidden;
}

#owvi_page_info .inner {
  padding-left: 30px;
  position: relative;
}

#owvi_page_info .inner:before {
  content: "";
  width: 8px;
  height: calc(100% - 105px);
  background: #ffb100;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

#owvi_page_info .container + img {
  display: none;
}

#owvi_page_info .inner p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

#owvi_page_info .inner a.btn-txt {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
  margin-top: 35px;
}

#owvi_page_info .inner a.btn-txt:before {
  display: none;
}

#owvi_page_info .inner a.btn-txt:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

@media (max-width: 1199px) {
  .card-two-columns .intro p {
    font-size: calc(1.375rem + 1vw);
  }
  .callout-numbers.fullwidth_section .inner h2 {
    font-size: calc(1.375rem + 1vw);
  }
  .callout-numbers.fullwidth_section .inner p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  #owvi_page_info .inner p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .card-two-columns .row > div.item {
    width: 100%;
  }
  #owvi_page_info .inner p {
    font-size: 18px;
  }
}

.onsite--banner {
  margin-bottom: 0;
}

.hdr_inspection .top-nav {
  display: none;
}

.hdr_inspection + #content {
  margin-top: 90px !important;
}

.onsite--banner .hero--content {
  background: #3f74b5 !important;
}

.onsite--banner .content {
  width: 100%;
  position: static !important;
  margin-top: 0;
  background: #fff !important;
  margin-top: -15% !important;
}

.onsite--banner .logos_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.onsite--banner .logos_block > div {
  max-width: 211px;
  position: relative;
}

.onsite--banner .logos_block > div img {
  width: 100%;
  height: auto;
}

.onsite--banner .logos_block > div:not(:last-child) {
  margin-right: 20px;
}

/*.onsite--banner .logos_block > div:not(:last-child):before{
content: "+";
width: 25px;
height: 25px;
font-size: 20px;
color: rgba(0,0,0,0.24);
position: absolute;
top: 8px;
left: auto;
right: -48px;
}*/

.onsite--banner .logos_block span {
  width: 25px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.24);
  top: 8px;
  left: auto;
  background-color: transparent;
  margin-right: 8px;
}

.onsite--banner .headin_block p {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.58);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.onsite--banner .headin_block h2 {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.82);
  margin-bottom: 20px;
}

.onsite--banner .content_block {
  display: flex;
  flex-wrap: wrap;
}

.onsite--banner .content_block {
/*margin-inline: 0 -15px;*/
margin: 0 -15px;
}

.onsite--banner .content_block > div {
  padding-inline: 15px;
}

.onsite--banner .lft_content_block {
  width: 40%;
}

.onsite--banner .rgt_content_block {
  width: 60%;
}

.onsite--banner .lft_content_block,
.onsite--banner .content_block p,
.onsite--banner .content_block ul {
  font-size: 16px;
  color: #2e2e2e;
  line-height: 1.2;
}

.onsite--banner .content_block p {
  margin-bottom: 10px;
}

.onsite--banner .content_block ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.onsite--banner .content_block ul li {
  padding-left: 20px;
  position: relative;
}

.onsite--banner .content_block ul li:not(:last-child) {
  margin-bottom: 5px;
}

.onsite--banner .content_block ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2e2e2e;
  position: absolute;
  top: 8px;
  left: 4px;
}

.onsite--banner .buttons_block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.onsite--banner .btn_with_bg {
  margin-right: 40px;
}

.onsite--banner .btn_with_bg a {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
  cursor: pointer;
}

.onsite--banner .btn_with_bg a:hover {
  color: #000;
}

.onsite--banner .btn_with_bg a:before {
  display: none;
}

.onsite--banner .btn_with_bg a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

.onsite--banner .right_btn a {
  font-size: 16px;
  font-weight: 500;
  color: #3f74b5;
  line-height: 1.3;
  border-radius: 4px;
  padding-block: 12px;
  padding-right: 45px;
  cursor: pointer;
}

.onsite--banner .right_btn a:hover {
  color: #3f74b5;
}

.onsite--banner .right_btn a:hover:before {
  width: 100% !important;
}

.onsite--banner .right_btn a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/arrow-down.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 0;
}

.onsite--banner .right_btn a:hover:after {
  transform: none !important;
}

/*.page-id-1697 .prefooter-form{
overflow: visible;
}*/

.hdr_inspection .short-message .btn-txt.inspection_hdr {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
  cursor: pointer;
}

.hdr_inspection .short-message .btn-txt.inspection_hdr:before {
  display: none;
}

.hdr_inspection .short-message .btn-txt.inspection_hdr:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

@media (max-width: 767px) {
  .onsite--banner .lft_content_block,
  .onsite--banner .rgt_content_block {
    width: 100%;
  }
  .onsite--banner .logos_block > div {
    max-width: 120px;
    width: 100%;
  }
  .onsite--banner .logos_block > div:not(:last-child):before {
    top: -2px;
  }
  .onsite--banner .headin_block p {
    font-size: 18px;
  }
  .onsite--banner .headin_block h2 {
    font-size: 30px;
  }
  .callout-numbers.fullwidth_section .counters > div.count:not(:last-child) {
    margin-top: 0 !important;
  }
  .hdr_inspection + #content {
    margin-top: 80px !important;
  }
  .onsite--banner .content {
    margin-top: -5% !important;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .onsite--banner .headin_block h2 {
    font-size: 22px;
  }
  .onsite--banner .logos_block > div:not(:last-child) {
    margin-right: 30px;
  }
  .onsite--banner .logos_block > div {
    max-width: 100px;
  }
  .onsite--banner .logos_block > div:not(:last-child):before {
    right: -33px;
  }
}

/* Assess Page */

#assess_platform_section {
  margin-bottom: 0;
  z-index: 999;
  position: relative;
}

#assess_platform_section a.btn-txt {
  border-bottom-color: #fff;
  color: #fff;
}

#assess_platform_section a.btn-txt:after {
  color: rgba(255, 255, 255, 0.76);
}

#grid_two_columns.assess-grid-cols-icons {
  padding-top: 100px !important;
  padding-bottom: 20%;
}

.assess-grid-cols-icons .intro {
  max-width: 100%;
}

.assess-grid-cols-icons .intro:before {
  border-radius: 2px;
}

.assess-grid-cols-icons .intro h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.1;
}

.assess-grid-cols-icons .intro p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.18;
}

#assess-callout-num.callout-numbers {
  margin-bottom: 0 !important;
  padding-inline: 15px;
  position: relative;
}

#assess-callout-num .container {
  max-width: calc(1680px - 24px);
  width: 100%;
  background: var(--grey-5);
  border-radius: 8px;
  padding: 60px 12px;
  margin-top: -10%;
  z-index: 9;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

#assess-callout-num h2 {
  font-size: 40px;
}

#assess-callout-num p {
  font-weight: 400;
  color: #2e2e2e;
  line-height: 20px;
}

#assess-callout-num .counters {
  margin-top: 100px;
}

#assess-callout-num .count h3 {
  max-width: 240px;
  width: 100%;
  font-size: 24px;
  margin: 0 auto;
}

#assess-callout-num .count h3:after {
  width: 80px;
  height: 2px;
  border-radius: 2px;
}

#assess-callout-num .btn-wrap {
  margin-top: 90px;
}

#assess-callout-num a.btn-txt {
  width: auto !important;
  min-width: auto !important;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  border-radius: 4px;
  background: #ffb100;
  padding: 14px 12px;
  border: none;
  padding-right: 45px;
}

#assess-callout-num a.btn-txt:before {
  display: none;
}

#assess-callout-num a.btn-txt:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/right-arrow.svg) no-repeat;
  position: absolute;
  top: 16px;
  right: 20px;
}

#assess_hero_section {
  margin-bottom: 120px;
}

#assess_hero_section .hero--content {
  display: none;
}

.callout-content-two-grids {
  padding-bottom: var(--spacer);
  padding-top: var(--spacer);
  position: relative;
}

.callout-content-two-grids > img {
  mix-blend-mode: multiply;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  width: 100%;
  z-index: -1;
  inset: auto 0 0 auto;
  max-width: 100%;
}

.callout-content-two-grids .container {
  max-width: var(--container-width);
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}

.callout-content-two-grids .row > div:first-child {
  place-items: start;
}

.callout-content-two-grids .row > div:first-child h2 {
  max-width: 600px;
  width: 100%;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

.callout-content-two-grids .row > div:first-child p {
  max-width: 600px;
  width: 100%;
  font-weight: 400;
}

.callout-content-two-grids .row > div:last-child .content {
  background: transparent;
  padding-block: 0;
  padding-left: 0;
}

.callout-content-two-grids .row > div:last-child .content ul {
  padding-left: 35px;
  position: relative;
}

.callout-content-two-grids .row > div:last-child .content ul:before {
  content: "";
  width: 8px;
  height: 100%;
  background: #3f74b5;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.callout-content-two-grids .row > div:last-child .content ul li {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  padding-left: 0;
}

.callout-content-two-grids
.row
> div:last-child
.content
ul
li:not(:last-child) {
  margin-bottom: 20px;
}

.callout-content-two-grids .row > div:last-child .content ul li:before {
  display: none;
}

.callout-content-two-grids .btn-txt {
  margin-top: 40px;
  font-weight: 500;
  line-height: 20px;
}

.callout-image-left {
  position: relative;
  margin-bottom: 0;
  padding-top: var(--spacer);
  z-index: 99;
}

.callout-image-left .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.callout-image-left > img {
  mix-blend-mode: multiply;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  width: 35%;
  z-index: 1;
  aspect-ratio: 9 / 16;
  inset: auto 0 25% auto;
  max-width: 45rem;
}

.callout-image-left .row h2 {
  max-width: 495px;
  width: 100%;
  font-size: 40px;
  padding-top: 24px;
  position: relative;
}

.callout-image-left .col-lg-5 {
  padding-left: 25px;
}

.callout-image-left .row h2:before {
  content: "";
  width: 180px;
  height: 8px;
  border-radius: 2px;
  background: #ffb100;
  position: absolute;
  top: 0;
  left: 0;
}

.callout-image-left .row p {
  max-width: 495px;
  width: 100%;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .fullwidth-image-banner .image-wrap {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 1199px) {
  .callout-image-left .row h2,
  .callout-content-two-grids .row > div:first-child h2,
  .assess-grid-cols-icons .intro h2,
  #assess-callout-num h2 {
    font-size: calc(1.375rem + 1vw);
  }

  .assess-grid-cols-icons .intro p {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .callout-content-two-grids .row > div:last-child .content ul li {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .callout-image-left .row > div:not(:last-child) {
    margin-bottom: 50px;
  }

  .callout-content-two-grids .row > div:last-child .content {
    padding-inline: 0;
  }

  .callout-content-two-grids > div:last-child .content ul li {
    font-size: 18px;
  }

  .assess-grid-cols-icons .intro p {
    font-size: 18px;
  }

  #assess-callout-num .container {
    margin-top: 0;
    position: relative;
    transform: none;
    top: -50px;
    left: 0;
  }
}

@media (max-width: 480px) {
  .callout-content-two-grids .row > div:last-child .content ul li {
    font-size: 16px;
  }
  .callout-content-two-grids
  .row
  > div:last-child
  .content
  ul
  li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* Solutions HOAs Communities Page */

#fhc_right_banner {
  z-index: 999;
}

#fhc_right_banner .content {
  background: #445468 !important;
}

#fhc_right_banner .content * {
  color: #fff;
}

#fhc_right_banner .content h2 {
  font-size: 32px;
}

#fhc_right_banner .content p {
  max-width: 910px;
  width: 100%;
  font-weight: 400;
}

#fhc_right_banner .image-wrap .accent {
  display: none;
}

#fhc_right_banner .intro {
  width: min(610px, 100%);
}

#fhc_right_banner .intro h1 {
  padding-bottom: 45px;
  position: relative;
}

#fhc_right_banner .intro h1:after {
  content: "";
  width: 179px;
  height: 24px;
  border-radius: 8px;
  background: #3f74b5;
  position: absolute;
  bottom: 0;
  left: 0;
}

#fhc_callout_img {
  margin-bottom: 0 !important;
  z-index: 9;
}

#fhc_callout_img .callout-image__bottom .accent-divider {
  border-radius: 2px;
}

#fhc_callout_img .callout-image__bottom .content {
  background: #fff;
}

#fhc_callout_img .callout-image__bottom .content h2,
#fhc_callout_img .callout-image__bottom .content p {
  color: #1a1a1a;
}

#fhc_hero_section .hero--content {
  display: none;
}

.two-grids-with-background {
  margin-top: -50px !important;
  margin-bottom: 30px !important;
  padding-top: 0;
  z-index: 9;
  background: #f3f3f3;
  position: relative;
}

.two-grids-with-background .row {
  align-items: center;
}

.two-grids-with-background .accent {
  padding-left: 0;
  padding-top: 24px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
}

.two-grids-with-background .accent:before {
  content: "";
  width: 179px;
  height: 8px;
  background: #ffb100;
  position: absolute;
  top: 0;
  left: 0;
}

.two-grids-with-background p {
  font-weight: 400;
}

.two-grids-with-background .col-lg-5 {
  padding-right: 20px;
}
.two-grids-with-background .with_bg .content__inner{
  border-radius: 8px;
  padding: var(--subspacer);
}
.two-grids-with-background .with_bg .content__inner:not([class*="bg-"]) {
  background: #445468;

}
.two-grids-with-background ol li+li{
  margin-top: 16px;
}
@media screen and (min-width: 992px){
  .two-grids-with-background .col-lg-7 {
    margin-top: -50px;
  }
}

.two-grids-with-background .with_bg * {
  color: #fff;
}

.two-grids-with-background h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
}

.two-grids-with-background p strong {
  font-size: 18px;
}

.two-grids-with-background .content {
  padding: 0 !important;
}

#fhc_one_col_content {
  margin-bottom: var(--spacer);
  background: #f3f3f3;
}

#fhc_one_col_content .image-icon {
  max-width: 64px;
  width: 100%;
  margin: 0 auto 22px;
}

#fhc_one_col_content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  line-height: 1.25;
}

#fhc_one_col_content p {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.32;
}

#fhc_one_col_content .btn-txt {
  margin-top: 80px;
}

#fhc_one_col_content > img:last-of-type {
  aspect-ratio: unset;
  inset: 0;
  max-width: 100%;
  width: 100% !important;
}

@media (min-width: 992px) {
  #fhc_callout_img .image-wrap {
    aspect-ratio: 16 / 6;
  }
  #fhc_hero_section .image-wrap {
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 991px) {
  #fhc_callout_img .image-wrap {
    display: block !important;
  }
  .two-grids-with-background {
    margin-top: 0 !important;
    padding-top: var(--spacer);
  }
}

@media (max-width: 767px) {
  #fhc_right_banner .content h2 {
    font-size: calc(1.375rem + 1vw);
  }
  .two-grids-with-background .accent,
  #fhc_one_col_content h2 {
    font-size: calc(1.375rem + 1vw);
  }
  #fhc_one_col_content p {
    font-size: 18px;
  }
}
.media__category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.media__category li::before {
  display: none;
}
.media__category li {
  padding-left: 0;
  margin-bottom: 0;
}
.media__category .media__category--btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px 5px 10px;
  line-height: 1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "rubik";
}
.media__filter {
  box-shadow: 0 0 24px rgb(0 0 0 / 10%);
  padding: 29px;
  border-radius: 8px;
  margin-bottom: 80px;
}
.view-all {
  font-size: 14px;
  color: #3f74b5;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 1px;
  opacity: 1;
  display: inline-block;
}
.media__inner + .media__inner {
  margin-top: 70px;
}
.media_library--posted {
  white-space: nowrap;
  padding-right: 20px;
  font-size: 14px;
}
.media_library--content a {
  text-decoration: none;
}
.media_library--details {
  margin-bottom: 20px;
}
.media__filter [class*="col-"]:first-child::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  background: #000;
  bottom: -5px;
  opacity: 0.1;
  height: 100%;
}
.media__filter [class*="col-"] {
  position: relative;
}
.single-page-title {
  font-size: 1.125rem;
  overflow: hidden;
  padding: var(--subspacer) 0;
  position: relative;
  isolation: isolate;
}
.back-to-media {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 500;
}
.single-page-title .sinlge-shape {
  aspect-ratio: 9 / 16;
  inset: auto 0 -184% auto;
  max-width: 45rem;
  position: absolute;
  background: transparent;
  z-index: -1;
}
.copyText {
  background: #fff;
  padding: 11px 19px 7px 19px;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.25;
  color: #3f74b5;
  font-weight: 500;
  position: relative;
  isolation: isolate;
}
.copyText__tooltip {
  position: absolute;
  top: -36px;
  right: 0;
  background: #2e2e2e;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  line-height: 1;
  font-size: 11px;
  opacity: 0;
}
.copyText:hover .copyText__tooltip {
  opacity: 1;
}
.copyText svg {
  margin-right: 5px;
  vertical-align: top;
}
.single-media {
  margin-inline: -15px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.single-media > div {
  padding-inline: 15px;
}
@media screen and (min-width: 1200px) {
  .single-section .container,
  .single-page-title .container {
    width: 70%;
  }
}

/* 28-march-24 */
.page-id-1294 .callout-section {
  display: none;
}

/* 28-04 */
.media__category .media__category--btn {
  border: 1px solid #0000003d;
  color: #00000094;
}

.media__category .media__category--btn:hover {
  background-color: #00000040;
}

.media__category .media__category--btn.type.active {
  background-color: var(--seagreen);
  border-color: var(--seagreen);
  color: #fff;
}

.media__category .media__category--btn.topic.active {
  border-color: var(--purple);
  background-color: var(--purple);
  color: #fff;
}

.page-template-media-library .media__posts .expanded-pagination {
  margin-top: 8px;
  justify-content: center;
  padding-block: 16px;
  display: flex;
}

.page-template-media-library
.media__posts
.expanded-pagination
> *:not(:first-child) {
  margin-left: 24px;
}

.page-template-media-library .media__posts .expanded-pagination > a {
  text-decoration: none;
  color: #000000d1;
}

.page-template-media-library .media__posts .expanded-pagination .deco-links {
  color: #0000003d;
}

.page-template-media-library .media__posts .expanded-pagination .current,
.page-template-media-library .media__posts .expanded-pagination > a:hover {
  color: #3f74b5;
}

.accordion-banner {
  margin-top: 20px;
}

.media__inner .media__category .media__category--btn.type {
  background-color: var(--seagreen);
  border-color: var(--seagreen);
  color: #fff;
}

.media__inner .media__category .media__category--btn.topic {
  border-color: var(--purple);
  background-color: var(--purple);
  color: #fff;
}

.accordion-banner {
  margin-top: 20px !important;
}

.single-media-library .back-to-media {
  text-transform: capitalize;
}

.single-media-library .single-page-title h1 {
  font-size: 32px;
  line-height: 40px;
  color: #000000d1;
}

.single-media-library .single-page-title .media_library--posted {
  color: #000000d1;
  padding-right: 0;
}

.single-media-library .section:not(.prefooter-form) .container {
  max-width: 810px;
  width: 100%;
}

.single-media-library .single-page-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #00000094;
  margin-bottom: 56px;
}

.single-media-library
.single-page-title
.media__category
.media__category--btn.type,
.single-media-library
.single-section
.media__category
.media__category--btn.type {
  background-color: var(--seagreen);
  border-color: var(--seagreen);
  color: #fff;
}

.single-media-library
.single-page-title
.media__category
.media__category--btn.topic,
.single-media-library
.single-section
.media__category
.media__category--btn.topic {
  border-color: var(--purple);
  background-color: var(--purple);
  color: #fff;
}

.single-media-library .copy-btn {
  margin-left: auto;
}

.single-media-library .single__content {
  margin-bottom: 48px;
}

.single-media-library .single__content h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.page-template-media-library .page-title {
  font-size: 20px;
}

.page-template-media-library .media-library .media_library--details {
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

.page-template-media-library .media-library .media_library--details p {
  line-height: 1;
}

.page-template-media-library .media__filter .view-all.disable {
  pointer-events: none;
  color: gray;
  opacity: 0.3;
}

.page-template-media-library .media__filter > .row {
  row-gap: 8px;
}

.archive .media-library--taxonomy #pagination-container .expanded-pagination {
  justify-content: center;
  margin-top: 8px;
  justify-content: center;
  padding-block: 16px;
  display: flex;
}

.archive
.media-library--taxonomy
#pagination-container
.expanded-pagination
> *:not(:first-child) {
  margin-left: 24px;
}

.archive
.media-library--taxonomy
#pagination-container
.expanded-pagination
.deco-links {
  color: #0000003d;
  display: inline-block;
}

.archive
.media-library--taxonomy
#pagination-container
.expanded-pagination
> a {
  text-decoration: none;
  color: #000000d1;
}

.archive
.media-library--taxonomy
#pagination-container
.expanded-pagination
.current,
.archive
.media-library--taxonomy
#pagination-container
.expanded-pagination
> a:hover {
  color: #3f74b5;
}

.single-media-library .sngl-mda-dtls .cl--date {
  max-width: 210px;
  width: auto;
}

.single-media-library .sngl-mda-dtls .cl--tags {
  max-width: calc(100% - 370px);
}

.single-media-library .sngl-mda-dtls .cl--btn {
  max-width: 160px;
  width: auto;
}
.sub-heading {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: .76;
}
.split-image-banner.wrapper .image .accent.blue-bar {
  width: var(--container-col-3);
}
.split-image-banner .image .accent.blue-bar{
  background-color: var(--slate);
  height: 1.5rem;
  border-radius: 8px;
}
.card-grid__white-cards .content {
  background: var(--grey-5) !important  ;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .20);
}
.card-grid__white-cards.card-grid-columns.wrapper {
  margin-top: calc(var(--spacer) * -2);
}
.wrapper.wrapper-bottom{
  padding-bottom: calc(var(--spacer)* 2);
}
.card-three-columns .item h2 {
  margin-bottom: 0;
}
.card-three-columns  .content.content-spacing{
  border-radius: 8px;
}
.image-overlay .content>:not(.accent){
  padding-left: 0;
}
.split-image-banner .image-wrap{
  border-radius: 8px;
}
.split-image-banner .banner-shape {
  position: absolute;
  aspect-ratio: 9 / 16;
  inset: -49% 0 0 auto;
  width: 50%;
  rotate: 42deg;
  z-index: -1;
}
.offset-card .image-wrap{
  border-radius: 8px;
}
.image-overlay .image-overlay__right img{
  object-position: right;
}
.insurance-quote-form__inner .inner img {
  width: 88px;
  display: block;
  margin-inline: auto;
  margin-bottom: 24px;
}
.insurance-quote-form__inner .inner {
  padding-bottom: 56px;
}
#insurance-coverage {
  margin-bottom: 0 !important;
}
.insurance-quote__form{
  max-width: 810px;
  width: 100%;
  margin-inline: auto;
}
.insurance-quote-form .rellax.full-shape {
  mix-blend-mode: multiply;
  object-fit: cover ;
  position: absolute;
  width: auto;
  z-index: -1;
  inset: -380px auto;
  height: 102%;
  opacity: .4;
}

.insurance-quote-form{
  padding-bottom: var(--spacer);
  position: relative;
  isolation: isolate;
  z-index: 99;
}
#monitoring-quote-form {
    padding-top: 0;
}
#monitoring-quote-form .gfield--type-html{
  display: none;

}
.split-image-banner .image-wrap img{
  border-radius: 8px;
}
.split-image-banner.wrapper .image .accent{
  border-radius: 8px;
}
#insurance-quote-form .gfield--type-html {
    font-size: 12px;
}
.split-image-banner .banner-shape{
  z-index: 1;
}
#faq__content {
    padding-block: 0;
    margin-bottom: 72px;
}
.callout-content.callout-content-single#faq__content .container{
  max-width: var(--container-width);
}
@media screen and (min-width: 992px) and (max-width: 1600px){
  .image-overlay .image-overlay__right img {
    width: 60%;
  }
  .split-image-banner {
    padding-bottom: var(--spacer);
  }
  .split-image-banner.wrapper .image .accent.blue-bar{
    inset: auto 100% -5% auto;
  }
}
@media screen and (min-width: 992px){
  .split-image-banner.wrapper .image .accent{
    height: 1.4rem;
  }
  .card-three-columns .item h2 {
    font-size: 1.5rem;
  }
  .image-overlay .image-overlay__right img {
    inset: -25% 0 auto auto;
    width: 50%;
  }
  .image-overlay .image-wrap.image-overlay__right:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 238px;
    background-image: url('/wp-content/themes/fortressfire/assets/img/gradient-overlay.png');
  }
  .image-overlay .image-wrap.image-overlay__right:before{
    display: none;
  }
}
@media (max-width: 991px) {
  .insurance-quote-form .rellax.full-shape{
    inset: 0 auto;
    height: 100%;
  }
  .ginput_recaptcha {
    transform: scale(0.8);
    transform-origin: 0;
}
  .image-overlay .image-overlay__right img{
    object-position: left;
  }
  .accordion-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .page-template-media-library .page-title {
    font-size: 18px;
  }
  .split-image-banner.wrapper .image .accent.blue-bar {
    inset: 0 calc(.5rem* -1) auto auto;
    height: 85%;
    width: .8rem;
  }
}
@media (min-width: 576px) {
    .split-image-banner .image-wrap img {
        inset: 0;
    }
}
@media (max-width: 767px) {
  .media__inner + .media__inner {
    margin-top: 30px;
  }

  .page-template-media-library .media__posts .media__inner > .row {
    row-gap: 15px;
  }

  .page-template-media-library .media__posts .media__inner > .row > div {
    width: 100% !important;
  }

  .single-media-library .copy-btn {
    margin-left: 0;
  }

  .single-media-library .sngl-mda-dtls .cl--date,
  .single-media-library .sngl-mda-dtls .cl--tags {
    max-width: unset;
    width: 100%;
  }

  .single-media-library .sngl-mda-dtls .cl--btn {
    width: auto;
  }
}

@media (max-width: 640px) {
  .page-template-media-library .page-title {
    font-size: 16px;
  }

  header .top-nav .navbar > a {
    max-width: 170px;
  }
}

@media (max-width: 575px) {
  .split-image-banner .image-wrap {
    margin: auto;
  }
  h2 br{
    display: none;

  }
}



/* 13-11-2024 start */

#dir_protect_client_section {
  padding-bottom: 5rem;
  margin-bottom: 0;
}

#dir_protect_client_section .container {
  max-width: var(--container-width);
}

/*#grid_three_columns {
  background-color: #6B87A6;
  padding-top: 216px;
}

#grid_three_columns .intro {
  text-align: center;
  width: 100%;
  max-width: 1230px;
}
#grid_three_columns .intro p {
  font-size: 1.5rem;
  line-height: 2ren;
  font-weight: 500;
  letter-spacing: 0.2px;
}*/

.dir_grid_cols {
  background-color: #6B87A6;
  padding-top: 216px !important;
}

.dir_grid_cols .intro {
  text-align: center;
  width: 100%;
  max-width: 1230px;
}

.dir_grid_cols .intro p {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

#grid_three_columns .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#grid_three_columns .card__icon {
  margin-bottom: 0;
}
/*#grid_three_columns h2 {
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: 500;
}*/


.dir_grid_cols h2 {
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: 500;
}

#grid_three_columns .btn-wrap h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.callout_content_with_bottom_img {
  padding-block: 104px 0;
}
.callout_content_with_bottom_img .container {
  position: relative;
  z-index: 9;
  margin-bottom: -120px;
}
.callout-content.callout_content_with_bottom_img .container {
  max-width: var(--container-width);
}
.callout_content_with_bottom_img h2 {
  padding-left: 24px;
  border-left: 8px solid Orange;
}
.callout_content_with_bottom_img .btn-txt {
  margin-top: 60px;
}
.callout_content_with_bottom_img .bottom_img_section {
  margin-top: 78px;
}
.callout_content_with_bottom_img .bottom_img_section img {
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.callout_content_right_image {
  margin-top: 0 !important;
}
.callout_content_right_image .content {
  width: 31%
}
.callout_content_right_image .image-wrap {
  width: 64%;
}
.callout_content_right_image .accordion-bottom {
  max-width: none;
}
.callout_content_right_image h2 {
  padding-left: 24px;
  border-left: 8px solid #3F74B5;
}
.callout_content_right_image .accordion-bottom div {
  margin-top: 50px;
}
.prefooter-form h2 {
  max-width: 277px;
}
.callout_slider_center_image__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.callout_slider_center_image__img img {
  max-width: none;
  width: 100%;
}
.callout_slider_center_image__testimonial {
  max-width: 1022px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.callout_slider_center_image__testimonial_content p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #445468;
  font-weight: 500;
  position: relative;
  padding-left: 12px;
}
.callout_slider_center_image__testimonial_content p::before {
  content: '“';
  position: absolute;
  top: 0;
  left: 0;
}
.callout_slider_center_image__testimonial_content p::after {
  content: '”';
}
.callout_slider_center_image__testimonial_author {
  font-size: 12px;
  color: #000;
}
.callout_slider_center_image__testimonial_author::before {
  content: "- ";
}

/* HOME PAGE PARTNERS LOGO START  */
.partners_logo {
  background-color: #FAFAFA;
  position: relative;
  z-index: 2;
}
.partners_logo__container {
  width: min(1232px, 100%);
  margin-inline: auto;
}
.partners_logo__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.partners_logo__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.partners_logo__list img {
  max-height: 48px;
  width: auto;
  max-width: none;
  border-radius: 0;
  filter: grayscale(1);
}
/* HOME PAGE PARTNERS LOGO END  */

@media (min-width: 1200px) and (max-width: 1599px) {
  .callout_content_with_bottom_img__left {
    width: 520px;
  }
  .callout_content_with_bottom_img__right {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .callout_content_with_bottom_img .col-lg-8 {
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  .callout_content_right_image {
    padding-top: 60px !important;
  }
  .callout_content_right_image .content {
      width: 100%;
  }
  .callout_content_right_image .image-wrap {
    width: 100%;
  }
  .callout_content_right_image .accordion-bottom {
      margin-top: 0;
      padding-top: 0;
      margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .callout_slider_center_image__inner {
      gap: 30px;
  }
  .callout_slider_center_image__testimonial_content p {
      font-size: 1.2rem;
      line-height: 160%;
  }
  .callout_content_with_bottom_img {
    padding-top: 60px;
  }
  .callout_content_with_bottom_img .btn-txt {
    margin-top: 20px;
  }
  .callout_content_with_bottom_img .bottom_img_section {
    margin-top: 40px;
  }
  .callout_content_with_bottom_img .container {
    margin-bottom: -10%;
  }
  /*#grid_three_columns {
      padding-top: 18%;
  }*/

  .dir_grid_cols {
      padding-top: 18% !important;
  }

  .partners_logo__inner {
    gap: 60px;
}
  .partners_logo__list {
    gap: 20px;
  }
  .partners_logo__list img {
    max-height: 30px;
  }
}
/* 13-11-2024 end */

/* Aerial Analysis Page */

.callout-content-hero{
  padding-top: 36px;
  background: rgba(0, 0, 0, 0.02);
}

.callout-content-hero .row{
  position: relative;
}

.callout-content-hero .row > div:first-child{
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.callout-content-hero .row > div:last-child{
  width: 80%;
  margin-left: auto;
}
 
.callout-content-hero .content_box{
  max-width: 600px;
  width: 100%;
  background: #e6e6e6;
  padding: 56px;
  border-radius: 8px;
  margin-bottom: 56px;
  position: relative;
}

.callout-content-hero .content_box:before{
  content: "";
  width: 179px;
  height: 24px;
  border-radius: 8px;
  background: #3f74b5;
  position: absolute;
  bottom: -56px;
  left: 35px;
}

.callout-content-hero .content_box h2{
  font-size: 32px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  line-height: 125%;
  margin-block: 0 24px;
}

.callout-content-hero .content_box p{
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.82);
  line-height: 125%;
  margin-bottom: 10px;
}

.callout-content-hero .content_box p:last-child{
  margin-bottom: 0;
}

.callout-content-hero .accent{
  display: none;
}

.callout-content-hero .image-wrap{
  margin-top: 120px !important;
}

#aa_property_involved,
#aa_curious_about {
  margin-top: -160px !important;
} 

.callout-content .white_content_box{
  background: #fafafa;
  border-radius: 8px;
  padding: 56px;
  margin-block: 64px;
}

.callout-content .white_content_box p{
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  line-height: 125%;
}

.callout-content .btn-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  margin-top: 38px;
}

.callout-content .btn-wrap a{
  font-size: 16px;
  font-weight: 500;
  color: #3F74B5 !important;
  line-height: 125%;
  margin-top: 0;
  padding-bottom: 14px;
  border-bottom-color: #3F74B5 !important;
}

.callout-content .btn-wrap a:after{
  color: #3F74B5 !important;
  margin-left: 13px !important;
}

.callout_content_with_bottom_img__right p strong{
  font-size: 18px;
}

.callout_content_with_bottom_img__testimonial_content{
  max-width: 1007px;
  width: 100%;
  margin-inline: auto;
  margin-block: 64px 18px;
}

.callout_content_with_bottom_img__testimonial_content p{
  font-size: 23.5px;
  font-weight: 500;
  color: #fff;
  line-height: 160%;
}

.callout_content_with_bottom_img__testimonial_author{
  max-width: 1007px;
  width: 100%;
  font-size: 11.75px;
  font-weight: 500;
  color: #fafafa;
  line-height: 80%;
  letter-spacing: 0.588px;
  text-transform: uppercase;
  margin-inline: auto;
}

#aa_curious_about{
  padding-block: 390px 104px;
}

.card-grid-multiple-columns{
  padding-block: 104px;
}

.card-grid-multiple-columns .icon-media{
  width: 88px;
  height: 88px;
  margin: 0 auto 56px;
}

.card-grid-multiple-columns .intro{
  max-width: 1232px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 56px;
}

.card-grid-multiple-columns .intro p{
  font-size: 24px;
  font-weight: 500;
  color: #2E2E2E;
  line-height: 133.333%;
  letter-spacing: 0.48px;
  text-align: center;
}

.card-grid-multiple-columns .item .content{ 
  height: 100%;
  padding: 56px;
  border-radius: 8px;
}

.card-grid-multiple-columns .container .row{
  margin-bottom: 32px;
}

.card-grid-multiple-columns .container .row:last-child{
  margin-bottom: 0;
}

.card-grid-multiple-columns .item ul li:before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 9px;
}

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

#aa_curious_about img.rellax {
  display: none;
}

#faq {
  min-height: 40vh;
  padding-bottom: 50px;
}

@media (max-width: 575px) {
  #faq {
    padding-top: 80px;
  }
}

@media (max-width: 1199px){
  .callout-content-hero .content_box{
    padding: 30px;
  }
  .callout-content-hero .content_box h2{
    font-size: 24px;
  }
  .callout-content .white_content_box{
    padding: 36px;
  }
}

@media (max-width: 991px){
  .callout-content-hero .row > div:first-child{
    width: 100%;
    position: static;
  }
  .callout-content-hero .content_box{
    max-width: none;
  }
  .callout-content-hero .row > div:last-child{
    width: 100%;
  }
  .callout-content-hero .image-wrap{
    margin-top: 50px !important;
  }
  .callout-content-hero .content_box{
    padding: 20px;
  } 
  .callout-content .btn-wrap{
    column-gap: 30px;
    row-gap: 20px;
  }
  #aa_curious_about {
    padding-block: 330px 75px;
  }
  .card-grid-multiple-columns .row{
    row-gap: 30px;
  }
}

@media (max-width: 767px){
  #aa_property_involved,
  #aa_curious_about { 
    margin-top: -100px !important;
  }
  .callout-content .white_content_box{
    padding: 20px;
  }
  .callout_content_with_bottom_img__testimonial_content{
    margin-block: 0 18px;
  }
  .callout_content_with_bottom_img__testimonial_content p{
    font-size: 18px;
    line-height: 150%;
  }
  #aa_curious_about { 
    padding-block: 220px 75px;
  }
  .card-grid-multiple-columns {
    padding-block: 64px 104px;
  }
  .card-grid-multiple-columns .icon-media{
    margin: 0 auto 30px;
  }
  .card-grid-multiple-columns .intro{
    margin-bottom: 36px;
  }
  .card-grid-multiple-columns .intro p{
    font-size: 18px;
  }
  .card-grid-multiple-columns .item{
    width: 100%;
    flex: auto;
  }
  .card-grid-multiple-columns .item .content{
    padding: 30px;  
  }
  .card-grid-multiple-columns .item h2{
    font-size: 20px;
  }
  .card-grid-multiple-columns .item ul li{
    font-size: 14px;
  }
  main#content{
    margin-top: 160px !important;
  }
}

@media (max-width: 480px){
  #aa_curious_about{
    padding-block: 180px 75px;
  }
}   

/* End Aerial Analysis Page */

.testimonials__content{
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}

.testimonial__col{
  padding-block: 0 20px;
  padding-inline: 16px;
  width: calc(100% / 2);
}

.testimonial__col p{
  font-size: 23.5px;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 18px;
  position: relative;
}

.testimonial__col p:before{
  content: "“";
  position: absolute;
  top: 0;
  left: -13px;
}

.testimonial__col p:after{
  content: "”";
  position: absolute;
  bottom: 0;
}

.testimonial__col .author_name {
  font-size: 14px;
  text-transform: uppercase;
}

.gform_wrapper input[type="checkbox"]{
  border: 2px solid var(--grey-3) !important;
  border-radius: 4px !important;
  padding: 0 !important;
  position: relative;
  top: 4px;
}

.gform_wrapper input[type="checkbox"]:hover{
  border-color: var(--grey-3) !important;
  cursor: pointer;
}

.gform_wrapper input[type="checkbox"]:before{
  color: var(--blue) !important;
}

.gform_wrapper .ginput_container_consent label.gform-field-label{
  font-size: 12px;
}

.gform_wrapper .ginput_container_consent label.gform-field-label .gfield_required{
  display: none;
}

.split-content-middle .content{
  padding-block: 40px; 
}

@media (max-width: 991px){
  .testimonial__col{
    width: 100%;
    padding-block: 0 40px;
  }
  .testimonials__content > div:last-child{
    padding-bottom: 0;
  }
}

@media (max-width: 767px){
  .testimonial__col p{
    font-size: 19.5px;
    line-height: 145%;
  }
}

@media (min-width: 576px) {
    #insurance_split_content.split-content .image-wrap img {
        inset: -15% 0 !important;
    }
}

/* 12-12-2024 START */
#our_story {
  min-height: auto;
}
#why_fortress {
  margin-top: 0;
}
#protect_properties {
  margin-bottom: 50px;
}
/* 12-12-2024 END */

.navbar-toggler {
  display: block;
}

.navbar-toggler.open {
  display: none;
}

.collapse_menu_btn {
  display: none;
  position: fixed;
  right: 25px;
  top: 23px;
  color: #fff;
  z-index: 999;
  font-size: 23px;
}

.open-menu .collapse_menu_btn {
  display: block;
}

/**************** 
  Fine Art Page 
****************/

#fine-art-banner{
  padding-bottom: 80px;
}

#fine-art-banner .container{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-top: -100px;
}

#fine-art-banner .content{
  height: auto !important;
  background: #445468;
  padding: 56px;
  border-radius: 8px;
}

#fine-art-banner .content h2{
  margin-bottom: 24px;
}

#fine-art-banner .content p{
  margin-bottom: 0;
}

#fine-art-banner .accent{
  background: #3F74B5;
  margin-top: -25px;
}

#fine-art-banner .btn-wrap{
  margin-top: 0;
}

#fine-art-banner h2{
  font-size: 40px;
}

#ins__fine-art{
  padding-block: 0 144px; 
  background: rgb(0 0 0 / 2%);
}

#ins__fine-art .container{
  max-width: var(--container-width);
}

#ins__fine-art .container + .rellax{
  display: none;
}

#ins__fine-art .col-lg-4 h2{
  width: min(380px, 100%);
  font-size: 24px;
  padding-left: 32px;
  position: relative;
}

#ins__fine-art .col-lg-4 h2:before{
  content: "";
  width: 8px;
/*  height: 84px;*/
  height: calc(100% - 6px);
  background: #FFB100;
  border-radius: 2px;
  position: absolute;
  top: 3px;
  left: 0;
}

#ins__fine-art .btn-txt:after{
  margin-left: 10px;
}

#ins__fine-art .btn-txt{
  font-weight: 500;
}

#risk__tech-platform h2{
  font-size: 32px; 
}

#risk__tech-platform .white_bg_text{
  display: inline-block;
  padding: 32px 24px;
  background: #fafafa;
  border-radius: 8px;
}

#risk__tech-platform .white_bg_text p{
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.35;
}

#risk__tech-platform .bottom_img_section{
  border-radius: 8px;
  margin-top: -44px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.wildfire__prop{
  padding-bottom: 80px !important;
}

.wildfire__prop .intro h2{
  margin-bottom: 24px;
}

.wildfire__prop .intro p{
  font-size: 18px !important;
  font-weight: 500 !important;
}

#form__app-counter{
  padding-block: 104px;
  margin-bottom: 0;
}

#form__app-counter .inner{
  text-align: center;
  margin-bottom: 88px;
}

#form__app-counter .inner h2{
  font-size: 40px;
}

#form__app-counter .counters{
  width: min(810px,100%);
  margin-inline: auto;
}

#form__app-counter .counters > div{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}

#form__app-counter .counters > div + div{
  margin-top: 56px;
}

#form__app-counter .count img{
  width: 178px;
}

#form__app-counter .count h3{
  width: calc(100% - 178px);
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.82);
  padding-left: 32px;
}

#form__app-counter .btn-wrap{
  margin-top: 56px;
}

#form__app-counter .btn-txt{
  font-weight: 500;
}

/* Our Passion Section */

#fine_art_content_right_img{
  background: #3F74B5;
  padding-block: 104px;
  margin-bottom: 0;
}

#fine_art_content_right_img h2{
  font-size: 40px;
  border-left-color: #ffb100;
}

#fine_art_content_right_img .accordion-bottom{
  padding-top: 40px;
}

#fine_art_content_right_img .accordion-bottom *{
  color: #fff;
}

#fine_art_content_right_img .accordion-bottom ul li:before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 12px;
}

/* End Our Passion Section */

/* Testimonial Section */

.callout-testimonials{
  padding-block: 144px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.callout-testimonials .inner{
  width: min(1007px,100%);
  margin-inline: auto;
}

.callout-testimonials .inner div + div{
  margin-top: 120px;
}

.callout-testimonials .testimonial_block p{
  font-size: 23px;
  font-weight: 500;
  color: #445468;
  line-height: 1.6;
  margin-bottom: 19px;
}

.callout-testimonials .testimonial_block span{
  display: block;
  font-size: 11.75px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.58);
/*  line-height: 0.8;*/
  line-height: 1.4;
  letter-spacing: 0.588px;
  text-transform: uppercase;
}

.callout-testimonials .rellax{
  max-width: 45rem;
  width: 35%;
  position: absolute;
  aspect-ratio: 9 / 16;
  inset: auto 0 25% auto;
  z-index: -1;
}

/* End Testimonial Section */

.video-section{
  background: #445468;
  padding-block: 104px;
}

.video-section .inner{
  width: min(1022px,100%);
  margin-inline: auto;
  text-align: center;
}

.video-section .headline{
  text-align: center;
}

.video-section .headline *{
  color: #fff;
}

.video-section .headline h2{
  font-size: 40px;
}

.video-section .video{
  width: min(810px, 100%);
  margin-top: 56px;
  margin-bottom: 56px;
  margin-inline: auto;
  border: 3px solid #fff;
  border-radius: 8px;
  position: relative;
}

.video-section .video:before{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.video-section.rm__overlay .video:before{
  display: none;
}

.video-section #playButton{
  width: 104px;
  height: 104px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: none;
}

.video-section .btn-txt{
  width: 250px;
  text-align: left;
  padding-top: 14px;
  font-weight: 500;
  color: #fff;
  align-items: center;
  border-bottom-color: #fff;
}

.video-section .btn-txt:after{
  color: #fff;
}

.video-section .inner > a + a{
  margin-left: 56px;
}

/* Prefooter Form */

.request-for-brokers-form{
  padding-block: 104px;
}

.request-for-brokers-form .gform_title{
  font-size: 40px;
  max-width: none;
  text-align: center;
  margin-bottom: 0;
}

.request-for-brokers-form .gform_required_legend{
  display: none;
}

.request-for-brokers-form form{
  margin-block: 56px 0;
}

.request-for-brokers-form form .has_city{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.request-for-brokers-form form .address_city{
  width: 60% !important;
}

.request-for-brokers-form form .address_state{
  width: 20% !important;
}

.request-for-brokers-form form .address_zip{
  width: 20% !important;
}

.request-for-brokers-form form .address_state select{
  padding-right: 24px !important;
  background-image: url(/wp-content/uploads/2025/06/lock.svg) !important;
  background-position: calc(100% - 4px) 30% !important;
  pointer-events: none;
}

.request-for-brokers-form .gform-footer{
  margin-top: -42px !important;
}

.request-for-brokers-form .gform_fields{
  column-gap: 32px !important;
}

.request-for-brokers-form form input:not([type="submit"]),
.request-for-brokers-form form input:not([type="submit"])::placeholder,
.request-for-brokers-form form select{
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.82) !important;
}

.request-for-brokers-form form input[type="submit"]{
  font-size: 16px !important;
  font-weight: 500 !important;
}

.request-for-brokers-form .gform-loader{
  display: none !important;
}

@media (max-width: 1400px){
  #fine_art_content_right_img img{
    object-fit: contain;
  }
}

@media (max-width: 991px){
  #fine-art-banner .content{
    padding: 36px;
    margin-top: 0;
  }
  #fine-art-banner h2{
    font-size: 30px;
  }
  #fine-art-banner .accent{
    margin-top: 28px;
  }
  #risk__tech-platform .bottom_img_section{
    margin-top: 30px;
  }
  .wildfire__prop .row .item{
    width: 100%;
    flex: none;
  }
  .wildfire__prop .row .content{
    padding: 20px;
    gap: 10px;
  }
  .wildfire__prop .row .content h2{
    font-size: 24px !important;
  }
  #ins__fine-art{
    padding-bottom: 70px;
  }
  #form__app-counter{
    padding-block: 54px;
  }
  #form__app-counter .inner h2 {
    font-size: 30px;
  }
  #form__app-counter .count img {
    width: 110px;
  }
  #form__app-counter .count h3{
    width: calc(100% - 110px);
    font-size: 20px;
  }
  #fine_art_content_right_img h2{
    font-size: 30px;
    margin-bottom: 0;
  }
  .callout_content_right_image .accordion-bottom{
    padding-right: 0;
    padding-bottom: 60px;
  }
  .callout_content_right_image .image-wrap img{
    inset: auto;
  }
  #fine_art_content_right_img{
    padding-bottom: 0;
  }
  .video-section{
    padding-block: 60px;
  }
  .video-section .headline h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px){
  #fine-art-banner .container{
    margin-top: -50px;
  }
  #fine-art-banner .content{
    padding: 24px;
  }
  #fine-art-banner h2{
    font-size: 24px;
    margin-bottom: 15px !important;
  }
  #fine-art-banner {
    padding-bottom: 50px;
  }
  #ins__fine-art .col-lg-4 h2{
    padding-left: 25px;
  }
  #risk__tech-platform h2{
    font-size: 20px;
  }
  #risk__tech-platform .white_bg_text{
    padding: 15px;
  }
  #risk__tech-platform .white_bg_text p{
    font-size: 16px;
  }
  .wildfire__prop{
    padding-bottom: 50px !important;
  }
  .wildfire__prop h2{
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .wildfire__prop .intro p{
    font-size: 16px !important;
  }
  .wildfire__prop .intro{
    padding-bottom: 3rem;
  }
  .wildfire__prop .row .content h2 {
    font-size: 20px !important;
  }
  #form__app-counter .count h3{
    font-size: 18px;
  }
  #form__app-counter .inner h2 {
    font-size: 24px;
  }
  #form__app-counter .inner {
    margin-bottom: 45px;
  }
  .callout-testimonials{
    padding-block: 60px;
  }
  .callout-testimonials .testimonial_block p{
    font-size: 18px;
    line-height: 1.5;  
  }
  .callout-testimonials .inner div + div {
    margin-top: 60px;
  }
  .video-section .headline h2 {
    font-size: 26px;
  }
  .request-for-brokers-form{
    padding-block: 40px;
    margin-top: 0 !important;
  }
  .request-for-brokers-form .gform_title{
    font-size: 30px;
    margin-top: 0 !important;
  }
  .request-for-brokers-form form .address_city,
  .request-for-brokers-form form .address_state,
  .request-for-brokers-form form .address_zip{
    width: 100% !important;
  }
  .request-for-brokers-form .gform-theme--foundation .gfield{
    grid-column: 1 / -1 !important;
  }
  .request-for-brokers-form .gform-footer{
    margin-top: 30px !important;
    margin-left: 0 !important;
  }
  .request-for-brokers-form .gform_title {
    font-size: 24px;
  }
  .request-for-brokers-form .gform-theme--foundation .gform_fields{
    grid-template-columns: repeat(1, 1fr);
  }
  .video-section #playButton{
    width: 64px;
    height: 64px;
  }
  .video-section .inner > a{
    margin-inline: 10px !important;
  }
  .video-section .inner > a + a{
    margin-top: 30px;
  }
}

@media (max-width: 480px){
  #form__app-counter .count img {
    width: 80px;
  }
  #form__app-counter .count h3 {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
