@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
   */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 90px 0 90px;
}

.tog-bar {
  display: none;
}

/* nav-bar-start  */
.navbar {
  background-color: #ffffff;
  padding: 20px 0 20px 0;
  position: relative;
}

.nav-sec {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.nav-logo a {
  display: inline-block;
}

.menu-bar {
  position: relative;
}

.menu-bar ul {
  padding: 0;
  margin: 0;
}

.menu-bar ul li {
  list-style: none;
  display: inline-block;
  padding-right: 50px;
}

.menu-bar ul li:nth-last-child(1) {
  padding-right: 0;
}

.menu-bar ul li a {
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #282828;
  transition: all 0.5s ease-in-out;
}

.menu-bar ul li a:hover {
  color: #0079F8;
}

.menu-bar ul li a.actived {
  color: #0079F8;
}



/* dropdown */
.menu-link .dropdown li {
  display: block;
  padding-bottom: 20px;
  padding-right: 0;
  text-align: center;
}

.menu-link .dropdown ul li:nth-last-child(1) {
  padding-bottom: 0;
}

.menu-link .dropdown li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.menu-link .dropdown li a:hover {
  color: #0079F8;
}

.menu-link .dropdown {
  padding: 10px;
  background-color: #282828;
  width: 20%;
  height: 96%;
  position: absolute;
  z-index: 999;
  display: none;

}

.menu-link li:hover .dropdown {
  display: block;
}

.drop-icon {
  transition: all 0.5s ease-in-out;
}

/* dropdown end */
/* dropdown-2 */
.menu-link .dropdown-2 li a {
  display: block;
  padding-bottom: 20px;
  padding-right: 0;
  text-align: center;
}

.menu-link .dropdown-2 ul li:nth-last-child(1) {
  padding-bottom: 0;
}

.menu-link .dropdown-2 li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.menu-link .dropdown-3 li a:hover {
  color: #0079F8;
}

.menu-link .dropdown-2 {
  padding: 10px;
  background-color: #282828;
  width: 30%;
  height: 150px;
  position: absolute;
  z-index: 999;
  display: none;

}

.menu-link li:hover .dropdown-2 {
  display: block;
}

.drop-icon {
  transition: all 0.5s ease-in-out;
}

/* dropdown-2 end */
.menu-link .dropdown-3 li {
  display: block;
  padding-bottom: 20px;
  padding-right: 0;
  text-align: center;
}

.menu-link .dropdown-3 ul li:nth-last-child(1) {
  padding-bottom: 0;
}

.menu-link .dropdown-3 li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.menu-link .dropdown-3 li a:hover {
  color: #0079F8;
}

.menu-link .dropdown-3 {
  padding: 10px;
  background-color: #282828;
  width: 30%;
  height: 150px;
  position: absolute;
  z-index: 999;
  display: none;

}

.menu-link li:hover .dropdown-3 {
  display: block;
}

.drop-icon {
  transition: all 0.5s ease-in-out;
}

/* nav-bar-End  */

/* banner-part-start */
.banner-part img {
  width: 100%;

}

.images-pat {
  position: relative;
}

.banner-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-text h1 {
  color: #FFFFFF;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 4px;
  line-height: 33.8px;
  margin-bottom: 20px;
}

.banner-text h2 {
  font-size: 65px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 84.5px;
  color: #FFFFFF;
  margin-bottom: 30px;
}





.banner-text a {
  display: inline-block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 20px 49px 20px 53px;
  background-color: #0079F8;
  border-radius: 50px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
  font-size: 18px;
}

.banner-text a:hover {
  background-color: #191919;

  color: #FFFFFF;

}

/* banner-part-END */
/* banner-card-sec-start  */
.banner-card-sec-background {
  background-color: #F8F8F8;

  padding-top: 100px;
  padding-bottom: 100px;
}

.banner-card-sec {
  position: relative;
}

.banner-card-box {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: absolute;
  width: 100%;
  top: -336px;
  left: 0;
  transform: translate(0px, 6%);
}

.banner-crad-box-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.banner-box-card-1 {
  width: 100%;
  padding: 60px 30px 70px 30px;
  /* border-style: solid;
  border-width: 0px 1px 0px 1px;
  border-color: #EDEDED; */
}

.banner-card-icon {
  text-align: center;
}

.banner-card-icon a {
  display: inline-block;
}

.boder-card-1 {
  border-right: 2px solid #EDEDED;
}

.banner-card-text h3 {
  font-size: 21px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}

.banner-card-text p {
  font-size: 17px;
  padding: 0 30px 0 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  color: #494848;

}

/* banner-card-sec-End  */
/* welcome-to-parking-sec-start */
.welcome-to-parking-background {
  padding-top: 200px;
}

.welcome-to-parking-about-sec {
  display: flex;
  justify-content: flex-start;
}

.welcome-to-parking-text {
  margin-left: 150px;
  width: 39%;
}

.welcome-to-parking-text h4 {
  color: #0079F8;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 20px;
}

.welcome-to-parking-text h5 {
  color: #272727;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 54.6px;
  padding-bottom: 20px;
}

.welcome-to-parking-text p {
  color: #494848;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 30px;
  padding-bottom: 100px;
}

.welcome-to-parking-text a {
  text-decoration: none;
  display: inline-block;

}

.parking-button {
  font-family: "Poppins", Sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 20px 49px 20px 53px;
  transition: all 0.5s ease-in-out;

}

.parking-button:hover {
  color: #FFFFFF;
  background: linear-gradient(180deg, #007AF7 0%, #019DE2 100%);
  /* position: relative;
  z-index: 1; */

}

/* welcome-to-parking-sec-END  */

/* why-choose-parking-background-start */
.why-choose-parking-background {
  background: linear-gradient(270deg, #0079F8 50%, #FFFFFF 0%);
  padding: 120px 0 120px 0;
  position: relative;
}

.why-choose-parking-sec {
  display: flex;
  justify-content: space-between;


}

.why-choose-parking-text-box {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  width: 38%;
}

.why-choose-parking-text-box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #019EE1;
  padding-bottom: 30px;
  line-height: 20px
}

.why-choose-parking-text-box h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 54.6px;
  color: #272727;
  margin-bottom: 30px;
}

.why-choose-parking-text-box p {
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
  color: #494848;
  padding-bottom: 50px;
}

.why-choose-parking-card-sec {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(14%, -50%);
}

/* dropdown  */

.why-choose-parking-card-1 {
  display: flex;
  margin: 0px 0px 30px 0px;
  padding: 35px 0px 40px 22px;
  background-color: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  width: 60%;
  align-items: center;
}


.why-choose-parking-card-text {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  padding-left: 20px;
  width: 57%;

}

.why-choose-parking-card-text h4 {
  font-size: 23px;
  font-weight: 600;
  color: #000000;
  padding-bottom: 10px;
}

.why-choose-parking-card-text p {
  font-size: 17px;
  font-weight: 300;
  color: #494848;
  line-height: 25.5px;
}

/* why-choose-parking-background-End */
/* type-part-background-start */
.types-of-parking-background {
  background-color: #F8F8F8;
  padding-top: 120px;
  padding-bottom: 120px;
}

.type-of-parking-text {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  text-align: center;
}

.type-of-parking-text h2 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #019EE1;
  padding-bottom: 20px;
}

.type-of-parking-text h3 {
  font-size: 42px;
  line-height: 54.6px;
  color: #272727;
  font-weight: 700;
  padding-bottom: 50px;
}

.type-of-parking-sec {
  display: flex;
  justify-content: space-between;

}

.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 41px 20px;
  border-radius: 5px;
  width: 67% !important;
}




.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-style: normal;

}

.type-of-icon-text h2 {
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #0079F8;
  font-weight: 600;
}

.type-of-icon-text h3 {
  font-size: 20px;
  /* padding-bottom: 20px; */
  color: #000000;
  font-weight: 600;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 20px !important;
  line-height: 90px !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* type-part-background-End */

/* parking-space-garge-backgroundpart-start */

.parking-space-garge-background {
  background-image: url(serving-img2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00000030;
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.parking-space-garge-background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #040145;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  z-index: -1;

}

.parking-space-garge-background-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;

}

.parking-space-garge-background-text h2 {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 20px;

}

.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 42px;
  padding-left: 248px;
  padding-right: 248px;
  line-height: 54.6px;
  padding-bottom: 50px;
}

.parking-space-garge-background-text a {
  text-decoration: none;
  display: inline-block;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.parking-space-button:hover {
  color: #FFFFFF;
  background: linear-gradient(180deg, #007AF7 0%, #019DE2 100%);

}

/*parking-space-garge-backgroundpart-end*/
/* .consultation-background-part-start */

.consultation-background {
  background-color: #F7F7F7;
  padding-top: 100px;
  padding-bottom: 520px;



}

.free-consultation-bakground {
  position: relative;
  z-index: 1;
}

.free-consultation-sec-background {

  width: 95%;
  background-color: #FFFFFF;
  position: absolute;
  left: -10px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 50px 180px 50px;
  margin-bottom: 80PX;



}

.free-Consultation-text {
  font-family: "Poppins", sans-serif;
}

.free-consultation-sec-background {
  display: flex;

}

.free-Consultation-text h2 {
  font-size: 20px;
  color: #019EE1;
  font-weight: 500;

}

.free-Consultation-text h3 {
  font-size: 42px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;

}


.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 298px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;

}

.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 343px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}

.fourth-line {
  width: 330px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px 0px 46px 9px;
  color: #525252;
  outline: none;
  margin: 0 20px 0 0;
  background-color: #e9e9e9;
}

.texting-button {
  display: flex;
  align-items: flex-start;
}

.get-quote-button {
  background-color: #0079f8 !important;
  color: #fff !important;
  outline: none;
  border-radius: 100px;
  padding: 13px 40px;
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

/* .consultation-background-part-End */
/* conatct-services-background-part-start  */
.conatct-services-background {
  background-color: #F7F7F7;
  padding-top: 100px;
}

.contact-services-text-background-part {
  position: relative;

}

.contact-services-text-background-sec {
  width: 79%;
  background-color: #0079F8;
  padding: 48px 62px 48px 62px;
  position: absolute;
  top: -109px;
  left: 15%;
  transform: translate(-109px, 15%);
  border-radius: 15px;
  z-index: 1;
}

.contact-services-text-heading {

  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
}

.contact-services-text-heading-text-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;

}


.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 32px;
  font-weight: bold;
  width: 77%;
}

.contact-services-call-now {
  width: 49%;
}

.contact-services-call-now h3 {
  font-size: 16px;
}

.contact-services-call-now h4 {
  font-size: 42px;
}

