/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/* @media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
    table, thead, tbody, th, td, tr { 
		display: block; 
	}
    
	
	} */
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: red;
}
.btn-primary {
    color: #000;
    background-color:orange;
    border-color: #bd3407;
    
}

.btn-square {
    width: 38px;
    height: 30px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color:black;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: orange;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown ul li:hover{
    background-color: orange;

}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: red;
    border: 10px solid red;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
    .servicesection .col-lg-3 { 
    margin-top: -12%;
    margin-left: 32%;
	}}

/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-color: #E8F5E9;
    background: orange;
}

.copyright:before {
    flex: 1;
    content: "";
    height: 1px;
    width: 100%;
    z-index: 1;
    background-color: #e1e1e1;
}
.copyright:after {
    flex: 1;
    content: "";
    height: 1px;
    width: 100%;
    z-index: 1;
    background-color: #e1e1e1;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: blue;
}
.divid a:hover{
    color: #e00926;
}
.bg-dark {
    background-color: #0c0c0c !important;
}
/* add new line */
.headerlogo img {
    max-height: 75px;
}
.header{
    background-color: #FAF0E6;
}
.main1{
    
    background: url("../serviceimg/bg.jpg");
    height: 500px;
}
.mains1 .container{
    background-color: rgb(218, 196, 196);
    padding-bottom: 29px;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Jost",sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    padding-left: 30px;
    
}
.main2{
    background: #0d6efd;
    height: 500px;
}
.main2 .row{
    padding-top: 2px;
}
.main3{
    background: url("../serviceimg/bg.jpg");
    height: 500px;
}
.fa,.fas {
    font-weight: 900;
    padding-top:15px
}
.wrapper .vc_row-has-fill > .vc_column_container > .vc_column-inner{
    padding-top: 0;

}
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.icon-content h4{
    color: white;
    /* margin-left:55px;
    position: relative;
    padding-top: 30px;
    font-size:24px */
    

}
.dt-sc-icon-box.type3 .icon-content h3:after {
    width: 50px;
    height: 2px;
    position: absolute;
    content: "";
    background: #000;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
}

.icon-content p{
    color: white;
    /* margin-left:55px;
    position: relative;
    padding-top: 30px;
    font-size:17px */

} 
.fa.fa-usd:before {
    content: "\f155";
}
.fa-dollar:before, .fa-usd:before {
    content: "\f155";
}
div[id="1553861477668-fe24a2d2-9c01"] {
    height: 90px;
}
.dt-sc-empty-space {
    clear: both;
    display: block;
}
.dt-sc-icon-box.type3 {
    text-align: center;
    position: relative;
}
.dt-sc-icon-box.type3.bordered .icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
}
.dt-sc-icon-box.type3.bordered .icon-wrapper span {
    border: 4px solid;
    border-radius: 50%;
    font-size: 68px;
    height: 100px;
    width: 100px;
    background: transparent;
    position: relative;
    bottom: 13px;
    padding-top: 13px;
    color: #FFFFFF;
}
.icon-content {
    padding: 0 10px;
}
div[id="1553861479405-2038cac9-2a9d"] {
    height: 90px;
}
.dt-sc-empty-space {
    clear: both;
    display: block;
}
.dt-sc-title.with-separator-bottom.medium .dt-sc-main-heading {
    font-size: 28px;
    color: white;
    text-align: center;
    margin-left: -40px;
    padding-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-top: 4%;
}
bottom .dt-sc-main-heading {
    position: relative;
}
.dt-sc-title .dt-sc-main-heading {
    margin-bottom: 10px;
}
/* .dt-sc-title.with-separator-bottom .dt-sc-main-heading:after {
    background-color: #fff;
    content: "";
    display: inline-block;
    height: 2px;
    position: absolute;
    width: 50px;
    
} */
.form-control:disabled,.form-control:read-only {
    background-color: white;
    opacity: 1
}
.sigma_dots-wrapper img{
 width: 100%;
 /* margin-top: 60px; */
}
.section p{
    font-family: Helvetica;
}

.dt-sc-newsletter-section.type5 .dt-sc-subscribe-frm {
    width: 100%;
    clear: both;
    margin: 0;
}
.dt-sc-newsletter-section .dt-sc-subscribe-frm {
    width: 68%;
    float: right;
    position: relative;
    z-index: 1;
}
.dt-sc-newsletter-section.type5 .dt-sc-subscribe-frm input[type="text"] {
    border: 1px solid;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    width: 45%;
    clear: both;
    text-transform: none;
    margin-bottom: 10px;
    border: none;
    height:50px;
    margin-left:10px;
}
.dt-sc-newsletter-section.type5 .dt-sc-subscribe-frm input[type="email"] {
    border: 1px solid;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    width: 45%;
    clear: both;
    text-transform: none;
    margin-bottom: 10px;
    border: none;
    height:50px;
    margin-left:10px;
}
.wpb_wrapper{
    position: relative;
}
div[id="1553861467444-a6f0b71c-438e"] {
    height: 90px;
}
.dt-sc-empty-space {
    clear: both;
    display: block;
}
.iconheal {
    color: #f85a38;
}
.iconheal {
    padding: 0;
    text-align: center;
    height: auto;
    border-radius: 10rem;
    transition: .5s;
    margin-left: auto;
    margin-right: auto;
    font-size: 60px;
    z-index: 2;
    position: relative;
    background: none;
    line-height: 0;
    width: 115px;
}
i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon!important;
    font-style: normal;
    font-weight: 400!important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.flaticon-headphones:before {
    content: "\f1d8"
}
.row.yk {
    margin-top: -8px;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
#main1 .col-lg-3{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;
}
iconheal {
    color: #f85a38;
}
.iconheal {
    padding: 0;
    text-align: center;
    height: auto;
    border-radius: 10rem;
    transition: .5s;
    margin-left: auto;
    margin-right: auto;
    font-size: 60px;
    z-index: 2;
    position: relative;
    background: none;
    line-height: 0;
    
}
i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon!important;
    font-style: normal;
    font-weight: 50!important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.flaticon-email:before {
    content: "\f191";
}
.col-lg-9{
    position: relative;
    
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;

}
.wow.fade.animated {
    opacity: 1;
}
.fade:not(.show) {
    opacity: 0;
}
.wow.fade {
    opacity: 0;
    transition: opacity 0.5s ease;
    transition-delay: 0.2s;
}
.services-kutu2--wt13 {
    color: #fff;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 50;
}
.fade {
    transition: opacity .15s linear;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.wow.fade.animated {
    opacity: 1;
}
h2.h2-baslik-anasayfa-wthe {
    color: #ffffff;
    font-family: Outfit;
    font-size: 25px;
    font-weight: 50;
}
i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon!important;
    font-style: normal;
    font-weight: 400!important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.flaticon-location:before {
    content: "\f190";
}
.text-white {
    color: #ffffff !important;
    font-size: 30px;
    margin-left: 10px
}


  /* mouseover avimation */
  .team .col-xl-3 .dep{
    font: 22px Arial;
    display: inline-block;
    padding: 1em 2em;
    text-align: center;
    color: rgb(10, 10, 10);
    /* default color */

    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, rgb(255, 255, 255) 50%, orange 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
}
.team .col-xl-3 .dep:hover {
    background-position: left;
}
.dep {
    box-shadow: 0px 0px 5px #b5b5b561;
}
.dep {
    position: relative;
    background: none;
}
.dep {
    background: #fff;
    padding: 22px;
    border-radius: 5px;
    margin-bottom: 16px;
}
.dep:before {
    bottom: 0;
    display: block;
    height: 100%;
    width: 0%;
    content: "";
    z-index: -1;
    background-color: #f85a38;
    border-radius: 5px;
    left: 0;
}
.or56 {
    text-align: center;
    display: inline-block;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.iconwr {
    background: none;
    transform: rotate(47deg);
}
.iconwr {
    width: 80px;
    height: 80px;
    line-height: 20px;
    color: #fff;
    transition: .5s;
    font-size: 70px;
    padding: 10px 16px;
}
.iconwr:before {
    content: "";
    position: absolute;
    left: 1px;
    top: 2px;
    z-index: -1;
    /* background: #f85a38; */
    width: 80px;
    height: 80px;
}
p.dzv {
    transform: rotate(-47deg);
    line-height: 0px;
    color: #fff;
    transition: .5s;
    font-size: 60px;
    padding: 7px 0px;
    margin: -4px -4px;
    position: relative;
}
p {
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    
}

/* our location */
.index-our-locaiton {
    text-align: center;
    padding-top: 70px;
    margin-bottom: 50px;
}
.index-our-locaiton .col-lg-4{
    margin-top:10px;
}
.index-our-locaiton .container h2{
    color: #000;
    text-align: center;
}
.index-our-locaiton p{
    text-align: justify;
}

.index-our-locaiton .col-lg-4 a{
    margin-top: -100px;
    margin-left: -400px;
    color: rgb(253, 253, 253);
}
.index-our-locaiton .col-lg-4 b{
    background-color: orange;
    padding: 10px;
}
.index-our-locaiton h3{
    text-transform: uppercase;
    color: orange;
    font-size: 20px;
    margin-left: 310px
}
.index-our-locaiton h4{
    text-transform: uppercase;
    font-size: 20px;
    margin-top: -90px;
    margin-left: 260px;
}

.our-location-gird-two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.delhi, .noida, .gurgaon, .ghaziabad, .faridabad {
    border-radius: 10px;
}
.our-location-card img {
    border-radius: 5px;
}
.our-location-gird-two p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #4A4A4A;
    margin-top: 15px;
}
.our-location-card {
    position: relative;
    margin-top: 20px;
}
.our-location-card img {
    border-radius: 5px;
}

.our-location-card div {
    position: absolute;
    bottom: 10px;
    text-align: left;
    padding: 10px;
}
.our-location-card div p a {
    font-size: 25px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 30px;
    cursor: pointer;
    font-weight: 600;
}
.gird-col-two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 30px;
    row-gap: 0px;
}

