@import url("../css/bootstrap.css");
@import url("../css/jquery.fancybox.min.css");
@import url("../css/slick.css");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Poppins", sans-serif;
}

:root {
  /*** theme colors ***/
  --primary-color: #000000;
  --primary-color: #000000;
  --primary-color-dark: #d3222a;
  --theme-white: #ffffff;
  --theme-black: #ffffff;
}

main {
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a:hover {
  color: var(--primary-color);
}

.container {
  max-width: 1140px !important;
}

.theme-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
}

.theme-btn--mini {
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  color: var(--primary-color);
  background-color: #f25f05;
  border-radius: 100px 100px 100px 100px;
  text-decoration: none !important;
  padding: 15px 30px;
  /* box-shadow: 0px 6px 10px 0px; */
  transition: 0.5s ease;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.theme-btn {
  font-family: "Poppins", Sans-serif;
  font-size: 25px;
  color: var(--primary-color);
  background-color: #f25f05;
  border-radius: 100px 100px 100px 100px;
  text-decoration: none !important;
  padding: 25px 35px 25px 35px;
  box-shadow: 0px 6px 10px 0px;
  transition: 0.5s ease;
  font-weight: 700;
  line-height: 25px;
  text-transform: capitalize;
}

.theme-btn2 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  color: var(--primary-color);
  background-color: #f25f05;
  text-decoration: none !important;
  padding: 10px 20px;
  transition: 0.5s ease;
  font-weight: 700;
}

.theme-btn2:hover {
  color: var(--primary-color);
}

.theme-btn:hover {
  transform: translateY(-9px);
  box-shadow: 0px 4px 5px #33333357 !important;
  transition: 0.5s ease;
  color: var(--primary-color);
}

.theme-btn--mini:hover {
  transform: translateY(-9px);
  box-shadow: 0px 4px 5px #33333357 !important;
  transition: 0.5s ease;
  color: var(--primary-color);
}

.banner_content {
  -webkit-animation: mymove 2s ease 0.5s infinite;
  animation: mymove 2s ease 0.5s infinite;
}

p {
  margin-top: 0;
  margin-bottom: 0rem;
}

@keyframes mymove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Header Start */
.logo img {
  width: 100%;
  height: 100%;
}

.main_header {
  background: #000000;
  padding: 5px 0px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navigation ul li a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.navigation ul li a::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  content: "";
  height: 2px;
  background: #f25f05;
  transition: 0.5s ease;
}

.navigation ul li a:hover:before {
  width: 100%;
  transition: 0.5s ease;
}

.navigation ul li a:hover {
  color: #f25f05;
}

/* Header End */
/* Banner Start */
.banner_bg {
  background: url(../images/banner-bg.webp) center center/cover no-repeat;
  /* height: 580px; */
  padding: 100px 0px;
}

.banner_content h1 {
  font-family: "Poppins", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 58px;
  color: var(--primary-color);
}

.banner_content h1 span {
  color: #f25f05;
}

.banner_content p {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  margin: 20px 0px;
  /* width: 50%; */
}

.banner_content {
  margin-top: 60px;
}

.banner_icons img {
  width: 100%;
  height: 100%;
}

.banner_icons {
  /* margin-top: 100px; */
}

.banner_icons img {
  filter: opacity(0.5);
}

/* Banner End */
/* homeownership start */
.homeownership_bg {
  background: url(../images/homeownership-bg.webp);
  margin: 100px 0px 0px;
  padding: 50px 0px;
}

.homeownership_card_img {
  height: 300px;
}

.handywork-fixer_card {
  height: 250px;
}

.homeownership_card_img img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 20px 20px;
}

.homeownership_card_content h2 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin: 10px 0px;
}

.homeownership_card_content p {
  text-align: center;
  color: #666666;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.homeownership_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  /* line-height: 60px; */
  margin-bottom: 50px;
}

.homeownership_btn .theme-group {
  justify-content: center;
  margin-top: 30px;
}

/* homeownership end */
/* Expect Start */
.Expect_card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px 20px;
  border-radius: 30px;
  height: 260px;
}

.Expect_card_icon i {
  color: #f25f05;
  font-size: 50px;
}

.main_expect {
  padding: 50px 0px;
  background: #e3e9f0;
  margin: 100px 0px;
  border-radius: 30px;
}

.expect_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 58px;
}

.Expect_card_content h1 {
  width: 70%;
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.Expect_card_content p {
  color: #666666;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin: 10px 0px;
}

/* Expect ENd */
/* Stay ahead start */
.stay_ahead_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 58px;
}

.try_fixer_btn .theme-group {
  justify-content: center;
  padding: 20px 0px;
}

.try_fixer_btn {
  text-align: center;
}

.stay_ahead_heading p {
  color: #666666;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin: 10px 0px;
}

.stay_ahead_heading {
  margin-bottom: 50px;
}

.main_stay_ahead button.accordion-button.collapsed {
  background: #e3e9f0;
  margin-bottom: 40px;
  padding: 20px 30px 20px 30px;
}

.main_stay_ahead .accordion-item i {
  color: white;
  background: var(--primary-color);
  padding: 10px;
  margin-right: 20px;
  font-size: 35px;
  border-radius: 50%;
}