.contact-servivces-button-sec {
  width: 22%;
}

.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;

}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 22px 27px 22px 27px;
  transition: all 0.5s ease-in-out;
}

.contact-services-button:hover {
  background-color: #272727;
  color: #FFFFFF;
}



.service-text-button:hover {
  background-color: #252525;
  color: #FFFFFF;
}

/* conatct-services-background-part-End */
/* parking-map-background-Start */

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 300px;
  padding-bottom: 150px;
}

.parking-map-sec {
  display: flex;
  justify-content: flex-start;


}

.parking-map-text-bg {
  padding: 40px 30px 40px 40px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 64%;
  margin-bottom: 50px;

}

.parking-map-text-bg p {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 95%;
  line-height: 30px;
  color: #494848;

}

.parking-map-text {
  font-family: "Poppins", sans-serif;
}

.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
}

.parking-map-text h4 {
  font-size: 40px;
  color: #232323;
  line-height: 20px;
  padding-bottom: 50px;
}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-button:hover {

  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

/* parking-map-background-END */
/* we-serving-background-start */
.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 100px;

}

.we-serving-background-heading-part {
  text-align: center;
  font-family: "Poppins", Sans-serif;
}

.we-serving-background-heading-part h2 {
  color: #019EE1;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 42px;
  font-weight: bold;
  padding-bottom: 50px;

}

.we-serving-background-box-sec {
  display: flex;
  justify-content: space-between;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 27%;
  text-align: center;
  margin-bottom: 100px;
}

.we-serving-text {

  font-family: "Poppins", Sans-serif;
  padding: 0 60px 40px 60px;
}

.we-serving-text h4 {

  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}

.we-serving-text h5 {
  font-size: 23px;
  font-weight: 600;
  color: #000;
}

.we-serving-text h5:hover {
  color: #0079f8;
  cursor: pointer;
}

.we-serving-images img {
  text-align: center;
  width: 100%;
}

/* we-serving-background-end */

/* we-have-over-spaces-background-part-start */

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 100%, 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 150px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 54.6px;
  font-weight: 700;
  width: 40%;
  padding-left: 384px;
  padding-bottom: 50px;
}

.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 60px 50px 45px 110px;

}

.we-have-over-spaces-background-crad-sec {
  display: flex;
  justify-content: space-around;
  
}

.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 23px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;
}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;

}

.we-have-over-spaces-card-text p {
  width: 74%;
  font-size: 17px;
  line-height: 30px;
  color: #282828;
  font-weight: 400;
}

/* we-have-over-spaces-background-part-end */
/* online-parking-app-background-partstart */
.online-parking-app-background {
  background-color: #F8F8F8;
  padding-top: 100px;
  padding-bottom: 100px;
}

.online-parking-app-sec {
  display: flex;


}



.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 100px;
}

.online-parking-heading-text h2 {
  font-size: 20px;
  line-height: 20px;
  color: #0079F8;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 10px;

}

.online-parking-heading-text h3 {
  font-size: 42px;
  color: #272727;
  font-weight: 700;
  padding-bottom: 30px;
}

.online-parking-heading-text p {
  font-size: 17px;
  font-weight: 400;
  color: #494848;
  line-height: 30px;
  width: 98%;
  padding-bottom: 30px;
}

.online-paerking-button-sec {
  display: flex;
  justify-content: center;
  align-items: center;
}

.online-perking-button:nth-child(1) {

  margin-right: 40px;
}

.online-perking-button a {
  padding: 11px 22px 13px 29px;
  border-radius: 50px 50px 50px 50px;
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(180deg, #007BF7 0%, #019CE2 100%);
  display: flex;
  align-items: center;
  color: white;
}

.apple-icon {
  font-size: 40px;
  margin-right: 15px;
}

.online-parking-buuton-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;

}

.online-parking-buuton-text span {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: bold;

}

.online-perking-button .buuton-right {
  background-color: transparent;
  background-image: linear-gradient(180deg, #029626 0%, #12C03C 100%);
}

.buuton-right a:hover {
  background-image: linear-gradient(180deg, #029626 0%, #12C03C 100%);
}

.online-perking-button a:hover {
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

/* online-parking-app-background-part-End */
/* Parking-options-and-rates-background-sec-pat-start  */

.Parking-options-and-rates-background-sec {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 100px;
}

.parking-opations-rates-heading {
  text-align: center;
  font-family: "Poppins", Sans-serif;
}

.parking-opations-rates-heading h2 {
  font-size: 20px;
  line-height: 20px;
  color: #0079F8;
  padding-bottom: 20px;
  font-weight: 600;

}

.parking-opations-rates-heading h3 {
  font-size: 42px;
  width: 33%;
  padding-left: 423px;
  line-height: 54.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}


.parking-opations-rates-sec {
  display: flex;
  justify-content: space-between;
}

.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 17px;
  padding: 12px 12px 12px 12px;

}

.parking-opastion-rates-card-heading {
  font-family: "Poppins", Sans-serif;
}

.parking-opastion-rates-card-heading h2 {

  font-size: 23px;
  line-height: 23px;
  color: #282828;
  text-align: center;
}

.parking-opastion-rates-card-parces {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parking-opastion-rates-card-parces h3 {
  font-size: 22px;
  font-family: "Poppins", Sans-serif;
  color: #0079F8;
  font-weight: 600;
  line-height: 22px;
}

.parking-opastion-rates-card-parces h4 {
  font-size: 58px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  font-weight: 700;
  line-height: 58px;
  padding-top: 35px;
}

.parking-opastion-rates-card-parces h5 {
  font-size: 17px;

  padding-top: 60px;
  color: #0079F8;
  font-weight: 600;
  font-family: "Poppins", Sans-serif;
}

.parking-opastion-rates-card-para p {

  color: #494848;
  text-align: center;
  padding-top: 30px;
  font-size: 16px;
  font-family: "Poppins", Sans-serif;
  font-weight: 300;
  line-height: 30px;
  padding-bottom: 50px;
}

.parking-opastion-button a {
  text-decoration: none;
  display: inline-block;
  text-align: center;

}
.parking-opastion-button{
  text-align: center;
}

.learn-more-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 18px 33px 18px 33px;
  display: inline-block;
  margin-bottom: 50px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}

.learn-more-button:hover {
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

/* Parking-options-and-rates-background-sec-part-End  */
/* feed-back-background-start */

.feedback-background {
  background-color: transparent;
  background-image: linear-gradient(90deg, #0079F8 50%, #F8F8F8 0%);
  padding: 130px 0 130px 0;
}

.feedback-background-heading-sec {
  display: flex;
  justify-content: space-between;
}

.feedback-background-customer-heading h2 {

  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  padding-bottom: 10px;
 
}

.feedback-background-customer-heading h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  width: 56%;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 60px;
}

.feedback-background-parking-upadte {
  width: 43%;
}

.feedback-background-parking-upadte h2 {
  font-size: 20px;
  color: #16D144;
  padding-bottom: 10px;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
}

.feedback-background-parking-upadte h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  color: #272727;
  width: 70%;
  padding-bottom: 60px;
}

.feedback-customer-heading-box-sec {
  display: flex;
  flex-direction: column;
}

.feedback-customer-heading-background {
  background-color: #FFFFFF;
  padding: 20px 30px 20px 30px;
  width: 69%;
  margin-bottom: 30px;
  border-radius: 10px;
}

.feedback-customer-heading-imges {
  display: flex;
}

.feedback-customer-heading-imges img {
  width: 80px;
  height: 80px;
}

.feedback-parking-upadte-sec {
  display: flex;
  justify-content: center;

}

.feedback-customer-heading-images-2 {
  display: flex;
}

.feedback-customer-heading-text h5 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
}

.feedback-customer-heading-images-2 img {
  width: 192px;
  height: 90px;
  border-radius: 50%;
}

.feedback-customer-heading-text h4 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
}

.feedback-customer-heading-text p {
  font-size: 17px;
  font-family: "Poppins", Sans-serif;
  padding: 0 20px;
  width: 90%;
  color: #494848;
  padding-bottom: 20px;
  line-height: 30px;

}

.feedback-parking-box {
  width: 100%;
  display: flex;
  flex-direction: row;

}

.feed-backparking-imgges {
  margin-right: 30px;
}

.feedback-parking-heading-text h6 {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: "Poppins", Sans-serif;
  color: #16D144;
}


.feedback-parking-heading-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  color: #272727;
}

.feedback-parking-heading-text p {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  color: #525252;
  font-weight: 500;
}

/* feed-back-background-End */
.footer-background-part {
  background-color: #272727;
  padding-top: 100px;
  padding-bottom: 80px;
}

.footer-text-sec {
  display: flex;
  justify-content: space-between;

}

.footer-heading {
  width: 59%;
}

.footer-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 30px;
  cursor: pointer;

}

.footer-heading p {
  font-size: 16px;
  width: 86%;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
  line-height: 30px;

}

.services-menu ul {
  padding: 0;
  margin: 0;

}

.services-menu ul li {
  list-style: none;
  padding-left: 26px;
  padding-bottom: 10px;
}

.services-menu ul li:nth-last-child(7) {
  padding-bottom: 0;
  padding-left: 0;

}

.services-menu ul li a::before {
  content: "\f105";
  display: block;
  font-family: fontawesome;
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 3px;
  transform: translateX(-15px);
  transition: all 0.5s ease-in-out;
}

.services-menu ul li a:hover::before {
  color: #0079F8;
}


.services-menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Poppins", Sans-serif;
  position: relative;

}

.services-menu ul li a:hover {
  color: #0079F8;
}




.Quick-Linksul {
  padding: 0;
  margin: 0;

}

.Quick-Links ul li {
  list-style: none;
  font-size: 16px;
  padding-left: 26px;
  padding-bottom: 10px;
}

.Quick-Links ul li:nth-last-child(7) {
  padding-bottom: 0;
  padding-left: 0;

}

.Quick-Links ul li a::before {
  content: "\f105";
  display: block;
  font-family: fontawesome;
  font-size: 16px;
  font-weight: 900;
  color: #d9d9d9;
  position: absolute;
  left: 0;
  top: 3px;
  transform: translateX(-15px);
  transition: all 0.5s ease-in-out;
}

.Quick-Links ul li a:hover::before {
  color: #0079F8;
}


.Quick-Links ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Poppins", Sans-serif;
  position: relative;

}

.Quick-Links ul li a:hover {
  color: #0079F8;
}

.Quick-Links ul li .actived {
  color: #0079F8;
}

.Contact-Info h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 26px;
  padding-bottom: 30px;
  cursor: pointer;


}

.Contact-Info p {
  font-size: 16px;
  padding-bottom: 30px;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
}