/* end location */

/*side menubar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px; /* Off-screen position */
    width: 300px;
    height: 100vh;
    background: orange;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index:9999;
    
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
  .slider .carousel-indicators{
    z-index: 0;
  }
  #quote-popup {
    width: 75%;
    padding:0px 25px 0px;
    overflow: scroll;
    height: 400px;
    position: fixed;
  background-color: white;
    top: 50%;
    left: 50%;
    z-index:9999;
    transform: translate(-50%, -50%);
  }
  #close-popup { 
    border: none;

  }
  .close-popup-div {
    text-align: right;
  }
  
  #sidebarCollapse {
    cursor: pointer;
    padding: 10px;
    margin-left: 16px;
    margin-left: 1px;
    height: 60px;
    text-align: center;
    line-height: 50px;
    width: 60px;
    font-size: 20px;
    background: orange;
    
  }
  #sidebarCollapse .fa {
    font-size: 24px;
    padding: 0px;

  }
  .sidebar .container .dep{
    background: red;
  }
  .sidebar .container .dep .fa{
    text-align: center;
    padding-top: 0px;
  }
  .sidebar .row{
    margin-left: 35px;
  }
/* #sidebar {
    width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -500px; 
    background-color: #a41313;
    transition: left 0.3s ease-in-out;
  }
  
  #sidebar.open {
    left: 0; 
  } */
  /*end side menubar */
  /* about  */
  .vc_row {
    margin-left: -15px;
    margin-right: -15px;
}
.vc_row:after, .vc_row:before {
    content: " ";
    display: table;
}
.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}
.vc_col-sm-6 {
    
    float: left;
    min-height: 1px;
}
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.vc_column-inner::before {
    content: " ";
    display: table;
}
.dt-sc-title.with-sub-title .dt-sc-sub-heading, .dt-sc-title.script-with-sub-title .dt-sc-main-heading, .dt-sc-title.with-two-color-stripe .dt-sc-main-heading, #footer .footer-22 .dt-sc-title.script-with-sub-title h3, .side-navigation-content .dt-sc-title.script-with-sub-title strong, .dt-sc-title.with-dual-color .dt-sc-main-heading, .dt-sc-title.decorated .dt-sc-main-heading, .dt-sc-title.with-separator-bottom .dt-sc-main-heading {
    color: #ff5d1b;
}
.dt-sc-title.with-separator-bottom .dt-sc-main-heading {
    padding-bottom: 23px;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding-left: 50px;
    
}
title.with-separator-bottom .dt-sc-main-heading {
    position: relative;
}
.dt-sc-main-heading:after{
    background-color: #40404a;
}
.dt-sc-title.with-separator-top .dt-sc-main-heading:before, .dt-sc-title.with-separator-bottom .dt-sc-main-heading:after {
    left: 0;
}
h3:empty{
    display: none;
}
div[id="1554099550924-ffb1def7-7f2f"] {
    height: 20px;
}
.dt-sc-empty-space {
    clear: both;
    display: block;
}
.wpb_content_element{
    margin-bottom: 35px;
    padding-left: 30px;
}
.wpb_text_column :last-child{
    margin-bottom: 0;
}
.dt-sc-skin-color{
    color: #ff5d1b;
    padding-left: 50px;
}
ul.dt-sc-fancy-list {
    list-style-type: none;
    list-style-position: outside;
    margin-bottom: 35px;
    padding-left: 50px;
    
}
ul.dt-sc-fancy-list li:first-child {
    padding-top: 0;
}

ul.dt-sc-fancy-list li:first-child:before {
    top: 1px;
}
.clickevent {
    /* background-color:white; */
    border-radius: 10px;
    border-color: #7b7b7b;
    background:orange;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    width: 200px;
    height: 150px;
  }
  @media(max-width:500px){
    .clickevent{width: 70px; margin: 0; padding: 0; height: auto;}
    .changeSection .container i{font-size: 20px;}
    .changeSection .container  h3{font-size: 12px !important; padding: 0 !important;} 
  }
  .changeSection h3{
    margin-left: 1px;
  }
  #contact{
    padding-top: 60px;
  }
  #contact .section-header .row{
   padding-top: 10px;
  }
  /* Darker background on mouse-over */
  .clickevent:hover {
    background-color: red;
  }
  .clickevent .fa:hover {
    color:white;
  }
  .web .container h6:hover {
    color:white;
  }
   .clickevent .fa{
    font-size: 50px;
   
  }
  
  .web .container h2{
    color: #000;
    text-align: center;
  }
  .web1 .container h2{
    color: #000;
    text-align: center;
  }
  .web2 .container h2{
    color: #000;
    text-align: center;
  }
  .web3 .container h2{
    color: #000;
    text-align: center;
  }
  .web4 .container h2{
    color: #000;
    text-align: center;
  }
  #web{
    padding-top: 60px;
  }
  #team{
    padding-top: 60px;
  }
  /* .web .container{
    padding-left: 150px;
  } */
  .changeSection .container{
    /* padding-left: 150px; */
    display: flex; justify-content: center;
  }
  .section .container h3{
   font-size: 30px;
   margin-left: -30px;
   color: #750000;
  }
  .section .container p{
    text-align: justify;
  }
  /* end about */
  /* ABOUT US */
  .section-title.text-left .subtitle {
    justify-content: flex-start;
    margin-left: 20px;
}
.section-title .subtitle {
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fd8704;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title .subtitle span:first-child{
    width: 2px;
    height: 22px;
    display: block;
    position: relative;
    margin-right: 16px;
    margin-bottom: 0;
    background-color: #fd8704;
}
.section-title .subtitle span:first-child::after {
    right: 6px;
    position: absolute;
}
.section-title .subtitle span:first-child::after {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    line-height: 1;
    background-color: #fd8704;
    margin-top: 0;
}
.section-title .title  {
    font-size: 30px;
    color: #000;
}
.section-title .title {
    position: relative;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.sigma_counter.style-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: revert;
    margin: 30px 0;
}
.sigma_counter {
    position: relative;
    text-align: center;
    
}
.sigma_counter.style-2 b {
    color: #222222;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 10px;
    position: relative;
    width: 100px;
}
.sigma_counter.style-2 b::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 100px;
    height: 100%;
    border: 5px solid #fd8704;
    opacity: .3;
    z-index: -1;
}
.sigma_counter.style-2 b {
    color: #222222;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 10px;
    position: relative;
    width: 100px;
}
.sigma_counter.style-2 .sigma_counter-content {
    margin-left: 40px;
    text-align: left;
    color: #222222;
    font-size: 20px;
    line-height: 1.3;
}
.sigma_counter.style-2 .sigma_counter-content span {
    display: block;
}
.section .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.section .row .col-lg-6 {
    padding-left: 15px;
}
.d-block {
    display: block!important;
}
.mb-4{
    margin-bottom: 1.5rem!important;
}
.sigma_icon-block.icon-block-3 i {
    width: 60px;
    height: 60px;
    font-size: 36px;
    background-color: #fd8704;
    color: #222222;
    border: 4px solid #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.09);
}
.sigma_icon-block.icon-block-3 i {
    margin: 0;
    margin-left: 30px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fd8704;
    margin-right: 20px;
}
.sigma_icon-block h5 {
    font-size: 22px;
    margin-bottom: 0;
}
.sigma_icon-block h5 {
    color: #000;
    font-size: 22px;
    margin-bottom: 0;
    font-family: "Rajdhani", sans-serif;
    padding-left: 1px;
}
.sigma_icon-block.icon-block-3 h5+p {
    margin-top: 5px;
}


  /* end ABOUT US */
  
