@import url("https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");
/*-------- Mixin ---------*/
/*-------- End ---------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Hind Vadodara", sans-serif;
}

::-moz-selection {
  background-color: #0179ca;
  color: #fff;
}

::selection {
  background-color: #0179ca;
  color: #fff;
}

h1,
h2 h3,
h4,
h5,
h6 {
  color: #0179ca;
  font-family: "Hind Vadodara", sans-serif;
}

p,
a,
div,
span,
ul,
li {
  margin: 0;
  padding: 0px;
  list-style: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Hind Vadodara", sans-serif;
  color: #797582;
}

p {
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.text-justify {
  text-align: justify;
}

.spacing {
  padding: 80px 0;
}

.call-to-action {
  padding: 12px;
}

.list-item {
  margin: 12px 0;
}
.list-item li {
  padding-left: 50px;
  position: relative;
}
.list-item li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../icons/done.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #0179ca;
  background-size: 10px;
  left: 0;
  margin: 2px;
}

.main-heading {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #232323;
  text-transform: capitalize;
}

.heading-title {
  font-size: 16px;
  font-weight: 400;
  color: #0179ca;
  position: relative;
  padding-left: 50px;
  text-transform: uppercase;
}
.heading-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 40px;
  background: #0179ca;
}

.heading-wrap {
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.heading-wrap .main-heading {
  margin-bottom: 0;
}
.heading-wrap p {
  padding: 0;
  margin: 0;
}

.sub-heading {
  font-size: 28px;
  font-weight: 400;
  color: #0179ca;
  margin-bottom: 10px;
}

.sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #232323;
  margin: 15px 0;
}

.bg {
  background-color: #e6f5ff;
}

.fit {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*================ End ================ */
/*================ theme-btn ================*/
.theme-btn {
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 12px 30px;
  line-height: 1;
  transition: 0.4s all ease-in-out;
  text-align: center;
  background-color: #0179ca;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: none;
}
.theme-btn span {
  color: #fff;
}
.theme-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  animation: top 2s linear infinite;
  animation-delay: 1s;
}
.theme-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  animation: bottom 2s linear infinite;
  animation-delay: 1s;
}
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  animation: right 2s linear infinite;
}
.theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  animation: left 2s linear infinite;
}
.theme-btn:hover {
  background-color: #58b8f8 !important;
}