.Contact-Info h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  color: #d9d9d9;
  font-weight: 500;
  padding-bottom: 10px;
}

.Contact-Info span {
  padding-right: 33px;

}

.footer-border {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50PX;

  border-bottom: 1px solid #999898;
}


.footer-end-text-sec {
  display: flex;
  justify-content: space-between;

}

.footer-end-text h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 16PX;
  color: #d9d9d9;
  font-weight: 400;
}

.footer-end-icon {
  display: flex;
  justify-content: space-between;
}

.footer-end-icon {
  width: 40px;
  height: 40px;
  background-color: #5e5e5e11;
  position: fixed;
  right: 92px;
  bottom: 9px;
  border-radius: 50%;
}

.footer-end-icon-box a {
  text-decoration: none;
}

.footer-icon {
  color: #c2c2c21f;
  padding-left: 12px;
  padding-top: 13px;
  font-size: 16px;
}
















/* Mediaquery */



@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .tog-bar {
    display: block;
    width: 100%;
    height: 50px;
    background-color: #0079f8;
  }

  .bars-icon {
    font-size: 30px;
    position: absolute;
    right: 50px;
    top: 10px;
    color: #FFFFFF;
  }
  .nav-logo a {
    display: block;
    text-align: center;
  }

  .nav-sec {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .menu-bar ul li {
    list-style: none;
    display: block;
    padding-right: 0px;
    padding-bottom: 12px;
  }

  .menu-bar ul li:nth-last-child(1) {
    padding-right: 0;
    padding-bottom: 0px;
  }

  .menu-bar ul li a {
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #282828;
    transition: all 0.5s ease-in-out;
  }

  .menu-link .dropdown li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown  */
  .menu-link .dropdown {
    padding: 5px 0 0 0;
    background-color: #282828;
    width: 98%;
    height: 7%;
    position: absolute;
    z-index: 999;
    display: none;

  }

  /* dropdown-2 */
  .menu-link .dropdown-2 li a {
    display: block;
    padding-bottom: 0px;
    padding-right: 0;
    text-align: center;
  }

  .menu-link .dropdown-2 {
    padding: 5px;
    background-color: #282828;
    width: 123%;
    height: 115px;
    position: absolute;
    z-index: 999;
    display: none;
  }

  .menu-link .dropdown-2 li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown-2 end */
  .menu-link .dropdown-3 li {

    padding-bottom: 0px;

  }
  .menu-link .dropdown-3 {
    padding: 10px;
    background-color: #282828;
    width: 169%;
    height: 57px;
    position: absolute;
    z-index: 999;
    display: none;
}
  .banner-text h1 {
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 28px;
    margin-bottom: 5px;
  }


  .banner-text h2 {
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 8px;
  }

  .banner-part img {
    width: 100%;
    height: 100vh;

  }

  .banner-text a {
    padding: 10px 10px 10px 10px;
    font-size: 11px;
    display: inline-block;

  }

  .banner-part img {
    width: 100%;

  }


  .banner-crad-box-sec {
    flex-wrap: wrap;
    flex-direction: column;

  }


  .banner-card-sec-background {
    background-color: #F8F8F8;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .banner-card-sec {
    position: relative;
  }

  .banner-card-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    transform: translate(0px, 6%);
  }

  .banner-crad-box-sec {
    flex-wrap: wrap;
    flex-direction: column;

  }

  .banner-box-card-1 {
    width: 75%;
    padding: 19px 30px 19px 30px;

  }

  .banner-card-icon {
    text-align: center;
  }

  .banner-card-icon a {
    display: inline-block;
  }

  .boder-card-1 {
    border-width: 0px 0px 0px 0px;
    border-bottom: 2px solid #EDEDED;
  }

  /* .banner-card-icon img{
  width: 30%;
} */
  .banner-card-text h3 {
    font-size: 21px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000;
  }

  .banner-card-text p {
    font-size: 16px;
    padding: 0 0px 0 0px;
    line-height: 23px;
    color: #494848;
    text-align: center;

  }

  .welcome-to-parking-background {
    padding-top: 833px;
  }

  .welcome-to-parking-about-sec {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .welcome-to-parking-images img {
    width: 100%;
    margin-top: 64px;
    padding-bottom: 62px;
}

  .welcome-to-parking-text {
    margin-left: 0px;
    width: 100%;

    text-align: center;
  }

  .welcome-to-parking-text h4 {
    color: #0079F8;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text h5 {
    color: #272727;
    font-size: 28px;
    line-height: 39.6px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text p {
    color: #494848;
    font-size: 14px;
    line-height: 23px;
    padding-bottom: 40px;
  }

  .welcome-to-parking-text a {
    text-decoration: none;
    display: inline-block;

  }
  .parking-button {
    font-family: "Poppins", Sans-serif;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 100px 100px 100px 100px;
    padding: 20px 49px 20px 53px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 50px;
  
  }
  .why-choose-parking-background {
    background: linear-gradient(360deg, #0079F8 55%, #FFFFFF 0%);
    padding: 80px 0 200px 0;
    position: relative;
  }
  .why-choose-parking-sec {
    flex-wrap: wrap;
    flex-direction: column;
  
  
  }
  .why-choose-parking-text-box {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    width: 100%;
  }
  .why-choose-parking-text-box {
    text-align: center;
  }
  .why-choose-parking-text-box h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 46.6px;
    color: #272727;
    margin-bottom: 30px;
    text-align: center;
  }
  .why-choose-parking-text-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #019EE1;
    padding-bottom: 30px;
    line-height: 20px
  }
  .why-choose-parking-text-box p {
    font-size: 1px;
    font-weight: 300;
    line-height: 30px;
    color: #494848;
    padding-bottom: 50px;
  }
  .why-choose-parking-card-sec {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-74%, -5%);
  }
  .why-choose-parking-card-1 {
     flex-wrap: wrap;
     flex-direction: column;
    margin: 0px 0px 11px 0px;
    padding: 21px 49px 17px 41px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    width: 100%;
    align-items: center;
  }
  .why-choose-parking-card-text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-left: 0px;
    width: 100%;
 
  
  }
  .why-choose-parking-images img {
    width: 86%;
    margin-bottom: 747px;
}

  .why-choose-parking-card-images{
    text-align: center;
  }
  .why-choose-parking-card-images img{
    width: 100%;
    
  }
  .why-choose-parking-card-text p {
    font-size: 16px;
    font-weight: 300;
    color: #494848;
    text-align: center;
    line-height: 21.5px;
}
.why-choose-parking-card-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  padding-bottom: 10px;
  text-align: center;
}
.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 20px 20px;
  border-radius: 5px;
  width: 80% !important;
}

.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 27px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 37px;
  padding-bottom: 50px;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.free-consultation-sec-background {
  flex-wrap: wrap;
  flex-direction: column;
}

.free-consultation-sec-background {
  width: 96%;
  background-color: #FFFFFF;
  position: absolute;
  left: -9px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 36px 185px 18px;
  /* margin-bottom: 112px; */
  margin-top: 116px;
}


.free-Consultation-text h3 {
  font-size: 25px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;
}

.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 213px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
}

.fourth-line {
  width: 253px;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px 0px 46px 9px;
  color: #525252;
  outline: none;
  margin: 0 20px 0 0;
  background-color: #e9e9e9;
}

.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 259px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}

.texting-button {
  flex-wrap: wrap;
  flex-direction: column;
}

.get-quote-button {
  background-color: #0079f8 !important;
  color: #fff !important;
  outline: none;
  border-radius: 100px;
  padding: 13px 40px;
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  margin-top: 30px;

}

.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.form-images img {
  width: 69%;
 
}

.contact-services-text-heading-text-sec {
  flex-wrap: wrap;
  align-items: center;
  width: 100%;

}

.contact-services-text-heading {
  text-align: center;
}

.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  width: 99%;
  padding-bottom: 3px;

}

.contact-services-text-background-sec {
  width: 62%;
  background-color: #0079F8;
  padding: 27px 62px 20px 57px;
  position: absolute;
  top: 284px;
  left: 37%;
  transform: translate(-105px, 5%);
  border-radius: 15px;
  z-index: 1;
  margin-top: 200px;
}

.parking-map-sec {
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 500px;
}

.parking-map-images img {
  width: 100%;
  margin-top: 51px;
}

.contact-servivces-button-sec {
  width: 100%;
}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 8px 27px 12px 23px;
  transition: all 0.5s ease-in-out;
}

.contact-services-call-now {
  width: 100%;
}

.contact-services-call-now h3 {
  font-size: 26px;
  text-align: center;
}

.contact-services-call-now h4 {
  font-size: 20px;
  text-align: center;
}

.parking-map-text {
  text-align: center;
}

.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}

.parking-map-text-bg {
  padding: 19px 30px 11px 40px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 77%;
  margin-bottom: 50px;
}

.parking-map-text-bg p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  line-height: 25px;
  color: #494848;
  text-align: center;
}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 22px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 300px;
  padding-bottom: 39px;
}

.we-serving-images img {
  text-align: center;
  width: 100%;

}

.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 45px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 38px;
  text-align: center;
}

.we-serving-background-box-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-serving-box-background img {
  width: 100%;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 81%;
  margin-bottom: 34px;
  margin-left: 5px;

}

.we-serving-text {
  font-family: "Poppins", Sans-serif;
  padding: 0px 60px 14px 46px;
}

.we-serving-text h4 {
  padding-top: 17px;
  padding-bottom: 3px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}

.we-have-over-spaces-background-crad-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-serving-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 900%, 900%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 54px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 42.6px;
  font-weight: 700;
  width: 100%;
  padding-left: 0px;
  padding-bottom: 50px;
}

.we-have-over-spaces-box-logo {
  text-align: center;
}

.we-have-over-spaces-box-logo img {
  width: 36%;
}

.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 31px 15px 35px 13px;
  width: 90%;
}

.we-have-over-spaces-background-crad-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 20px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;
  text-align: center;
}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;
  text-align: center;

}

.we-have-over-spaces-card-text p {
  width: 100%;
  font-size: 17px;
  line-height: 30px;
  color: #282828;
  font-weight: 400;
  text-align: center;
  padding-bottom: 30px;
}


.online-parking-images img{
  width: 100%;
}
.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 0px;
  text-align: center;
width: 100%;
}
.online-parking-heading-text p {
  font-size: 16px;
  font-weight: 400;
  color: #494848;
  line-height: 27px;
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
}
.online-parking-app-sec {
 flex-wrap: wrap;
 flex-direction: column;


}
.online-paerking-button-sec {
flex-wrap: wrap;
flex-direction: column;
}