.dnone{
    display: none;
}
.dblock{
    display: block;

}
.alignleft {
    float: left;
    margin: 0.375em 1.75em 1.75em 0;
    max-width: 100%;
    
}
.alignright{
    float: right;
    margin: 0.375em 1.75em 1.75em 0; 
    padding-left: 20px;
    max-width: 100%;
   /* position: fixed;
   top: 400px; */
}
/* PageDetails */

#pageDetails #sidebarCollapse{
    width: 100%;
}

#pageDetails #quote-link{
    background: white;
    width: 100%;
    text-align: left;
   color: #222222;
    border-color: orange;
    
}
.pageDetails p{
    text-align: justify;
}

.pageDetails .btn-primary :h{
    color: #7f3030;
}
.pageDetails h2{
    color:#7f3030;
    font-size: 24px;
    margin-left: -30px;
    margin-top: 20px;
}
#pageDetails #quote-link:hover {
    background-color: #7f3030;
  }

.Lorem .heading{
    text-align: center;
    color: #7f3030;
    /* border-top: 3px solid red; */
}
.Lorem p{
    font-family:Helvetica;
}
#pageDetails p{
    font-family: Helvetica;
}
.Lorem .col-lg-4 h2:after {
    width: 200px;
    margin-left: -205px;
    height: 2px;
    position: absolute;
    content: "";
    margin-top:35px;
    background-color:blue;
}
    

.Lorem .col-lg-4{
    background: orange;
    color:white;
    height: 600px;
    padding-top: 20px
}

.Lorem .col-lg-8 h2{
color: #7f3030;
margin-left: -30px;
}
.Lorem .col-lg-4 h2{
    color:white;
    margin-top: 10px;
    }
.Lorem h2{
    color:#7f3030;
    font-size: 24px;
}
.Lorem p{
    text-align: justify;
}

/* end PageDetails */
/* fifth-list */
.fifth-list ul li {
    border: 1px solid #c20e0e;
    border-radius: 50px;
    padding: 1px 5px;
    display: inline-block;
    margin-top: 10px;
}
.fifth-list ul li span {
    background-color: #750000;
    color: #fff;
    border-radius: 50px;
    padding: 2px 7px;
    margin-right: 10px;
}
.fifth-list ul li a {
    color: #750000;
}
.fifth-list .col-lg-2 a{
    color: white;

}
.fifth-list2 .col-lg-2 a{
    color: orange;

}
.fifth-list .col-lg-2{
    margin-right: 1%;
    margin-top: 2px;
    text-align: center;
    background: orange;
    border-style: solid;
    border-color: rgb(23, 4, 132);

}
.fifth-list2 .col-lg-2{
    margin-right: 1%;
    margin-top: 12px;
    text-align: center;
    border-style: solid;
    border-color: black;
    border-radius: 15%;

}
.fifth-list2 h3{
    color: #000;
    margin-left: -29px;
  }

.fist-table #charges{
    margin-bottom: -11px;
}
.fist-table tbody tr{
border-width: 3px;
}
.fist-table  .boder{
    background: orange;
    color: black;
    }
    .fifth-list .row{
        margin-left: 35px;
    }
  .fifth-list h3{
    color: #000;
    margin-left: 15px;
  }
  .fifth-list{
    margin-left: -45px;
  }
  

.fist-table table {
    margin-top: 20px;
    width: 100%;
    text-align: left;
}
.fist-table table th {
    font-weight: 500;
    padding-bottom: 1px;
}
.fist-table table tr:nth-child(even) {
    background-color: #dddddd;
}

.btn-watch-video i {
    color: orange;
    font-size: 52px;
    transition: 0.3s;
    line-height: 0;
    margin-left: 15px;
}
.btn-info {
    margin-bottom: 2%;
}
.index-our-Blog h2{
    text-align: center;
}
.index-our-Blog {
background-color: #FAF0E6;;
}

.index-our-Blog p{
    text-align: justify;
}
.index-our-Blog a{
    color: beige;
}
.index-our-Blog a:hover{
    color: orange;
}
.index-our-Blog .bloglink{
    text-align: center;
    background: rgb(40, 40, 242);
    border: 1px solid;
    padding: 10px;
    box-shadow: 5px 10px 18px #888888;
}
.thank-you {
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.thank-you a{
    color: white;
}



.timeline-icon {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
    height: 170px;
    left: 43%;
    margin: 0;
    padding: 0;
    top: 150;
    width: 170px;
}
.panel-body {
    padding: 0;
}
.timeline-content {
    float: right;
    margin: 0 190px 0 0;
    padding: 30px 0 0;
    width: 40%;
}
.timeline-row .timeline-icon {
    position: absolute;
    margin-left: 15px;
}
.strong-timeline h4{
 font-size: 20px;
}
.servicesection h1{
    margin-left: -5%;
}

.servicesection p{
    font-family: Helvetica;
    text-align: justify;
}
.servicesection .col-lg-6{
    margin-top: 30px;
}

.servicesection .col-lg-1{
    width: 100px;
    padding-bottom:2%;
}
.servicesection .col-lg-3{
    padding-left: 0px;
}
.servicesection .align-items-center{
    margin-top: -35px;
}
.addressall h2{
    text-align: center;
}
.addressall p{
    margin-top: -17px;
}

 /* add now */


#branchpage .quote-link{
    background: rgb(28, 4, 108);
    width: 150px;
    text-align:center;
   color: white;
}

button.active{
    background-color: orange !important;
}

#branchpage {
    text-align: center;
}
.address1{
    background: orange;
     padding-left: 10px; 
     color: white;

}
.address1:hover{
 background-color: #0d6efd;
}
/* about */
.section .row .col-lg-12 .row .col-lg-6{
    background-color: rgb(242, 230, 209);
    border-style: solid;
    border-color: rgb(23, 4, 132);
}
.section .row .col-lg-12 .row .col-lg-6 h3{
    background-color: rgb(23, 4, 132);
    margin-left: 1px;
    font-size: 24px;
    color:orange;
    text-align: center;

}
.section .row .col-lg-12 .row .col-lg-5{
    background-color:  rgb(242, 230, 209);
    margin-left: 10px;
    border-style: solid;
    border-color: rgb(23, 4, 132);
}

.section .row .col-lg-12 .row .col-lg-5 h3{
    background-color: rgb(23, 4, 132);
    margin-left: 1px;
    font-size: 24px;
    color:orange;
    text-align: center;
}

.Lorem a{
    color:green;
}
.Lorem h1{
    font-size:24px;
    margin-left:-30px;
}

.fifth-list .col-lg-12 #services{
    margin-left: -35px;
}
.fifth-list .col-lg-12 ul{
    margin-left: -35px;
}
/* BIll claim */
#billclaim{
    background: #509ed6;
}
#billclaim a{
    color:orangered;
}
#billclaim .animated{
    box-shadow: 10px 10px 5px #509ed6;
    border:5px solid rgb(60, 19, 225);
   

}
.billclaim span {
    font-family: 'Alfa Slab One', cursive;
    position: relative;
    display: inline-block;
    color: #fff;
    animation: billclaim 1s infinite;
    animation-delay: calc(.1s * var(--i));
    
  }
  @keyframes billclaim {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
  }

#billclaim .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#billclaim p{
    margin-top: 0;
    margin-left: 25px;
    color: white;
}
#billclaim .row{
    margin-top: 20px;
    margin-left: 20px;
}
#billclaim h1{
    margin-top: 0;
    color: white;
}
/* BIll claim services */
#billclaimservices{
    margin-top: 0;
}
.billclaimservices .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #f3f4f5;
    box-shadow: 0 10px 10px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #204357;
}
.billclaimservices .section-title {
    text-align: center; 
    padding-bottom: 30px;
}
.billclaimservices .section-title h2 {
    color: #070707;
}

