@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,400;1,6..12,600;1,6..12,700;1,6..12,800&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #000;
  overflow: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  color: #000;
  line-height: normal;
  text-transform: capitalize;
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 25px;
  text-transform: lowercase;
}
p:first-letter {
  text-transform: uppercase;
}
a {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px !important;
  color: #000;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  color: #f60e5e;
}
ul,
li,
ol,
li {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #000;
  list-style-type: none;
  text-transform: capitalize;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  margin: 0 0 20px 0;
  padding: 20px 30px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: normal;
  width: 100%;
  outline: none;
  border: 1px solid #eee;

  border-radius: 10px;
}
input[type="submit"] {
  margin: 10px 0;
  padding: 12px 15px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  border: none;
  outline: none;
  background: #fc3e0e;
  border-radius: 10px;
  transition: 0.5s;
}
input[type="submit"]:hover {
  background: #fc3e0e;
}
textarea {
  height: 100px;
  border-radius: 20px;
}
/* Enquery Now */
button.btn-primary {
  transform: translateY(-50%);
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 99;
  width: 36px;
  height: 120px;
  font-size: 15px;
  color: #fff;
  writing-mode: vertical-lr;
  padding: 4px;
  border-radius: 0 10px 10px 0;
}
button.btn-primary:before {
  border-radius: 5px;
}
button.btn-primary:hover:before {
  border-radius: 5px;
}

/*side-form*/
.side-form .offcanvas-body input[type="text"],
.side-form .offcanvas-body input[type="email"],
.side-form .offcanvas-body input[type="number"],
.side-form .offcanvas-body select,
.side-form .offcanvas-body textarea {
  background: #dddddd3d;
}

/*heading*/
.heading,
.headingleft {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  color: #000;
  width: 70%;
  margin: 0 auto 30px;
  position: relative;
}
/* .heading:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 40%;
  height: 5px;
  background: #fe991c87;
  transform: translateX(-50%);
  z-index: -1;
} */
.headingleft {
  text-align: left;
  margin: 0 0 13px 0;
  width: 40%;
}
.heading small,
.headingleft small {
  display: block;
  font-size: 20px;
  color: #fc3e0e;
  line-height: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.heading small:before,
.heading small:after,
.headingleft small:before,
.headingleft small:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, #fc3e0e, #f60e5e);
  transform: translateY(-50%);
}
.heading small:after,
.headingleft small:after {
  left: auto;
  right: -50px;
}
/*smoicons*/
.smoicons ul li a {
  font-size: 20px;
  color: #fff;
  margin-right: 15px;
  border-right: 1px dashed #ddd;
  padding-right: 15px;
}
.smoicons ul li:last-child a {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.smoicons ul li a:hover {
  color: #fc9515;
}

/*Back-to-top-button*/
#button {
  display: inline-block;
  background-color: #fc3e0e;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#button i {
  color: #fff;
  font-size: 15px;
}
#button:hover {
  cursor: pointer;
  background-color: #f60e5e;
  color: #fff;
}
#button:active {
  background-color: #f60e5e;
}
#button.show {
  opacity: 1;
  visibility: visible;
}



/*offcanvas*/
.offcanvas {
  padding: 20px;
}
.offcanvas .logo {
  width: 150px;
}
.offcanvas ul.sidebar-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.offcanvas ul.sidebar-contact li p {
  padding: 0;
  margin: 0 0 0 20px;
  font-size: 17px;
}
.offcanvas ul.sidebar-contact li p span {
  display: block;
  font-size: 20px;
}
.offcanvas ul.sidebar-contact li p a {
  font-size: 20px;
  display: block;
  text-transform: lowercase;
}
.offcanvas .smoicons {
  margin: 40px 0;
}
.offcanvas .smoicons ul li a {
  font-size: 20px;
  color: #fff;
  background: #4064ac;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-right: 15px;
}
.offcanvas .subscribe input[type="email"] :placeholder {
  color: #fff;
}

/*btn-primary*/
.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f60e5e;
  transition: 0.6s;
  border-radius: 5px;
  z-index: -1;
  visibility: hidden;
}
.btn-primary:hover:before {
  visibility: visible;
  top: 0;
  bottom: auto;
  transform: scaleY(0);
}