.online-perking-button:nth-child(1) {

  margin-right: 0px;
  margin-bottom: 50px;
}
.parking-opations-rates-heading h3 {
  font-size: 41px;
  width: 100%;
   padding-left: 0px; 
  line-height: 53.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}
.parking-opations-rates-sec {
  flex-wrap: wrap;
  flex-direction: column;
  
}
.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 0px;
  padding: 12px 12px 12px 12px;
  margin-bottom: 30px;

}
.feedback-background-heading-sec {
flex-wrap: wrap;
flex-direction: column;
}
.feedback-background {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0079F8 50%, #F8F8F8 0%);
  padding: 130px 0 292px 0;
  position: relative;
}
.feedback-background-customer-heading h2 {

  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  padding-bottom: 10px;
  text-align: center;
 
}
.feedback-customer-heading-box-sec {
 flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.feedback-background-customer-heading h3 {
  font-size: 30px;
  font-family: "Poppins", Sans-serif;
  width:100%;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 60px;
  text-align: center;
}
.feedback-customer-heading-imges {
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
.feedback-customer-heading-background {
  background-color: #FFFFFF;
  padding: 20px 21px 20px 21px;
  width: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
}
.feedback-background-parking-upadte{
  padding-top: 200px;
  text-align: center;
}
.feedback-customer-heading-imges {
flex-wrap: wrap;
flex-direction: column;
align-items: center
}
.feedback-parking-upadte-sec {
  flex-wrap: wrap;
  flex-direction: column;

}
.feedback-background-parking-upadte h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  color: #272727;
  width: 100%;
  padding-bottom: 60px;
}
.feedback-parking-box {
  width: 100%;
flex-wrap: wrap;
flex-direction: column;
align-items: center;

}
.feedback-background-parking-upadte {
  width: 100%;
}
.feedback-customer-heading-text h4 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
  text-align: center;
}
.feedback-customer-heading-images-2 {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.feedback-customer-heading-images-2 img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.feedback-customer-heading-text h5 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
  text-align: center;
}
.feedback-customer-heading-text p {
  font-size: 17px;
  font-family: "Poppins", Sans-serif;
  padding: 0 20px;
  width: 90%;
  color: #494848;
  padding-bottom: 20px;
  line-height: 30px;
  text-align: center;
}
.footer-text-sec {
flex-wrap: wrap;
flex-direction: column;
}
.footer-heading {
  width: 99%;
}
.footer-end-text-sec {
flex-wrap: wrap;
flex-direction: column;
}
.footer-end-text h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 13PX;
  color: #d9d9d9;
  font-weight: 400;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 
.container{
  max-width: 540px;
  padding: 0 45px;
}
.tog-bar {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #0079f8;
}

.bars-icon {
  font-size: 30px;
  position: absolute;
  right: 50px;
  top: 10px;
  color: #FFFFFF;
}
.nav-logo a {
  display: block;
  text-align: center;
}

.nav-sec {
  flex-wrap: wrap;
  flex-direction: column;
}
.menu-bar ul li {
  list-style: none;
  display: block;
  padding-right: 0px;
  padding-bottom: 20px;
}
.menu-bar ul li:nth-last-child(1) {
  padding-right: 0;
  padding-bottom: 0px;
}
.menu-bar ul li a {
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #282828;
  transition: all 0.5s ease-in-out;
}
.menu-link .dropdown li a {
  display: block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.menu-link .dropdown {
  padding: 2px 0 0 0;
  background-color: #282828;
  width: 98%;
  height: 8%;
  position: absolute;
  z-index: 999;
  display: none;

}

.menu-link .dropdown-2 li a {
  display: block;
  padding-bottom: 0px;
  padding-right: 0;
  text-align: center;
}

.menu-link .dropdown-2 {
  padding: 5px;
  background-color: #282828;
  width: 123%;
  height: 115px;
  position: absolute;
  z-index: 999;
  display: none;
}
.menu-link .dropdown-2 li a {
  display: block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.menu-link .dropdown-3 li {

  padding-bottom: 0px;

}
.menu-link .dropdown-3 {
  padding: 10px;
  background-color: #282828;
  width: 169%;
  height: 57px;
  position: absolute;
  z-index: 999;
  display: none;
}
.banner-text h1 {
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 28px;
  margin-bottom: 5px;
}
.banner-text h2 {
  font-size: 27px;
  line-height: 41px;
  color: #FFFFFF;
  margin-bottom: 27px;
}
.banner-part img {
  width: 100%;
  height: 100vh;

}
.banner-text a {
  padding: 14px 14px 14px 14px;
  font-size: 16px;
  display: inline-block;
}

.banner-part img {
  width: 100%;

}

.banner-crad-box-sec {
  flex-wrap: wrap;
  flex-direction: column;

}
.banner-card-sec-background {
  background-color: #F8F8F8;
  padding-top: 0px;
  padding-bottom: 0px;
}
.banner-card-sec {
  position: relative;
}

.banner-card-box {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  transform: translate(0px, 6%);
}
.banner-crad-box-sec {
  flex-wrap: wrap;
  flex-direction: column;

}
.banner-box-card-1 {
  width: 75%;
  padding: 19px 30px 19px 30px;

}
.banner-card-icon {
  text-align: center;
}

.banner-card-icon a {
  display: inline-block;
}

.boder-card-1 {
  border-width: 0px 0px 0px 0px;
  border-bottom: 2px solid #EDEDED;
}
.banner-card-text h3 {
  font-size: 21px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}
.banner-card-text p {
  font-size: 16px;
  padding: 0 0px 0 0px;
  line-height: 23px;
  color: #494848;
  text-align: center;

}
.welcome-to-parking-background {
  padding-top: 833px;
}
.welcome-to-parking-about-sec {
  flex-wrap: wrap;
  flex-direction: column;
}
.welcome-to-parking-images img {
  width: 100%;
  margin-top: 64px;
  padding-bottom: 62px;
}
.welcome-to-parking-text {
  margin-left: 0px;
  width: 100%;

  text-align: center;
}

.welcome-to-parking-text h4 {
  color: #0079F8;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 20px;
}
.welcome-to-parking-text h5 {
  color: #272727;
  font-size: 28px;
  line-height: 39.6px;
  padding-bottom: 20px;
}
.welcome-to-parking-text p {
  color: #494848;
  font-size: 14px;
  line-height: 23px;
  padding-bottom: 40px;
}

.welcome-to-parking-text a {
  text-decoration: none;
  display: inline-block;

}
.parking-button {
  font-family: "Poppins", Sans-serif;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 20px 49px 20px 53px;
  transition: all 0.5s ease-in-out;
  margin-bottom: 50px;

}
.why-choose-parking-background {
  background: linear-gradient(360deg, #0079F8 55%, #FFFFFF 0%);
  padding: 80px 0 200px 0;
  position: relative;
}
.why-choose-parking-sec {
  flex-wrap: wrap;
  flex-direction: column;


}
.why-choose-parking-text-box {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  width: 100%;
}
.why-choose-parking-text-box {
  text-align: center;
}
.why-choose-parking-text-box h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 46.6px;
  color: #272727;
  margin-bottom: 30px;
  text-align: center;
}
.why-choose-parking-text-box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #019EE1;
  padding-bottom: 30px;
  line-height: 20px
}
.why-choose-parking-text-box p {
  font-size: 1px;
  font-weight: 300;
  line-height: 30px;
  color: #494848;
  padding-bottom: 50px;
}
.why-choose-parking-card-sec {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-74%, -5%);
}
.why-choose-parking-card-1 {
  flex-wrap: wrap;
  flex-direction: column;
  margin: 22px 0px 10px 0px;
  padding: 20px 74px 26px 79px;
  background-color: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  width: 100%;
  align-items: center;
}

.why-choose-parking-card-text {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  padding-left: 0px;
  width: 100%;
}
.why-choose-parking-images img {
  width: 86%;
  margin-bottom: 747px;
}
.why-choose-parking-images img {
  width: 86%;
  margin-bottom: 747px;
}

.why-choose-parking-card-images{
  text-align: center;
}
.why-choose-parking-card-images img{
  width: 100%;
  
}
.why-choose-parking-card-text p {
  font-size: 16px;
  font-weight: 300;
  color: #494848;
  text-align: center;
  line-height: 21.5px;
}
.why-choose-parking-card-text h4 {
font-size: 16px;
font-weight: 600;
color: #000000;
padding-bottom: 10px;
text-align: center;
}
.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 20px 20px;
  border-radius: 5px;
  width: 80% !important;
}

.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}
.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 27px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 37px;
  padding-bottom: 50px;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}
.free-consultation-sec-background {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.free-Consultation-text h2 {
  font-size: 20px;
  color: #019EE1;
  font-weight: 500;
  text-align: center;
}



.free-consultation-sec-background {
  width: 96%;
  background-color: #FFFFFF;
  position: absolute;
  left: -9px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 36px 185px 18px;
  /* margin-bottom: 112px; */
  margin-top: 116px;
}
.free-Consultation-text h3 {
  font-size: 32px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;
  text-align: center;
}
.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 213px;
  outline: none;
  display: block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
}

.fourth-line {
  width: 253px;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px 0px 46px 9px;
  color: #525252;
  outline: none;
  margin: 0 20px 0 0;
  background-color: #e9e9e9;
}

.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 259px;
  outline: none;
  display: block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}

.texting-button {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.get-quote-button {
  background-color: #0079f8 !important;
  color: #fff !important;
  outline: none;
  border-radius: 100px;
  padding: 13px 40px;
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  margin-top: 30px;

}

.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.form-images img {
  width: 100%;
 
}
.contact-services-text-heading-text-sec {
  flex-wrap: wrap;
  align-items: center;
  width: 100%;

}

.contact-services-text-heading {
  text-align: center;
}

.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  width: 99%;
  padding-bottom: 3px;

}

.contact-services-text-background-sec {
  width: 62%;
  background-color: #0079F8;
  padding: 27px 62px 20px 57px;
  position: absolute;
  top: 284px;
  left: 37%;
  transform: translate(-157px, 13%);
  border-radius: 15px;
  z-index: 1;
  margin-top: 200px;
}
.parking-map-sec {
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 500px;
}

.parking-map-images img {
  width: 100%;
  margin-top: 51px;
}

.contact-servivces-button-sec {
  width: 100%;
}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 8px 27px 12px 23px;
  transition: all 0.5s ease-in-out;
}

.contact-services-call-now {
  width: 100%;
}

.contact-services-call-now h3 {
  font-size: 26px;
  text-align: center;
}

.contact-services-call-now h4 {
  font-size: 20px;
  text-align: center;
}