.main_stay_ahead button.accordion-button.collapsed {
  font-size: 18px;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
}

.main_stay_ahead .accordion-button:focus {
  box-shadow: none;
}

.main_stay_ahead .accordion-button {
  background: #e3e9f0;
  margin-bottom: 30px;
  padding: 20px 30px 20px 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Stay ahead end */
/* Meet Our start */
.meet_our_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 58px;
}

.meet_our_heading p {
  color: #666666;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin: 10px 0px;
}

.meet_our_card_img img {
  width: 100%;
  height: 100%;
}

.meet_our_card_img {
  height: 350px;
}

.meet_our_heading {
  margin-bottom: 50px;
}

.main_meet_our {
  padding: 100px 0px 0px;
}

.meet_our_card {
  /* margin: 0px 20px; */
}

/* Meet Our end */
/* five star start */
.five_star_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 50px;
}

.five_star_cards {
  border: 1px solid #a9a9a94d;
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.five_star_cards .checked {
  color: #f25f05;
  font-size: 25px;
}

.five_star_cards p {
  font-size: 18px;
  line-height: 29px;
  color: var(--primary-color);
  font-weight: 400;
  margin: 30px 0px;
}

.five_star_btn .theme-group {
  justify-content: center;
  margin-top: 50px;
}

.main_five_star {
  padding-bottom: 100px;
  padding-top: 100px;
}

/* five star end */
/* Footer Start */
.maintenance_img img {
  width: 100%;
  height: 100%;
}

footer {
  background: #000000;
  color: white;
  padding: 50px 0px;
}

.maintenance_content h1 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 500;
}

.maintenance_content p {
  /* line-height: 30px; */
  font-size: 16px;
  font-weight: 300;
}

.footer_line {
  height: 2px;
  background: white;
  margin: 20px 0px;
}

.footer_accordian button.accordion-button.collapsed {
  background: #000000;
  color: white;
  font-size: 17px;
  font-weight: 500;
  /*padding: 0;*/
}

.footer_accordian .accordion-button:not(.collapsed) {
  color: white;
  background-color: #000000;
  font-size: 17px;
  font-weight: 700;
}

.footer_accordian .accordion-body {
  padding: 20px 0px;
  background: #000000;
  color: white;
}

.footer_accordian .accordion-button:focus {
  box-shadow: none;
}

.footer_accordian .accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

.footer_accordian .accordion-body ul li a {
  color: white;
}

.footer_accordian .accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "FontAwesome";
}

.footer_accordian .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.footer_social_icons ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: end;
}

.footer_social_icons ul li a {
  color: white;
  font-size: 35px;
}

.footer_social_icons p {
  text-align: end;
  font-size: 10px;
  margin: 0;
  padding-left: 100px;
}

.footer_social_icons ul li a:hover {
  color: #f25f05;
  transition: 0.3s ease;
}

.footer_accordian .accordion-body ul li {
  /* color: #FDCD06E6; */
  /* transition: 0.30s ease; */
  font-size: 16px;
}

.footer_accordian .accordion-body ul li a:hover {
  color: #fdcd06e6;
  transition: 0.3s ease;
}

/* Footer End */
.accordion-button img {
  width: 60px;
  margin-right: 20px;
}

.handywork_banner {
  padding: 100px 0px 100px;
  background: var(--primary-color);
  color: white;
}

.handywork_banner .banner_content {
  color: white !important;
  margin: 0;
}

.handywork_banner .banner_content h1,
.handywork_banner .banner_content p {
  color: white;
}

.handywork_zip--box {
  background: #47566b;
  padding: 60px;
  width: 75%;
  text-align: center;
}

.handywork_zip--box p {
  font-size: 20px;
  color: white;
}

.handywork_zip--box input {
  width: 100%;
  padding: 15px;
  outline: none;
  text-transform: capitalize;
}

.handywork_zip--box button {
  width: 100%;
  background: #e5621e;
  color: white;
  text-transform: capitalize;
  padding: 14px;
  outline: none;
  border: 0;
  margin-top: 20px;
}

