@charset "UTF-8";

main :root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

main *,
main ::after,
main ::before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion:no-preference) {
  main :root {
    scroll-behavior: smooth;
  }
}

main body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

main h1,
main h2,
main h3,
main h5 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

main h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width:1200px) {
  main h1 {
    font-size: 2.5rem;
  }
}

main h2 {
  font-size: calc(1.325rem + .9vw);
}

@media (min-width:1200px) {
  main h2 {
    font-size: 2rem;
  }
}

main h3 {
  font-size: calc(1.3rem + .6vw);
}

@media (min-width:1200px) {
  main h3 {
    font-size: 1.75rem;
  }
}

main h5 {
  font-size: 1.25rem;
}

main p {
  margin-top: 0;
  margin-bottom: 1rem;
}

main a {
  color: #0d6efd;
  text-decoration: underline;
}

main a:hover {
  color: #0a58ca;
}

main figure {
  margin: 0 0 1rem;
}

main img {
  vertical-align: middle;
}

main button:focus:not(:focus-visible) {
  outline: 0;
}

main [role=button] {
  cursor: pointer;
}

main [type=button]:not(:disabled),
main [type=reset]:not(:disabled),
main [type=submit]:not(:disabled),
main button:not(:disabled) {
  cursor: pointer;
}

main ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

main ::-webkit-datetime-edit-day-field,
main ::-webkit-datetime-edit-fields-wrapper,
main ::-webkit-datetime-edit-hour-field,
main ::-webkit-datetime-edit-minute,
main ::-webkit-datetime-edit-month-field,
main ::-webkit-datetime-edit-text,
main ::-webkit-datetime-edit-year-field {
  padding: 0;
}

main ::-webkit-inner-spin-button {
  height: auto;
}

main ::-webkit-search-decoration {
  -webkit-appearance: none;
}

main ::-webkit-color-swatch-wrapper {
  padding: 0;
}

main ::file-selector-button {
  font: inherit;
}

main ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

main .container {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width:576px) {
  main .container {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  main .container {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  main .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  main .container {
    max-width: 1140px;
  }
}

@media (min-width:1400px) {
  main .container {
    max-width: 1320px;
  }
}

main .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

main .row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

main .col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width:768px) {
  main .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  main .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width:992px) {
  main .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  main .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

main .form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

main .form-control::file-selector-button {
  padding: .375rem .75rem;
  margin: -.375rem -.75rem;
  -webkit-margin-end: .75rem;
  margin-inline-end: .75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  main .form-control::file-selector-button {
    transition: none;
  }
}

main .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

main .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

main .form-control-sm::file-selector-button {
  padding: .25rem .5rem;
  margin: -.25rem -.5rem;
  -webkit-margin-end: .5rem;
  margin-inline-end: .5rem;
}

main .form-control-lg::file-selector-button {
  padding: .5rem 1rem;
  margin: -.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

main .form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

main .form-floating>.form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

main .form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

main .collapse:not(.show) {
  display: none;
}

main .visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0, 0, 0, 0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

/* ---------------------------------------------------------------------
 * http://localhost/abouthomepour/css/owl.carousel.min.css 
 * --------------------------------------------------------------------- 
 */

main .owl-carousel,
main .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

main .owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

main .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

main .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

main .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

main .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

main .owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

main .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

main .owl-carousel .owl-nav.disabled {
  display: none;
}

main .owl-carousel.owl-loaded {
  display: block;
}

main .owl-carousel .owl-dot,
main .owl-carousel .owl-nav .owl-next,
main .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main .owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ---------------------------------------------------------------------
 * http://localhost/abouthomepour/css/magnific-popup.css 
 * --------------------------------------------------------------------- 
 */

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

}



@charset "UTF-8";

/* ---------------------------------------------------------------------
 * http://localhost/abouthomepour/css/plugins.css 
 * --------------------------------------------------------------------- 
 */

main .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

main body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Work Sans", sans-serif;
  color: #222222;
  letter-spacing: 0.02em;
}

main h1,
main h2,
main h3,
main h5 {
  font-weight: 400;
  margin-top: 0;
}

main h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

main h2 {
  font-size: 36px;
  line-height: 36px;
}

main h3 {
  font-size: 30px;
  line-height: 30px;
}

main h5 {
  font-size: 14px;
  line-height: 18px;
}

main p:last-child {
  margin-bottom: 0;
}

main a {
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

main a,
main img,
main span {
  transition: all 0.3s ease 0s;
}

main *:focus {
  outline: none !important;
}

main a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

main a:hover {
  text-decoration: none;
}

main img {
  max-width: 100%;
  height: auto;
}

main figure {
  padding: 0;
  margin: 0;
}

main .container {
  max-width: 1170px;
}

@media only screen and (max-width: 767px) {
  main .container {
    max-width: 576px;
  }
}

@media only screen and (max-width: 479px) {
  main .container {
    width: 100%;
  }
}

main .section_title {
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .section_title {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  main .section_title {
    margin-bottom: 25px;
  }
}

main .section_title h2 {
  font-size: 32px;
  line-height: 35px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0;
  text-transform: capitalize;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  main .section_title h2 {
    font-size: 22px;
    line-height: 22px;
  }
}

main .testimonial_container .testimonial_icon_img img {
  width: inherit;
}

main .testimonial_container .testimonial_thumb img {
  width: inherit;
  margin: 0 auto;
}

main .testimonial_container .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translatex(-50%);
}

main .testimonial_container .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #e7e7e7;
  border-radius: 50%;
  display: inline-block;
  transition: .3s;
  margin: 0 4px;
}

main .testimonial_container .owl-dots .owl-dot.active {
  background: #CF1F1F;
}

main .testimonial_container .owl-dots .owl-dot:hover {
  background: #CF1F1F;
}

main .testimonial_thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
}