.parking-map-text {
  text-align: center;
}

.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}

.parking-map-text-bg {
  padding: 19px 30px 11px 40px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 77%;
  margin-bottom: 50px;
}

.parking-map-text-bg p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  line-height: 25px;
  color: #494848;
  text-align: center;
}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 22px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 300px;
  padding-bottom: 39px;
}

.we-serving-images img {
  text-align: center;
  width: 100%;

}

.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 45px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 38px;
  text-align: center;
}

.we-serving-background-box-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-serving-box-background img {
  width: 100%;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 81%;
  margin-bottom: 34px;
  margin-left: 5px;

}

.we-serving-text {
  font-family: "Poppins", Sans-serif;
  padding: 0px 60px 14px 46px;
}

.we-serving-text h4 {
  padding-top: 17px;
  padding-bottom: 3px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}

.we-have-over-spaces-background-crad-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-serving-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 900%, 900%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 54px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 42.6px;
  font-weight: 700;
  width: 100%;
  padding-left: 0px;
  padding-bottom: 50px;
}

.we-have-over-spaces-box-logo {
  text-align: center;
}

.we-have-over-spaces-box-logo img {
  width: 36%;
}

.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 31px 15px 35px 13px;
  width: 90%;
}

.we-have-over-spaces-background-crad-sec {
  flex-wrap: wrap;
  flex-direction: column;
}

.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 20px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;
  text-align: center;
}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;
  text-align: center;

}

.we-have-over-spaces-card-text p {
  width: 100%;
  font-size: 17px;
  line-height: 30px;
  color: #282828;
  font-weight: 400;
  text-align: center;
  padding-bottom: 30px;
}


.online-parking-images img{
  width: 100%;
}
.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 0px;
  text-align: center;
width: 100%;
}
.online-parking-heading-text p {
  font-size: 16px;
  font-weight: 400;
  color: #494848;
  line-height: 27px;
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
}
.online-parking-app-sec {
 flex-wrap: wrap;
 flex-direction: column;


}
.online-paerking-button-sec {
flex-wrap: wrap;
flex-direction: column;
}

.online-perking-button:nth-child(1) {

  margin-right: 0px;
  margin-bottom: 50px;
}
.parking-opations-rates-heading h3 {
  font-size: 41px;
  width: 100%;
   padding-left: 0px; 
  line-height: 53.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}
.parking-opations-rates-sec {
  flex-wrap: wrap;
  flex-direction: column;
  
}
.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 0px;
  padding: 12px 12px 12px 12px;
  margin-bottom: 30px;

}
.feedback-background-heading-sec {
flex-wrap: wrap;
flex-direction: column;
}
.feedback-background {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0079F8 47%, #F8F8F8 0%);
  padding: 130px 0 292px 0;
  position: relative;
}
.feedback-background-customer-heading h2 {

  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  padding-bottom: 10px;
  text-align: center;
 
}
.feedback-customer-heading-box-sec {
 flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.feedback-background-customer-heading h3 {
  font-size: 30px;
  font-family: "Poppins", Sans-serif;
  width:100%;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 60px;
  text-align: center;
}
.feedback-customer-heading-imges {
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
.feedback-customer-heading-background {
  background-color: #FFFFFF;
  padding: 20px 21px 20px 21px;
  width: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
}
.feedback-background-parking-upadte{
  padding-top: 200px;
  text-align: center;
}
.feedback-customer-heading-imges {
flex-wrap: wrap;
flex-direction: column;
align-items: center
}
.feedback-parking-upadte-sec {
  flex-wrap: wrap;
  flex-direction: column;

}
.feedback-background-parking-upadte h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  color: #272727;
  width: 100%;
  padding-bottom: 60px;
}
.feedback-parking-box {
  width: 100%;
flex-wrap: wrap;
flex-direction: column;
align-items: center;

}
.feedback-background-parking-upadte {
  width: 100%;
}
.feedback-customer-heading-text h4 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
  text-align: center;
}
.feedback-customer-heading-images-2 {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.feedback-customer-heading-images-2 img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.feedback-customer-heading-text h5 {
  font-size: 20px;
  padding: 0 20px;
  font-family: "Poppins", Sans-serif;
  color: #272727;
  padding-bottom: 20px;
  text-align: center;
}
.feedback-customer-heading-text p {
  font-size: 17px;
  font-family: "Poppins", Sans-serif;
  padding: 0 20px;
  width: 90%;
  color: #494848;
  padding-bottom: 20px;
  line-height: 30px;
  text-align: center;
}
.footer-text-sec {
flex-wrap: wrap;
flex-direction: column;
}
.footer-heading {
  width: 99%;
}
.footer-end-text-sec {
flex-wrap: wrap;
flex-direction: column;
}
.footer-end-text h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 12PX;
  color: #d9d9d9;
  font-weight: 400;
}
.footer-end-icon {
  width: 40px;
  height: 40px;
  background-color: #5e5e5e11;
  position: fixed;
  right: 48px;
  bottom: 32px;
  border-radius: 50%;
}
 }


 /* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 

  .container{
    max-width:720px;
    padding: 0 60px;
  }
  .tog-bar {
    display: block;
    width: 100%;
    height: 50px;
    background-color: #0079f8;
  }

  .bars-icon {
    font-size: 30px;
    position: absolute;
    right: 50px;
    top: 10px;
    color: #FFFFFF;
  }
  .tog-bar {
    display: block;
    width: 100%;
    height: 50px;
    background-color: #0079f8;
  }

  .bars-icon {
    font-size: 30px;
    position: absolute;
    right: 50px;
    top: 10px;
    color: #FFFFFF;
  }
  .nav-logo a {
    display: block;
    text-align: center;
  }

 

  .menu-bar ul li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;

  }

  .menu-bar ul li:nth-last-child(1) {
    padding-right: 0;
    padding-bottom: 0px;
  }

  .menu-bar ul li a {
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #282828;
    transition: all 0.5s ease-in-out;
  }

  .menu-link .dropdown li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown  */
  .menu-link .dropdown {
    padding: 5px 0 0 0;
    background-color: #282828;
    width: 98%;
    height: 7%;
    position: absolute;
    z-index: 999;
    display: none;

  }

  /* dropdown-2 */
  .menu-link .dropdown-2 li a {
    display: block;
    padding-bottom: 2px;
    padding-right: 0;
    text-align: center;
  }

  .menu-link .dropdown-2 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 31%;
    height: 90px;
    position: absolute;
    z-index: 999;
    display: none;
  }

  .menu-link .dropdown-2 li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown-2 end */
  .menu-link .dropdown-3 li {

    padding-bottom: 0px;

  }
  .menu-link .dropdown-3 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 24%;
    height: 54px;
    position: absolute;
    z-index: 999;
    display: none;
}
.menu-link .dropdown-3 li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.banner-text h1 {
  color: #FFFFFF;
  font-size: 21px;
  letter-spacing: 6px;
  line-height: 69px;
  margin-bottom: 12px;
}


.banner-text h2 {
  font-size: 33px;
  line-height: 46px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

  .banner-part img {
    width: 100%;
    height: 100vh;

  }

  .banner-text a {
    padding: 9px 36px 16px 35px;
    font-size: 16px;
    display: inline-block;
}
  .banner-part img {
    width: 100%;

  }


  


  .banner-card-sec-background {
    background-color: #F8F8F8;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .banner-card-sec {
    position: relative;
  }

  .banner-card-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    transform: translate(0px, -18%);
  }

 

  .banner-box-card-1 {
    width: 75%;
    padding: 19px 30px 19px 30px;

  }

  .banner-card-icon {
    text-align: center;
  }

  .banner-card-icon a {
    display: inline-block;
  }

  .boder-card-1 {
    border-width: 0px 0px 0px 0px;
    border-right: 2px solid #EDEDED;
  }

  /* .banner-card-icon img{
  width: 30%;
} */
.banner-card-text h3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}
  .banner-card-text p {
    font-size: 16px;
    padding: 0 0px 0 0px;
    line-height: 20px;
    color: #494848;
    text-align: center;

  }

  .welcome-to-parking-background {
    padding-top: 272px;
  }

 

  .welcome-to-parking-images img {
    width: 100%;
    
}

  .welcome-to-parking-text {
    margin-left: 20px;
    width: 100%;
 
  }

  .welcome-to-parking-text h4 {
    color: #0079F8;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text h5 {
    color: #272727;
    font-size: 31px;
    line-height: 38.6px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text p {
    color: #494848;
    font-size: 14px;
    line-height: 23px;
    padding-bottom: 40px;
  }

  .welcome-to-parking-text a {
    text-decoration: none;
    display: inline-block;

  }
  .parking-button {
    font-family: "Poppins", Sans-serif;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 100px 100px 100px 100px;
    padding: 20px 49px 20px 53px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 50px;
  
  }
  .why-choose-parking-background {
    background: linear-gradient(270deg, #0079F8 50%, #FFFFFF 0%);
    padding: 120px 0 120px 0;
    position: relative;
  }
  .why-choose-parking-sec {
    display: flex;
    justify-content: space-between;
  
  
  }
  .why-choose-parking-text-box {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    width: 38%;
  }
  /* .why-choose-parking-text-box {
   
  } */
  .why-choose-parking-text-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #019EE1;
    padding-bottom: 30px;
    line-height: 20px
  }
  
  .why-choose-parking-text-box h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39.6px;
    color: #272727;
    margin-bottom: 30px;
}
.why-choose-parking-text-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  color: #494848;
  padding-bottom: 50px;
}
.why-choose-parking-card-sec {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-0%, -50%);
  margin-left:20px;
}
  .why-choose-parking-card-1 {
    display: flex;
    margin: 0px 0px 30px 0px;
    padding: 25px 48px 40px 48px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;

   
}
  .why-choose-parking-card-text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-left: 13px;
    width: 100%;
  
  }
  .why-choose-parking-images img {
    width: 100%;

}

  .why-choose-parking-card-images{
    text-align: center;
  }
  .why-choose-parking-card-images img{
    width: 100%;
    
  }
 .why-choose-parking-card-text p {
        font-size: 14px;
        font-weight: 300;
        color: #494848;
        line-height: 18.5px;
        width: 100%;
    }
  .why-choose-parking-card-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 10px;
}
  
.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 20px 20px;
  border-radius: 5px;
  width: 80% !important;
}

.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 27px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 37px;
  padding-bottom: 50px;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.free-consultation-sec-background {
  flex-wrap: wrap;
  flex-direction: column;
}

.free-consultation-sec-background {
  width: 96%;
  background-color: #FFFFFF;
  position: absolute;
  left: -9px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 36px 185px 18px;
  /* margin-bottom: 112px; */
  margin-top: 116px;
}


