@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --theme-color: #eca238;
  --theme-color-second: #000000;
  --theme-color-third: #000;

  --heading-font: "Urbanist", sans-serif;
  --paragraph-font: "Urbanist", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Urbanist", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
  display: inline-block;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-weight: 700;
  font-size: 87px;
  letter-spacing: 1px;
  line-height: 1;
}

h2 {
  font-size: 50px;
  font-weight: 600;
}

h3 {
  font-size: 37px;
  font-weight: 600;
  line-height: 1.5;
}

h4{}

h5{}

h6{
  font-size: 19px;
  font-weight: 600;
  
}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  right: 0px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 60px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 60px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

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

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 3px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

.fixed-bootom {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
 
  background: var(--theme-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 7px;
}

.fixed-bootom  .callnow{
  color: #fff;
  display: block;
  padding: 15px;
}
a.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

/* banner */

.banner {
  background-position: bottom!important;
  background-position: 45px;
  color: #fff;
  padding: 370px 0 40px;
}

.banner p span{
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}


/*commercial-home */
.commercial-home .form-box {
  padding: 25px 20px;
  border-radius: 3px;
  background-color: var(--theme-color);
  height: 100%;
}
.commercial-home h3{
  color: #fff;
  margin: 0;
}
.commercial-home .form-box p{
  color: #fff;
}

.commercial-home .form-box input{
  width: 100%;
  padding: 10px;
  border: none;
}
.commercial-home .form-box select{
  width: 100%;
  padding: 10px;
  border: none;
  color: #1e1e1e;
}

.commercial-home .form-box textarea{
  width: 100%;
  padding: 10px;
  border: none;
  color: #1e1e1e;
  height: 95px;
}

.commercial-home .form-box button{
  background-color: #da670c;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
  width: 100%;
}

/* dumpster-service */

.dumpster-service .service-box .btn-white{
  padding: 8px;
  width: 10rem;
}
.dumpster-service .service-box  h6{
  margin-bottom: 5px;
}

.dumpster-service a.comon-btn{
  border: 1px solid #fff;
}

/* how-it-work */

.how-it-work {
  background-position: bottom!important;
  padding-bottom: 490px;
}

.how-it-work .hd_info{
  flex-wrap: nowrap;
}

.how-it-work .number-box{
 
  background: linear-gradient(90deg, rgba(247, 247, 247, 0.692) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 100%);
padding: 18px;
border-radius: 6px;
transition: 0.6s;
height: 100%;
}

.how-it-work .number-box h2{
  font-weight: 900;
  opacity: 0.5;
  letter-spacing: 3px;
}



.how-it-work .number-box h6{
  font-size: 19px;
  color: var(--theme-color);
  margin-bottom: 10px;

}
.how-it-work .number-box:hover{
  transition: 0.6s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.how-it-work .number-box p{
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  color: #333;
}


/* why-choose-us" */

.why-choose-us ul li{
  display: flex ;
  align-items: start;
  gap: 15px;
  margin-top: 25px;
}

.why-choose-us ul li h6{
  margin-bottom: 5px;
}

.why-choose-us  {
  position: relative;
  overflow: hidden!important;
}

.why-choose-us .img-box {
  position: absolute;
  top: 60px;
  width: 1010px;
}


/* video-box */

.video-box {
  position: relative;
}

.video-box .over-lay {
  position: absolute;
  bottom: 95px;
  color: #fff;
}
.video-box .over-lay h5 img {
  width: 60px;
}
.video-box .over-lay h5 a {
  display: flex;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  align-items: center;
  gap: 10px;
  letter-spacing: 3px;
}

.glightbox-container {
  
  z-index: 999999999999999999999999!important;

}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 105px!important;
  right: 10px;
  position: absolute;
}

/* faq sec */


.faq-contact .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: var(--theme-color);
  box-shadow: none;
  border: none !important;
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  border: none !important;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none !important;
}

.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: start;
  background:  var(--theme-color);
  color: #000000;
  border: none;
}

.faq-contact .get-intouch button:hover {
  background-color: #000;
  color: #fff;
}

.faq-contact .accordion-item h2 {
  line-height: 22px;
  font-size: 18px;
}

.faq-contact .accordion-item p {
  color: #000000;
  font-weight: 600;
  padding-left: 24px;
  border-left: 2px solid #000;
}

.faq-contact .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding-top: 0;
}
.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 19px 20px;
  font-size: 17px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #ffffff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  font-weight: 600;
}