.billclaimabout {
    width: 60%;
    margin: 0 auto;
}
.billclaimabout h2{
    margin-top: 20px;
    font-size: 24px;
}
.billclaimabout a{
    color: #d83030;
}
.billclaimabout .toc_container {
    background: #e2e6eb;
    padding: 15px;
    border: #c2c0c0 1px solid;
    margin-bottom: 20px;
}
.billclaimabout p{
    margin-top: 25px;
}
.billclaimabout h2,h3{
    margin-left: -30px;
}
.billclaimabout .faq .container h2{
font-size: 24px;
text-align: center;
}
#billclaim-detail .col-md-4{
    background-color: orange;
    height: 570px;
}
#billclaim-detail a{
    color: black;
}
#billclaim-detail h2{
    font-size: 25px;
}
#pune_bill h2{
    font-size: 25px;
    margin-left: -4%; 
}
#pune_bill a{
    color: black;
}
.billclaim-heading {
    background-color: #d1960c;
    color: white;
    border: #ac7703 2px solid;
   margin-top: 40px;
   margin-bottom: 20px;
   width: 100%;
}

.billclaim-heading h3{
    text-align: center;
    
    }
    .Obtaining-heading h4{
        margin-top: 30px;
        background-color: #0d6efd;
        color: orange;
        text-align: center;
        width:100%;

    }
  .billclaim .title-word {
    animation: color-animation 4s linear infinite;
  }
  
  .billclaim .title-word-1 {
    --color-1: #DF8453;
    --color-2: #c40b33;
    --color-3: #E4A9A8;
  }
  
  .billclaim .title-word-2 {
    --color-1: #DBAD4A;
    --color-2: #0d0437;
    --color-3: #0dde37;
  }
  
  .billclaim .title-word-3 {
    --color-1: #02342e;
    --color-2: #E4A9A8;
    --color-3: #818507;
  }
  
  .billclaim .title-word-4 {
    --color-1: #07ed16;
    --color-2: #DF8453;
    --color-3: #E4A9A8;
  }
  
  @keyframes color-animation {
    0%    {color: var(--color-1)}
    32%   {color: var(--color-1)}
    33%   {color: var(--color-2)}
    65%   {color: var(--color-2)}
    66%   {color: var(--color-3)}
    99%   {color: var(--color-3)}
    100%  {color: var(--color-1)}
  }
.web .galleryimg{
 width: 300px;
 height: 350px;
  }

.web1 .galleryimg{
   width: 300px;
  height: 350px;
    }
.web2 .galleryimg{
width: 300px;
height: 350px;
}
.web3 .galleryimg{
 width: 300px;
 height: 350px;
 }
.web4 .galleryimg{
 width: 300px;
height: 350px;
  }
 .web5 .galleryimg{
width: 300px;
height: 350px;
     }
             
/* galleryimg page */

.animate-charcter
{
    
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 50px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.tracking-containesr {
    background-color: #97a5b9;
    padding-top: 30px;
}
.tracking-heading{
   margin-left: 35px;
}

.tracking-and-cost-cal a {
    margin-top: 20px;
    color: rgb(24, 10, 10);
    width: 100%;
}

.Charges-delhi ul{
margin-left: 20px;
}
.list-for-home-pages .right{
    background: orange;
    padding-bottom: 20px;
    text-align: justify;
}
.list-for-home-pages h2{
    margin-left: -20px;
    color: #ffffff;
}
.list-for-home-pages .right a {
    color: black;
    border-right: 1px solid #751010;
    padding: 0px 4px;
}
.cost-icons {
    width: 100%;
    float: left;
}
.icons {
    width: 20%;
    float: left;
    text-align: center;
}
.icons span {
    display: block;
    font-size: 15px;
    color: #1c3254;
    font-weight: 600;
    margin: 3px 0px;
}
.costcalculator-fild label {
    background: #FFA500 !important;
    color: #fff;
    padding: 2px 15px;
}
#Movers_Cost_Calculator h1{
    margin-top: 2%;
    margin-left: -5%;
  }
  #Movers_Cost_Calculator p{
   text-align: justify;
  }
  .complexity h2{
    font-size: 25px;
    color: red;
    text-decoration: underline;
  }
  .complexity h3{
    font-size: 15px;
    text-decoration: underline;
  }
  .complexity .col-lg-6{
    background-color: #cdcccc;
    border: 1px solid #fff;
    padding: 4%;
  }
  .costcalculator-container{
    margin-top: 0%;
  }
 /* .costcalculator-container:before{
    background-image: url("http://localhost/assets/serviceimg/banner3.webp");
	width: 100%;
	height: 100%;
	background-size: cover;
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	filter: blur(2px);
} */
.costcalculator-heaiding{
    background: white;
      text-align: center;
      padding: 30px 40px 20px;
  }
  .costcalculator-fild{
    background-color: white;
  }
  .step{
    padding: 8px 20px;
  }

  /* service page for delhi */
  
 .title p {
    text-align: center;
    color: #0c2134;
    font-size: 18px;
    margin-bottom: 10px;
}
.title h2 {
    color: #0c2134;
    font-family: Archivo-Bold;
    margin-bottom: 20px;
}
.servicesection .sec-pad p {
    font-family: Helvetica;
    text-align: center;
}
.servicesection .sec-pad .flow-box h3 {
    font-family: Archivo-Bold;
    color: #080bb8;
    font-size: 3rem;
    display: inline-block;
    position: relative;
    padding: 0px 5px;
    margin-bottom: 15px;
}
.flow-box p {
    font-family: Archivo-Bold;
    color: #3b4c5c;
    font-size: 19px;
}

.icon-box-1 {
    display: table;
    box-shadow: 0 0 18px #ccc;
    width: 100%;
    position: relative;
    padding: 10px;
    margin-bottom: 60px;
}
.icon-box-1 .icon-cell {
    display: block;
    /* text-align: center; */
    margin-top: -44px;
}
.icon-box-1 .wrapper-icon {
    border: 1px solid #e0e0e0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    transition: all .3s ease;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.icon-box-1 .wrapper-icon img {
    width: 40px;
    vertical-align: middle;
}
.icon-box-1 .content-cell {
    display: block;
    padding-top: 10px;
    padding-left: 0;
    text-align: center;
}
.icon-box-1 .wrapper-info .title {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}
.icon-box-1 .wrapper-info .title+.description {
    margin-top: 10px;
}
.sec-pad img {
width: 100px;
}
#review .float-left{
color: #000;
margin-right: 80px;
}
#review .float-lefts{
    color: #000;
    margin-right: 280px;
    }
#review .col-sm-4{
    margin-bottom: 10px;
}
/* cartransport  */
#cartransport tr td, tr th {
    padding: 4px 9px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    line-height: 120%;
}
#cartransport_ser tr td, tr th {
    padding: 4px 9px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    line-height: 120%;
}
.Summary td {
    border-width: 1px;
    
}
.Summary table {
    border: 1;
    border-spacing: 0;
    font-size: 0.857em;
    margin: 10px 0;
    width: 100%;
}
/* bike table */
#Standard_bike table{
    border: 1;
    border-spacing: 0;
    font-size: 0.857em;
    margin: 10px 0;
    width: 100%;
}
#Standard_bike td{
    border-width: 1px;
    }
    #Standard_bike tr td, tr th {
        padding: 4px 9px;
        text-align: left;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        line-height: 120%;
    }

#Bike_Transport_Charges table{
    border: 1;
    border-spacing: 0;
    font-size: 0.857em;
    margin: 10px 0;
    width: 100%;
}
#Bike_Transport_Charges td{
    border-width: 1px;
    }
    #Bike_Transport_Charges tr td, tr th {
        padding: 4px 9px;
        text-align: left;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        line-height: 120%;
    }
    #transport_service td{
        border-width: 1px;
    }
    /* end table */

#cartransport table {
    border: 1;
    border-spacing: 0;
    font-size: 0.857em;
    margin: 10px 0;
    width: 100%;
}
#cartransport #sp-charges{
    color: #080bb8;

}

.table-responsive {
    overflow-x: auto;}

#cartransport tbody {
    
    border-style: solid;
    border-width: 3px;
}
#cartransport .ribbon-highlight{
    position:relative;
    margin:0.1em;
  }
  #cartransport .ribbon-highlight:before{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:0.1em;
    border-width:0.5em;
    border-style:solid;
    border-color:rgb(39, 60, 213);
    position:absolute;
    width:118%;
    border-left-color:transparent;
    border-right-color:transparent;
  }
  