.free-Consultation-text h3 {
  font-size: 25px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;
}

.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 243px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
}

.fourth-line {
  width: 188px;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px 0px 46px 9px;
  color: #525252;
  outline: none;
  margin: 0 20px 0 0;
  background-color: #e9e9e9;
}

.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 288px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}

.texting-button {
  flex-wrap: wrap;
  flex-direction: column;
}

.get-quote-button {
  background-color: #0079f8 !important;
  color: #fff !important;
  outline: none;
  border-radius: 100px;
  padding: 13px 40px;
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  margin-top: 30px;

}

.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;
}
.form-images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-18%, -25%);
}
.form-images img {
  width: 100%;
 
}

.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
}
.contact-services-call-now {
  width: 67%;
}
.contact-services-call-now h4 {
  font-size: 23px;
}

.contact-services-text-background-sec {
  width: 79%;
  background-color: #0079F8;
  padding: 38px 47px 33px 42px;
  position: absolute;
  top: -109px;
  left: 15%;
  transform: translate(-91px, 100%);
  border-radius: 15px;
  z-index: 1;
}
.contact-servivces-button-sec {
  width: 47%;
}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 16px 23px 12px 22px;
  transition: all 0.5s ease-in-out;
}
.parking-map-sec {
  display: flex;
  justify-content: flex-start;


}
.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 232px;
  padding-bottom: 39px;
}
.parking-map-images{
 padding-top: 200px;

}

.parking-map-images img {
  width:300px;


}








.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
  margin-top: 50px;
}

.parking-map-text-bg {
  padding: 36px 15px 56px 26px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 86%;

}


.parking-map-text-bg p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  line-height: 25px;
  color: #494848;

}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 300px;
  padding-bottom: 39px;
}

.we-serving-images img {
  text-align: center;
  width: 100%;

}

.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 45px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 38px;
  text-align: center;
}



.we-serving-box-background img {
  width: 100%;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 23%;
  margin-left: 24px;

}

.we-serving-text {
  font-family: "Poppins", Sans-serif;
  padding: 0px 0px 0px 0px;
}

.we-serving-text h4 {
  padding-top: 17px;
  padding-bottom: 3px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}


.we-serving-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 900%, 900%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 54px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 42.6px;
  font-weight: 700;
  width: 100%;
  padding-left: 0px;
  padding-bottom: 50px;
}




.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 31px 15px 35px 34px;
  width:96%;
}



.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {

  font-size: 16px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;

}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;
  

}

.we-have-over-spaces-card-text p {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  color: #282828;
  font-weight: 400;
  
  padding-bottom: 30px;
}


.online-parking-images img{
  width: 100%;
}
.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 31px;
   width: 71%;
}
.online-parking-heading-text h3 {
  font-size: 31px;
  color: #272727;
  font-weight: 700;
  padding-bottom: 7px;
}
.online-parking-heading-text h2 {
  font-size: 20px;
  line-height: 20px;
  color: #0079F8;
  font-weight: 600;
}
.online-parking-heading-text p {
  font-size: 16px;
  font-weight: 400;
  color: #494848;
  line-height: 27px;
  width: 100%;
  padding-bottom: 30px;

}

.online-paerking-button-sec {
flex-wrap: wrap;
flex-direction:column;
align-items: flex-start;
}

.online-perking-button:nth-child(1) {

  margin-right: 0px;
  margin-bottom: 20px;
}
.parking-opations-rates-heading h3 {
  font-size: 40px;
  width: 64%;
   padding-left:117px; 
  line-height: 53.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}

.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 0px;
  padding: 12px 12px 12px 12px;
  width: 19%;

}
.learn-more-button {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 18px 18px 18px 18px;
  display: inline-block;
  margin-bottom: 50px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}
.parking-opastion-rates-card-heading h2 {
  font-size: 16px;
  line-height: 45px;
  color: #282828;
  text-align: center;
}


.feedback-background-heading-sec {
  flex-wrap: wrap;
  flex-direction: column;
  }
  .feedback-background {
    background-color: transparent;
    background-image: linear-gradient(180deg, #0079F8 57%, #F8F8F8 0%);
    padding: 65px 0 106px 0;
    position: relative;
}
  .feedback-background-customer-heading h2 {
  
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    padding-bottom: 10px;
    text-align: center;
   
  }
  .feedback-customer-heading-box-sec {
   flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .feedback-background-customer-heading h3 {
    font-size: 30px;
    font-family: "Poppins", Sans-serif;
    width:100%;
    color: #FFFFFF;
    font-weight: 700;
    padding-bottom: 60px;
    text-align: center;
  }
  .feedback-customer-heading-imges {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  }
  .feedback-customer-heading-background {
    background-color: #FFFFFF;
    padding: 20px 21px 20px 21px;
    width: 90%;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .feedback-background-parking-upadte{
    padding-top: 100px;
  }
  .feedback-customer-heading-imges {
  flex-wrap: wrap;
  flex-direction: column;
  }
  .feedback-parking-upadte-sec {
    flex-wrap: wrap;
    flex-direction: column;
  
  }
  .feedback-background-parking-upadte h3 {
    font-size: 42px;
    font-family: "Poppins", Sans-serif;
    font-weight: 700;
    color: #272727;
    width: 100%;
    padding-bottom: 60px;
  }
  .feedback-parking-box {
    width: 80%;
 
  
  }
  .feedback-background-parking-upadte {
    width: 100%;
  }
  .feedback-customer-heading-text h4 {
    font-size: 20px;
    padding: 0 20px;
    font-family: "Poppins", Sans-serif;
    color: #272727;
    padding-bottom: 20px;
    text-align: center;
  }
  .feedback-customer-heading-images-2 {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .feedback-customer-heading-images-2 img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }
  .feedback-customer-heading-text h5 {
    font-size: 20px;
    padding: 0 20px;
    font-family: "Poppins", Sans-serif;
    color: #272727;
    padding-bottom: 20px;
    text-align: center;
  }
  .feedback-customer-heading-text p {
    font-size: 17px;
    font-family: "Poppins", Sans-serif;
    padding: 0 20px;
    width: 90%;
    color: #494848;
    padding-bottom: 20px;
    line-height: 30px;
    text-align: center;
  }
  .footer-text-sec {
  flex-wrap: wrap;
  flex-direction: column;
  }
  .footer-heading {
    width: 99%;
  }
  .footer-end-text-sec {
  flex-wrap: wrap;
 
  }
  .footer-end-text h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 14PX;
    color: #d9d9d9;
    font-weight: 400;
}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
  .container{
    max-width: 960px;
   padding: 0 60px;
  }
  .nav-logo a {
    display: block;
    text-align: center;
  }

 

  .menu-bar ul li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;

  }

  .menu-bar ul li:nth-last-child(1) {
    padding-right: 0;
    padding-bottom: 0px;
  }

  .menu-bar ul li a {
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #282828;
    transition: all 0.5s ease-in-out;
  }

  .menu-link .dropdown li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown  */
  .menu-link .dropdown {
    padding: 5px 0 0 0;
    background-color: #282828;
    width: 17%;
    height: 95%;
    position: absolute;
    z-index: 999;
    display: none;

  }

  /* dropdown-2 */
  .menu-link .dropdown-2 li a {
    display: block;
    padding-bottom: 2px;
    padding-right: 0;
    text-align: center;
  }

  .menu-link .dropdown-2 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 31%;
    height: 90px;
    position: absolute;
    z-index: 999;
    display: none;
  }

  .menu-link .dropdown-2 li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown-2 end */
  .menu-link .dropdown-3 li {

    padding-bottom: 0px;

  }
  .menu-link .dropdown-3 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 24%;
    height: 54px;
    position: absolute;
    z-index: 999;
    display: none;
}
.menu-link .dropdown-3 li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.banner-text h1 {
  color: #FFFFFF;
  font-size: 21px;
  letter-spacing: 6px;
  line-height: 69px;
  margin-bottom: 12px;
}


.banner-text h2 {
  font-size: 33px;
  line-height: 46px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

  .banner-part img {
    width: 100%;
    height: 100vh;

  }

  .banner-text a {
    padding: 9px 36px 16px 35px;
    font-size: 16px;
    display: inline-block;
}
  .banner-part img {
    width: 100%;

  }


  


  .banner-card-sec-background {
    background-color: #F8F8F8;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .banner-card-sec {
    position: relative;
  }

  .banner-card-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    transform: translate(0px, -18%);
  }

 

  .banner-box-card-1 {
    width: 75%;
    padding: 19px 30px 19px 30px;

  }

  .banner-card-icon {
    text-align: center;
  }

  .banner-card-icon a {
    display: inline-block;
  }

  .boder-card-1 {
    border-width: 0px 0px 0px 0px;
    border-right: 2px solid #EDEDED;
  }

  /* .banner-card-icon img{
  width: 30%;
} */
.banner-card-text h3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}
  .banner-card-text p {
    font-size: 16px;
    padding: 0 0px 0 0px;
    line-height: 20px;
    color: #494848;
    text-align: center;

  }

  .welcome-to-parking-background {
    padding-top: 272px;
  }

 

  .welcome-to-parking-images img {
    width: 100%;
    
}

  .welcome-to-parking-text {
    margin-left: 20px;
    width: 100%;
 
  }

  .welcome-to-parking-text h4 {
    color: #0079F8;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text h5 {
    color: #272727;
    font-size: 31px;
    line-height: 38.6px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text p {
    color: #494848;
    font-size: 14px;
    line-height: 23px;
    padding-bottom: 40px;
  }

  .welcome-to-parking-text a {
    text-decoration: none;
    display: inline-block;

  }
  .parking-button {
    font-family: "Poppins", Sans-serif;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 100px 100px 100px 100px;
    padding: 20px 49px 20px 53px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 50px;
  
  }
  .why-choose-parking-background {
    background: linear-gradient(270deg, #0079F8 50%, #FFFFFF 0%);
    padding: 120px 0 120px 0;
    position: relative;
  }
  .why-choose-parking-sec {
    display: flex;
    justify-content: space-between;
  
  
  }
  .why-choose-parking-text-box {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    width: 38%;
  }
  /* .why-choose-parking-text-box {
   
  } */
  .why-choose-parking-text-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #019EE1;
    padding-bottom: 30px;
    line-height: 20px
  }
  
  .why-choose-parking-text-box h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39.6px;
    color: #272727;
    margin-bottom: 30px;
}
.why-choose-parking-text-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  color: #494848;
  padding-bottom: 50px;
}
.why-choose-parking-card-sec {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-0%, -50%);
  margin-left:20px;
}
  .why-choose-parking-card-1 {
    display: flex;
    margin: 0px 0px 30px 0px;
    padding: 25px 48px 40px 48px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;

   
}
  .why-choose-parking-card-text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-left: 13px;
    width: 100%;
  
  }
  .why-choose-parking-images img {
    width: 100%;

}

  .why-choose-parking-card-images{
    text-align: center;
  }
  .why-choose-parking-card-images img{
    width: 100%;
    
  }
 .why-choose-parking-card-text p {
        font-size: 14px;
        font-weight: 300;
        color: #494848;
        line-height: 18.5px;
        width: 100%;
    }
  .why-choose-parking-card-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 10px;
}
  