/*header*/
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
  box-shadow: 0px 0px 3px #ddddddeb;
}
header .logo {
  height: 100%;
  background: #fc3e0e;
  border-radius: 0 50px 0 0;
  position: relative;
}
header .logo:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #fc3e0e;
  width: 100vh;
  height: 100%;
}
header .logo h1 a {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  color: #fff;
}

header .logo h1 a span {
  display: block;
}
header .logo h1 a:hover {
  color: #000;
}

/* header .logo h1 a span:after {content: '';position: absolute;top: 18px;right: 0px;width: 80px;height: 4px;background: linear-gradient(45deg, #0b5aa0, #fe991c);} */
header .logo h1 a:hover span:after {
  background: linear-gradient(45deg, #fe991c, #0b5aa0);
}

.menubar ul li {
  position: relative;
  transition: 1s;
}
.menubar ul li a {
  font-size: 16px;
  font-weight: 500;
  margin: 23px 25px 24px 0;
  position: relative;
}

.menubar ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #fc3e0e;
  transition: 0.6s;
}
.menubar ul li a:hover:before {
  width: 100%;
}
.menubar ul li a i {
  font-size: 12px;
  margin-left: 6px;
}

.menubar ul li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #fc3e0e;
  z-index: 2;
  border-radius: 6px;
  padding: 10px 0;
  visibility: hidden;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  transform-origin: top;
}
.menubar ul li:hover .dropdown {
  visibility: visible;
  transform: rotateX(0deg);
  transition: all 700ms ease;
}
.menubar ul li:hover .dropdown li a {
  margin: 0;
  padding: 5px 15px;
  color: #fff;
  font-size: 16px;
}

.menubar ul li:hover .dropdown li a:hover {
  color: #000;
}
.menubar ul li:hover .dropdown li a:before {
  width: 0;
}
.menubar ul li.head-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 30px;
}
.menubar ul li.head-info figure {
  margin: 0 15px 0 0;
  background: #d5d1d19c;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menubar ul li.head-info figure img {
  width: 20px;
}
.menubar ul li.head-info p {
  margin: 0;
}
.menubar ul li.head-info p a {
  margin: 0;
  display: block;
}
.menubar ul li.head-info p a:before {
  display: none;
}

/*slider*/
.slider img {
  width: 100%;
}
.slider .carousel-caption-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider .carousel-caption-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 15px;
}
.slider .carousel-caption-content h1 span {
  display: block;
  color: #fc3e0e;
}
.slider .carousel-caption-content p {
  font-size: 20px;
  font-weight: 600;
  width: 60%;
  margin-bottom: 30px;
  color: #333;
}

/*about*/
.about {
  margin: 80px 0 50px 0;
}
.about .heading {
  margin: 0 auto 20px;
}

.about figure img {
  width: 100%;

  animation: img-border 3s linear infinite alternate;
  border-radius: 25% 25% 23% 13%/50% 27% 50% 10%;
  transition: all 0.3s ease-out 0s;
  height: 600px;
  object-fit: cover;
}

@keyframes img-border {
  0% {
    border-radius: 25% 35% 23% 13%/60% 28% 40% 10%;
  }
  100% {
    border-radius: 30% 40% 28% 72%/53% 49% 31% 47%;
  }
}

/*services*/
.services {
  margin: 0 0 80px 0;
}
.services .heading {
  width: 40%;
}
.services .col-lg-3:nth-child(2) .services-list,
.services .col-lg-3:nth-child(4) .services-list,
.services .col-lg-3:nth-child(6) .services-list {
  margin-top: 40px;
}
.services .services-list {
  border-radius: 10px;
  height: 100%;
  transition: 0.6s;
}

.services .services-list figure {
  overflow: hidden;
  margin: 0;
  border-radius: 10px 10px 0 0;
}
.services .services-list figure img {
  width: 100%;
  transition: 0.6s;
}
.services .services-list:hover figure img {
  transform: scale(1.2);
}
.services .services-list .services-content figure {
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cccccc38;
  padding-bottom: 20px;
}
.services .services-list .services-content figure h3 {
  font-size: 16px;
  color: #fff;
  margin: 0 0 0 20px;
}
.services .services-list .services-content p {
  color: #eee;
  height: 160px;
}
.services .services-list .services-content .btn-primary {
  margin-top: 10px;
  --bs-btn-border-color: #fe991c;
}