main .single_testimonial {
  text-align: center;
  background: #f8f8f8;
  position: relative;
  margin-top: 50px;
  padding: 70px 20px 80px;
}

main .testimonial_content {
  text-align: center;
}

main .testimonial_content>p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  main .testimonial_content>p {
    font-size: 14px;
    line-height: 22px;
  }
}

main .testimonial_content>a {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}

main .testimonial_content>a:hover {
  color: #CF1F1F;
}

main .testimonial_icon_img {
  margin-bottom: 28px;
}

@media only screen and (max-width: 767px) {
  main .testimonial_icon_img {
    margin-bottom: 25px;
  }
}

main .testimonial_icon_img img {
  margin: 0 auto;
}

main .testimonial_about {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  main .testimonial_about {
    margin-top: 43px;
  }
}

main .testimonial_about .testimonial_content p {
  padding: 0;
}

main .testimonial_about .section_title h2 {
  font-size: 28px;
  line-height: 33px;
  padding-bottom: 0;
}

main .testimonial_about .section_title h2::before {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .testimonial_about .section_title h2 {
    font-size: 22px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  main .testimonial_about .section_title h2 {
    font-size: 19px;
    line-height: 22px;
  }
}

main .testimonial_about .testimonial_container {
  margin-top: 6px;
}

main .about_section {
  padding-top: 70px;
}

@media only screen and (max-width: 767px) {
  main .about_section {
    padding: 20px 0;
  }
}

main .about_content {
  padding-top: 26px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  main .about_content {
    padding-top: 20px;
  }
}

main .about_content h1 {
  display: inline-block;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 21px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .about_content h1 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .about_content h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  main .about_content h1 {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 13px;
  }
}

main .about_content p {
  font-size: 14px;
  line-height: 26px;
  max-width: 890px;
  margin: 0 auto;
  padding-bottom: 8px;
}

main .chose_content h3 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 19px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .chose_content h3 {
    font-size: 16px;
    argin-bottom: 13px;
  }
}

@media only screen and (max-width: 767px) {
  main .chose_content h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 13px;
  }
}

main .about_signature {
  margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .about_signature {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  main .about_signature {
    margin-top: 22px;
  }
}

main .choseus_area {
  margin-bottom: 70px;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  padding: 70px 0 64px;
}

@media only screen and (max-width: 767px) {
  main .choseus_area {
    padding: 60px 0 28px;
    margin-bottom: 60px;
  }
}

main .single_chose {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  main .single_chose {
    margin-bottom: 25px;
  }
}

main .single_chose:hover .chose_icone {
  transform: rotatey(180deg);
}

main .chose_icone {
  margin-bottom: 23px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .chose_icone {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  main .chose_icone {
    margin-bottom: 14px;
  }
}

main .single_gallery_section {
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  main .single_gallery_section {
    margin-bottom: 25px;
  }
}

main .about_gallery_container {
  padding-bottom: 63px;
}

@media only screen and (max-width: 767px) {
  main .about_gallery_container {
    padding-bottom: 28px;
  }
}

main .about_gallery_section {
  margin-bottom: 64px;
}

@media only screen and (max-width: 767px) {
  main .about_gallery_section {
    margin-bottom: 57px;
  }
}

@media only screen and (max-width: 767px) {
  main .gallery_thumb img {
    width: 100%;
  }
}

main .about_gallery_content {
  padding-top: 21px;
  text-align: center;
}

main .about_gallery_content h3 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .about_gallery_content h3 {
    font-size: 22px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .about_gallery_content h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  main .about_gallery_content h3 {
    font-size: 18px;
    margin-bottom: 11px;
    line-height: 22px;
  }
}

main .about_gallery_content p {
  line-height: 26px;
}

main .faq-client_title {
  margin-bottom: 28px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  main .faq-client_title {
    margin-bottom: 23px;
  }
}

main .faq-client_title h2 {
  font-size: 28px;
  line-height: 33px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .faq-client_title h2 {
    font-size: 22px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  main .faq-client_title h2 {
    font-size: 19px;
    line-height: 20px;
  }
}

main .faq-client-say-area {
  margin-bottom: 54px;
}

@media only screen and (max-width: 767px) {
  main .faq-client-say-area {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  main .faq-client-say-area .section_title {
    margin-bottom: 22px;
  }
}

main .panel-heading .panel-title {
  margin-bottom: 0;
}

main .panel-heading .panel-title a {
  background: #ffffff;
  display: block;
  padding: 14px 20px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  position: relative;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  main .panel-heading .panel-title a {
    padding: 10px 38px 10px 15px;
    font-size: 13px;
  }
}

main .panel-heading .panel-title a::before {
  position: absolute;
  content: "\f0d7";
  font-family: 'FontAwesome';
  color: #333;
  font-size: 20px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 25px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border-radius: 100%;
  z-index: 4;
  margin-top: 0px;
}

main .panel-heading .panel-title a[aria-expanded="true"]::before {
  background: #fff;
  color: #40A944;
}

main .faq-style-wrap .panel-title a[aria-expanded="true"] {
  border-radius: 3px 3px 0 0;
  color: #ffffff;
  background: #40A944;
}

main .panel.panel-default {
  margin-bottom: 21px;
}

main .panel.panel-default:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  main .panel.panel-default {
    margin-bottom: 13px;
  }
}

main .panel-body {
  padding: 15px;
  border: 1px solid #ddd;
  background: #ffffff;
}