/* client-testimonial */

.client-testimonial .review-box{
  padding: 25px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px 5px;
}

.client-testimonial .review-box .author ul{
  display: flex;
  gap: 2px;
  align-items: center;
  color: #da670c;
  margin: 0;
}

.client-testimonial .author h5{
  display: flex;
  align-items: center;
  margin: 0;
  gap: 5px;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
}
.client-testimonial .author h5 img{
  width: 20px;
}
.client-testimonial .content-box {
  min-height: 157px;
}

.client-testimonial .owl-nav img {
  width: 26px;
}

.client-testimonial button.owl-prev {
  position: absolute;
  top: 30%;
  left: -45px;
}

.client-testimonial button.owl-next {
  position: absolute;
  top: 30%;
  right: -45px;
}
.client-testimonial .owl-dots{
  display: none;
}


.area a.area-btn {
  width: 100%;
  background: #fff;
  padding: 17px 6px;
  display: flex;
  gap: 10px;
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
  align-items: center;
}

.area a.area-btn:hover {
  width: 100%;
  background: #000000;
  padding: 17px 6px;
  display: flex;
  gap: 10px;
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
}

.area a.area-btn i{
  border-right: 1px solid var(--theme-color);
  padding: 5px;
}

.area .map{
  height: 100%;
}

.area .map iframe{
  height: 100%;
  border-radius: 10px;
}


/* blkog */

.blog-sec .blog-box a p {
  color: #505050;
}

.blog-sec .blog-box a p span {
  color: var(--theme-color);
  margin-right: 10px;
}
.blog-sec .blog-box a h5 {
  font-weight: 500;
  color: #000000;
}


/* footer */

.footer {
  background-color: #000;
  padding: 90px 0 40px;
  color: #ededed;
}

.footer a.comon-btn{
  width: 14.5rem;
}

.footer .ft-list li a{
  font-size: 15px;
  color: #ededed;
}
.footer .ft-list li{
  margin-bottom: 8px;
}
.footer h5{
  font-size: 26px;
}

.footer .social li a{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #ededed;
}

.footer .social li a i{
  display: block;
  height: 35px;
  min-width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
  border-radius: 60px;
}
.footer .social li {
  margin-bottom: 10px;
}

.footer ul.menu-list {
  display: flex;
  gap: 20px 33px;
  flex-wrap: wrap;
  text-transform: uppercase;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.footer ul.menu-list li a {
  color: #fff;
  padding: 21px 0;
}

.footer .social-2 {
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: end;
  align-items: center;
}

.footer .social-2 p{
  margin: 0;
}

.footer .social-2 a img {
  width: 91px;
}


/* about page */

.inner-banner h1{
  font-size: 55px;
}

.about-page ul li{
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: start;
  font-weight: 600;
}

.about-page ul li i{
  color: var(--theme-color);
}


.best-choice .dump-box .img-box{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  background-color: rgba(0, 0, 0, 0.075);
  margin: 0 auto;
  margin-bottom: 15px;
  border: 3px solid #000000;
}

.certain .dump-box .img-box{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  background-color: rgba(255, 255, 255, 0.075);
  margin: 0 auto;
  margin-bottom: 15px;
  border: 1px solid;
  background-color: var(--theme-color)10;
  border-color: var(--theme-color);
}



/* CONTACT PAGE */

.text-blue {
  color: var(--theme-color);
  font-size: 19px;
}

.get-in-touch input[type="text"] {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}

.get-in-touch input[type="email"] {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}

.get-in-touch select {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}

.get-in-touch textarea {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
  outline: none;
}

.get-in-touch button {
  background-color: var(--theme-color);
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  color: #fff;
  text-transform: uppercase;
  outline: none;
}

.get-in-touch ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  font-size: 20px;
  align-items: baseline;
}

.get-in-touch ul li a {
  color: #505050;
}



/* inner-blog */

.inner-blog ul.date-link {
  display: flex;
  gap: 34px;
  font-weight: 600;
  border-bottom: 1px solid var(--theme-color);
  padding-bottom: 11px;
  margin-bottom: 21px;
}

.inner-blog ul.date-link i {
  color: var(--theme-color);
}

.inner-blog .coment-box {
  border: 3px solid var(--theme-color);
  padding: 25px;
  color: #7c7c7c;
  margin-bottom: 21px;
}

.inner-blog .coment-box h5 {
  margin: 0;
}

.inner-blog form {
  display: flex;
  gap: 5px;
  border: 1px solid #bdbdbd;
}