.chicago_banner {
  background: linear-gradient(#0000005c, #00000052),
    url(../images/chicago-banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

.chicago_banner--content h1 {
  line-height: 1.4074;
  font-size: 39px;
  font-weight: 700;
  color: #f25f05;
}

.chicago_banner--content p {
  font-size: 29px;
  line-height: 1;
  font-weight: 500;
  color: white;
}

.chicago_banner--content .theme-btn--mini {
  border-radius: 0px;
}

.chicago_reclaim--sec .content h2 {
  font-size: 28px;
  font-weight: 600;
}

.chicago_reclaim--sec {
  padding: 100px 0px 0px;
}

.chicago_reclaim--sec .content p {
  font-size: 15px;
  font-weight: 400;
}

.chicago_reclaim--zipbox h2 {
  text-align: center;
  display: block;
  font-size: 28px;
  color: #374359;
  line-height: 1.3;
  /* margin-bottom: 20px; */
  font-weight: 600;
  /* padding: 15px 0 24px; */
}

.chicago_reclaim--zipbox {
  text-align: center;
  padding: 0px;
  border: 4px solid #000000;
  border-radius: 10px;
  background: #ececec;
  margin-top: -200px;
}

.head {
  padding: 20px 20px;
  background: #dee8f5;
}

.chicago_reclaim--zipbox p {
  font-size: 16px;
  color: #000000;
  padding: 20px 10px;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.chicago_reclaim--zipbox input {
  width: 70%;
  padding: 15px;
  text-transform: capitalize;
  outline: none;
}

.chicago_reclaim--zipbox a {
  width: 70%;
  background: #f25f05;
  display: block;
  margin: 20px auto 80px;
  padding: 15px;
  color: #000000;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.chicago_card {
  padding: 10px;
}

.chicago_card--img {
  padding: 10px 0px;
}

.chicago_card--content h4 {
  font-size: 21px;
}

.chicago_card--content p {
  font-size: 13px;
}

.chicago_card a {
  color: black;
  text-decoration: none;
}

.chicago_newsletter {
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.chicago_newsletter h4 {
  font-size: 19px;
  text-transform: capitalize;
}

.chicago_newsletter--fields {
  width: 70%;
  padding: 30px;
  margin: 0 auto;
}

.chicago_newsletter--fields input {
  width: 100%;
  padding: 15px;
  border: 0;
  outline: 0;
  text-transform: capitalize;
}

.chicago_newsletter--fields button {
  background: #f25f05;
  color: var(--primary-color);
  padding: 15px;
  width: 100%;
  border: 0;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.chicago_newsletter--icons ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.chicago_newsletter--icons a {
  color: var(--primary-color);
  background: #f25f05;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  border-radius: 50px;
}

/* plumbing start */
.plumibing_content h1 {
  font-size: 36px;
}

.plumibing_content h1 {
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
  color: var(--primary-color);
  width: 100%;
}

.banner_bg_plumbing {
  /* background: url(../images/Pricing-Plumbing.png) center center/cover no-repeat; */
  height: 420px;
}
.banner_bg_plumb {
  background: url(../images/Pricing-Plumbing.png) center center/cover no-repeat;
  /* height: 420px; */
}

.banner_bg_Elec {
  background: url(../images/Elec-banner.png) center center/cover no-repeat;
}
.banner_bg_paint {
  background: url(../images/Wall-banner.webp) center center/cover no-repeat;
}
.banner_bg_mount {
  background: url(../images/Mount-banner.webp) center center/cover no-repeat;
}
.banner_bg_door {
  background: url(../images/Door-banner.png) center center/cover no-repeat;
}
.banner_bg_window {
  background: url(../images/Window-banner.webp) center center/cover no-repeat;
}
.banner_bg_smart {
  background: url(../images/Smart-banner.png) center center/cover no-repeat;
}
.banner_bg_furniture {
  background: url(../images/Furniture-banner.png) center center/cover no-repeat;
}



.banner_bg_plumbing .row {
  padding: 61px 0;
}

.banner_bg_plumbing ul {
  display: flex;
  gap: 26px !important;
  /* margin-left: 5px; */
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner_bg_plumbing li {
  list-style: none;
  position: relative;
}

.banner_bg_plumbing li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  background: black;
  height: 5px;
  width: 5px;
  border-radius: 50%;
}

.banner_bg_plumbing ul li:nth-child(1)::before {
  width: 0;
}

/* plumbing end */
/* toilet_trouble start */
.toilet_trouble_content h3 {
  color: #4a8bc8;
  font-size: 20px;
  font-weight: 600;
}

.toilet_trouble {
  padding: 80px 0;
}

.toilet_trouble_content h2 {
  font-size: 25px;
  font-weight: 600;
}

.toilet_trouble_content p:last-child {
  padding-top: 30px;
  font-weight: 600;
}

/* toilet_trouble end */

/* toilet_trouble start */
.toilet_wont_content h3 {
  color: #4a8bc8;
  font-size: 20px;
  font-weight: 600;
}

.toilet_trouble {
  padding: 80px 0;
}

.toilet_wont_content h2 {
  font-size: 25px;
  font-weight: 600;
}

.toilet_wont_content {
  text-align: center;
}

.toilet_wont span {
  color: #324057;
  font-weight: 600;
}

.para {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-bottom: 1rem;
}

.para span {
  color: var(--span-sky-blue);
  font-size: 13px;
}
.toilet_wont_content img {
  margin-bottom: 12px;
}

.toilet_wont .last_para {
  text-align: center;
  padding-top: 34px;
}

.last_para {
  position: relative;
}

.last_para p {
  font-size: 16px;
}

.toilet_wont .last_para p::after {
  content: "";
  position: absolute;
  background: #00000052;
  width: 85%;
  height: 1px;
  top: 109px;
  right: 98px;
}

.toilet_wont {
  padding-bottom: 86px;
}

/* toilet_trouble end */
.plumbing_zipcode--box {
  width: 100%;
}

/* Meet Our start */
.meet_our_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.meet_our_heading p {
  color: #666666;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin: 10px 0px;
}

.meet_our_card_img img {
  width: 100%;
  height: 100%;
}

.meet_our_card_img {
  height: 350px;
}

.meet_our_heading {
  margin-bottom: 50px;
}

.main_meet_our {
  padding: 100px 0px;
}



/* Meet Our end */
/* five star start */
.five_star_heading h1 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 50px;
}

.five_star_cards {
  border: 1px solid #a9a9a94d;
  padding: 20px 20px;
  border-radius: 10px;
  /* height: 250px; */
  background: #fff;
  margin: 0px 10px;
}

.five_star_cards .checked {
  color: #f25f05;
  font-size: 25px;
}

.five_star_cards p {
  font-size: 22px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 400;
  margin: 30px 0px;
}

.five_star_btn .theme-group {
  justify-content: center;
  margin-top: 50px;
}

/* banner_bg_fixer start */

.banner_bg_fixer {
  background: url(../images/Brick-Image-scaled.png) center center/cover no-repeat;
  height: 580px;
}

.banner_fixer_content h1 {
  font-family: "Poppins", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 58px;
  color: var(--primary-color);
  width: 100%;
}

.banner_fixer_content p {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  margin: 20px 0px;
  width: 100%;
}

.banner_bg_fixer .row {
  padding: 48px 0;
}

.banner_bg_fixer del {
  color: #f25f05;
}

.build_people img {
  width: 100%;
  border-radius: 14px;
}

.build_people .img {
  border: 1px solid #000;
  padding: 5px;
  border-radius: 14px;
}

.build_people .container {
  width: 70%;
}

.build_people_content h2 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 50px;
}

.build_people_content {
  width: 100%;
  text-align: center;
  padding: 60px 0;
}

.build_people_content h2 {
  font-size: 49px;
}

.build_people_content p {
  color: #666666;
  font-size: 20px;
}

.fixer_content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}

.fixer_content p {
  color: #666666;
  font-size: 20px;
}

.fixer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.every_fixer {
  margin-top: 65px;
}

.build_people {
  padding-top: 80px;
}

/* benefit_corporation_start */
.benefit_corporation_start {
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 70px 0;
  margin-top: 40px;
}

.benefit_corporation_start h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}

.benefit_corporation_start p {
  color: #666666;
  font-size: 20px;
}

/* fixer_testimonial start */
.fixer_testimonial {
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  padding-top: 60px;
  /* margin-top: 90px; */
  flex-direction: column;
  gap: 7px;
}

.fixer_testimonial h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}

.fixer_testimonial_content {
  text-align: center;
}

.fixer_testimonial p {
  color: #666666;
  font-size: 20px;
}

.card_botton_section img {
  height: 70px;
  height: 70px;
  border-radius: 50%;
}

.card_botton_section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile_name p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  font-weight: 800;
  width: 100%;
}