.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 20px 20px;
  border-radius: 5px;
  width: 80% !important;
}

.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 27px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 37px;
  padding-bottom: 50px;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.free-consultation-sec-background {
  flex-wrap: wrap;
  flex-direction: column;
}

.free-consultation-sec-background {
  width: 96%;
  background-color: #FFFFFF;
  position: absolute;
  left: -9px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 36px 185px 18px;
  /* margin-bottom: 112px; */
  margin-top: 116px;
}


.free-Consultation-text h3 {
  font-size: 25px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;
}

.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 243px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
}

.fourth-line {
  width: 272px;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px 0px 46px 9px;
  color: #525252;
  outline: none;
  margin: 0 20px 0 0;
  background-color: #e9e9e9;
}

.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 288px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}

.texting-button {
  flex-wrap: wrap;
  flex-direction: column;
}

.get-quote-button {
  background-color: #0079f8 !important;
  color: #fff !important;
  outline: none;
  border-radius: 100px;
  padding: 13px 40px;
  border: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  margin-top: 30px;

}

.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;
}
.form-images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-18%, -33%);
}
.form-images img {
  width: 60%;
 
}

.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: bold;
  width: 94%;
}
.contact-services-call-now {
  width: 67%;
}
.contact-services-call-now h4 {
  font-size: 23px;
}

.contact-services-text-background-sec {
  width: 79%;
  background-color: #0079F8;
  padding: 38px 47px 33px 42px;
  position: absolute;
  top: -109px;
  left: 15%;
  transform: translate(-91px, 100%);
  border-radius: 15px;
  z-index: 1;
}
.contact-servivces-button-sec {
  width: 47%;
}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 16px 23px 12px 22px;
  transition: all 0.5s ease-in-out;
}
.parking-map-sec {
  display: flex;
  justify-content: flex-start;


}
.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 232px;
  padding-bottom: 39px;
}
.parking-map-images{
 padding-top: 200px;

}

.parking-map-images img {
  width:300px;


}








.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
  margin-top: 50px;
}

.parking-map-text-bg {
  padding: 21px 14px 31px 21px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 50%;
}



.parking-map-text-bg p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width:100%;
  line-height: 25px;
  color: #494848;

}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 300px;
  padding-bottom: 39px;
}

.we-serving-images img {
  text-align: center;
  width: 100%;

}

.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 45px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 38px;
  text-align: center;
}



.we-serving-box-background img {
  width: 100%;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 23%;
  margin-left: 24px;

}

.we-serving-text {
  font-family: "Poppins", Sans-serif;
  padding: 0px 0px 0px 0px;
}

.we-serving-text h4 {
  padding-top: 17px;
  padding-bottom: 3px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}


.we-serving-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 900%, 900%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 54px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 42.6px;
  font-weight: 700;
  width: 100%;
  padding-left: 0px;
  padding-bottom: 50px;
}




.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 31px 15px 35px 34px;
  width:96%;
}



.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {

  font-size: 16px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;

}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;
  

}

.we-have-over-spaces-card-text p {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  color: #282828;
  font-weight: 400;
  
  padding-bottom: 30px;
}


.online-parking-images img{
  width: 100%;
}
.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 31px;
   width: 71%;
}
.online-parking-heading-text h3 {
  font-size: 31px;
  color: #272727;
  font-weight: 700;
  padding-bottom: 7px;
}
.online-parking-heading-text h2 {
  font-size: 20px;
  line-height: 20px;
  color: #0079F8;
  font-weight: 600;
}
.online-parking-heading-text p {
  font-size: 16px;
  font-weight: 400;
  color: #494848;
  line-height: 27px;
  width: 100%;
  padding-bottom: 30px;

}

.online-paerking-button-sec {

align-items: flex-start;
}
.online-parking-buuton-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
}
.online-perking-button:nth-child(1) {

  margin-right: 11px;
}
.parking-opations-rates-heading h3 {
  font-size: 40px;
  width: 64%;
   padding-left:117px; 
  line-height: 53.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}

.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 0px;
  padding: 12px 12px 12px 12px;
  width: 19%;

}
.learn-more-button {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 18px 18px 18px 18px;
  display: inline-block;
  margin-bottom: 50px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}
.parking-opastion-rates-card-heading h2 {
  font-size: 16px;
  line-height: 45px;
  color: #282828;
  text-align: center;
}



.feedback-background-customer-heading h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  width: 65%;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 60px;
}

.feedback-background-parking-upadte {
  width: 43%;
}

.feedback-background-parking-upadte h2 {
  font-size: 20px;
  color: #16D144;
  padding-bottom: 10px;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
}

.feedback-background-parking-upadte h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  color: #272727;
  width: 70%;
  padding-bottom: 60px;
}

.feedback-customer-heading-box-sec {
  display: flex;
  flex-direction: column;
}

.feedback-customer-heading-background {
  background-color: #FFFFFF;
  padding: 20px 30px 20px 30px;
  width: 69%;
  margin-bottom: 30px;
  border-radius: 10px;
}

.feedback-customer-heading-imges {
  display: flex;
}

.feedback-customer-heading-imges img {
  width: 80px;
  height: 80px;
}
.feedback-customer-heading-text p {
  font-size: 17px;
  font-family: "Poppins", Sans-serif;
  padding: 0 20px;
  width: 90%;
  color: #494848;
  padding-bottom: 20px;
  line-height: 21px;
}

.feedback-parking-box {
  width: 31%;
}
.feed-backparking-imgges {
  margin-right: 10px;
}

.feedback-parking-upadte-sec {
  flex-wrap: wrap;
  flex-direction: column;
}
  .footer-heading {
    width: 47%;
  }
  .footer-end-text-sec {
  flex-wrap: wrap;
 
  }
 
  .footer-end-text h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 14PX;
    color: #d9d9d9;
    font-weight: 400;
}
.feedback-parking-heading-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 19px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  color: #272727;
}

.feed-backparking-imgges img{
  width: 200px;
}
.footer-heading p {
  font-size: 12px;
  width: 100%;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
  line-height: 20px;
}
.footer-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 30px;
  cursor: pointer;
}
.Contact-Info h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 30px;
  cursor: pointer;
}
.services-menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Poppins", Sans-serif;
  position: relative;
}
.Quick-Links ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Poppins", Sans-serif;
  position: relative;
}
.Contact-Info p {
  font-size: 14px;
  padding-bottom: 16px;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
}
.Contact-Info h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  color: #d9d9d9;
  font-weight: 500;
  padding-bottom: 10px;
}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .container {
      max-width: 1140px;
      padding: 0 75px;
  }
  av-logo a {
    display: block;
    text-align: center;
  }

 

  .menu-bar ul li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;

  }

  .menu-bar ul li:nth-last-child(1) {
    padding-right: 0;
    padding-bottom: 0px;
  }

  .menu-bar ul li a {
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #282828;
    transition: all 0.5s ease-in-out;
  }

  .menu-link .dropdown li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown  */
  .menu-link .dropdown {
    padding: 5px 0 0 0;
    background-color: #282828;
    width: 17%;
    height: 95%;
    position: absolute;
    z-index: 999;
    display: none;

  }

  /* dropdown-2 */
  .menu-link .dropdown-2 li a {
    display: block;
    padding-bottom: 2px;
    padding-right: 0;
    text-align: center;
  }

  .menu-link .dropdown-2 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 31%;
    height: 90px;
    position: absolute;
    z-index: 999;
    display: none;
  }

  .menu-link .dropdown-2 li a {
    display: block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  /* dropdown-2 end */
  .menu-link .dropdown-3 li {

    padding-bottom: 0px;

  }
  .menu-link .dropdown-3 {
    padding: 2px 2px 2px 2px;
    background-color: #282828;
    width: 24%;
    height: 54px;
    position: absolute;
    z-index: 999;
    display: none;
}
.menu-link .dropdown-3 li a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.banner-text h1 {
  color: #FFFFFF;
  font-size: 21px;
  letter-spacing: 6px;
  line-height: 69px;
  margin-bottom: 12px;
}


.banner-text h2 {
  font-size: 33px;
  line-height: 46px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

  .banner-part img {
    width: 100%;
    height: 100vh;

  }

  .banner-text a {
    padding: 9px 36px 16px 35px;
    font-size: 16px;
    display: inline-block;
}
  .banner-part img {
    width: 100%;

  }


  


  .banner-card-sec-background {
    background-color: #F8F8F8;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .banner-card-sec {
    position: relative;
  }

  .banner-card-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    transform: translate(0px, -18%);
  }

 

  .banner-box-card-1 {
    width: 75%;
    padding: 19px 30px 19px 30px;

  }

  .banner-card-icon {
    text-align: center;
  }

  .banner-card-icon a {
    display: inline-block;
  }

  .boder-card-1 {
    border-width: 0px 0px 0px 0px;
    border-right: 2px solid #EDEDED;
  }

  /* .banner-card-icon img{
  width: 30%;
} */
.banner-card-text h3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}
  .banner-card-text p {
    font-size: 16px;
    padding: 0 0px 0 0px;
    line-height: 20px;
    color: #494848;
    text-align: center;

  }

  .welcome-to-parking-background {
    padding-top: 272px;
  }

 

  .welcome-to-parking-images img {
    width: 100%;
    
}

  .welcome-to-parking-text {
    margin-left: 20px;
    width: 100%;
 
  }

  .welcome-to-parking-text h4 {
    color: #0079F8;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text h5 {
    color: #272727;
    font-size: 31px;
    line-height: 38.6px;
    padding-bottom: 20px;
  }

  .welcome-to-parking-text p {
    color: #494848;
    font-size: 14px;
    line-height: 23px;
    padding-bottom: 40px;
  }

  .welcome-to-parking-text a {
    text-decoration: none;
    display: inline-block;

  }
  .parking-button {
    font-family: "Poppins", Sans-serif;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 100px 100px 100px 100px;
    padding: 20px 49px 20px 53px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 50px;
  
  }
  .why-choose-parking-background {
    background: linear-gradient(270deg, #0079F8 50%, #FFFFFF 0%);
    padding: 120px 0 120px 0;
    position: relative;
  }
  .why-choose-parking-sec {
    display: flex;
    justify-content: space-between;
  
  
  }
  .why-choose-parking-text-box {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    width: 38%;
  }
  /* .why-choose-parking-text-box {
   
  } */
  .why-choose-parking-text-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #019EE1;
    padding-bottom: 30px;
    line-height: 20px
  }
  
  .why-choose-parking-text-box h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39.6px;
    color: #272727;
    margin-bottom: 30px;
}
.why-choose-parking-text-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  color: #494848;
  padding-bottom: 50px;
}
.why-choose-parking-card-sec {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-0%, -50%);
  margin-left:20px;
}
  .why-choose-parking-card-1 {
    display: flex;
    margin: 0px 0px 30px 0px;
    padding: 25px 48px 40px 48px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;

   
}
  .why-choose-parking-card-text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-left: 13px;
    width: 100%;
  
  }
  .why-choose-parking-images img {
    width: 100%;

}

  .why-choose-parking-card-images{
    text-align: center;
  }
  .why-choose-parking-card-images img{
    width: 100%;
    
  }
  .why-choose-parking-card-text p {
    font-size: 14px;
    font-weight: 300;
    color: #494848;
    line-height: 18.5px;
    width: 66%;
}
  .why-choose-parking-card-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 10px;
}
  
