/********************************************************/
/***            Imports                               ***/
/********************************************************/
@font-face {
  font-family: 'txhpicons';
  src: url('fonts/txhpicons.eot?c5vbhk');
  src: url('fonts/txhpicons.eot?c5vbhk#iefix') format('embedded-opentype'), url('fonts/txhpicons.ttf?c5vbhk') format('truetype'), url('fonts/txhpicons.woff?c5vbhk') format('woff'), url('fonts/txhpicons.svg?c5vbhk#txhpicons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="txhpicon-"],
[class*=" txhpicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'txhpicons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.txhpicon-phone:before {
  content: "\e900";
}
.txhpicon-home:before {
  content: "\e901";
}
.txhpicon-area:before {
  content: "\e902";
}
.txhpicon-bathtub:before {
  content: "\e903";
}
.txhpicon-bed:before {
  content: "\e904";
}
.txhpicon-cart:before {
  content: "\e905";
}
.txhpicon-envelope:before {
  content: "\e906";
}
.txhpicon-heart:before {
  content: "\e907";
}
.txhpicon-heart-o:before {
  content: "\e908";
}
.txhpicon-long-arrow-right:before {
  content: "\e909";
}
.txhpicon-share:before {
  content: "\e90a";
}
/********************************************************/
/***            Variables                             ***/
/********************************************************/
/********************************************************/
/***            General                               ***/
/********************************************************/
.txhp_loading_spinner_wrapper {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: -30px;
  right: -30px;
  top: -30px;
  bottom: -30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.txhp_loading_spinner_wrapper.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.txhp_loading_spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.txhp_loading_spinner div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: txhp_loading_spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: txhp_loading_spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.txhp_loading_spinner div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.txhp_loading_spinner div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.txhp_loading_spinner div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
@-webkit-keyframes txhp_loading_spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes txhp_loading_spinner {
  0% {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.mfp-wrap {
  z-index: 999999;
}
.txhp_tooltip {
  margin-left: 10px;
  text-align: center;
  position: relative;
}
.txhp_tooltip .txhp_tooltip_trigger {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  border-radius: 20px;
  border: 1px dotted #323135;
  margin: 4px 0;
  cursor: pointer;
}
.txhp_tooltip .txhp_tooltip_content {
  position: absolute;
  right: 30px;
  top: 0;
  background: black;
  width: 320px;
  color: white;
  padding: 6px 10px;
  font-size: 14px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(10px, -40%);
      -ms-transform: translate(10px, -40%);
       -o-transform: translate(10px, -40%);
          transform: translate(10px, -40%);
  -webkit-transition: 300ms all ease-in-out;
  -o-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
  border-radius: 4px;
  z-index: 9999;
}
.txhp_tooltip .txhp_tooltip_content:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent black;
  position: absolute;
  right: -10px;
  top: 50%;
}
.txhp_tooltip:hover .txhp_tooltip_content,
.txhp_tooltip:focus .txhp_tooltip_content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, -40%);
      -ms-transform: translate(0, -40%);
       -o-transform: translate(0, -40%);
          transform: translate(0, -40%);
}
#wrapper .btn {
  background: red;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
#wrapper .btn:hover {
  color: white;
}
#wrapper .btn.btn-secondary {
  background: #AFADAE;
}
#wrapper .btn.btn-black {
  background: black;
}
#wrapper .text_white {
  color: white;
}
#wrapper .text_red {
  color: #ff0000;
}
#wrapper .text_center {
  text-align: center !important;
}
#wrapper #txhp-page-title h2,
#wrapper .home-hero-section-title h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}
#wrapper .home-hero-section-title-landing-page h2 {
  font-size: 2.5rem;
}
/********************************************************/
/***            Header                                ***/
/********************************************************/
#main-header {
  overflow: hidden;
}
body.transparent-header #main-header .item-at-start .header-button {
  background: transparent !important;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