.profile_name span {
  font-weight: 500;
}

.fixer_testimonial .five_star_btn {
  /* background: #fff; */
  padding: 45px 0;
}

.fixer_testimonial .five_star_btn .theme-group {
  justify-content: center;
  margin-top: 0px;
}

/* fixer_testimonial end */
/* login page start */
.user_icon {
  background: #de5705;
  padding: 3px;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 200px;
}

.login_container {
  padding: 100px 0;
}

.login_container h1 {
  color: #fff;
  font-size: 50px;
}

.login_container button {
  background-color: #e85b05;
}

.ternary_button {
  background-color: #de5705;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 300;
  border: none;
  outline: none;
  transition: all linear 0.5s;
  color: black !important;
}

.login_container button:hover {
  background: #d5d5d5;
}

.main_expect_login {
  padding: 50px 0px;
  background: #dddfe5;
  border-radius: 30px;
}

.main_expect_login .expect_content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  text-align: center;
  margin: 0 auto;
}

.expect_content h2 {
  font-size: 24px;
  font-family: "Poppins";
  font-weight: 400;
}

.expect_content p {
  font-size: 12.7px;
  font-family: "Poppins";
}

.login_upper_footer {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 15px 0;
  background: #c5cdd5;
  color: rgb(53, 67, 90);
}

.login_upper_footer p {
  color: rgb(53, 67, 90);
  font-weight: 600;
  margin: 0;
}

.login_upper_footer p a {
  font-weight: 400;
}

.login_lower_footer {
  background: #35435a;
  color: #fff;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_lower_footer p {
  margin: 0;
  color: white;
}

/* login page end */

/* team mission  */
.team-mission-banner {
  padding: 100px;
  text-align: center;
}

.teammission-content h4 {
  font-size: 22px;
  color: var(--primary-color);
}

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

.teammission-content h5 {
  font-size: 20px;
}