.services .services-list .services-content figure img {
  width: 40px;
  transform: none;
  background: #fb3718;
  padding: 5px;
  filter: brightness(1.4);
}
.services .services-list .services-content {
  width: 100%;
  margin: 0px auto 20px;
  background: linear-gradient(to top, #f60e5e, #fc3e0e);
  padding: 20px;
  border-radius: 0 0 10px 10px;
  position: relative;
}

/*refrigerator*/
.all-category figure {
  margin: 0;
  position: relative;
}
.all-category figure:before {
  transition: all 0.6s ease-in;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #f60e5e, #fc3e0e);
  border-radius: 10px;
  z-index: -1;
}
.all-category figure:hover::before {
  transform: translateY(15px) rotate(2deg);
}

.refrigerator,
.washing,
.microwave,
.air-conditioner {
  margin-bottom: 60px;
}
.refrigerator figure img,
.washing figure img,
.microwave figure img,
.air-conditioner figure img {
  width: 100%;
  border-radius: 10px;
}
.refrigerator .refrigerator-content,
.washing .washing-content,
.microwave .microwave-content,
.air-conditioner .air-conditioner-content {
  background: url(../images/bg-image.jpg) no-repeat center center / cover;
  padding: 40px;
  margin-left: 20px;
  border-radius: 10px;
}
.refrigerator .refrigerator-content h3,
.washing .washing-content h3,
.microwave .microwave-content h3,
.air-conditioner .air-conditioner-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.washing .washing-content,
.air-conditioner .air-conditioner-content {
  margin-right: 20px;
}
.refrigerator .refrigerator-content p,
.washing .washing-content p,
.microwave .microwave-content p,
.air-conditioner .air-conditioner-content p {
  color: #eee;
  text-align: justify;
}

/*faq*/
.faq {
  margin-bottom: 60px;
}
.faq figure {
  margin: 0;
  position: relative;
}
.faq figure img {
  width: 100%;
  border-radius: 10px;
}
.faq .faq-info {
  position: absolute;
  left: 20px;
  bottom: 30px;
  background: #fff;
  border-radius: 50px;
  padding: 5px 65px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .faq-info i {
  font-size: 20px;
  color: #fff;
  background: #fc3e0e;
  border-radius: 50px;
  padding: 20px;
}
.faq .faq-info p {
  margin: 0 0 0 20px;
  line-height: normal;
}
.faq .faq-info p a {
  display: block;
  font-size: 20px;
  color: #fc3e0e;
}
.faq .accordion-item {
  padding-bottom: 15px;
  border-bottom: 2px solid #fc3e0e;
  margin-bottom: 15px;
}
.faq .accordion-item .accordion-button {
  font-size: 20px;
  font-weight: 700;
  color: #fc3e0e;
  margin: 0 0 12px 0;
}
.accordion-button:not(.collapsed)::after {
  color: #fc3e0e;
}

/*user-wraper*/

.user-wraper {
  background-image: url(../images/action-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.user-wraper a.user-number {
  font-size: 20px;
  color: #222;
  margin-bottom: 20px;
}
.user-wraper a i {
  font-size: 18px;
  padding-right: 10px;
}
.user-wraper .btn-primary i {
  font-size: 14px;
  padding-left: 6px;
}

/*footer*/
footer {
  background: linear-gradient(to bottom left, #f60e5e, #fc3e0e);

  padding: 80px 0 0 0;
}
footer h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
footer ul.footer-details li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #eee;
}
footer ul.footer-details li figure img {
  width: 25px;
}
footer ul.footer-details li figure {
  margin: 0 15px 0 0;
}
footer ul.footer-details li a {
  text-transform: lowercase;
  color: eee;
}
footer ul.footer-menu li a {
  color: #eee;
  margin-bottom: 10px;
  position: relative;
}
footer ul.footer-menu li a:after {
  content: "\f061";
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 15px;
  color: #eee;
  transition: 0.6s;
  opacity: 0;
}
footer ul.footer-menu li a:hover {
  color: #000;
}
footer ul.footer-menu li a:hover:after {
  right: -20px;
  opacity: 1;
  color: #000;
}
footer .footer-info h4 {
  color: #fff;
  font-size: 18px;
  margin: 20px 0 10px 0;
}
footer .footer-info a {
  color: #eee;
}
footer .footer-info a:hover {
  color: #000;
}
footer .footer-info p i {
  font-size: 13px;
  color: #eee;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
}
footer .footer-logo {
  width: 90%;
}
footer .footer-logo p {
  margin: 0 0 20px 0;
  color: #eee;
}
footer input[type="email"],
.subscribe input[type="email"] {
  padding: 20px;
  border: 0;
  background: #fff;
  border-radius: 50px;
}
footer input[type="submit"],
.subscribe input[type="submit"] {
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  padding: 19px 16px;
  width: 56px;
  border-radius: 0px 50px 50px 0px;
  position: absolute;
  top: -10px;
  right: 0;
  background: #f60e5e;
}
footer iframe {
  width: 100%;
  height: 300px;
  margin: 10px 0 0 0;
}

.copyright {
  margin-top: 40px;
  padding: 30px 0;
  background: linear-gradient(to bottom, #f60e5e, #fc3e0e);
}
.copyright p {
  color: #ddd;
  margin: 0;
}

/*heading-inner-page*/
.innerpage-heading {
  background: linear-gradient(to top left, #f60e5e, #fc3e0e);
  text-align: center;
  padding: 50px 0 20px 0;
  margin-bottom: 40px;
}
.innerpage-heading h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 auto;
  line-height: 60px;
  width: 60%;
}
.innerpage-heading ul li {
  color: #fff;
  margin-right: 20px;
}

/*contact-page*/
.contact-form {
  margin-bottom: 60px;
}

.contact-form .contact-details {
  background: #f6f6f6;
  padding: 30px 30px 40px 40px;
  border-radius: 10px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
}
.contact-form ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}
.contact-form ul li p {
  margin: 0 0 0 15px;
}
.contact-form ul li p a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-transform: lowercase;
}

.contact-form .smoicons ul li {
  margin: 0 0 15px 0;
}
.contact-form .smoicons ul li a {
  color: #fc3e0e;
}
.contact-form .smoicons ul li a:hover {
  color: #fe991c;
}

.contact-form form {
  box-shadow: 1px 2px 5px #dbd2d2;
  padding: 20px;
  border-radius: 5px;
}
.contact-form form input[type="submit"] {
  width: 20%;
}
.contact-form form input[type="submit"]:hover {
  background: #f60e5e;
}

/*location*/
.location .location-details {
  background: #eee;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: 0.6s;
  border-bottom: 3px solid transparent;
}
.location .location-details:hover {
  border-bottom: 3px solid #0b5aa0;
  transform: translateY(-8px);
  box-shadow: 0px -4px 8px 0px #0b5aa01f;
}
.location .location-details ul {
  margin: 0 0 20px 0;
}
.location .location-details ul li {
  margin: 0 0 10px 0;
}
.location .location-details ul li i {
  margin: 0 15px 0 0;
  font-size: 16px;
  color: #0b5aa0;
}
.location .location-details ul li p {
  margin: 0;
  text-transform: capitalize;
}
.location .location-details ul li p span {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
}

/* why-choose-us */
.why-choose-us {
  margin-bottom: 50px;
}
.why-choose-us p.why-choose-para {
  text-align: center;
  width: 60%;
  margin: 0 auto 35px;
}
.why-choose-us .why-choose-us-items {
  transition: all 0.6s ease;
  height: 100%;
  border: 1px solid #eee;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  text-align: center;
}
.why-choose-us .why-choose-us-items:hover {
  transform: translateY(-10px);
  background: linear-gradient(to top, #f60e5e, #fc3e0e);
}
.why-choose-us .why-choose-us-items:hover h3,
.why-choose-us .why-choose-us-items:hover p {
  color: #fff;
  transition: 0.6s;
}
.why-choose-us .why-choose-us-items img {
  width: 100%;
}
.why-choose-us .why-choose-us-items h3 {
  transition: 0.6s;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

/*services-inner-page*/

.all-services figure.img-effect img {
  width: 100%;
  animation: img-border 3s linear infinite alternate;
  border-radius: 25% 25% 23% 13%/50% 27% 50% 10%;
  transition: all 0.3s ease-out 0s;
  height: 600px;
  object-fit: cover;
}

@keyframes img-border {
  0% {
    border-radius: 25% 35% 23% 13%/60% 28% 40% 10%;
  }
  100% {
    border-radius: 30% 40% 28% 72%/53% 49% 31% 47%;
  }
}

.all-services .refrigerator-content h4 {
  font-size: 20px;
  color: #fff;
}

.all-services {
  margin: 70px 0 70px 0;
}
.all-services .refrigerator-content ul li {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.all-services .refrigerator-content ul li:before {
  content: "\f0a4";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;

  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.all-services-link ul {
  background: #eee;
}
.all-services-link ul li.view-all-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eeeeeeb3;
  box-shadow: 1px 2px 5px #ddddddbf;
  margin: 0 0 10px 0;
}
.all-services-link ul li.view-all-services a:after {
  display: none;
}

.all-services-link ul li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  transition: all 0.6s linear;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.all-services-link ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background: #fe991c;
  transition: all 0.6s linear;
}

.all-services-link ul li a:after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px;
  color: #eee;
  transition: 0.6s;
  opacity: 0;
  transform: translateY(-50%);
}
.all-services-link ul li a:hover:after {
  right: 0px;
  opacity: 1;
  color: #fc9515;
}

.all-services-link ul li a.active {
  background: #0b5aa0;
  color: #fff;
}
.all-services-link ul li a.active:before {
  width: 4px;
}
.all-services-link ul li a.active:after {
  opacity: 1;
}

.all-services-link ul li a:hover {
  background: #0b5aa0;
  color: #fff;
}
.all-services-link ul li a:hover:before {
  width: 4px;
}
.all-services .all-services-content h3 {
  font-weight: 700;
}
.all-services .all-services-content p {
  text-align: justify;
}
.all-services .all-services-content p strong {
  font-size: 18px;
  color: #0b5aa0;
}
.all-services .all-services-content figure {
  margin: 0;
  position: relative;
}
.all-services .all-services-content figure:before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  background: #0b5aa0;
  z-index: -1;
}
.all-services .all-services-content .col-lg-6:nth-child(5) figure:before {
  top: -12px;
  left: -12px;
}
.all-services .all-services-content figure img {
  width: 100%;
}

/*products-wraper-inner-page*/

@media only screen and (max-width: 1199px) {
  .heading,
  .headingleft {
    font-size: 30px;
  }

  /*header*/
  header .logo h1 a {
    font-size: 24px;
    line-height: 34px;
  }
  header .logo h1 a span:after {
    width: 65px;
  }
  .menubar ul li a {
    font-size: 14px;
    margin: 28px 15px 28px 0;
  }
  .menubar ul li a i {
    font-size: 10px;
    margin-left: 5px;
  }
  .head-btn ul li:first-child a {
    border-bottom: 2px solid #000;
    font-size: 13px;
  }
  .head-btn ul li:first-child a i {
    font-size: 12px;
    margin-left: 2px;
  }
  .head-btn ul li:last-child {
    margin-left: 15px;
    width: 50px;
    height: 43px;
  }

  /*slider*/
  .slider .carousel-caption-content h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .slider .carousel-caption-content {
    left: 11%;
  }
  /*about*/
  .about .about-list ul li {
    margin: 7px 20px 20px 20px;
  }

  /*services*/
  .services .services-list .services-content {
    height: 70%;
  }
  .services .services-list .services-content figure h3 {
    font-size: 18px;
    margin: 0 0 0 10px;
  }
  .services .services-list .services-content p {
    height: 220px;
  }

  /*copyright*/
  .copyright p {
    color: #ddd;
    margin: 0;
    font-size: 13px;
  }

  /*innerpage-heading*/
  .innerpage-heading h1 {
    width: 70%;
  }

  /*why-choose-us*/

  /*all-services*/
  .all-services .all-services-content figure:before {
    display: none;
  }
  .all-services-link ul li a {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*MOBILE-MENU*/
.mobile-navbar {
  display: none;
}
@media only screen and (max-width: 960px) {
  /*MOBILE-MENU*/
  .mobile-navbar {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .mobile-navbar a i {
    font-size: 25px;
    color: #0b5aa0;
  }

  p {
    font-size: 18px;
    text-align: center;
  }
  h2 {
    font-size: 23px;
  }

  .offset-1 {
    margin-left: 0;
  }
  .row {
    row-gap: 20px;
  }

  /*heading*/
  .heading,
  .headingleft {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    width: 90%;
    margin: 0 auto 15px;
  }

  /*offcanvas*/
  .offcanvas h5 img {
    width: 170px;
  }
  .offcanvas-body ul li a {
    margin-bottom: 6px;
  }
  .offcanvas-body ul li a i {
    font-size: 14px;
    margin-right: 10px;
  }

  /*btn-primary*/
  .btn-primary {
    padding: 6px 15px;
    font-size: 20px;
  }

  /*back-to-top*/
  #button {
    bottom: 95px;
    right: 9px;
  }


  /*header*/
  header .row {
    row-gap: 0px;
  }
  header .logo {
    margin: 15px 0;
  }
  header .menubar {
    display: none;
  }
  header .head-btn {
    display: none;
  }

  /*slider*/
  .slider {
    margin-bottom: 35px;
  }
  .slider img {
    height: 190px;
    object-fit: cover;
  }
  .slider .carousel-caption-content {
    width: 100%;
    height: 100%;
    left: 0;
    padding: 10px 0 0 15px;
    background: #ffefefc2;
  }
  .slider .carousel-caption-content h1 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .slider .carousel-caption-content p {
    font-size: 14px;
    width: 80%;
    margin-bottom: 10px;
    line-height: normal;
    text-align: left;
  }

  /*about*/
  .about {
    margin: 0 0 35px 0;
  }

  .about figure img {
    height: auto;
  }
  .about figure {
    margin: 0;
  }
  .about .heading {
    margin: 0 auto 10px;
  }
  .about .about-list ul li {
    margin: 0px 7px 10px 7px;
    font-size: 15px;
  }
  .about .about-list ul li i {
    font-size: 14px;
    margin: 0 6px 0 0;
  }

  /*services*/
  .services {
    margin: 35px 0;
  }
  .services .heading {
    width: 90%;
  }
  .services .col-lg-3:nth-child(2) .services-list,
  .services .col-lg-3:nth-child(4) .services-list,
  .services .col-lg-3:nth-child(6) .services-list {
    margin-top: 0px;
  }
  .services .services-list .services-content {
    padding: 16px;
    height: auto;
    text-align: center;
  }
  .services .services-list .services-content figure {
    margin: 0 0 13px 0;
    padding-bottom: 13px;
    justify-content: center;
  }
  .services .services-list .services-content p {
    height: auto;
  }

  /* refrigerator */
  .refrigerator .refrigerator-content,
  .washing .washing-content,
  .microwave .microwave-content,
  .air-conditioner .air-conditioner-content {
    padding: 15px;
    margin: 0px;
    text-align: center;
  }
  .refrigerator,
  .washing,
  .microwave,
  .air-conditioner {
    margin-bottom: 35px;
  }
  .refrigerator .refrigerator-content h3,
  .washing .washing-content h3,
  .microwave .microwave-content h3,
  .air-conditioner .air-conditioner-content h3 {
    font-size: 22px;
    margin-bottom: 7px;
  }

  .all-category .washing .row,
  .air-conditioner .row {
    flex-direction: column-reverse;
  }

  /*faq*/
  .faq .accordion-item .accordion-button {
    font-size: 17px;
    margin: 0 0 8px 0;
  }
  .faq .accordion-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  /*footer*/
  footer {
    padding: 35px 0 0 0;
    margin-top: 30px;
  }
  footer .footer-logo {
    width: 100%;
  }
  footer .footer-logo p {
    margin: 0 0 0px 0;
    text-align: justify;
  }
  footer input[type="email"] {
    padding: 15px;
    border-radius: 5px;
  }
  footer input[type="submit"] {
    padding: 14px 16px;
    border-radius: 0px 5px 5px 0px;
  }
  footer h3 {
    margin-bottom: 8px;
  }
  footer ul.footer-menu li a {
    margin-bottom: 5px;
  }

  footer .footer-info-item {
    margin: 0px 0 0 0;
  }
  footer .footer-info-mobile {
    margin: 40px 0 0 0;
  }
  footer .footer-info-item p {
    margin: 0 0 0 10px;
  }
  footer .footer-info-item p a {
    font-size: 17px;
  }

  /*copyright*/
  .copyright {
    padding-top: 20px;
  }
  .copyright p {
    text-align: center;
  }
  .copyright ul.justify-content-end {
    justify-content: center !important;
  }

  .contact-form .contact-details {
    padding: 30px 15px 10px 15px;
  }

  .all-services figure.img-effect img {
    height: auto;
  }
  /*innerpage-heading*/
  .innerpage-heading {
    padding: 28px 0 10px 0;
    margin-bottom: 35px;
  }
  .innerpage-heading h1 {
    font-size: 26px;
    width: 100%;
    line-height: 32px;
  }
  .innerpage-heading ul li {
    margin: 10px 7px 0 0;
    font-size: 14px;
  }

  /*about-page*/

  .why-choose-us p.why-choose-para {
    width: 100%;
    margin: 0 auto 15px;
  }
  .why-choose-us .why-choose-us-items {
    padding: 20px 20px 10px 20px;
  }
  .why-choose-us .why-choose-us-items h3 {
    margin: 10px 0 5px 0;
  }

  /*contact-page*/
  .contact-form {
    padding: 0;
    margin-bottom: 35px;
  }

  .contact-form .col-lg-5 {
    order: 2;
  }
  .contact-form ul li p {
    text-align: left;
  }
  .contact-form ul li p a {
    font-size: 15px;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    margin: 0 0 10px 0;
    padding: 15px 30px;
  }
  .contact-form input[type="submit"] {
    width: 40%;
  }
  textarea {
    margin-bottom: 15px !important;
    height: 80px;
  }

  /*services-page*/
  .all-services .col-lg-3 {
    order: 2;
  }
  .all-services-link ul li a {
    padding: 4px 15px;
    font-size: 14px;
  }

  .all-services {
    margin: 0px 0 0 0;
  }
  .all-services .all-services-content figure:before {
    display: none;
  }

  .all-services .all-services-content .col-lg-6:nth-child(4) .col-lg-6 {
    order: 3;
  }
}

/* lg-service-center-in-mumbai.php */

/*breadcrumb*/
/*.breadcrumb {*/
/*  background: url(../images/breadcrumb-bg.png) no-repeat center center / cover;*/
/*  padding: 50px 0;*/
/*  border-radius: 0% 0% 40% 0% / 0% 0% 40% 0%;*/
/*  background-color: #a50034;*/
/*}*/
/*.breadcrumb figure {*/
/*  width: 120px;*/
/*  margin: 0 auto 10px;*/
/*  background: #fff;*/
/*  padding: 5px;*/
/*  border-radius: 10px;*/
/*}*/
/*.breadcrumb figure img {*/
/*  width: 100%;*/
/*  filter: brightness(1.3);*/
/*}*/
/*.breadcrumb h1 {*/
/*  font-weight: 700;*/
/*  text-align: center;*/
/*  color: #fff;*/
/*}*/
/*.breadcrumb ul li {*/
/*  margin: 0 10px;*/
/*  color: #fff;*/
/*}*/

/*.all-category-flex {*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/
/*.all-category figure {*/
/*  margin: 0;*/
/*  position: relative;*/
/*  width: 50%;*/
/*  height: 650px;*/
/*}*/
/*.washing,*/
/*.air-conditioner {*/
/*  margin-bottom: 0px;*/
/*}*/
/*.refrigerator figure img,*/
/*.washing figure img,*/
/*.microwave figure img,*/
/*.air-conditioner figure img {*/
/*  width: 100%;*/
/*  border-radius: 10px 0 0 10px;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/
/*.refrigerator .refrigerator-content,*/
/*.washing .washing-content,*/
/*.microwave .microwave-content,*/
/*.air-conditioner .air-conditioner-content {*/
/*  background: url(../images/bg-image.jpg) no-repeat center center / cover;*/
/*  padding: 20px;*/
/*  border-radius: 0 10px 10px 0;*/
/*  width: 50%;*/
/*  margin-left: 0;*/
/*  margin-right: 0;*/
/*  height: 650px;*/
/*}*/

/*@media only screen and (max-width: 991px) {*/
/* breadcrumb */
/*  .breadcrumb {*/
/*    padding: 10px 0 50px 0;*/
/*  }*/
/*  .breadcrumb h1 {*/
/*    font-size: 20px;*/
/*  }*/
/*  .breadcrumb ul li {*/
/*    margin: 0 5px;*/
/*    font-size: 14px;*/
/*  }*/
/*}*/