body.transparent-header #main-header .item-at-start .site-header-row-container-inner {
  border-bottom: 0;
}
body:not(.transparent-header) #main-header .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"],
body.transparent-header #main-header .item-is-stuck .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"] {
  position: relative;
}
body:not(.transparent-header) #main-header .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"] .header-button-wrap,
body.transparent-header #main-header .item-is-stuck .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"] .header-button-wrap {
  position: relative;
}
body:not(.transparent-header) #main-header .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"]::before,
body.transparent-header #main-header .item-is-stuck .site-header-item.site-header-focus-item[data-section="kadence_customizer_header_button"]::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: -1px;
  left: 0;
  right: -1900px;
  background: #ff0000;
}
/********************************************************/
/***            Footer                                ***/
/********************************************************/
#colophon .widget.widget_block h4 {
  color: white;
  font-size: 16px;
  font-weight: normal;
  position: relative;
}
#colophon .widget.widget_block h4:after {
  content: '';
  width: 30px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: red;
}
#colophon .wpforms-field-container input {
  border-radius: 4px;
  border: 0;
  color: white;
  background: #323135;
}
#colophon .wpforms-submit-container button {
  background: red;
  line-height: 1;
  width: 100%;
  border: 0;
  border-radius: 4px;
  color: white;
}
/********************************************************/
/***            Home                                  ***/
/********************************************************/
#wrapper .section_home_hero {
  position: relative;
}
#wrapper .home_hero_ribbon {
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
       -o-transform: translate(0, -100%);
          transform: translate(0, -100%);
  position: relative;
}
#wrapper .home_hero_ribbon .elementor-inner-section {
  position: absolute;
  bottom: 0;
}
#wrapper .home-hero-section-text,
#wrapper .home-hero-section-buttons {
  margin-bottom: 20px;
}
#wrapper .home-hero-section-text .elementor-container,
#wrapper .home-hero-section-buttons .elementor-container {
  margin-left: 0;
}
#wrapper .home-hero-section-buttons .elementor-widget-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#wrapper .home-hero-section-buttons .elementor-widget-wrap .elementor-element {
  width: auto;
  margin-right: 20px;
}
#wrapper .home_sub_heading {
  margin-bottom: 20px;
}
#wrapper .home_sub_heading h4 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  color: #ff0000;
}
#wrapper .home_sub_heading h4::before,
#wrapper .home_sub_heading h4::after {
  position: absolute;
  content: '';
  background: #ff0000;
  height: 2px;
  margin-top: -1px;
  width: 30px;
  top: 50%;
}
#wrapper .home_sub_heading h4::before {
  left: -33px;
}
#wrapper .home_sub_heading h4::after {
  right: -33px;
}
#wrapper .txhp_plans_carousel_wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
#wrapper .txhp_plans_carousel_wrapper .txhp_archive_plan {
  padding: 15px;
}
#wrapper .txhp_plans_carousel_wrapper .txhp_archive_plan_summary {
  display: block;
}
#wrapper .txhp_plans_carousel_wrapper .txhp_archive_plan_summary .plan-features {
  margin-bottom: 15px;
}
#wrapper .txhp_global_filters_wrapper {
  padding: 30px 2%;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 5px #AFADAE;
          box-shadow: 0 0 10px 5px #AFADAE;
}
#wrapper .txhp_global_filters_wrapper .txhp_global_filters_tabs_links,
#wrapper .txhp_global_filters_wrapper .txhp_global_filters_plans_count {
  margin-bottom: 20px;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper,