.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0;
    padding-right: 20px;
}
.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 15px;
    line-height: 36px;
    color: #fff;
    padding: 0 10px 0 60px;
    background: #666;
    background: linear-gradient(#1a7288, #d2960b);
    position: relative;
}
.breadcrumb button {
    margin: 4px 4px;
}
 .breadcrumb a:hover {
    background: #005eff;
    color: white;
 }
 .arrow-highlight{
    position:relative;
    margin:0 0.5em;
    padding:0 0.2em;
  }
  .arrow-highlight:before{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:0.1em;
    border-width:0.5em;
    border-style:solid;
    border-color:orange;
    position:absolute;
    width:calc(110% - 0.5em);
    border-left-color:transparent;
  }
  .daily_service .row ul li {
    float: left;
    width: 30%;
    border: 15px 13px solid #ccc;
    padding: 10px 3%;
    list-style: none;
    margin: 5px 5px;
    text-align: center;
    background: linear-gradient(180deg, #40c5d4 0, #04356d 47%, #bd9129);
}
.daily_service h2{
    margin-left: -10px;
    color: red;
}
.daily_service ul{
    margin-left: -10px;
}
.Transportservice-ch h2{
    margin-left: -12px;
}
/* end this */
/* start Relocate In 4 Easy Steps */
.easy-step .easy-box {
    text-align: center;
    min-height: 211px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
}
.easy-step h3{
    text-align: center;
    color: #0124e9;
}
.easy-step p{
    text-align: center;
}
.easy-step .easy-box .easy-steps-img {
    margin-bottom: 10px;
}
.easy-step .easy-box .easy-steps-img img {
    height: 40px;
}
.easy-step .easy-box h5 {
    margin-bottom: 5px;
    font-size: 16px;
    text-transform: uppercase;
    color: #074d7a;
    margin-left: -30px;
}
.easy-step .easy-box p {
    margin-bottom: 5px;
    font-size: 14px;
}
/* end Relocate In 4 Easy Steps */
.how-it-work {
    padding: 20px 0;
    position: relative;
    background-color: #d3e7ff;
}
#cartransport .heading {
    font-size: 22px;
    margin-bottom: 15px;
    color: #086c9a;
    font-weight: 500;
}
.how-it-work .htw-box {
    height: auto;
    position: relative;
    padding: 8px;
}
.how-it-work figure {
    text-align: center;
    min-width: 50px;
    max-width: 18%;
    float: left;
}
.how-it-work h3 {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.how-it-work p {
    font-size: 14px;
    min-height: 23px;
    display: flex;
}
.how-it-work figure img {
    width: 80%;
}
/* start Call us for the best moving experience. */
section.WHY-CHOOSE-US {
    position: relative;
    background-color: #37517e;
    color: white;
}
.why-choose-us-background-overlay {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    /* transition: background 0.3s, border-radius 0.3s, opacity 0.3s; */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
  }
#why-coose-us-containt {
    padding: 50px 0px;
}
.WHY-CHOOSE-US .col-lg-6 {
    flex: 0 0 auto;
}
.why-choose-us-cards {
    margin-bottom: 20px;
}

.card-title{
    width: 110%;
    margin-left: -20px;

}
/* end Call us for the best moving experience. */
.section-title {
    background-color: #f3f5fa;
}
.section-title1 {
    text-align: center;
    background: #031a83;
    color: white;
    padding: 100px 10px 20px 10px;
    margin-top: -60px;
    margin-bottom: 60px;
}
.section-title1 h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #ffffff;
}

.section-title .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    /* background: #fff; */
}
.bike_content h2{
    text-decoration: underline;
}
.bike_content p{
    font-family:Helvetica;
    text-align: justify;
}
.bike_content h3{
font-size: 15px;
}
.bike_content .col-lg-6{
    background-color: #d9d9d9;
    border: 1px solid #FFFF;
    padding: 2%;
}
.bike_content ul{
    margin-left: 4%;
}
.section-title a{
    color: #031a83;
    font-weight: 1;
    
}
#section-title{
    margin-top: 5%;
}
.section-title p{
    margin-left:25px;
}

.section-title .icon-box .icon {
    margin-bottom: 10px;
}
.section-title .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
}
.aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1);
}
.section-title .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}
.icon{
    text-align: center;
}
#cartransport td{
border-width: 1px;
}

/* Charges for delhi */
.Charges-delhi h1{
    margin-left: -30px;
    font-size: 30px;
}
.Charges-delhi p{
    font-family: Helvetica;
    text-align: justify;
}

#Charges_blog_onpage .blog_onpage ul {
    padding-left: 0;
}
#Charges_blog_onpage .blog_onpage ul li {
    width: 100%;
    border: 0px solid #000;
    list-style: none;
    float: left;
    margin: 10px 1%;
}
#Charges_blog_onpage .blog_onpage ul li a img {
    width: 50%;
    float: left;
}
#Charges_blog_onpage .right_content {
    float: right;
    padding: 60px 4%;
   
}

#Charges_blog_onpage a,h3{
    color: black;
    font-size: 20px;

}
#Charges_blog_onpage h3{
    color: rgb(17, 9, 165);
    font-size: 20px;
    

}
.servicesection h1{
    font-size: 30px;
}
#Charges_blog_onpage .table_area table, table tr, table tr th, table tr td {
    padding: 10px;

}
#charges-table_area h2 {
    margin-bottom: 30px;
    text-decoration: underline;
    margin-top: 3s0px;
    text-align: center;
    color: #050066;
}
#Structure-of-packers .row .col-lg-6{
    box-shadow: 0 0 18px #ccc;
    border: 1px solid #fff;
    padding: 20px;
    margin-bottom: 2%;
}
#benefit-of-hiring .col-lg-6{
    box-shadow: 0 0 18px #ccc;
    border: 1px solid #fff;
    padding: 20px;
    margin-bottom: 2%;
}
.breadcrumb-delhi {
    box-shadow: 0 0 18px #ccc;
}
.content-for-delhi .row .col-lg-6{
    background-color: #d7dbe2;
    border: 2px solid #fff;
    padding: 20px;
}
.content-for-delhi .row .col-lg-6 h3{
font-size: 15px;
margin-left: -5%;
}
#Cost-factors .row .col-lg-6{
    background-color: #d7dbe2;
    border: 2px solid #fff;
    padding: 20px;
}
#Structure-of-packers h2{
    text-decoration: underline;
}
#charges-table_area .row .col-lg-6{
    background-color: #d7dbe2;
    border: 2px solid #fff;
    padding: 20px;
}
#Calculator_charges h2{
    margin-bottom: 30px;
    margin-top: 3s0px;
    text-align: center;
    color: #050066;
}
#Transportation-Charges h2{
    margin-bottom: 30px;
    margin-top: 3s0px;
    text-align: center;
    color: #050066;
}
#table-charges h2{
    margin-bottom: 30px;
    margin-top: 3s0px;
    text-align: center;
    color: #050066;
}
#Calculator_charges td {
    border-width:2px;
}
#Transportation-Charges td {
    border-width:2px;
}
#charges-table_area  h4{
    font-size: 15px;
    margin-left: -15px;
    color: #005eff;
}
#Charges_blog_onpage h2{
    margin-bottom: 30px;
    margin-top: 3s0px;
    text-align: center;
    color: #050066;
    margin-left: -15px;
}

#Charges_blog_onpage p{
    font-size: 20px;
    color: #005eff;
}