.inner-blog form input {
  border: none;
  padding: 14px;
  width: 100%;
  outline: none;
}

.inner-blog form button {
  padding: 14px;
  background: none;
  border: none;
}

.inner-blog h6 {
  font-size: 19px;
}

.inner-blog .cat li {
  padding: 20px 0;
  border-bottom: 1px solid #7c7c7c;
}

.inner-blog .cat li a {
  font-weight: 600;
  color: var(--theme-color);
  font-size: 17px;
}


/* inner area */

section.banner_area {
/* 	background-image: url(../image/inner-area-bg.png); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 70px 0px;
	/* padding: 150px 0px 220px; */
	color: #fff;
	position: relative;
  /* margin-bottom: 150px; */
}

.banner_area .overlay {
  position: absolute;
  background-color: #2525254d;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* height: 440px; */
}
.banner_area .contact_form h3 {
  font-size: 32px;
}
.banner_area .contact_form {
  position: relative;
  z-index: 9;
}
.banner_area {
	padding: 30px 0 50px;
}
.banner_area .contact_form input {
  width: 100%;
	border: none;
	padding: 12px 16px;
	outline: none;
	border-radius: 5px;
}

.banner_area .contact_form textarea {
  width: 100%;
  border: none;
  padding: 12px 16px;
  outline: none;
  border-radius: 5px;
}
.banner_area .contact_form button {
  width: 100%;
  border: none;
  background: #000;
  color: #fff;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 5px;
}
.banner_area .contact_form {
	text-align: center;
	background: #ffffff91;
	color: rgb(255, 255, 255);
	padding: 25px 20px;
	border-radius: 13px;
}



.banner_area .heading {
  position: relative;
  z-index: 9;
}
.banner_area h1{
  font-size: 65px;
}
.banner_area .hd_info {
  /* justify-content: center; */
  gap: 10px;
  align-items: center;
}
.banner_area .hd_info a.comon-btn2 {
  background: transparent;
  color: var(--theme-color);
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 3px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--theme-color);
}
.banner_area .hd_info a.comon-btn2:hover{
  background-color: var(--theme-color);
  color: #fff;
}

.banner_area {
	padding: 50px 0;
}
/* .banner_area .heading:before {
  position: absolute;
  width: 240px;
  height: 100px;
  content: "";
  background: url(../image/arrow.png) no-repeat center;
  right: 0;
  bottom: 0;
} */

/* .contact_form {
  text-align: center;
  background: #000;
  color: #fff;
  padding: 50px;
} */



/* .banner_area .contact_form input {
	border: none;
	padding: 12px 16px;
	width: 100%;
	outline: none;
	border-radius: 5px;
}

.banner_area .contact_form textarea {
  border: none;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  border-radius: 5px;
}

.banner_area .contact_form form{
  padding: 50px 30px;
  background: var(--theme-color);
  border-radius: 8px;
}
.banner_area .contact_form {
	text-align: center;
	color: rgb(255, 255, 255);
	z-index: 9;
	position: absolute;
	bottom: -200px;
	left: 0;
	right: 0;
	margin: auto;
}
.banner_area .contact_form button {
  border: none;
  background: #000;
  color: #fff;
  height: 51px;
  width: 100%;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 5px;
} */



a.hd-btn.gap {
  margin-top: 20px;
}

.color h2 {
  color: var(--theme-color);
}

.color h2 span {
  color: #363636;
}

.service {
  text-align: center;
}

.title_service {
  background: var(--theme-color);
  color: #fff;
  padding: 45px 22px;
}

.title_service h3 {
  margin-bottom: 19px;
}

.title_service p {
  margin-bottom: 0px;
}

.title_service h3 a {
  color: #fff;
}

.service_section {
  background: url(../image/about-bg.jpg) no-repeat center;
  color: #fff;
}

.service_section .color h2 span {
  color: #fff;
}

img.img-fluid.img-1 {
  object-fit: cover;
  height: 580px;
  border: 2px solid #149dd5;
  padding: 10px;
}

.contact_form2 {
  /* background: url(../image/area-banner.jpg) no-repeat center; */
  color: #000000;
  padding: 100px 0xp;
  position: relative;
  background-attachment: fixed;
}

.contact_form2 .overlay {
  position: absolute;
  background-color: #2525258f;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.contact_form2 .heading {
  position: relative;
  z-index: 9;
  color: #fff;
}