@keyframes left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes top {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes bottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
/*================ end Css ================ */
/*================ Header Css ================ */
header {
  width: 100%;
  box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .navbar-brand {
  padding: 0;
  margin: 0;
}
header .navbar-brand .logo {
  height: 100%;
  width: 70%;
  padding-left: 10%;
}
header .navbar {
  padding: 0;
}
header .navbar .navbar-collapse .navbar-nav {
  gap: 2rem;
}
@media (991.98px <= width <= 1020px) {
  header .navbar .navbar-collapse .navbar-nav {
    gap: 1.5rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  margin: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  transition: all 500ms ease;
  padding: 0;
  white-space: nowrap;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #0179ca;
}
@media (991.98px <= width <= 1100px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border-top: none;
  margin-left: 0;
  vertical-align: -3px;
  transition: all 500ms ease;
}
header .navbar .navbar-collapse .navbar-nav .nav-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 991px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  display: block;
  border: none;
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transform: translateY(10px);
  transition: all 500ms ease;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 18px;
  color: #232323;
  font-weight: 400;
  transition: all 500ms ease;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  color: #0179ca;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}
header .navbar .header-btn {
  background-color: #0179ca;
  padding: 12px 16px;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  margin-left: 2rem;
}
header .navbar .header-btn i {
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  padding: 15px;
  color: #0179ca;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 55px;
}
header .navbar .header-btn .text {
  padding-left: 10px;
}
header .navbar .header-btn .text span {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
header .navbar .header-btn .text p {
  color: #fff;
  text-align: center;
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

/*================ end Css ================ */
/* ============= Home Slider Section =============*/
.hero-section {
  width: 100%;
  position: relative;
}
.hero-section .banner-slide {
  background-image: linear-gradient(rgba(56, 31, 199, 0.2), rgba(23, 86, 204, 0.2)), url(../img/slider/slider-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 40%;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
}
.hero-section .banner-slide .slider-one__shape-1 {
  background-image: url(../img/slider/top-slide.png);
  background-repeat: repeat-x;
  position: absolute;
  z-index: 9;
  height: 10rem;
  width: 100%;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 26s linear infinite;
  top: 0;
}
@keyframes moveSlideshow {
  25% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(5%);
  }
  75% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
.hero-section .banner-slide .text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.hero-section .banner-slide .slider-heading {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
}
.hero-section .banner-slide .theme-btn span {
  padding: 18px 50px;
}

/*================ End ================ */
/*======= Home about sec ========*/
.home-about-sec .about-img {
  position: relative;
}
.home-about-sec .about-img .img-second {
  position: absolute;
  bottom: -15px;
  right: 60px;
}
.home-about-sec .about-img .shape {
  background: url(../img/home/home-about-bg.png);
  background-repeat: no-repeat;
  height: 366px;
  position: absolute;
  left: -280px;
  bottom: -4rem;
  width: 503px;
  z-index: -1;
}
.home-about-sec .about-img .experience-wrap {
  width: 18rem;
  display: flex;
  background-color: white;
  padding: 18px 38px;
  box-shadow: 0 0 43px 0 rgba(0, 0, 0, 0.07);
  border-right: 12px solid #0179ca;
  border-radius: 4rem 0 0 4rem;
  position: absolute;
  left: 0;
  right: 60px;
  margin: auto;
  bottom: -3rem;
}
.home-about-sec .about-img .experience-wrap span {
  display: block;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #0179ca;
  line-height: 1;
  margin-right: 40px;
  margin-top: -8px;
}
.home-about-sec .about-img .experience-wrap p {
  font-size: 18px;
  font-weight: 600;
  color: #666;
}
.home-about-sec .service-box {
  background-color: #f9f6ff;
  padding: 1rem;
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.home-about-sec .service-box i {
  font-size: 38px;
  margin: 10px 0;
  color: #0179ca;
}
.home-about-sec .service-box a {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  transition: all 0.5s ease;
}
.home-about-sec .service-box a:hover {
  color: #0179ca;
}

/*======= end =======*/
/*========== Testimonial ========== */
.testimonials {
  background: url(../img/testimonial/testimonial-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}
.testimonials .testimonial .item {
  text-align: center;
  padding: 40px;
  opacity: 0.2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}
.testimonials .testimonial .item .shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid #0179ca;
}
.testimonials .testimonial .item .testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190e7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
.testimonials .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.testimonials .owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
.testimonials .testimonial.owl-carousel .owl-dots .owl-dot.active span,
.testimonials .testimonial.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190e7;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
.testimonials .testimonial.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.testimonials .testimonial.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.testimonials .testimonial.owl-carousel .owl-dots .owl-dot span {
  background: #3190e7;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

/*======= end ============*/
/*================ Breadcrumb Css ================ */
.breadcrumb-section {
  background: url(../img/services/breadcrumb/breadcrumb.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30vh;
  display: flex;
}
.breadcrumb-section .breadcrumb-item.active {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
}

/*================ end Css ================ */
/*================ Our Services Css ================ */
.our-services .card {
  padding: 2rem 1rem 1rem;
  box-shadow: 1px 1px 10px rgba(51, 117, 211, 0.1);
  border: 0;
  transition: all 0.5s ease-in-out;
  height: 90%;
  margin-bottom: 2rem;
}
.our-services .card:hover {
  background: #0179ca;
  color: #fff;
}
.our-services .card:hover::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: 0.3s;
  z-index: 0;
}
.our-services .card:hover .card-header img {
  filter: brightness(0) invert(1);
}
.our-services .card:hover .card-header img.filter {
  filter: brightness(0) invert(1);
}
.our-services .card:hover .card-body .heading {
  color: #fff;
}
.our-services .card:hover p {
  color: #fff;
}
.our-services .card:hover p::before {
  border: 1px solid #0179ca;
  background-color: #fff;
}
.our-services .card .card-header {
  background-color: transparent;
  border-bottom: 0;
  transition: all 0.5s ease-in-out;
  padding: 0 15px;
}
.our-services .card .card-header img {
  width: 95px;
}
.our-services .card .card-header img.filter {
  filter: invert(32%) sepia(64%) saturate(7490%) hue-rotate(190deg) brightness(101%) contrast(99%);
}
.our-services .card .card-body {
  position: relative;
}
.our-services .card .card-body .heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
  color: #0179ca;
  position: relative;
  z-index: 1;
  transition: all 500ms ease-in-out;
}
.our-services .card .card-body .heading:hover {
  opacity: 0.6;
}
.our-services .card.city-service-card {
  padding: 1rem;
  text-align: center;
}
.our-services .card.city-card {
  padding: 1rem;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1rem;
}
.our-services .card.city-card:hover a {
  color: #fff;
}
.our-services .card.city-card a {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/*================ end Css ================ */
/*================ Why choose us ================ */
.why-choose-us .main-counter-box {
  background-color: #e9f6ff;
  padding: 50px;
}
.why-choose-us .main-counter-box .counter-box {
  margin: 10px;
  background-color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 1px 1px 10px rgba(51, 117, 211, 0.1);
}
.why-choose-us .main-counter-box .counter-box .counter-box-text .number {
  font-size: 55px;
  font-weight: 700;
  color: #0179ca;
  margin: 0;
}
.why-choose-us .call-to-action {
  padding: 0;
}
.why-choose-us .call-to-action ul li {
  display: flex;
}
.why-choose-us .call-to-action ul li:last-child {
  margin: 0;
}
.why-choose-us .call-to-action ul li .list-number {
  color: #c8c8c8;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.why-choose-us .call-to-action ul li .wraper {
  padding-left: 1rem;
}
.why-choose-us .call-to-action ul li .wraper .heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  color: #0179ca;
}

/*================ end Css ================ */
/*================ Service Deatils Css ================ */
.services-deatils {
  background-color: #00204b;
}
.services-deatils .heading-wrap {
  text-align: center;
}
.services-deatils .heading-wrap .heading-title {
  color: #fff;
}
.services-deatils .heading-wrap .heading-title::before {
  background: #fff;
}
.services-deatils .heading-wrap .main-heading {
  color: #fff;
}
.services-deatils .sub-heading {
  color: #fff;
}
.services-deatils .card {
  height: calc(100% - 25px);
  margin-bottom: 2rem;
  padding: 15px;
}
.services-deatils .card .card-header {
  background-color: #fff;
  border-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.services-deatils .card .card-header .title {
  font-size: 18px;
  color: #39b9ed;
  font-weight: 700;
  padding: 12px 0;
  margin: 0;
}
.services-deatils .card .card-header img {
  width: 4rem;
  margin-right: 10px;
}
.services-deatils .card .card-header img.filter {
  filter: invert(32%) sepia(64%) saturate(7490%) hue-rotate(190deg) brightness(101%) contrast(99%);
}
.services-deatils .card .card-header img:before {
  display: block;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  background-color: #fdce08;
  content: "";
}
.services-deatils .card .card-body {
  position: relative;
}

/*================ end Css ================ */
/*================ service-why-choose ================ */
.service-why-choose .why-choose-wraper {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1rem;
  display: flex;
  margin: 2rem 0;
  transition: 0.3s all ease-in-out;
}
.service-why-choose .why-choose-wraper:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.service-why-choose .why-choose-wraper:first-child {
  margin-top: 0;
}
.service-why-choose .why-choose-wraper:last-child {
  margin-bottom: 0;
}
.service-why-choose .why-choose-wraper .counter-box {
  margin-right: 1rem;
  font-size: 32px;
  font-weight: 900;
  padding: 10px;
  background: #0179ca;
  color: #fff;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #0179ca;
  outline-offset: 3px;
  outline-style: dashed;
}
.service-why-choose .why-choose-wraper .heading {
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
  color: #0179ca;
}

.aside-wrap {
  background-color: rgb(230, 245, 255);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 10px 0px;
}
.aside-wrap .contact-form {
  padding: 0;
  text-align: center;
}
.aside-wrap .contact-form .heading-title {
  font-size: 12px;
}
.aside-wrap .contact-form .main-heading {
  font-size: 26px;
  text-align: center;
}

.help-widget {
  background-color: rgb(230, 245, 255);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 10px 0px;
  padding: 1.5rem;
}
.help-widget .heading-widget {
  display: flex;
  align-items: center;
}
.help-widget .heading-widget .heading {
  font-size: 24px;
  margin: 0;
  color: #0179ca;
}
.help-widget .heading-widget img {
  width: 40px;
  margin-left: 10px;
  filter: invert(32%) sepia(64%) saturate(7490%) hue-rotate(190deg) brightness(101%) contrast(99%);
}
.help-widget .contact-list li i {
  padding-right: 10px;
  color: #0179ca;
}

/*================ end Css ================ */
/*================ how works ================ */
.how-works .card {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.4s all ease-in-out;
  border-radius: 5px;
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
}
.how-works .card:hover {
  transform: translateY(-10px);
}
.how-works .card .card-head {
  display: flex;
  justify-content: center;
  padding: 15px;
  background-color: #0179ca;
  border-radius: 5px 5px 0 0;
}
.how-works .card .card-head .img-wrap {
  border-radius: 50%;
  outline: 1px solid;
  outline-offset: 5px;
  color: #0179ca;
}
.how-works .card .card-head .img-wrap img {
  height: 140px;
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(15) brightness(24.5);
}
.how-works .card .card-body .card-heading {
  font-size: 20px;
  color: #0179ca;
}

/*================ end Css =============== */
/*============= home-process ============= */
.process-widget {
  position: relative;
  background-color: #b7a8e3;
  background: gray url(../img/services/process-bg.jpg) repeat 0 0;
  box-sizing: border-box;
  animation: slide 20s linear infinite;
}
.process-widget .nav-pills {
  justify-content: space-evenly;
  position: relative;
}
.process-widget .nav-pills .nav-item {
  position: relative;
  text-align: center;
}
.process-widget .nav-pills .nav-item .nav-link {
  font-size: calc(4rem - 7px);
  position: relative;
  z-index: 99;
  font-weight: 900;
  color: #d5d5d5;
  width: 100%;
  margin-bottom: 0;
  line-height: 1;
}
.process-widget .nav-pills .nav-item .title {
  font-size: 18px;
  color: #232323;
}
.process-widget .nav-pills .nav-item .active {
  background-color: transparent !important;
  color: #0179ca !important;
}
.process-widget .nav-pills .nav-item .active ~ .title {
  color: #0179ca;
}

.tab-content .tab-pane {
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 2px 0px;
  background-color: #58b8f8;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.tab-content .tab-pane p {
  color: #fff;
}

.request-quote {
  display: flex;
  background: rgb(230, 245, 255);
  padding: 1.5rem;
  height: 100%;
  border-radius: 5px;
  transition: 0.4s all ease-in-out;
}
.request-quote:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.request-quote .icon-widget {
  background-color: #0179ca;
  padding: 18px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.request-quote .icon-widget i {
  color: #fff;
  font-size: 1.5rem;
}
.request-quote .content {
  margin-left: 1rem;
}

/*================ end Css ================ */
/* ======== accordion =======*/
.accordion {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 10px;
}
.accordion .accordion-header {
  padding: 0.828rem;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion .accordion-header {
    padding: 10px 1rem 10px 10px;
  }
}
.accordion .accordion-header::before {
  content: "+";
  font-size: 1.5rem;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .accordion .accordion-header::before {
    right: 5px;
  }
}
.accordion.active .accordion-header {
  background-color: #0179ca;
  color: #fff;
}
.accordion.active .accordion-header::before {
  content: "-";
}
.accordion .accordion-body {
  padding: 0 0.828rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.5s;
}
.accordion .accordion-body p {
  border-bottom: none;
  margin: 0.828rem 0;
}

/* ======== End =======*/
/* ======== Footer CSS =======*/
footer {
  background: url(../img/footer/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 50%;
  width: 100%;
  padding: 80px 0 0;
}
footer .logo {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(17deg) brightness(106%) contrast(105%);
  width: 240px;
}
footer p {
  color: #aca2c1;
  padding: 10px;
  font-size: 16px;
}
footer .title {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin: 20px 0;
  letter-spacing: 1px;
  display: block;
}
footer .title::after {
  content: "";
  width: 40px;
  height: 2px;
  display: block;
  background-color: #0179ca;
  margin-top: 0;
}
footer .footer-list li {
  font-size: 16px;
  padding: 0 0 3px;
  color: #aca2c1;
  display: flex;
}
footer .footer-list li i {
  padding-right: 10px;
  color: #fff;
}
footer .footer-list li a {
  text-decoration: none;
  color: #aca2c1;
  font-size: 16px;
  word-break: break-all;
  transition: all 0.5s ease;
}
footer .footer-list li a:hover {
  color: #fff;
}
footer .footer-list li .form-control {
  border-radius: 0;
  height: 55px;
  margin: 1rem 0 0;
}
footer .footer-list li .form-control:focus {
  box-shadow: none;
}
footer .social-item {
  display: flex;
  margin: 10px 0;
}
footer .social-item a {
  padding: 10px;
  color: #aca2c1;
  font-size: 24px;
  margin: 5px;
  transition: all 0.5s ease;
}
footer .social-item a:hover {
  color: #fff;
}
footer .footer-copyright {
  width: 100%;
  background-color: #0d0421;
  padding: 1rem;
  margin-top: 4rem;
}
footer .footer-copyright span {
  font-size: 12px;
  color: #aca2c1;
  display: flex;
  justify-content: center;
}
footer .footer-copyright span a {
  font-size: 12px;
  color: #0179ca;
  padding-left: 10px;
  transition: all 0.5s ease;
}
footer .footer-copyright span a:hover {
  color: #fff;
}
footer .footer-copyright .nav-link {
  font-size: 14px;
  color: #0179ca;
  margin: 0 10px;
  transition: 0.3s all ease-in-out;
}
footer .footer-copyright .nav-link:hover {
  color: #fff;
}

.floating-icons {
  position: fixed;
  z-index: 99;
  width: 100%;
  bottom: 2rem;
}
.floating-icons .whatsapp {
  float: right;
}
.floating-icons .whatsapp a {
  position: relative;
  z-index: 9;
  right: 5px;
}
.floating-icons .whatsapp a img {
  width: 55px;
}
.floating-icons .enquiry {
  position: relative;
  left: 5px;
}

.modal {
  top: 10%;
}
.modal .modal-content {
  border: none;
}
.modal .modal-content .close-btn-wrap .btn-close {
  position: absolute;
  right: -10px;
  top: -15px;
  z-index: 9;
  background: #0179ca;
  padding: 6px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.3s all ease-in-out;
}
.modal .modal-content .close-btn-wrap .btn-close i {
  color: #fff;
}
.modal .modal-content .close-btn-wrap .btn-close:hover {
  background-color: #58b8f8;
}
.modal .modal-content .modal-body {
  padding: 0;
}
.modal .modal-content .modal-body .contact-form {
  padding: 20px 22px;
  border-radius: 0 0 10px 10px;
}
.modal .modal-content .modal-body .contact-form .field-wrapper {
  margin-bottom: 12px;
}
.modal .modal-content .modal-body .contact-form .main-heading {
  font-size: 16px;
  text-align: left;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  transform: translate(-48px, -32px);
  background: #0179ca;
  padding: 12px 15px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
.modal .modal-content .modal-body .contact-form .main-heading::before {
  content: "";
  position: absolute;
  height: 11px;
  width: 23px;
  background-color: #0179ca;
  left: 2px;
  bottom: -6px;
  transform: rotate(25deg);
}
.modal .modal-content .modal-body .contact-form textarea {
  height: 100px;
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.8;
}

/* ================ End ============*/
/* ============= Contact Us Page ===============*/
.contact-form {
  background-color: rgb(230, 245, 255);
  padding: 40px 50px;
}
.contact-form .main-heading {
  display: block;
}
.contact-form .field-wrapper {
  display: block;
  margin-bottom: 24px;
  position: relative;
  outline: none;
  width: 100%;
}
.contact-form .field-wrapper .iti {
  width: 100%;
}
.contact-form .field-wrapper label {
  white-space: nowrap;
  overflow: hidden;
  font-size: 15px;
  position: absolute;
  top: 8px;
  display: inline-block;
  background: #fff;
  margin: 8px 5px;
  line-height: 1.4em;
  padding: 0 10px;
  transition: all 0.2s linear;
  text-transform: capitalize;
  color: #828085;
  font-weight: 400;
}
.contact-form .field-wrapper input {
  padding: 10px 15px;
  width: 100%;
  border-radius: 0;
  border: none;
  height: 55px;
  color: #828085;
}
.contact-form .field-wrapper textarea {
  height: 138px;
  width: 100%;
  padding: 10px 15px;
  resize: none;
  color: #828085;
  border-radius: 0;
  border: none;
}
.contact-form .field-wrapper input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  padding-left: 55px;
}
.contact-form .field-wrapper .text-field-input:focus {
  border: 1px solid #0179ca;
}
.contact-form .field-wrapper .text-field-input:focus-visible {
  outline: none;
}
.contact-form .number label {
  margin-left: 82px;
  z-index: 1;
}
.contact-form .field-wrapper.focused label {
  transition: all 0.2s linear;
  top: -20px;
}

.contact-aside {
  height: 100%;
  position: relative;
}
.contact-aside .contact-details .contact-list li {
  margin-bottom: 48px;
  overflow-wrap: anywhere;
  background-color: rgb(230, 245, 255);
  padding: 45px;
}
@media screen and (max-width: 767px) {
  .contact-aside .contact-details .contact-list li {
    padding: 15px;
  }
}
.contact-aside .contact-details .contact-list li .heading {
  font-size: 22px;
  color: #232323;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contact-aside .contact-details .contact-list li .heading {
    font-size: 18px;
  }
}
.contact-aside .contact-details .contact-list li .detail {
  color: #0179ca;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  transition: all 0.5s ease;
}
.contact-aside .contact-details .contact-list li .detail i {
  color: #0179ca;
  padding-right: 10px;
}
.contact-aside .contact-details .contact-list li .detail:hover {
  opacity: 0.5;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============= End ============*/
/* ============ About Us Page ============*/
/* ----------- Breadcrumb -----------*/
.breadcrumb-wraper {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/contact-us/breadcrumb-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30vh;
  display: flex;
}
.breadcrumb-wraper .breadcrumb-heading {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.breadcrumb-wraper .breadcrumb {
  justify-content: center;
  margin: 0;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 14px;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item a {
  color: #58b8f8;
  font-size: 14px;
  transition: all 500ms ease;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item a:hover {
  opacity: 0.8;
}
.breadcrumb-wraper .breadcrumb .breadcrumb-item:first-child::before {
  content: "\f015";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #0179ca;
  font-size: 14px;
  top: -2px;
  position: relative;
  right: 5px;
}

/* ----------- End -----------*/
.about-wraper .about-list {
  grid-column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 16px 0;
}
@media screen and (max-width: 450px) {
  .about-wraper .about-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-wraper .about-list li {
  align-items: center;
  counter-increment: aboutNumber;
  display: flex;
}
.about-wraper .about-list li::before {
  align-items: center;
  background-color: #0179ca;
  border-radius: 50%;
  color: #fff;
  content: counters(aboutNumber, "0", decimal-leading-zero);
  display: flex;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  letter-spacing: 0;
  margin-right: 20px;
  text-align: center;
  width: 58px;
}
.about-wraper .img-box {
  position: relative;
  text-align: center;
}
.about-wraper .img-box::before {
  background-image: linear-gradient(55deg, #0179ca 0, #0179ca 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(3deg);
  width: 87%;
  margin: auto;
}
.about-wraper .img-box img {
  height: 100%;
  position: relative;
}

/*------------- we offer ----------*/
.offer-banner {
  background: url(../img/about/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 80px 0;
}
.offer-banner .heading-title {
  color: #fff;
}
.offer-banner .heading-title::before {
  background: #fff;
}
.offer-banner .main-heading {
  color: #fff;
}
.offer-banner .offer-box {
  text-align: center;
  border: 1px dashed;
  padding: 38px 0;
  transition: all 0.5s ease;
  position: relative;
}
.offer-banner .offer-box i {
  font-size: 52px;
  color: #fff;
}
.offer-banner .offer-box .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-top: 14px;
  position: relative;
  text-align: center;
  margin: 0;
}
.offer-banner .offer-box .title::after {
  content: "";
  position: absolute;
  width: 40%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  text-align: center;
}
.offer-banner .offer-box:hover {
  background-color: #0179ca;
}
.offer-banner .offer-box:hover .title::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/*------------- Our Vision ----------*/
.our-vision .img-box {
  position: relative;
}
.our-vision .img-box::before {
  background-color: #c6e8ff;
  border-radius: 50%;
  content: "";
  height: 490px;
  right: -15px;
  position: absolute;
  top: 50px;
  width: 490px;
  z-index: 0;
}
.our-vision .img-box::after {
  background: #0179ca;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 208px;
  left: 71px;
  position: absolute;
  width: 208px;
  z-index: 1;
}
.our-vision .img-box img {
  height: 100%;
  position: relative;
  z-index: 2;
}
.our-vision .vision-wraper ul li {
  display: flex;
  margin-bottom: 2rem;
}
.our-vision .vision-wraper ul li:last-child {
  margin-bottom: 0;
}
.our-vision .vision-wraper ul li i {
  color: #fff;
  padding: 32px;
  background: #0179ca;
  border-radius: 50%;
  margin-right: 18px;
  width: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 32px;
  height: 50px;
}
.our-vision .vision-wraper ul li .heading {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  color: #0179ca;
}
.our-vision .main-heading {
  text-align: center;
}

/*------------- Project banner ----------*/
.project-banner {
  background-color: #0179ca;
  position: relative;
  width: 100%;
  padding: 70px;
}
.project-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  border: 2px solid #fff;
  z-index: 0;
}
.project-banner .content {
  padding: 20px;
}
.project-banner .content .text {
  font-size: 20px;
  color: #e3dbf5;
  font-weight: 500;
  text-transform: uppercase;
}
.project-banner .content .heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 7px 0;
}
.project-banner .content .theme-btn {
  background-color: #58b8f8;
}
.project-banner .banner-img {
  position: absolute;
  z-index: 9;
  width: 330px;
  top: -10px;
}

/*----------- End -----------*/
/* ============== About Us Page ==============*/
/* ----------- Breadcrumb -----------*/
.portfolio-breadcrumb {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/contact-us/breadcrumb-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 40vh;
  display: flex;
}
.portfolio-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
}

/* ----------- End -----------*/
/* ----------- Gallery CSS -----------*/
.grid-item {
  display: inline-block;
  height: 260px;
  overflow: hidden;
  text-align: center;
  width: 400px;
  position: relative;
}
.grid-item img {
  width: 100%;
  height: auto;
  transition: 0.9s;
  margin: 1rem;
}
.grid-item img:hover {
  filter: none;
}
.grid-item .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  font-size: 20px;
  padding: 20px;
  text-align: center;
  margin: 1rem 0 0 1rem;
}
.grid-item:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

.filters {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.filters ul {
  list-style: none;
  padding: 20px 10px;
  border-radius: 3px;
  background-color: #0179ca;
  margin: 1rem 0;
}
.filters ul li {
  display: inline-block;
  padding: 10px 25px 0;
  font-size: 15px;
  font-weight: 600;
}
.filters ul li a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 32px;
  padding: 10px 25px;
}
.filters ul li a:hover {
  color: #fff;
}
.filters ul li .active {
  color: #e3ca66 !important;
  border-radius: 25px;
  background-color: #232323;
  border: none;
}

/*----------- portfolio CSS ------------*/
.portfolio .portfolio-wraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.portfolio .portfolio-wraper .call-to-action {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portfolio .portfolio-wraper .call-to-action .list-item {
  margin-top: 0;
}
.portfolio .portfolio-wraper .call-to-action .app-icons {
  display: inline-flex;
  gap: 2rem;
}
.portfolio .portfolio-wraper .call-to-action .app-icons .icon-wrap {
  background: #0179ca;
  padding: 12px;
  border-radius: 50%;
  transition: all 500ms ease-in-out;
}
.portfolio .portfolio-wraper .call-to-action .app-icons .icon-wrap:hover {
  opacity: 0.7;
}
.portfolio .portfolio-wraper .call-to-action .app-icons .icon-wrap img {
  width: 40px;
  filter: invert(1);
}
.portfolio .portfolio-wraper .image-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  margin: auto;
}
.portfolio .portfolio-wraper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left;
}
.portfolio .portfolio-wraper .theme-btn {
  width: -moz-fit-content;
  width: fit-content;
}

/* ----------- End -----------*/
/* ----------- Thanks Mail -----------*/
.thanks-wraper {
  text-align: center;
  padding: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.thanks-wraper img {
  height: 220px;
}
.thanks-wraper .mail-heading {
  font-size: 35px;
  font-weight: 500;
  margin: 12px 0;
}

/*----------- End -----------*/
/*-----media query-------*/
@media screen and (max-width: 991px) {
  p,
  a,
  div,
  span,
  ul,
  li {
    font-size: 14px;
  }
  .spacing {
    padding: 30px 0;
  }
  .main-heading {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .heading-title {
    font-size: 12px;
  }
  .heading-wrap {
    margin-bottom: 1rem;
  }
  .heading-wrap .main-heading {
    margin-bottom: 0;
  }
  .sub-heading {
    font-size: 18px;
  }
  header .navbar-brand .logo {
    width: 240px;
  }
  header .navbar {
    display: block;
    padding: 10px;
  }
  header .navbar .header-btn {
    display: none !important;
  }
  header .navbar .navbar-toggler {
    background-color: #0179ca;
    border: none;
    position: absolute;
    z-index: 99;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 45px;
    width: 45px;
    border-radius: 50%;
  }
  header .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  header .navbar .navbar-toggler .hamburger {
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center;
  }
  header .navbar .navbar-toggler .hamburger .bar {
    display: block;
    height: 3px;
    width: 20px;
    background-color: #fff;
    margin: 2px 0;
    transition: 0.3s all ease-in-out;
  }
  header .navbar .navbar-toggler .hamburger.active .bar {
    width: 25px;
    transform: rotate(360deg);
  }
  header .navbar .navbar-toggler .hamburger.active .bar:nth-child(1) {
    transform: translateY(1px) rotate(-40deg);
    width: 15px;
  }
  header .navbar .navbar-toggler .hamburger.active .bar:nth-child(3) {
    transform: translateY(-1px) rotate(40deg);
    width: 15px;
  }
  header .navbar .navbar-collapse {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: 0.3s all ease-in;
  }
  header .navbar .navbar-collapse.show {
    transform: translateX(0);
  }
  header .navbar .navbar-collapse .navbar-nav {
    padding: 3rem;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    margin: 0;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 22px;
    color: #232323;
    font-weight: 600;
    transition: all 500ms ease;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #0179ca;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
    width: -moz-fit-content;
    width: fit-content;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
    font-size: 22px;
    color: #232323;
    font-weight: 600;
    transition: all 500ms ease;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover {
    color: #0179ca;
  }
  header .navbar .nav-item:hover .dropdown-toggle::after {
    transform: rotate(0deg);
  }
  header .navbar .nav-item .dropdown-toggle.show::after {
    transform: rotate(180deg);
  }
  header .navbar .nav-item .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    display: none !important;
  }
  header .navbar .nav-item .dropdown-menu.show {
    display: block !important;
  }
  .process-widget .nav-pills {
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: flex-start;
  }
  .process-widget .nav-pills .nav-item {
    margin: 0 10px;
  }
  .process-widget .nav-pills .nav-item .nav-link {
    font-size: 32px;
    margin-bottom: 0;
  }
  .process-widget .nav-pills .nav-item .title {
    font-size: 12px;
  }
  .hero-section .banner-slide {
    height: 50vh;
  }
  .hero-section .banner-slide .slider-heading {
    font-size: 70px;
  }
  .our-services .card {
    padding: 0;
  }
  .our-services .card .card-header {
    padding: 15px;
  }
  .our-services .card .card-header img {
    width: 80px;
  }
  .our-services .card .card-body .heading {
    font-size: 20px;
  }
  .our-services .card .card-body .list-item li {
    line-height: 22px;
  }
  .portfolio .portfolio-wraper .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .portfolio .portfolio-wraper .image-1 {
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
  .portfolio .portfolio-wraper .image-2,
  .portfolio .portfolio-wraper .image-3,
  .portfolio .portfolio-wraper .image-4 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
  .list-item li {
    padding-left: 25px;
  }
  .list-item li::before {
    width: 15px;
    height: 15px;
  }
  .hero-section .banner-slide {
    height: 40vh;
    background-position: center;
  }
  .hero-section .banner-slide .slider-heading {
    font-size: 28px;
  }
  .hero-section .theme-btn span {
    padding: 0 !important;
  }
  .theme-btn {
    padding: 10px 22px;
  }
  .breadcrumb-wraper {
    height: 20vh;
  }
  .breadcrumb-wraper .breadcrumb-heading {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }
  .home-about-sec .about-img {
    display: none;
  }
  .home-about-sec .call-to-action {
    padding: 0;
  }
  .why-choose-us .main-counter-box .counter-box {
    margin: 1rem 0;
  }
  .why-choose-us .main-counter-box .counter-box .counter-box-text .number {
    font-size: 22px;
  }
  .why-choose-us .main-counter-box .counter-box .counter-box-text span {
    font-size: 11px;
  }
  .why-choose-us .call-to-action {
    padding: 0;
  }
  .why-choose-us .call-to-action ul li {
    flex-wrap: wrap;
  }
  .why-choose-us .call-to-action ul li .wraper {
    padding-left: 0;
  }
  .project-banner {
    display: none;
  }
  .main-counter-box {
    padding: 10px !important;
  }
  .offer-banner .offer-box {
    padding: 12px 0;
  }
  .contact-form {
    padding: 25px 10px;
  }
  .contact-aside {
    padding: 20px 0 0;
  }
  .contact-aside .contact-details .contact-list li {
    margin-bottom: 10px;
  }
  .our-vision .img-box::after, .our-vision .img-box::before {
    display: none;
  }
  .our-vision .img-box img {
    display: none;
  }
  .home-about-sec .service-box {
    display: grid;
    text-align: center;
    padding: 0;
  }
  .home-about-sec .service-box a {
    font-size: 16px;
  }
  .why-choose-us .call-to-action .wraper .heading {
    font-size: 20px !important;
  }
  footer {
    padding: 30px 0 0;
  }
  footer .social-item {
    margin-top: 1rem !important;
  }
  footer .footer-copyright span {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  footer .title {
    font-size: 20px;
    margin: 10px 0;
  }
  footer .footer-list li a {
    font-size: 14px;
  }
  .floating-icons .whatsapp a img {
    width: 40px;
  }
  .our-vision .vision-wraper .heading {
    font-size: 17px !important;
  }
  .modal .btn-close {
    right: 1px !important;
    top: 1px !important;
  }
  .modal .modal-content .main-heading {
    transform: translate(-22px, -20px) !important;
    font-size: 14px !important;
  }
  .modal .modal-content .main-heading::before {
    display: none;
  }
  .portfolio .portfolio-wraper {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .portfolio .portfolio-wraper .call-to-action .main-heading {
    text-align: center;
    margin-bottom: 10px;
  }
  .portfolio .portfolio-wraper .call-to-action .app-icons {
    justify-content: center;
  }
  .portfolio .portfolio-wraper .call-to-action .app-icons .icon-wrap img {
    width: 25px;
  }
  .portfolio .portfolio-wraper .call-to-action .theme-btn {
    margin: 0 auto;
  }
  .portfolio .portfolio-wraper .call-to-action .list-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .portfolio .portfolio-wraper .call-to-action .list-item li {
    margin: 0;
  }
  .portfolio .portfolio-wraper .image-wrapper {
    height: 230px !important;
  }
  .portfolio .portfolio-wraper .image-wrapper img {
    height: 230px;
  }
}
@media only screen and (max-width: 600px) {
  .logo {
    padding-left: 10px !important;
  }
}/*# sourceMappingURL=style.css.map */