/* start this section sneed */
#sneed {
    padding: 20px;
    background-color: #0759a1;
    min-height: 349px;
}
.sneed .col-lg-4 {
    background: orange;
    color: white;
    padding-top: 20px;
}
#sneed .sneed{
    padding: 25px;
    background-color: #fdfdfd;
    height: 100%;
}
#sneed .font_h4 {
    font-size: 1.5rem;
    color: #080bb8;
    margin-left: -30px;
}
#sneed p {
    margin-top: 0;
    margin-bottom: 1rem;
}
#sneed h2{
    padding-top: 10px;
    font-size: 1.5rem;
    color: #e0a309;
    margin-left: -30px;
}
#sneed li{
    margin-left: 20px;
    padding: 10px;
}
#charges h2{
    margin-left: -20px;
}
#sneed .col-lg-4 h2 {
    text-align: center;
    color: #7f3030;}
    #sneed .col-lg-4 h2:after {
        width: 200px;
        margin-left: -205px;
        height: 2px;
        position: absolute;
        content: "";
        margin-top:35px;
        background-color:blue;
    }
    #car_faqs p{
        font-size: 18px;
    }
    
    .warehouse-commercial-service-box .Householdclass{
        text-align: center;
       padding: 30px;
        font-size: 30px;
        color: orange;
        background-color: #4271c1;
    }
    #whrehouse-table1 tr:nth-child(even) {
        background-color: #edca02;
      }
      
      #whrehouse-table2 h2{
        margin-left: -10px;
      }
      
      /* start Features_section */
    #Features_section .col-lg-6 {
        padding-bottom: 1.5rem!important;
    }
    #Features_section .features-box {
        background: #e4e1d8;
        border-radius: 2%;
        width: 100%;
        float: left;
        padding: 10px;
    }
    #Features_section .box-img {
        width: 25%;
        float: left;
        padding-right: 20px;
    }
    #Features_section .icon-size {
        width: 55px;
        height: 55px;
    }
    #Features_section .box-content {
        color: #1426d3;
        width: 70%;
        float: left;
    }
    .process_section .box-process{
        background-color: #e8e1e2;
    }
    .process_section .box-img{
    margin-left: 10px;

    }
    #Features_section .section-title {
        text-align: center;
        padding-bottom: 5px;
    }
    #Features_section .section-title h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        color: #0124e9;
    }
    #Features_section .section-title h2::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: 2px;
        background: #ff7929;
        bottom: 1px;
        left: calc(50% - 60px);
    }
    #Features_section .section-title h2::after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        bottom: 0;
        left: calc(50% - 20px);
    }
    /* start section Instant Get Charges  */
    .register-section {
        background: #edf5ff;
        background-size: cover;
    }
    .register-section {
        padding: 30px 0;
    }
    .query-heading {
        text-align: center;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        color: #0a3180;
        padding-bottom: 20px;
    }
    .head1 {
        font-weight: 600!important;
        font-size: 24px!important;
    }
    .query-heading span {
        display: block;
        font-size: 16px;
        color: #15212e;
    }
    .query-heading span.green-text {
        color: #5b3ecc;
        display: inline;
    }
    .query-section .main-div {
        background: #2a3b4d;
        padding-bottom: 10px;
    }
    .register-section .col-md-4 {
        text-align: center;
        margin-top: 80px;
        margin-bottom: 30px;
    }
    .register-section .col-lg-5 {
        background-color: orange;
        color: #fff;
    }
    
    .query-colum-heading {
        color: #0a3180;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        margin-top: 15px;
    }
    .register-section .container{
        padding: 20px 50px;
    }
    .container-footer{
        background-color: #011e51;
        color: #fff;
    }
 .transport-section td{
    border-width: 2px;
 }
 /* start truck-block */
 .city-blog {
    padding: 40px;
    background-color: #eaeaea;
}
.truck-block .heading-border {
    display: block;
    width: 150px;
    border-bottom: 3px solid #e85a28;
    margin: 10px auto 20px;
}
.city-blog h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #312e2e;
}
.transport-table td{
border-width: 1px;
}
/* end truck-block */
/* start section delhi-to-bangalore */
.delhi-to-bangalore .col-lg-4{
    background-color: orange;
    margin-top:0%;
}
.delhi-to-bangalore p{
    text-align: justify;
    font-family: Helvetica;
}
.delhi-to-content ul{
margin-left: 4%;
}
.delhi-to-content .col-lg-6{
background: #edecec;
}
.delhi-to-content .col-lg-6 h3{
    margin-left: -5%;
    }
.delhi-to-bangalore h1{
    margin-left: -30px;
    font-size: 30px;
}
.delhi-to-bangalore h2{
    margin-left: -30px;
    font-size: 25px;
    margin-top:2%;
}
.delhi-to-bang h2{
    margin-left: 0px;
    font-size: 30px;
}
.delhi-to-bangalore h3{
    margin-left: -30px;
    font-size: 20px;
}
.delhi-to-section .graybg {
    background: #f1f3f3;
    width: 100%;
    float: left;
    padding: 45px 0px;
    margin-top: 40px;
}
.wid60 {
    float: left;
    padding-left: 0px;
}
.ft40 {
    font-size: 20px;
    line-height: 37px;
    color: #160561;
}
.wid60 ol {
    margin: 0px;
    padding: 0px;
    counter-reset: my-awesome-counter 0;
    margin-top: 30px;
}
.wid60 li {
    counter-increment: my-awesome-counter 1;
    position: relative;
    list-style: none;
    margin-left: 45px;
    margin-bottom: 30px;
}
.wid60 li:before {
    content: counter(my-awesome-counter);
    color: rgb(5, 12, 107);
    font-size: 2.0rem;
    font-weight: bold;
    position: absolute;
    left: -3.2rem;
    line-height: 2.3rem;
    width: 2.6rem;
    height: 2.3rem;
    top: 0px;
    text-align: center;
    border-right: #2202b1 solid 1px;
}
.wid60 h4 {
    display: inline-block;
    margin: 0px;
    padding: 1px;
    font-size: 16px;
}
/* end this css */
/* start call-of-duty */
.call-of-duty .row {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: unset;
    margin: 15px 0;
}
.call-of-duty .col-md-5 {
    display: flex;
    gap: 10px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: 5px 0 0 5px;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.section-title h2 {
    font-weight: 20;
    color: #ed5434;
    text-align: center!important;
}
.why-choose-delhi-to .row {
    padding: 10px;
    background-color: #eef3fc;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
}
.why-choose-delhi-to .row .col-lg-6 {
    padding: 0 0 0 24px;
    margin: 14px 0px;
}
.why-choose-delhi-to p {
    text-align: justify;
   
}
.why-choose-delhi-to h4 {
    font-size: 20px;
    margin-left: -5%;
   
}
.useful-res .section-title h2 {
    font-weight: 20;
    color: #ed5434;
    text-align: center!important;
}
.useful-res .row a {
    text-align: center;
    padding: 13px 10px;
    white-space: nowrap;
    color:white;
    margin: 5px;
    float: left;
    border-radius: 12px;
    width: 100%;
    border: 1px solid #06728a;
    background-color: orange;
}
.Summary h2{
    color: #2a10eb;
    padding-top: 20px;
    font-size: 20px;
}
.Summary tr td {
    padding: 4px 9px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    line-height: 120%;
}
#item-list a{
    color: #000;
}


.Benefits-section p{
font-family:Helvetica;
text-align: justify;
color:black;
}
.Benefits-section .col-lg-6{
    background: #2c6eb9;
    padding: 20px;
    border: 1px solid #fff;
    
}
.bahadurgarh_con h3{
margin-left: 0%;
text-decoration: underline;
}
.bahadurgarh_con h4{
    font-size: 20px;
    }
.Benefits-section .col-lg-6 p{
    color: #fff;
}
.Benefits-section .col-lg-6 h4{
   margin-left: -30px;
   color: #fff;
   font-size: 15px;
}
.Benefits-section h2{
    font-size: 30px;
    text-decoration: underline;
}
.Benefits-section h3{
    font-size: 15px;
    margin-left: 0%;
}
#Approximate-pricing h2{
    text-decoration: underline;
}
#factors_that h3{
    margin-left: -2%;
}
#Approximate-pricing .col-lg-6{
    background-color: #cecbcb;
    padding: 20px;
    border: 1px solid #fff;
}
#Approximate-pricing p{
    text-align: justify;
}
#Process-sections .col-lg-6{
    background-color: #e5e3e3;
    border: 1px solid #fff;
    padding: 20px;
}
#Process-sections p{
    color: #000;
}
.Process-section h3{
    font-size: 20px;
    margin-left: 0%;
    text-decoration: underline;
}
#Process-sections h2{
    text-decoration: underline;
}
#Process-sections .col-lg-6 h3{
    font-size: 15px;
    margin-left: -3%;
    text-decoration: underline;
}
.WHY-CHOOSE-US h2{
    text-align: center;
    font-size: 24px;
}
.Process-section p{
    text-align: justify;
    font-family:  Helvetica;
    padding: 10px;
}
.content-for-delhi p{
    font-family:Helvetica;
    
}
.content-for-delhi h3{
    font-size: 20px;
    margin-left: 2px;
}
.Delhi-content .col-lg-6 p{
text-align: justify;
font-family:Helvetica;
}
.Delhi-content .col-lg-6{
    background-color: #ededed;
    padding: 10px 10px 20px 40px;
    border: 2px solid white;
}
.breadcrumb-delhi {
    display: inline-block;
    border-radius: 5px;
    counter-reset: flag;
    padding: 10px;
}
.breadcrumb-delhi a {
    color: rgb(5, 6, 47);
    transition: all 0.5s;
}
#Delhi-contentwarehouse h3{
    font-size: 15px;
}
#Best_Movingall h3{
    font-size: 15px;
    
}
#Best_Movingall h2{
    font-size: 24px;
    text-decoration: underline; 
}
#Best_Movingall .col-lg-6{
    background-color: #ededed;
    padding: 10px 10px 20px 40px;
    border: 2px solid white;
}
#Best_Movingall p{
    font-family: Helvetica;
}
.breadcrumb-delhi a:first-child {
    padding-left: 20px;
    margin-left: 41px;
    border-radius: 5px 0 0 5px;
}