.other_contact {
	text-align: left;
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	/* background: #00d4eb; */
	padding: 50px;
	position: relative;
	z-index: 9;
	border-radius: 25px;
}
.other_contact .other_contact_info p {
  font-size: 19px;
}

.other_contact h3 {
  font-size: 52px;
  color: #fff;
}

.other_contact p a, .other_contact p {
  color: #fff;
}

/* .other_contact p {
  color: #fff;
} */
.other_contact p i {
  margin-right: 7px;
}

section.map_Section iframe {
  width: 100%;
}

.service img {
  border-radius: 10px 10px 0px 0px;
}

.inner_sec1 img {
  border-radius: 10px;
}

.bg-color2 {
  background: #f1f1f1;
}


.inner-banner h1{
  font-size: 55px;
}

.about-page ul li{
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: start;
  font-weight: 600;
}

.about-page ul li i{
  color: var(--theme-color);
}


.best-choice .dump-box .img-box{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  background-color: rgba(255, 255, 255, 0.075);
  margin: 0 auto;
  margin-bottom: 15px;
  border: 1px solid #fff;
}

.certain .dump-box .img-box{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  background-color: rgba(255, 255, 255, 0.075);
  margin: 0 auto;
  margin-bottom: 15px;
  border: 1px solid;
  background-color: var(--theme-color)10;
  border-color: var(--theme-color);
}



/* 5-12-2024 */

/* Area Page */

.area_page a.area-btn {
	width: 100%;
	background: var(--theme-color);
	padding: 13px 6px;
	display: flex;
	gap: 10px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0px;
	font-size: 16px;
	align-items: center;
}

.area_page a.area-btn:hover {
  background: #000000;
  /* color: var(--theme-color); */
}
.area_page a.area-btn:hover i {
  /* border-right: 1px solid var(--theme-color); */
  transition: all .5s ease;
}

.area_page a.area-btn i{
  border-right: 1px solid #fff;
  padding: 5px;
  transition: all .5s ease;
}

.area_page .map{
  height: 100%;
}

.area_page .map iframe{
  height: 100%;
  border-radius: 10px;
}


.dumpster-service .service_slider .owl-stage{
  position: relative;
}
.dumpster-service .service_slider .owl-nav button{
  position: absolute;
  top: 40%;
}
.dumpster-service .service_slider .owl-nav button i{
  font-size: 45px;
}
.dumpster-service .service_slider .owl-nav button.owl-next{
  right: -50px;
}
.dumpster-service .service_slider .owl-nav button.owl-prev{
  left: -50px;
}


.inner_area3 img {
	border-radius: 25px;
}


.inner-banner {
	position: relative;
	background-position: 80% 77% !important;
}
.inner-banner .overlay {
  position: absolute;
  background-color: #0d0d0d8c;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* height: 440px; */
}
.inner-banner .heading {
  position: relative;
  z-index: 9;
}


.area_sec3 img{
  border-radius: 25px;
}

.comon_heading img{
  border-radius: 25px;
}


/*  */

.dumpster_service .service_box{
  position: relative;
}
.dumpster_service .service_box img {
	border-radius: 25px;
}
.dumpster_service .service_box h4{
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
.dumpster_service a{
  display: inline;
}
.dumpster_service a.comon-btn{
  border: 1px solid #fff;
  /* color: #fff;
  background-color: transparent; */
}

.why_choose_us h3 {
	font-size: 23px;
	text-transform: uppercase;
	color: var(--theme-color);
	font-weight: 400;
	margin-bottom: 10px;
}
.why_choose_us .content_box {
	display: flex;
	align-items: center;
	gap: 30px;
	border: 1px solid #8a8a8a63;
	padding: 25px 40px;
	border-radius: 20px;
	background-color: #f1f1f1;
}
.why_choose_us .content_box img {
	width: 100px;
}
.why_choose_us .content_box hr {
	border: 0;
	border-right: 1px solid #6f6d6d;
	height: 100px;
}



/* Contact Form CSS */
form.wpcf7-form.init p {
    margin-bottom: 0px !important;
}
.get-in-touch input[type="tel"] {
    background-color: #e9e9e9;
    padding: 14px;
    border-radius: 5px;
    width: 100%;
    border: none;
    outline: none;
}

/* Blog Pagination */
.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #eca238;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}


/* Leave A Comment */
.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #eca238;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}

/* Blog Search */
input#search-form-1 {
    border: none;
    outline: none;
width: 100%;
}
.single-post label {
    width: 100%;
}
.search-form label {
width: 100% !important;
}