#wrapper .txhp_global_filters_wrapper .txhp_filters_wrapper {
  background: white;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper h2 {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper .txhp_search_submit {
  margin-bottom: 10px;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper .txhp_search_submit .btn {
  line-height: 14px;
}
#wrapper .txhp_global_filters_wrapper .txhp_search_wrapper .txhp_search_field {
  min-width: 250px;
  margin-right: 20px;
}
#wrapper .txhp_global_filters_wrapper .txhp_filters_wrapper .txhp_filters_field {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media (min-width: 992px) {
  #wrapper .txhp_global_filters_wrapper .txhp_filters_wrapper .txhp_filters_field {
    width: 48%;
    -webkit-flex-basis: 48%;
            flex-basis: 48%;
  }
}
@media (min-width: 1200px) {
  #wrapper .txhp_global_filters_wrapper .txhp_filters_wrapper .txhp_filters_field {
    width: 24%;
    -webkit-flex-basis: 24%;
            flex-basis: 24%;
  }
}
#wrapper .txhp_global_filters_styles_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
#wrapper .txhp_global_filters_styles_wrapper .txhp_global_filters_style_wrapper {
  margin: 0 20px 20px 0;
}
#wrapper #home_testimonials .slick-slider {
  margin-left: -15px;
  margin-right: -15px;
}
#wrapper #home_testimonials .slick-current .txhp_testimonial_box {
  background: #ff0000;
  color: white;
}
#wrapper #home_reasons > .elementor-container > .elementor-column > .elementor-widget-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
#wrapper #home_reasons > .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-element {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  #wrapper #home_reasons > .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-element {
    width: 50%;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  #wrapper #home_reasons > .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-element {
    width: 33.33%;
    -webkit-flex-basis: 33.33%;
            flex-basis: 33.33%;
  }
}
#wrapper #home_reasons .reasons-box {
  padding: 15px;
}
#wrapper #home_reasons .reasons-box > .elementor-widget-container {
  min-height: 100%;
  border-radius: 6px;
  background: #EDF2F7 url("../images/1-dark.png") top right no-repeat;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#wrapper #home_reasons .reasons-box > .elementor-widget-container:hover {
  background-color: #ff0000;
}
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper {
  padding: 20px;
}
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper h4 {
  font-size: 18px;
}
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper p,
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper h4,
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper .elementor-image,
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper .elementor-image-box-img {
  color: #323135;
  text-align: left;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper .elementor-image-box-img {
  background: #ff0000;
  width: auto;
  max-width: 60px;
  min-height: 40px;
  padding: 10px;
  margin: 0 0 10px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
}
#wrapper #home_reasons .reasons-box .elementor-image-box-wrapper .elementor-image-box-img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: white center center no-repeat;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#wrapper #home_reasons .reasons-box.reasons-box-1 .elementor-widget-container {
  background-image: url("../images/1-dark.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-1 .elementor-image-box-img:after {
  background-image: url("../images/icon-plans-black.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-2 .elementor-widget-container {
  background-image: url("../images/2-dark.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-2 .elementor-image-box-img:after {
  background-image: url("../images/icon-certificate-black.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-3 .elementor-widget-container {
  background-image: url("../images/3-dark.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-3 .elementor-image-box-img:after {
  background-image: url("../images/icon-money-black.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-4 .elementor-widget-container {
  background-image: url("../images/4-dark.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-4 .elementor-image-box-img:after {
  background-image: url("../images/icon-sketch-black.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-5 .elementor-widget-container {
  background-image: url("../images/5-dark.png");
}
#wrapper #home_reasons .reasons-box.reasons-box-5 .elementor-image-box-img:after {
  background-image: url("../images/icon-pencil-black.png");
}
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-wrapper {
  color: white;
}
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-wrapper p,
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-wrapper h4,
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-wrapper .elementor-image {
  color: white;
}
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-img {
  background: white;
}
#wrapper #home_reasons .reasons-box:hover .elementor-image-box-img:after {
  opacity: 1;
}
#wrapper #home_reasons .reasons-box:hover.reasons-box-1 .elementor-widget-container {
  background-image: url("../images/1-light.png");
}
#wrapper #home_reasons .reasons-box:hover.reasons-box-2 .elementor-widget-container {
  background-image: url("../images/2-light.png");
}
#wrapper #home_reasons .reasons-box:hover.reasons-box-3 .elementor-widget-container {
  background-image: url("../images/3-light.png");
}
#wrapper #home_reasons .reasons-box:hover.reasons-box-4 .elementor-widget-container {
  background-image: url("../images/4-light.png");
}
#wrapper #home_reasons .reasons-box:hover.reasons-box-5 .elementor-widget-container {
  background-image: url("../images/5-light.png");
}
#wrapper .steps-box .elementor-widget-container {
  max-width: 200px;
  margin: 0 auto 30px;
}
#wrapper .steps-box .elementor-image-box-img {
  background: white;
  padding: 20px;
  max-width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 100px;
  text-align: center;
  position: relative;
}
#wrapper .steps-box .elementor-image-box-img:before {
  content: '';
  position: absolute;
  border: 1px white dashed;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 100px;
}
#wrapper .steps-box .elementor-image-box-img:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 20px;
  left: 50%;
  margin-left: -10px;
  top: -24px;
  background: red;
  color: white;
}
#wrapper .steps-box .elementor-image-box-img img {
  margin: 0 auto;
}
#wrapper .steps-box.steps-box-1 .elementor-image-box-img:after {
  content: '1';
}
#wrapper .steps-box.steps-box-2 .elementor-image-box-img:after {
  content: '2';
}
#wrapper .steps-box.steps-box-3 .elementor-image-box-img:after {
  content: '3';
}
#wrapper .steps-box.steps-box-4 .elementor-image-box-img:after {
  content: '4';
}
#wrapper .txhp_testimonial_box_wrapper {
  padding: 0 15px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_box {
  background: #F7F8FA;
  padding: 20px 15px;
  margin-bottom: 30px;
  border-radius: 6px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_icon,
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_content {
  margin-bottom: 15px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_content {
  text-align: justify;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_icon_bottom {
  text-align: right;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_person {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonials_stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  font-size: 10px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_person_image {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_person_image img {
  border-radius: 40px;
}
#wrapper .txhp_testimonial_box_wrapper .txhp_testimonial_person_title {
  font-weight: bold;
}
#wrapper .txhp-arrow {
  position: absolute;
  font-size: 14px;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  background: black;
  border-radius: 40px;
  text-align: center;
  color: white;
  cursor: pointer;
}
#wrapper .txhp-prev {
  left: -30px;
}
#wrapper .txhp-next {
  right: -30px;
}
@media (min-width: 768px) {
  .admin-bar .elementor-section.elementor-section-height-full {
    height: calc(100vh - 32px);
  }
}
/********************************************************/
/***            House Plans CSS - single              ***/
/********************************************************/
.txhp_plan_single_wrapper .txhp_plan_header {
  padding: 6% 0;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.txhp_plan_single_wrapper .txhp_plan_header .background_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(50%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #000000 0%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(90deg, #000000 0%, rgba(255, 255, 255, 0) 50%);
}
.txhp_plan_single_wrapper .txhp_plan_header .site-container {
  position: relative;
}
.txhp_plan_single_wrapper .txhp_plan_header h1,
.txhp_plan_single_wrapper .txhp_plan_header h2 {
  color: white;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_images {
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_images .txhp_plan_gallery_image {
  cursor: pointer;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_images .txhp_plan_gallery_image img {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #AFADAE;
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .draggable {
  margin-left: -10px;
  margin-right: -10px;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-next,
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-prev {
  z-index: 9999;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-next {
  right: 10px;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-prev {
  left: 10px;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .txhp_plan_gallery_thumb_img {
  padding: 35%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  border: 1px solid transparent;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .txhp_plan_gallery_thumb_img:after {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .txhp_plan_gallery_thumb {
  padding: 10px;
  overflow: hidden;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .txhp_plan_gallery_thumb img {
  border-radius: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-current .txhp_plan_gallery_thumb_img {
  border-color: #ff0000;
}
.txhp_plan_single_wrapper .txhp_plan_gallery_thumbs .slick-current .txhp_plan_gallery_thumb_img:after {
  background: transparent;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-title {
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-features-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-features-list .plan-feature-item {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-features-list .plan-feature-item:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #AFADAE;
  right: 0;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-features-list .plan-feature-item i {
  display: block;
  font-size: 30px;
  color: #ff0000;
  margin-bottom: 5px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-features-list .plan-feature-item .txhpicon-area {
  font-size: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-price {
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-description {
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-description-header {
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-buttons {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-buttons .btn {
  min-width: 170px;
  display: block;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-description-footer {
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_info .plan-description-footer .btn {
  min-width: 360px;
}
.txhp_plan_single_wrapper .txhp_plan_section {
  padding: 60px 0;
  position: relative;
}
.txhp_plan_single_wrapper .txhp_plan_section h2 {
  font-size: 16px;
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_section .site-container {
  position: relative;
}
.txhp_plan_single_wrapper .txhp_plan_section_main .txhp_plan_section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_plan_single_wrapper .txhp_plan_section_main .txhp_plan_section_content .txhp_plan_gallery,
.txhp_plan_single_wrapper .txhp_plan_section_main .txhp_plan_section_content .txhp_plan_info {
  position: relative;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media (min-width: 1200px) {
  .txhp_plan_single_wrapper .txhp_plan_section_main .txhp_plan_section_content .txhp_plan_gallery {
    -webkit-flex-basis: 60%;
            flex-basis: 60%;
    width: 60%;
  }
  .txhp_plan_single_wrapper .txhp_plan_section_main .txhp_plan_section_content .txhp_plan_info {
    -webkit-flex-basis: 35%;
            flex-basis: 35%;
    width: 35%;
  }
}
.txhp_plan_single_wrapper .txhp_plan_section_register {
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center center;
  position: relative;
  color: white;
}
.txhp_plan_single_wrapper .txhp_plan_section_register:before {
  content: '';
  position: absolute;
  background: rgba(64, 64, 64, 0.65);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .txhp_plan_section_header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 20px;
  font-size: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .txhp_plan_section_header h2 {
  color: #ff0000;
  font-size: 28px;
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .register-feature-boxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .register-feature-boxes .register-feature-box {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  padding: 10px;
  text-align: center;
  color: white;
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .register-feature-boxes .register-feature-box i.txhpicon {
  display: block;
  text-align: center;
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff0000;
}
.txhp_plan_single_wrapper .txhp_plan_section_register .register-feature-boxes .register-feature-box h4 {
  color: white;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .txhp_plan_single_wrapper .txhp_plan_section_register .register-feature-boxes .register-feature-box {
    width: 33.33%;
    -webkit-flex-basis: 33.33%;
            flex-basis: 33.33%;
  }
}
.txhp_plan_single_wrapper .register-forms-heading {
  text-align: center;
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .register-forms-heading h4 {
  color: white;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper {
  max-width: 540px;
  margin: 0 auto 20px;
  position: relative;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_registration_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field label {
  display: block;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field label .required {
  color: #ff0000;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
}
.txhp_plan_single_wrapper .txhp_registration_form_wrapper button {
  min-width: 120px;
}
@media (min-width: 992px) {
  .txhp_plan_single_wrapper .txhp_registration_form_wrapper {
    max-width: 800px;
  }
  .txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field {
    width: 48%;
    -webkit-flex-basis: 48%;
            flex-basis: 48%;
  }
  .txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_errors,
  .txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_info,
  .txhp_plan_single_wrapper .txhp_registration_form_wrapper .txhp_form_field_submit {
    width: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}
.txhp_plan_single_wrapper .txhp_plan_section_features {
  background: #FCFCFC;
}
.txhp_plan_single_wrapper .txhp_plan_section_featured_plans {
  background: #FCFCFC;
}
.txhp_plan_single_wrapper .txhp_plan_section_featured_plans .home_heading {
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_section_featured_plans .home_heading h2 {
  font-size: 28px;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications {
  background: white;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_left {
  padding-top: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_left,
.txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_right {
  position: relative;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_right img {
  border: 1px solid #323135;
}
@media (min-width: 1200px) {
  .txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_left {
    -webkit-flex-basis: 35%;
            flex-basis: 35%;
    width: 35%;
  }
  .txhp_plan_single_wrapper .txhp_plan_section_specifications .txhp_plan_section_content .txhp_plan_specifications_right {
    -webkit-flex-basis: 60%;
            flex-basis: 60%;
    width: 60%;
  }
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .plan-specification-item {
  margin-bottom: 15px;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .plan-specification-item-heading {
  color: #ff0000;
}
.txhp_plan_single_wrapper .txhp_plan_section_specifications .plan-specification-item-lines,
.txhp_plan_single_wrapper .txhp_plan_section_specifications .plan-specification-item-lines li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.txhp_plan_single_wrapper .txhp_plan_section_includes {
  background: #FCFCFC;
}
.txhp_plan_single_wrapper .txhp_plan_section_includes .txhp_plan_section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_plan_single_wrapper .txhp_plan_section_includes .txhp_plan_section_content .txhp_plan_includes_left,
.txhp_plan_single_wrapper .txhp_plan_section_includes .txhp_plan_section_content .txhp_plan_includes_right {
  position: relative;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media (min-width: 1200px) {
  .txhp_plan_single_wrapper .txhp_plan_section_includes .txhp_plan_section_content .txhp_plan_includes_left {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    width: 50%;
  }
  .txhp_plan_single_wrapper .txhp_plan_section_includes .txhp_plan_section_content .txhp_plan_includes_right {
    -webkit-flex-basis: 45%;
            flex-basis: 45%;
    width: 45%;
  }
}
.txhp_plan_single_wrapper .txhp_plan_section_changes {
  color: white;
  position: relative;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center center;
}
.txhp_plan_single_wrapper .txhp_plan_section_changes:before {
  content: '';
  position: absolute;
  background: rgba(64, 64, 64, 0.65);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.txhp_plan_single_wrapper .txhp_plan_section_changes .txhp_plan_section_header {
  text-align: center;
  margin-bottom: 20px;
}
.txhp_plan_single_wrapper .txhp_plan_section_changes .txhp_plan_section_header h2 {
  font-size: 28px;
}
.txhp_add_to_cart_modal_wrapper {
  z-index: 9999 !important;
  background: rgba(0, 0, 0, 0.7) !important;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal {
  position: relative;
  overflow: hidden;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_modal_html {
  text-align: left;
  margin: 0;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_content {
  padding: 20px 5%;
  border-top: 1px solid #AFADAE;
  border-bottom: 1px solid #AFADAE;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_content label {
  cursor: pointer;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_footer {
  padding: 20px 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_options,
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_modifications {
  margin-bottom: 20px;
}
.txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal .txhp_add_to_cart_form_field {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  position: relative;
  vertical-align: middle;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .txhp_add_to_cart_modal_wrapper .txhp_add_to_cart_modal {
    /*.txhp_add_to_cart_form_content {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;

				.txhp_add_to_cart_form_options,
				.txhp_add_to_cart_form_modifications {
					width: 48%;
					flex-basis: 48%;
				}

				.txhp_add_to_cart_form_messages {
					padding: 20px 0;
					width: 100%;
					flex-basis: 100%;
				}
			}*/
  }
}
/********************************************************/
/***            House Plans CSS - Archives            ***/
/********************************************************/
.txhp_archive_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.txhp_archive_wrapper .txhp_search_filters_wrapper,
.txhp_archive_wrapper .txhp_archive_posts_wrapper {
  position: relative;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media (min-width: 1200px) {
  .txhp_archive_wrapper .txhp_search_filters_wrapper {
    width: 35%;
    -webkit-flex-basis: 35%;
            flex-basis: 35%;
  }
  .txhp_archive_wrapper .txhp_archive_posts_wrapper {
    width: 60%;
    -webkit-flex-basis: 60%;
            flex-basis: 60%;
  }
}
.txhp_archive_wrapper .txhp_archive_plans_empty .txhp_archive_plans_empty_content {
  margin-bottom: 50px;
}
.txhp_archive_wrapper .txhp_archive_plans_empty .txhp_archive_plans_empty_button {
  text-align: center;
}
.txhp_search_filters_wrapper h2 {
  font-size: 16px;
  margin-bottom: 15px;
}
.txhp_search_filters_wrapper .txhp_search_wrapper,
.txhp_search_filters_wrapper .txhp_filters_wrapper {
  background: white;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 5px #AFADAE;
          box-shadow: 0 0 10px 5px #AFADAE;
  margin-bottom: 30px;
}
.txhp_search_filters_wrapper .txhp_search_field,
.txhp_search_filters_wrapper .txhp_filters_field {
  margin-bottom: 10px;
}
.txhp_search_filters_wrapper .txhp_search_field input,
.txhp_search_filters_wrapper .txhp_filters_field input {
  display: block;
  width: 100%;
}
.txhp_search_filters_wrapper .txhp_filters_field {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #EDF2F7;
}
.txhp_search_filters_wrapper .txhp_filters_field > label {
  font-weight: 500;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.txhp_search_filters_wrapper .txhp_filters_field .txhp_clear_filter {
  color: #ff0000;
  cursor: pointer;
}
.txhp_search_filters_wrapper .txhp_filters_field.txhp_filters_submit {
  border: 0;
  text-align: center;
}
.txhp_search_filters_wrapper .txhp_filters_options span {
  min-width: 24px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  line-height: 24px;
  margin-right: 4px;
  border-radius: 4px;
  padding: 0 5px;
  margin-bottom: 10px;
  background: #EDF2F7;
  cursor: pointer;
  border: 1px solid transparent;
}
.txhp_search_filters_wrapper .txhp_filters_options input {
  display: none;
}
.txhp_search_filters_wrapper .txhp_filters_options input:checked ~ span {
  border-color: #ff0000;
}
.txhp_search_filters_wrapper .txhp_filters_range {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.txhp_search_filters_wrapper .txhp_filters_range label {
  max-width: 100px;
  margin-right: 10px;
}
.txhp_search_filters_wrapper .txhp_filters_range input {
  font-size: 14px;
}
.txhp_plans_pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.txhp_plans_pagination ul li {
  list-style: none;
  margin: 5px;
  padding: 10px 15px;
  cursor: pointer;
  background: #EDF2F7;
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
  line-height: 20px;
}
.txhp_plans_pagination ul li.active {
  background: #ff0000;
  color: white;
}
.txhp_plans_pagination ul li.pagination-dots {
  cursor: default;
}
.txhp_archive_plan_wrapper {
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 5px #AFADAE;
          box-shadow: 0 0 10px 5px #AFADAE;
  margin-bottom: 30px;
  overflow: hidden;
}
.txhp_archive_plan_wrapper .txhp_archive_plan_thumbnail img {
  width: 100%;
}
.txhp_archive_plan_wrapper .txhp_archive_plan_title {
  background: #EDF2F7;
  padding: 20px 5%;
  line-height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  font-weight: 500;
}
.txhp_archive_plan_wrapper .txhp_archive_plan_title a {
  color: black;
  font-size: 18px;
  text-transform: uppercase;
}
.txhp_archive_plan_wrapper .txhp_archive_plan_summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 30px 5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.txhp_archive_plan_wrapper .plan-features {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media (min-width: 768px) {
  .txhp_archive_plan_wrapper .plan-features {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
  }
}
.txhp_archive_plan_wrapper .plan-features-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.txhp_archive_plan_wrapper .plan-features-list .plan-feature-item {
  margin-right: 10px;
  min-width: 25%;
}
.txhp_archive_plan_wrapper .plan-features-list .plan-feature-item strong {
  line-height: 24px;
  font-size: 14px;
}
.txhp_archive_plan_wrapper .plan-features-list .plan-feature-item .txhpicon {
  color: #ff0000;
  font-size: 24px;
  line-height: 24px;
}
.txhp_archive_plan_wrapper .plan-features-list .plan-feature-item .txhpicon-area {
  font-size: 18px;
}
.txhp_archive_plan_wrapper .plan-features-list .plan-feature-item span {
  display: block;
}
.woocommerce-cart-form .product-thumbnail {
  display: none !important;
}
/********************************************************/
/***            Project CSS                           ***/
/********************************************************/
.txhp_project_single_wrapper .txhp_plan_header .elementor-heading-title {
  font-size: 2.5rem;
}
.txhp_project_single_wrapper .txhp_plan_gallery_thumbs .slick-track {
  margin-left: 0 !important;
}
.txhp_project_single_wrapper .txhp_plan_section_main h2.section-title {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.txhp_project_single_wrapper .project-features .project-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.15rem;
}
.txhp_project_single_wrapper .project-features .project-features-list .project-feature-item {
  list-style: none;
  margin-bottom: 15px;
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call {
  color: white;
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call h2 {
  color: white;
  font-size: 35px;
  margin-bottom: 0;
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: #ff0000;
  text-transform: uppercase;
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call .background_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(1, 1, 1, 0.5)));
  background: -webkit-linear-gradient(left, #000000 0%, rgba(1, 1, 1, 0.5) 100%);
  background: linear-gradient(90deg, #000000 0%, rgba(1, 1, 1, 0.5) 100%);
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call .txhp_plan_section_content {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .txhp_project_single_wrapper .txhp_project_schedule_a_call .txhp_plan_section_content {
    grid-template-columns: 1fr 1fr;
  }
  .txhp_project_single_wrapper .txhp_project_schedule_a_call .txhp_plan_section_content .txhp_plan_section_right {
    padding-left: 20%;
    border-left: 1px solid white;
  }
}
.txhp_project_single_wrapper .txhp_project_schedule_a_call .txhp_plan_section_content .txhp_plan_section_right .txhp_project_form_title h2 {
  font-size: 22px;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .txhp_projects_archive_wrapper .txhp_projects_archive_posts_container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .txhp_projects_archive_wrapper .txhp_projects_archive_posts_container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project {
  background: white;
  border-radius: 20px;
  border: 1px solid #0000004D;
  padding: 20px 20px 20px 20px;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .txhp_archive_project_thumbnail {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .txhp_archive_project_thumbnail a {
  height: 250px;
  display: block;
  position: relative;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .txhp_archive_project_thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .txhp_archive_project_title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .project-features .project-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.txhp_projects_archive_wrapper .txhp_projects_archive_posts_container .txhp_archive_project .project-features .project-features-list .project-feature-item {
  list-style: none;
  margin-bottom: 15px;
}
/********************************************************/
/***            General                               ***/
/********************************************************/
#wrapper .cart_item_data_line {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
#wrapper .get-in-touch-form .wpforms-field-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  color: white;
}
#wrapper .get-in-touch-form .wpforms-field-container label {
  color: white;
  font-weight: normal;
}
#wrapper .get-in-touch-form .wpforms-field-container .wpforms-field {
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
#wrapper .get-in-touch-form .wpforms-field-container .depth-1 {
  padding-right: 0 !important;
}
@media (min-width: 1200px) {
  #wrapper .get-in-touch-form .wpforms-field-container .wpforms-field {
    width: 48%;
    -webkit-flex-basis: 48%;
            flex-basis: 48%;
  }
  #wrapper .get-in-touch-form .wpforms-field-container .wpforms-field-textarea {
    width: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}
#wrapper .get-in-touch-form .wpforms-submit-container {
  text-align: center;
}
#wrapper .wpforms-submit-container .wpforms-submit {
  color: white;
  background: #ff0000;
  border-color: #ff0000;
}