.breadcrumb-delhi a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    line-height: 36px;
    /* color: #fff; */
    padding: 0 8px 0 57px;
    position: relative;
}
.breadcrumb-delhi a:first-child:before {
    left: 14px;
}
.breadcrumb-delhi a:before {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
}
.breadcrumb-delhi a:before {
    content: counter(flag);
    counter-increment: flag;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 2px -24px;
    position: absolute;
    top: 5px;
    font-weight: 700;
}
.breadcrumb-delhi a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}
.breadcrumb-delhi a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(.707) rotate(45deg);
    z-index: 1;
    box-shadow: 2px -2px 0 2px rgba(0, 0, 0, .4), 3px -3px 0 2px rgba(255, 255, 255, .1);
    border-radius: 0 5px 0 50px;
}
.breadcrumb-table a{
    color: #000;
}
.breadcrumb-table .container{
    color: #000;
    padding: 10px;
    background-color: #ded9d9;

}
.breadcrumb-table .toc_title{
text-align: center;
}
/* warehouse Self-Storage section */
.Self-Storage p{
    text-align: justify;
    font-family: Helvetica;
}
.Self-Storage h2{
    color: red;
}
.Self-Storage .col-lg-6{
    background-color: #224b93;
    border: 1px solid rgb(255, 255, 255);
    color: white;
    padding: 20px;

}
.warehousecontact{
    background-color: orange;
    padding: 20px;
}

#Some-point h3{
width: 900px;
    margin: 10px 1px 20px 0px;
    padding: 10px;
    border: 2px solid;
    color: orange;
}
#Benefits-of-hiring h3{
width: 900px;
    margin: 10px 1px 20px 0px;
    padding: 10px;
    border: 2px solid;
    color: orange;
}

#Factors-Affecting h3{
width: 900px;
    margin: 10px 1px 20px 0px;
    padding: 10px;
    border: 2px solid;
    color: orange;
}
.Acclaimed_Packers h3{
    margin-left: 0%;
    text-decoration: underline;
    margin:3px;
}
.Acclaimed_Packers h4{
    font-size: 15px;
    margin-left: 0%;
}

.Acclaimed_Packers .col-lg-6{
    background-color: hsl(0, 0%, 82%);
    border: 1px solid #fff;
    padding: 2%;
}
.Additionalservices h4{
    font-size: 20px;
}
.Additionalservices h3{
    text-decoration: underline;
}
.strangest h4{
    font-size: 20px;
}
.strangest h3{
    text-decoration: underline;
    margin-left: 3px;
}
.strangest p{
    font-family:Helvetica;
}
.Features_of_Reliable h3{
    margin-left: 0%;
    text-decoration: underline;

}
.Features_of_Reliable .col-lg-6{
    background-color: #dedede;
    border: 1px solid white;
    padding: 3%;
}
.Features_of_Reliable h4{
    font-size: 15px;
    margin-left:-7%;
}
#Most_Reliable h4{
    margin-left: 0%;
    text-decoration: underline;
}
#Most_Reliable ul{
    margin-left: 4%;
}
.warehouse_services_content h2{
    text-decoration: underline;
}
.warehouse_services_content h3{
    font-size: 15px;
    margin-left: 0%;
}

#qualities_of_reliable h3{
    font-size: 15px;
    
}
#qualities_of_reliable h2{
    font-size: 24px;
    text-decoration: underline; 
}
#qualities_of_reliable .col-lg-6{
    background-color: #ededed;
    padding: 10px 10px 20px 40px;
    border: 2px solid white;
}
#qualities_of_reliable p{
    font-family: Helvetica;
}

#How_to_Get_Transport h3{
    font-size: 15px;
    
}
#How_to_Get_Transport h2{
    font-size: 24px;
    text-decoration: underline; 
}
#How_to_Get_Transport .col-lg-6{
    background-color: #ededed;
    padding: 10px 10px 20px 40px;
    border: 2px solid white;
}
#How_to_Get_Transport p{
    font-family: Helvetica;
}

#Benefits_of_Hiring h3{
    font-size: 15px;
    
}
#Benefits_of_Hiring h2{
    font-size: 24px;
    text-decoration: underline; 
}
#Benefits_of_Hiring .col-lg-6{
    background-color: #ededed;
    padding: 10px 10px 20px 40px;
    border: 2px solid white;
}
#Benefits_of_Hiring p{
    font-family: Helvetica;
}
.choose_our_Transports h2{
    font-size: 20px;
    text-decoration: underline;
}
.home_all_heading h3{
    margin-left: 0%;
    text-decoration: underline;
    color: red;

}
.home_all_heading h4{
    font-size: 20px;
    text-decoration: underline;
}
.home_all_heading .col-lg-6{
    background-color: rgb(245, 245, 245);
    border: 2px solid #fff;
}
.home_all_heading .col-lg-6 h3{
    font-size: 15px;
    margin-left: -5%;
}
.dropbtn {
    background-color: rgb(28, 4, 108);;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
   
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #c97714;
} 

/* Show the dropdown menu on hover */
 .dropdown:hover .dropdown-content {
    display: block;
}

.dropdown2 {
    position: relative;
    display: inline-block;
}

.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
   
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content2 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content2 a:hover {
    background-color: #c97714;
} 

/* Show the dropdown menu on hover */
 .dropdown2:hover .dropdown-content2 {
    display: block;
}
.delhi-to-content h2{
text-decoration: underline;
}
.delhi-to-content h3{
    font-size: 15px;
    margin-left: 0%;
}
.Bill_for h3{
font-size: 18px;
margin-left: 0%;
}
.Bill_for h2{
    font-size: 25px;
    text-decoration: underline;
    }
.Reputed_con h3{
    text-decoration: underline;
    margin-left: 0%;
}
.Reputed_con h4{
font-size: 20px;
}
.delhi-to-content p{
    font-family:Helvetica;
}

.Services_Offer .row ul li {
    float: left;
    /* width: 30%; */
    border: 15px 13px solid #ccc;
    padding: 3px 2%;
    list-style: none;
    margin: 5px 5px;
    text-align: center;
    background: linear-gradient(180deg, #b7b7b2 0, #04356d 47%, #c9c8c5);
}
.Services_Offer .col-lg-12{
    margin-left: -3%;
}
.Services_Offer .col-lg-12 h3{
    margin-left: 1%;
    text-decoration: underline;
}
.rootfilecon h3{
    margin-left: 0%;
    text-decoration: underline;
}
.rootfilecon h4{
   font-size: 20px;
   
}
.mayur-vihar h4{
    margin-left:-4%;
    font-size: 20px;
    
}

.header-top {
    background: orange;
    padding: 8px 50px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}
.header-top .fa-phone {
    font-size: 13px;
    color: #fff;
}
.header-top .right a {
    border-right: 1px solid #fff;
    padding: 0px 10px;
}
.header-top .right a:nth-child(2) {
    border-right: none;
}
@media (max-width: 647px){
.header-top .left {
    text-align: center;
}}

@media (max-width: 647px){
.header-top .left .header-gmail {
    display: none;
}}
@media (max-width: 647px){
    .header-top .fa-phone:before {
        font-size: 18px;
    }}

@media (max-width: 647px){
.header-top .right {
    font-size: 19px;
    margin-top: 43px;
    margin-left: -78%;
}}
.header-top span {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #4A4A4A;
}
.box_bill_for .col-md-4{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 25px;
  border-style: solid;
  border-color: orange;
}
.box_bill_for .col-md-4 h5{
    margin-left: -35px;
}

.icons_with_location {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.icons_with_location h2 {
    text-align: center;
    color: rgb(0, 32, 96);
    width: 100%;
    margin: 10px;
    font-size: 22px;
}
.icons_with_location ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px 10px;
    padding: 0;
}
.icons_with_location ul li {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 5px 5px;
    padding: 2px;
    width: 24%;
    border: 2px solid #4e4ba4;
}
.icons_with_location ul li i {
    width: 20%;
    font-size: 30px;
    color: orange;
    padding: 8px;
}
.how_work {
    width: 100%;
}
.how_work>h2 {
    color: #ef630b;
    text-align: center;
}
.schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.schedule_content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 45%;
    height: auto;
    margin: 2px 2px 16px 2px;
    border: 2px solid #0959d1;
    border-radius: 30px;
    box-shadow: 6px 6px 7px rgb(218, 161, 39);
}
.schedule_content .icon {
    text-align: center;
    font-size: 30px;
    color: #0959d1;
}
.schedule_content .content {
    width: 70%;
    text-align: justify;
    padding: 10px;
}
.schedule_content .content span {
    font-size: 20px;
    margin: 0;
    color: rgb(0, 32, 96);
}
.content p {
    font-size: 18px;
    margin-top: 10px;
    line-height: 24px;
}
/* TOPBAR BASE */
.topbar {
    background: orange;
    color: #fff;
    font-size: 17px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
}