.award-img--mini {
  float: left;
  width: 200px;
  height: 120px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.award-img--box {
  position: relative;
}

.award-img--box img {
  height: 100%;
  width: 100%;
}

.award-img--box a {
  color: aliceblue;
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  font-size: 30px;
}

/* try fixer  */
.try_fixer--sec {
  background: url("../images/try-fixer_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  display: flex;
  align-items: center;
}

.try_fixer--sec h1 {
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
}

.try_fixer--sec p {
  text-align: center;
  font-weight: 500;
  color: black;
  font-size: 15px;
}

.try_fixer--sec label {
  font-weight: 600;
  font-size: 16px;
}

ul.tryfixer_star-icon {
  display: flex;
  gap: 10px;
}

ul.tryfixer_star-icon i {
  color: black;
  font-size: 19px;
}

ul.perfomance-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perfomance-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

ul.perfomance-list i {
  background: var(--primary-color-dark);
  padding: 4px;
  border-radius: 60px;
  font-size: 13px;
}

.try_fixer--sec h5 {
  font-weight: 600;
  font-size: 19px;
  margin: 10px 0px;
}

.try_fixer--sec img {
  width: 100%;
}

/* accordion
------------------------------------*/
.accordion,
.accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  overflow: hidden;
  background: none;
  margin: 20px 0;
  padding: 0px;
}

.quest-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 15px 0px 15px;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  min-height: 60px;
  line-height: 60px;
  transition: all linear 0.15s;
  text-decoration: none;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  gap: 30px;
  align-items: center;
  color: var(--primary-color);
  border: 1px solid lightgray;
  border-radius: 10px 10px 0px 0px;
}

.quest-content {
  padding: 50px 70px;
  display: none;
  background: white;
  margin-bottom: 20px;
  float: left;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 0px 50px 0px lightgray;
  border: 1px solid lightgray;
}

.quest-content p {
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
  color: #363636;
}

.quest-title.active {
  background: var(--primary-color);
  color: white;
}

.accordian_head-steps {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 40px;
  /* padding: 0px 10px; */
  text-transform: capitalize;
  width: 50px;
  text-align: center;
}

.accordian_head-steps span {
  position: relative;
}

.quest-title.active .accordian_head-steps::before {
  background: #ea601e;
}

.accordian_head-steps::before {
  content: "";
  position: absolute;
  right: 13px;
  top: 50px;
  background: transparent;
  width: 24.5px;
  height: 24.5px;
  border-radius: 50px;
}

.quest-title.active .accordian_head-steps::after {
  border: 2px solid #ea601e;
}

.accordian_head-steps::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 45px;
  /* transform: translate(0%, 40%); */
  border: 2px solid var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50px;
}

.quest-title.active::before {
  background: white !important;
}

.quest-title::before {
  content: "";
  position: absolute;
  left: 80px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--primary-color);
  width: 2px;
  height: 70%;
}

.accordian1_zipBox {
  width: 62%;
  text-align: center;
  padding: 50px;
  background: #c3cee0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  margin: 20px auto;
}

.accordian1_zipBox h4 {
  font-size: 23px;
  font-weight: 500;
}

.accordian1_zipBox input {
  width: 100%;
  padding: 15px;
  outline: none;
  border: 0;
  border-radius: 10px;
}

.accordian1_zipBox p {
  font-weight: 400;
}

.massage-iconinput--box {
  position: relative;
  height: 50px;
}

.massage-iconinput--box input {
  height: 100%;
  padding-left: 50px;
}

.massage-iconinput--box i {
  position: absolute;
  left: 15px;
  bottom: 50%;
  transform: translatey(50%);
  font-size: 24px;
}

.custom_task {
  text-align: center;
  /* width: 80%; */
  /* margin: 0 auto; */
  padding: 40px 0px;
}

.custom_task input {
  width: 100%;
  padding: 15px;
}

.elsefixing_fieldBox {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 20px;
}

.elsefixing_fieldBox input {
  height: 100%;
  width: 100%;
}

.elsefixing_fieldBox button {
  position: absolute;
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  background: transparent;
  border: 0;
  font-size: 21px;
}

.custom_taskBtn_addfield {
  background: transparent;
  border: 0;
  margin-top: 20px;
  text-decoration: underline;
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
}

.quest-content h4 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 30px;
}

.maintenance-box {
  /* width: 80%; */
  margin: 0 auto;
  background: #c3cee0;
  padding: 20px;
  border-radius: 10px;
}

.maintenance-box h4 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 20px;
}

.maintenance-box ul {
  padding-left: 20px;
}

.maintenance-box ul li {
  list-style: disc;
  font-size: 15px;
}

.maintenance-box p {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 20px;
}