.type-of-parking-box-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.144);
  padding: 20px 20px 20px;
  border-radius: 5px;
  width: 80% !important;
}

.slick-initialized .slick-slide {
  text-align: center;
}

.type-of-imagesicon img {
  width: 100%;
  display: inline-block;
}

.type-of-icon-text {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.parking-space-garge-background-text h3 {
  color: #FFFFFF;
  font-size: 27px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 37px;
  padding-bottom: 50px;
}

.parking-space-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.free-consultation-sec-background {
  flex-wrap: wrap;
  flex-direction: column;
}

.free-consultation-sec-background {
  width: 87%;
  background-color: #FFFFFF;
  position: absolute;
  left: -9px;
  top: -181px;
  transform: translate(-9px, -15px);
  border-radius: 5px;
  box-shadow: 0 0 20px black;
  padding: 50px 36px 185px 18px;
  margin-top: 116px;
}


.free-Consultation-text h3 {
  font-size: 25px;
  color: #272727;
  font-weight: 700;
  line-height: 54.6px;
  padding-bottom: 50px;
}

.first-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 279px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 30px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
}
.third-line {
  background: #fff;
  border: solid 2px #ececec;
  width: 322px;
  outline: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin: 0 20px 20px 0;
  resize: none;
  font-size: 16px;
  padding: 12px 20px;
  color: #525252;
}


.contact-servivces-button-sec a {
  text-decoration: none;
  display: inline-block;
}
.form-images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(58%, -82%);
}
.form-images img {
  width: 60%;
 
}

.contact-services-text-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-size: 27px;
  font-weight: bold;
  width: 74%;
}
.contact-services-call-now {
  width: 67%;
}
.contact-services-call-now h4 {
  font-size: 34px;
}

.contact-services-text-background-sec {
  width: 79%;
  background-color: #0079F8;
  padding: 55px 47px 55px 42px;
  position: absolute;
  top: -109px;
  left: 15%;
  transform: translate(-91px, 25%);
  border-radius: 15px;
  z-index: 1;
}

.contact-servivces-button-sec {
  width: 47%;
}

.contact-services-button {
  display: inline-block;
  font-family: "Poppins", Sans-serif;
  font-size: 17px;
  font-weight: 500;
  fill: #252525;
  color: #252525;
  background-color: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  padding: 16px 23px 12px 22px;
  transition: all 0.5s ease-in-out;
}
.parking-map-sec {
  display: flex;
  justify-content: flex-start;


}
.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 232px;
  padding-bottom: 39px;
}
.parking-map-images{
 padding-top: 122px;

}










.parking-map-text h3 {
  font-size: 20px;
  color: #019DE2;
  line-height: 20px;
  padding-bottom: 30px;
  margin-top: 50px;
}

.parking-map-text-bg {
  padding: 45px 14px 67px 21px;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
  width: 74%;
}



.parking-map-text-bg p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width:100%;
  line-height: 34px;
  color: #494848;

}

.parking-map-button-sec a {
  text-decoration: none;
  display: inline-block;
}

.parking-map-button {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 22px 35px 22px 35px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.parking-map-background {
  background-color: #F7F7F7;
  padding-top: 200px;
  padding-bottom: 130px;
}

.we-serving-images img {
  text-align: center;
  width: 100%;

}

.we-serving-background {
  background-color: #FFFFFF;
  padding-top: 45px;
}

.we-serving-background-heading-part h3 {
  color: #272727;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 38px;
  text-align: center;
}



.we-serving-box-background img {
  width: 100%;
}

.we-serving-box-background {
  background: rgb(255, 255, 255);
  padding: 25px 25px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
  width: 23%;
  margin-left: 24px;

}

.we-serving-text {
  font-family: "Poppins", Sans-serif;
  padding: 0px 0px 0px 0px;
}

.we-serving-text h4 {
  padding-top: 17px;
  padding-bottom: 3px;
  font-size: 16px !important;
  color: #0079f8;
  font-weight: 600;
}


.we-serving-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.we-have-over-spaces-background-part {
  background-image: url(parking-space-bg.jpg);
  background-size: 900%, 900%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 54px;

}

.we-have-over-spaces-background-part::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0079F8;
  background-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.we-have-over-heading h2 {
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 30px;
  line-height: 20px;
}

.we-have-over-heading h3 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  color: #FFFFFF;
  line-height: 42.6px;
  font-weight: 700;
  width: 100%;
  padding-left: 0px;
  padding-bottom: 50px;
}




.we-have-over-spaces-background-card {
  background-color: #F7F7F7;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 31px 15px 35px 34px;
  width:96%;
}



.we-have-over-spaces-card-text {
  font-family: "Poppins", Sans-serif;
}

.we-have-over-spaces-card-text h2 {

  font-size: 16px;
  color: #282828;
  line-height: 29.9px;
  font-weight: 600;

}

.we-have-over-spaces-card-text h3 {
  font-size: 16px;
  color: #019DE1;
  font-weight: 500;
  line-height: 16px;
  padding-bottom: 10px;
  

}

.we-have-over-spaces-card-text p {
  width: 67%;
  font-size: 15px;
  line-height: 24px;
  color: #282828;
  font-weight: 400;
  padding-bottom: 30px;
}



.online-parking-heading-text {
  font-family: "Poppins", Sans-serif;
  margin-left: 31px;
   width: 71%;
}
.online-parking-heading-text h3 {
  font-size: 31px;
  color: #272727;
  font-weight: 700;
  padding-bottom: 7px;
}
.online-parking-heading-text h2 {
  font-size: 20px;
  line-height: 20px;
  color: #0079F8;
  font-weight: 600;
}
.online-parking-heading-text p {
  font-size: 16px;
  font-weight: 400;
  color: #494848;
  line-height: 27px;
  width: 100%;
  padding-bottom: 30px;

}

.online-paerking-button-sec {

align-items: flex-start;
}
.online-parking-buuton-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
}
.online-perking-button:nth-child(1) {

  margin-right: 11px;
}
.parking-opations-rates-heading h3 {
  font-size: 40px;
  width: 64%;
   padding-left:117px; 
  line-height: 53.6px;
  font-weight: 700;
  color: #272727;
  padding-bottom: 50px;
}

.parking-options-rates-card {
  border-style: dashed;
  border-width: 1px;
  border-color: rgb(188, 188, 188);
  border-radius: 5px;
  margin-left: 0px;
  padding: 12px 12px 12px 12px;
  width: 19%;

}
.learn-more-button {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(180deg, #019DE1 20%, #007AF7 100%);
  border-radius: 100px 100px 100px 100px;
  padding: 18px 18px 18px 18px;
  display: inline-block;
  margin-bottom: 50px;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}
.parking-opastion-rates-card-heading h2 {
  font-size: 16px;
  line-height: 45px;
  color: #282828;
  text-align: center;
}



.feedback-background-customer-heading h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  width: 65%;
  color: #FFFFFF;
  font-weight: 700;
  padding-bottom: 60px;
}

.feedback-background-parking-upadte {
  width: 43%;
}

.feedback-background-parking-upadte h2 {
  font-size: 20px;
  color: #16D144;
  padding-bottom: 10px;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
}

.feedback-background-parking-upadte h3 {
  font-size: 42px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  color: #272727;
  width: 70%;
  padding-bottom: 60px;
}

.feedback-customer-heading-box-sec {
  display: flex;
  flex-direction: column;
}

.feedback-customer-heading-background {
  background-color: #FFFFFF;
  padding: 20px 30px 20px 30px;
  width: 69%;
  margin-bottom: 30px;
  border-radius: 10px;
}

.feedback-customer-heading-imges {
  display: flex;
}

.feedback-customer-heading-imges img {
  width: 80px;
  height: 80px;
}
.feedback-customer-heading-text p {
  font-size: 17px;
  font-family: "Poppins", Sans-serif;
  padding: 0 20px;
  width: 90%;
  color: #494848;
  padding-bottom: 20px;
  line-height: 34px;
}

.feedback-parking-box {
  width: 31%;
}
.feed-backparking-imgges {
  margin-right: 10px;
}

.feedback-parking-upadte-sec {
  flex-wrap: wrap;
  flex-direction: column;
}
  .footer-heading {
    width: 47%;
  }
  .footer-end-text-sec {
  flex-wrap: wrap;
 
  }
 
  .footer-end-text h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 14PX;
    color: #d9d9d9;
    font-weight: 400;
}
.feedback-parking-heading-text h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 19px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  color: #272727;
}

.feed-backparking-imgges img{
  width: 200px;
}
.footer-heading p {
  font-size: 12px;
  width: 100%;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
  line-height: 20px;
}
.footer-heading h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 30px;
  cursor: pointer;
}
.Contact-Info h2 {
  color: #FFFFFF;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 21px;
  padding-bottom: 30px;
  cursor: pointer;
}
.services-menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Poppins", Sans-serif;
  position: relative;
}
.Quick-Links ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Poppins", Sans-serif;
  position: relative;
}
.Contact-Info p {
  font-size: 14px;
  padding-bottom: 16px;
  color: #e9e9e9;
  font-family: "Poppins", Sans-serif;
}
.Contact-Info h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  color: #d9d9d9;
  font-weight: 500;
  padding-bottom: 10px;
}
}