/* CONTACT */
.contact {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.contact a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

/* LINKS */
.top-links {
    display: flex;
    gap: 15px;
}

.top-links a {
    color: #fff;
    text-decoration: none;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {

    .header-top {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .contact {
        justify-content: center;
        font-size: 17px;
    }

    .top-links {
        justify-content: center;
        font-size: 17px;
    }
}

/* 🔥 EXTRA SMALL (your issue screen) */
@media (max-width: 480px) {

    .contact {
        flex-direction: column;
        gap: 3px;
    }

    .contact a {
        font-size: 17px;
    }

    .top-links {
        gap: 10px;
        font-size: 17px;
    }
}
.review-box {
    background: #eef1f6;
    border: 1px solid #bfc5cf;
    border-radius: 10px;
    padding: 22px 25px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
}

.stars {
    color: #f4b400;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
}

.review-text {
    font-size: 24px;
    color: #111;
    font-weight: 600;
}

.review-btn {
    width: fit-content;
    margin-top: 9%;
    border: 21px;
    border-radius: 15px;
    padding: 10px;
    background: #0dcaf0;
    margin-left:-15%;
}

.review-btn a {
    color: #111;
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.review-btn a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .review-box {
        padding: 18px;
    }

    .stars {
        font-size: 22px;
    }

    .review-text {
        font-size: 18px;
    }

    .review-btn a {
        font-size: 18px;
    }
}
.review-section {
    padding: 60px 0;
}

.review-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.review-box h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.review-box p {
    color: #555;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #e65c00;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

@media(max-width:768px){

.review-box {
    padding: 20px;
}

.review-box h1 {
    font-size: 26px;
}

}

/* Section */
.testimonial-section{
padding:60px 0;
}

/* Heading */
.testimonial-heading{
text-align:center;
margin-bottom:50px;
}

.testimonial-heading h1{
font-size:42px;
margin-bottom:10px;
font-weight:700;
}

.testimonial-heading p{
font-size:18px;
color:#666;
}

/* Review Card */
.review-card{
background:#fff;
padding:25px;
border-radius:12px;
margin-bottom:30px;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
height:100%;
transition:0.3s ease;
}

.review-card:hover{
transform:translateY(-5px);
}

.review-card h3{
font-size:22px;
margin-bottom:10px;
font-weight:600;
}

/* Stars */
.stars{
color:#ffb400;
font-size:22px;
margin-bottom:7%;
margin-left: 40%;
}

/* Review Text */
.review-text{
font-size:18px;
line-height:1.7;
color:#444;
min-height:50px;
}

/* Date */
.review-date{
margin-top:20px;
font-size:14px;
color:#888;
}

/* Pagination */
.pagination-wrapper{
margin-top:40px;
text-align:center;
}

.pagination-wrapper a,
.pagination-wrapper span{

display:inline-block;
padding:12px 18px;
margin:5px;

background:#fff;
border:1px solid #ddd;

color:#333;
text-decoration:none;

border-radius:6px;

transition:0.3s ease;
}

.pagination-wrapper a:hover{
background:#ff6600;
color:#fff;
border-color:#ff6600;
}

.pagination-wrapper .active{
background:#ff6600;
color:#fff;
border-color:#ff6600;
}

/* Mobile */
@media(max-width:768px){

.testimonial-heading h1{
font-size:30px;
}

.review-card{
padding:20px;
}

.review-text{
min-height:auto;
}

}
.login-box{
width:400px;
margin:100px auto;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.form-control{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:5px;
}

.btn{
background:#ff6600;
color:#fff;
padding:12px 20px;
border:none;
cursor:pointer;
width:100%;
font-size:16px;
}

.error{
color:red;
margin-bottom:15px;
}

table{
width:100%;
background:#fff;
border-collapse:collapse;
}

table th,
table td{
padding:12px;
border:1px solid #ddd;
}

.approve{
background:green;
color:#fff;
padding:6px 10px;
text-decoration:none;
border-radius:4px;
}

.reject{
background:#ff6600;
color:#fff;
padding:6px 10px;
text-decoration:none;
border-radius:4px;
}

.delete{
background:red;
color:#fff;
padding:6px 10px;
text-decoration:none;
border-radius:4px;
}

.edit{
background:#007bff;
color:#fff;
padding:6px 10px;
text-decoration:none;
border-radius:4px;
}
.edit-box{
width:700px;
margin:50px auto;
background:#fff;
padding:30px;
border-radius:10px;
}

.form-control{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
}

.btn{
background:#007bff;
color:#fff;
padding:12px 20px;
border:none;
cursor:pointer;
}
/* Overall Rating Box */

.overall-rating-box{
display:inline-block;
margin-top:25px;
background:#fff;
padding:18px 30px;
border-radius:12px;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
border:1px solid #eee;
}

.rating-stars{

font-size:32px;

color:#ffb400;

margin-bottom:10px;

letter-spacing:3px;
}

.rating-text{

font-size:20px;

color:#333;

font-weight:500;
}

/* Mobile */

@media(max-width:768px){

.rating-stars{
font-size:26px;
}

.rating-text{
font-size:16px;
}

.overall-rating-box{
padding:15px 20px;
}

}
/* Review Preview */

.review-text{
font-size:15px;
line-height:1.2;
color:#444;
min-height:22%;
margin-left: -12%;
}
.review-text1{
font-size:15px;
line-height:1.2;
color:#444;
min-height:22%;
margin-left: 0%;
}

/* Read More Button */

.read-more-btn{

background:none;

border:none;

color:#ff6600;

font-weight:600;

cursor:pointer;

padding:0;

font-size:15px;
}

.read-more-btn:hover{
text-decoration:underline;
}

/* Modal */

.review-modal{

display:none;

position:fixed;

z-index:9999;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.7);

justify-content:center;
align-items:center;

padding:20px;
}

/* Modal Content */

.review-modal-content{

background:#fff;

padding:35px;

border-radius:12px;

max-width:700px;

width:100%;

position:relative;

max-height:80vh;

overflow-y:auto;

animation:popupFade 0.3s ease;
}

/* Animation */

@keyframes popupFade{

from{
transform:scale(0.9);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}
}

/* Close Button */

.close-modal{

position:absolute;

right:20px;
top:15px;

font-size:32px;

cursor:pointer;

color:#333;
}

.close-modal:hover{
color:red;
}

/* Modal Heading */

.review-modal-content h3{

margin-bottom:20px;

font-size:28px;
}

/* Full Review Text */

#fullReviewText{

font-size:17px;

line-height:1.9;

color:#444;
}

/* Mobile */

@media(max-width:768px){

.review-modal-content{
padding:25px;
}

.review-modal-content h3{
font-size:24px;
}

}

/* Admin Reply Box */

.admin-reply-box{

margin-top:20px;

background:#f5f7fb;

border-left:4px solid #ff6600;

padding:18px;

border-radius:8px;
}

/* Reply Heading */

.reply-heading{

font-weight:700;

margin-bottom:10px;

color:#111;

font-size:16px;
}

/* Reply Text */

.reply-text{

font-size:15px;
line-height:1.6;
color:#444;
}
.review-btn1 {
    width: fit-content;
    margin-top: 9%;
    border: 21px;
    border-radius: 15px;
    padding: 10px;
    background: #0b697c;
    margin-left: 25%;
}