.schedule-box [type="radio"]:checked,
.schedule-box [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.schedule-box [type="radio"]:checked+label,
.schedule-box [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.schedule-box [type="radio"]:checked+label:before,
.schedule-box [type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ea601e;
  border-radius: 100%;
  background: #fff;
}

.schedule-box [type="radio"]:checked+label:after,
.schedule-box [type="radio"]:not(:checked)+label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ea601e;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.schedule-box [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.schedule-box [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.schedule-box {
  /* width: 80%; */
  /* margin: 0 auto; */
  /* padding: 30px 0px; */
}

.schedule-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-btn--starting {
  background: transparent;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  transition: all ease 0.4s;
}

.theme-btn--starting:focus {
  background: #ea601e;
}

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

.more_DT--btn {
  text-align: center;
  margin: 20px 0px;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}

.dateTime_box {
  display: none;
}

/* accordion
------------------------------------*/
.dateTime_box .accordion,
.dateTime_box .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.dateTime_box .accordion {
  border: 1px solid;
  padding: 0px;
}

.dateTime_box .quest-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background: #ececec;
  color: #0c2745;
  padding: 0px 15px 0px 15px;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  min-height: 60px;
  line-height: 60px;
  display: inline-block;
  transition: all linear 0.15s;
  text-decoration: none;
  border-bottom: 1px solid #dbdbdb;
}

.dateTime_box .quest-title:before {
  position: absolute;
  content: "\e91e";
  width: 20px;
  height: 20px;
  right: 15px;
  top: 0px;
  font-family: "icomoon" !important;
  color: #1e1e1e;
  font-size: 20px;
}

.dateTime_box .quest-title.active,
.dateTime_box .quest-title:hover {
  content: "\e91c";
}

.dateTime_box .quest-title:after {
  width: 60px;
  height: 1px;
  left: -60px;
  bottom: -1px;
  background: #dbdbdb;
  position: absolute;
  content: "";
}

.dateTime_box .quest-title.active:before {
  content: "\e91c";
}

.dateTime_box .quest-title:hover:before {
  /*content: "\f056";*/
}

.dateTime_box .quest-content {
  padding: 15px 20px;
  display: none;
  background: #dddddd;
  margin-bottom: 0px;
  float: left;
  width: 100%;
}

.dateTime_box .quest-content p {
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
  color: #363636;
}

.accordion-button:focus {
  box-shadow: none;
}

.dateTime_box .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
  padding: 20px 20px;
}

.dateTime_box .accordion-button {
  padding: 20px 20px;
}

.dateTime_box .accordion-button p {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.dateTime_box .accordion-button p span {
  font-size: 12px;
}

.dateTime_box .accordion-button:not(.collapsed) p {
  color: white;
}

.dateTime_box .accordion-button:not(.collapsed)::after {
  color: white;
  filter: brightness(49);
}

.tryfixer_contactinfo label {
  width: 100%;
  text-transform: capitalize;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.tryfixer_contactinfo input {
  width: 100%;
  padding: 10px;
}

.membership_box p {
  text-align: center;
  margin-bottom: 30px;
}

.membership_box h4 {
  margin: 0;
}

.membership_box ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.membership_box ul {
  font-size: 11px;
}

.membership_box label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.membership_box ul i {
  font-size: 16px;
  color: var(--primary-color);
}

.popular_box p {
  text-align: left;
  font-size: 12px;
  margin: 0;
}

.popular_box {
  padding: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
}

.popular_box ul {
  display: flex;
  align-items: baseline;
}

.popular_heading {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  line-height: 30px;
  font-size: 10px;
}

ul.maybe-checkbox {
  padding-left: 25px;
  margin-top: 30px;
}

ul.maybe-checkbox p {
  margin: 0;
  text-align: left;
  font-size: 13px;
}

.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -15px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked~.checkmark {
  background-color: #f25f05;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 10px;
  top: 4px;
  width: 7px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.quest-section {
  padding: 10px 0px;
}

/* The container */
.theme_group--involvebtns {
  position: relative;
  cursor: pointer;
  font-size: 16px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  width: 100% !important;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide the browser's default checkbox */
.theme_group--involvebtns input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.involvebtns_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* On mouse-over, add a grey background color */
.theme_group--involvebtns:hover input~.involvebtns_checkmark {
  background-color: #ea601f4a;
}

/* When the checkbox is checked, add a blue background */
.theme_group--involvebtns input:checked~.involvebtns_checkmark {
  background-color: #ea601f4a;
  border: 2px solid #ea601f;
  border-radius: 5px;
}


/* Show the checkmark when checked */
.theme_group--involvebtns input:checked~.involvebtns_checkmark:after {
  display: block;
}

.theme_group--flex {
  display: flex;
  gap: 10px;
  width: 200px;
  height: 40px;
}


/*____Section__css__start___*/

.pricing-page {
  padding: 75px 0 75px;
  background-image: url(https://fixer.com/wp-content/uploads/2021/12/Brickback-2x-Compressed.png);
}

.top-text h1 {
  font-size: 55px;
  font-weight: 700;
  color: #ea601f;
}

.top-text h2 {
  font-size: 55px;
  font-weight: 700;
  color: #34435B;
}

.top-text p {
  font-size: 20px;
  font-weight: 300;
}

.fix-btn a {
  text-decoration: none;
  color: #34435B;
  background-color: #ea601f;
  padding: 20px 50px 20px;
  border-radius: 70px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.fix-btn a:hover {
  background: #34435B;
  color: #ea601f;
}

.fix-btn {
  padding: 40px 0 0;
}

.membership-plan {
  padding: 35px 0 35px;
}

.plan-look h2 {
  font-size: 36px;
  font-weight: 600;
  color: #34435B;
}

.sec-text p {
  font-size: 20px;
  line-height: 35px;
}

.sec-two-text p {
  font-size: 20px;
  padding: 0 0 30px
}

.dates-monts strong {
  font-size: 20px;
  color: #34435B;
  position: relative;
  right: 27px;
}

.note-txt p {
  font-size: 20px;
  padding: 15px 0 0;
}

.membership-plan {
  padding: 35px 0 35px;
  background-color: #fbfaf6;
}

.hourly-service {
  padding: 50px 0 50px;
}

.service h2 {
  font-size: 36px;
  font-weight: 700;
  color: #34435b;
}

.service p {
  font-size: 18px;
}

.dates-monts li i {
  color: #4e71a7;
  font-size: 25px;
}

.inner-mail p {
  /*text-align: center;*/
  font-size: 18px;
  color: white;
}

input.form-control.form-control-lg {
  margin: 15px 0 15px;
}

.inner-mail {
  background-color: #47566b;
  padding: 30px 30px 30px;
}

.btn {
  width: 100%;
  display: block;
  text-align: center;
  background-color: #ea601f;
  padding: 10px 0 10px;
}

.btn a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.charge-list h2 {
  font-size: 36px;
  font-weight: 600;
  color: #666666;
}

.labour-rate {
  padding: 20px 0 0;
}

.labour-rate h5 {
  font-weight: 600;
}

.shopping-tips {
  padding: 15px 0 0;
}

.labour-rate h5 {
  font-weight: 600;
  color: #666666;
}

.shopping-tips h5 {
  font-weight: 600;
  color: #666666;
}

.payment h5 {
  font-weight: 600;
  color: #666666;
}

.labour-rate p {
  font-size: 20px;
}

.shopping-tips p {
  font-size: 20px;
}

.payment p {
  font-size: 20px;
}

.hidden-charges {
  padding: 30px 0 60px;
}

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

.annual-plan {
  padding: 40px 0 40px;
}

.yeay-plan h2 {
  font-size: 36px;
  font-weight: 600;
  color: #34435B;
}


/*____Section__css__start___*/

button.accordion-button {
  padding: 0;
}



/*____GERNAL__CSS__SECTION___*/
:root {
  --text-color: #757575;
  --border-color: #757575;
  --btn-color: #f25f05;
  --orange-color: #f25f05;
  --span-sky-blue: #4A8BC8;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

img {
  object-fit: cover;
}
.elementor {
  margin: 0 auto;
  /* margin-left: 80px; */
  width: 85%;
  padding-top: 80px;
  border-top: 1px solid var(--border-color);
}


/*____FAQ__PAGE__CSS___*/
.faq.accordion-button::after {
  content: "\ebc0";
  position: absolute;
  font-family: boxicons !important;
  top: 35%;
  left: 1.7%;
  margin: 0px;
  background-image: none !important;
}


.faq.accordion-button:not(.collapsed)::after {
  content: "\eb8b";
  position: absolute;
  top: 35%;
  left: 1.7%;
  background-image: none !important;
}

.faq.accordion-button:not(.collapsed) {
  color: #34435B;
  padding: 25px 25px 25px 50px;
  background-color: #EEEEEE;
  margin-top: 15px;
}

button.faq.accordion-button.collapsed {
  color: #34435B;
  background: #EEEEEE;
  padding: 25px 25px 25px 50px;
  margin-top: 15px;
}

button.faq.accordion-button {
  font-size: 18px;
  font-weight: 800;
  font-family: "Poppins", Sans-serif;
}

.faq.accordion-body {
  text-align: justify;
  border-bottom: 0.5px solid var(--text-color);
  padding-bottom: 25px;
}


.faq_border-bottom {
  margin: 0;
  padding-bottom: 25px;
  border-bottom: 0.5px solid var(--text-color);
}

.anchor {
  text-decoration: none;
  color: var(--text-color);
}

.anchor_white a{
  text-decoration: none;
  color: white;
}

.anchor_white {
  margin-bottom: 20px;
}

.anchor_white a:hover {
  color: var(--text-color);
}
.anchor:hover {
  color: #f25f05;
}

.anchor_bold {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
}

.anchor_bold:hover {
  color: #f25f05;
}

.faq_img img {
  width: 300px;
  height: 300px;
}

.faq_li li {
  list-style: disc;
  margin-left: 20px;
  color: var(--text-color);
}

.faq_ol_list li {
  color: var(--text-color);
}

.faq_li p {
  margin-left: 20px;
}



/*____BOLG__PAGE__CSS___*/

.bolgs_section{
  padding: 4rem 0; 

}

.row.bolgs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.blogs_col {
  display: flex;
  justify-content: center;
}

.blog_sec_one.card {
  width: 95%;
  border: none;
  margin-bottom: 5rem;
}

.blog_thumbnail {
  margin-bottom: 30px;
}

.blog_post span {
  font-size: 11px;
}

h2.entry-title a {
  color: #000;
  font-weight: 600;
  margin: 0 0 15px;
}

.blog_post_btn {
  margin-bottom: 25px;
}

span.blog_post_data a,
span {
  font-size: 11px;
}

.entry-excerpt {
  font-size: 14px;
  margin-bottom: 35px;
  padding-top: 5px;
}

.button a {
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid #D1D1D1;
    background: transparent;
    color: #2f2f2f;
    padding: 12px 40px;
    line-height: 2;
    font-size: 11px;
  }
  
  .button a:hover{
  border: 1px solid var(--btn-color);

}

.row.bolg_pagination {
  margin-left: 60px;
}


ul.pagination {
  display: flex;
  gap: 15px;
}

li.page-item a {
  padding: 15px 22px;
}






/* .blog_text{} */


/*********** Tell Me Friend Section  Page CSS Start *************/

.tell-friend-sec {
  padding: 0px 0px 50px 0px;
    margin: -30px 0px 0px 0px;
}

.tell-img img {
  border-radius: 100%;
}

.tell-img-txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.tell-img-txt h4 {
  color: #35435a;
  font-size: 19px;
  font-weight: 500;
}

.tell-img-txt h5 {
  color: #35435a;
  font-size: 19px;
  line-height: 1.1;
}

.tell-me-txt {
  margin: 30px 0px 0px 0px;
}

.tell-me-txt p {
  color: #000000df;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: lato, sans-serif;
}

section.ready-hero-sec {
  background: #f25f05;
  padding: 50px 0px;
  height: 150px;
  margin: 0px 0px 20px 0px;
}

.ready-txt p {
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 20px 0px 0px 0px;
}

.ready-img img {
  position: absolute;
  top: -70px;
}

.ready-img {
  position: relative;
}

.tellme-form-sec {
  padding: 50px 0px 100px 0px;
}

.tellme-txt p {
  color: #000;
  font-family: lato, sans-serif;
  font-size: 18px;
  padding: 0px 0px 10px 0px;
}

.input-field input {
  display: block;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #000;
  border-radius: 4px;
}

.input-field {
  margin: 10px 0px 10px 0px;
}

.sigin-instead a {
  text-decoration-line: none;
  font-size: 12px;
  color: #f25f05;
}

.invite-btn {
  margin: 10px 0px 0px 0px;
  text-align: end;
}

.send-txt p {
  margin: 0;
  color: #000;
  font-family: lato, sans-serif;
  font-size: 16px;
}

.send-txt {
  display: flex;
  align-items: center;
  height: 100%;
}

.send-invitation-sec {
  margin: 10px 0px 0px 0px;
}

section.see-talk-sec {
  padding: 15px 0px;
  text-align: center;
  background: #f25f0538;
  margin: 0px 0px 30px 0px;
}

.see-talk-txt h6 {
  margin: 0;
  font-family: "Poppins";
  font-size: 16px;
  line-height: 25px;
}

.see-talk-txt a {
  color: #f25f05;
  font-weight: 600;
}

/*********** Tell Me Friend Section  Page CSS End *************/

/*********** DIY Guide Section  Page CSS Start *************/

.fix-everything-sec {
  padding: 50px 0px 0px 0px;
}

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

.fix-mostlytxt h4 {
  font-size: 37px;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
  color: #2f2f2f;
}

.fix-mostlytxt p {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: #2f2f2f;
  font-size: 18px;
  margin: 0px 0px 20px 0px;
}

.fix-mostlytxt h6 {
  font-style: italic;
  color: #f25f05;
}

.fix-mostlytxt ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 20px 0px;
}

.fix-mostlytxt ul li {
  list-style: disc;
}

.fix-mostlytxt ul li a {
  text-decoration-line: none;
  color: #2F2F2F;
}

.fix-mostlytxt ul li a:hover {
  color: #f25f05;
}

.border-line {
  height: 1px;
  width: 100%;
  background: #b1b1b1;
  margin: 20px 0px;
}

.fix-toilet-txt {
  text-align: center;
  padding: 20px 0px 40px 0px;
}

.fix-toilet-txt img {
  width: auto;
  margin: 20px auto;
  display: block;
}

.fix-toilet-txt h5 {
  font-size: 28px;
  color: #2f2f2f;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.toilet-point ul {
  text-align: left;
  margin: 20px 0px 40px 0px;
}

.toilet-point ul li {
  list-style: disc;
}

.toilet-point ul li a {
  text-decoration-line: none;
  color: #2F2F2F;
}

.toilet-point ul li a:hover {
  color: #f25f05;
}

.fix-toilet-txt h6 {
  font-style: italic;
  color: #f25f05;
}

.nothing-nee-sec {
  padding: 40px 0px 50px 0px;
  background: #f25f05;
}

.nothing-fixing-txt {
  text-align: center;
}

.nothing-fixing-txt h5 {
  color: #4a4a4a;
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.email-input {
  margin: 50px 0px 50px 0px;
}

.email-input input {
  padding: 10px 20px;
  width: 320px;
}

.email-input input::placeholder {
  color: #d0d0d0;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: normal;
}

.email-input input:focus {
  outline: none;
}

.nothing-fixing-txt .theme-btn--mini {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.nothing-fixing-txt .theme-btn--mini:hover {
  background: transparent;
}

.nothing-fixing-txt ul {
  margin: 50px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nothing-fixing-txt ul li a {
  border: 1px solid #000;
  padding: 8px 10px 4px 10px;
  border-radius: 50px;
  font-size: 22px;
  background: #000;
  color: #f25f05;
}

.nothing-fixing-txt ul li a:hover {
  background: transparent;
  color: #000;
}

/*********** DIY Guide Section  Page CSS End *************/


.follow_cities {
  background: var(--orange-color);
  color: white;
  text-align: center;
}

.elementor_cities {
  margin: 0 auto;
  /* margin-left: 80px; */
  width: 25%;
  /* padding-top: 20px; */
  padding-bottom: 20px;
  border-top: 1px solid white;
}

.follow_cities h2{
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 20px;
}

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

.give-txt h5 {
  font-size: 18px;
  font-weight: bold;
  color: #f25f05;
}

.give-txt h3 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
}

.give-get {
  background: #000;
  padding: 50px 0px 70px 0px;
}