@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600&display=swap");

body {
  font-family: "Fira Sans", sans-serif;
}

:root {
  --primary-radius: 63% 37% 35% 65%/46% 46% 54% 54%;
  /* --font-family:'El Messiri', sans-serif; */
  /* --font-family:'Fira Sans', sans-serif; */
}

.bg-light {
  background-color: #f5f5f5 !important;
}

a {
  text-decoration: none !important;
  color: #2691e4;
}

a:hover {
  color: #313131;
}

.message,
.message1,
.message2,
.message3 {
  font-size: 15px;
  font-weight: 500;
  color: #2691e4;
}

.base-color {
  color: #2691e4;
}

.ls-none {
  list-style: none;
}

p {
  font-size: 17px;
  color: #313131;
  /* text-align: justify; */
}

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

.mobile-logo {
  display: none;
}

li {
  font-size: 17px;
  color: #313131;
}

.sub-heading {
  font-size: 22px;
  font-weight: 500;
  color: #313131;
  margin-bottom: 15px;
}

.white-button {
  background-color: #fff;
  padding: 8px 21px;
  border: 1px solid #fff;
  font-weight: 600;
  color: #2691e4;
  font-size: 15px;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
}

.white-button::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  border-right: 1px solid #fdfeff;
  border-bottom: 1px solid #ffffff;
  z-index: -1;
  height: 15px;
  width: 15px;
  transition: 0.5s ease-in-out;
}

.white-button::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  z-index: -1;
  height: 15px;
  width: 15px;
  transition: 0.5s ease-in-out;
}

.white-button:hover::after,
.white-button:hover::before {
  width: 100%;
  height: 100%;
}

.white-button:hover {
  color: #fff;
  border: 1px solid #2691e4;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  transition: 0.4s;
}

.theme-button {
  display: inline-block;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  color: #fff;
  padding: 8px 25px;
  border: 1px solid #2691e4;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease-in-out;
}

.theme-button::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  border-right: 1px solid #2691e4;
  border-bottom: 1px solid #2691e4;
  z-index: -1;
  height: 15px;
  width: 15px;
  transition: 0.5s ease-in-out;
}

.theme-button::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  border-left: 1px solid #2691e4;
  border-top: 1px solid #2691e4;
  z-index: -1;
  height: 15px;
  width: 15px;
  transition: 0.5s ease-in-out;
}

.theme-button:hover::after,
.theme-button:hover::before {
  width: 100%;
  height: 100%;
}

button:focus {
  outline: 0px dotted;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 0px;
  outline: 0px auto -webkit-focus-ring-color;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 0px;
}

.section-padding {
  padding: 60px 0;
}

.theme-button:hover {
  color: #2691e4;
  background: #fff;
  transition: 0.4s;
}

.bg-alt {
  background-color: #313131;
}

.common-heading {
  font-size: 32px;
  text-align: center;
  position: relative;
  font-weight: 500;
  padding-bottom: 20px;
  font-family: var(--font-family);
}

.common-heading:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 3px;
  background-color: #313131;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.common-heading:after {
  position: absolute;
  content: "";
  width: 12px;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
  height: 12px;
  border-radius: 50%;
  background-color: #2691e4;
}

.common-heading.text-white:before {
  background-color: #fff;
}

/* ############################################ Top Bar ################################################# */

.logo img {
  width: 163px;
  height: 70px;
  object-fit: contain;
}

.top-cotact-heading {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
  margin-right: 5px;
  font-family: var(--font-family);
}

.top-contact-box i {
  font-size: 18px;
  color: #317bcc;
  padding-top: 2px;
  margin-right: 10px;
}

.top-contact-content a {
  color: #317bcc;
}

.top-contact-content {
  display: flex;
  align-items: center;
}

.top-contact {
  display: flex;
  justify-content: space-between;
}

.top-contact-box {
  display: flex;
  align-items: center;
}

/* ############################################ Header ################################################ */

#navigation .navbar-nav .nav-link {
  color: rgb(255, 255, 255);
  line-height: 2.2rem;
  font-size: 17px;
  padding: 8px 20px;
  transition: 0.3s;
}

.dropdown-menu {
  margin-top: 0;
  border-radius: 0;
}

#navigation .navbar-nav .nav-link:hover {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  transition: 0.3s;
}

.mobile-nav-contact {
  display: none;
}

#navigation .dropdown-item {
  color: #313131;
  padding: 10px 15px;
  font-size: 15px;
  transition: 0.3s;
}

#navigation .dropdown-item:hover {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  color: #fff;
  transition: 0.3s;
}

#navigation.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0px 0px 10px 3px #525252;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ################################################## Banner ############################################################## */

#banner {
  background-image: linear-gradient(200deg, #00000094 0, #00000094 100%),
    url(../images/home.png);
  height: 86vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-heading {
  font-size: 38px;
  font-weight: 700;
}

.form-heading {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-family);
}

.form-wrap {
  padding: 30px 20px;
  background-color: white;
  width: 90%;
  margin-left: auto;
  border-radius: 50px 0px 50px 0px;
  -moz-border-radius: 50px 0px 50px 0px;
  -webkit-border-radius: 50px 0px 50px 0px;
}

.discount-strip {
  display: none;
}

.form-control {
  font-size: 15px;
  margin-bottom: 15px;
}

.form-label {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ########################################### About Box ######################################## */

.about-box-image img {
  border: 1px solid #2691e4;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-box-heading {
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 500;
}

.about-box-para {
  font-size: 17px;
}

.about-box {
  padding: 20px;
  box-shadow: 0px 0px 8px 0px #d4d4d4;
}

/* ################################################ Counter ######################################### */

#counter {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  padding: 30px 0px;
}

.counter-box {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.counter-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-content p {
  text-align: center;
}

.counter-icon {
  font-size: 28px;
  width: 80px;
  margin-right: 25px;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: var(--primary-radius);
  -moz-border-radius: var(--primary-radius);
  transition: 0.3s;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: var(--primary-radius);
}

.counter-box:hover .counter-icon {
  background: #fff;
  color: #2691e4;
  transition: 0.3s;
  border-radius: 50%;
}

.count {
  font-size: 25px;
  color: #fff;
  margin: 0;
  margin-right: 5px;
  font-weight: 500;
}

.project {
  font-size: 18px;
  color: #fff;
}

/* ################################################ Service ########################################## */

.service-image img {
  height: 270px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
}

.service-heading {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  width: fit-content;
  font-family: var(--font-family);
}

.service-heading::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  z-index: -1;
  height: 1px;
  width: 4rem;
  background-color: #2691e4;
  transition: 0.5s ease-in-out;
}

.service-heading:hover::after {
  width: 7rem;
}

.service-box {
  box-shadow: 0px 0px 8px 0px #b9b9b9;
  height: 100%;
}

.service-content {
  padding: 10px 35px 35px;
  line-height: 1.8;
}

/* ################################################ Price ############################################## */

.price-text .count {
  font-size: 50px;
  color: #2691e4;
  font-weight: 500;
}

.price-text {
  font-size: 22px;
}

/* ################################################## Certified ############################################# */

.certified-box-icon {
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  border-radius: var(--primary-radius);
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  background: #407cce;
}

.certified-box-icon span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certified-box-icon span i {
  color: #ffffff;
  font-size: 25px;
}

.certified-box-icon::after {
  content: "";
  position: absolute;
  left: -5px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 2;
  border: 8px solid #f5f5f5;
  border-radius: var(--primary-radius);
}

.certified-box-content p {
  text-align: center;
  color: #fff;
}

.certified-box-heading {
  font-size: 18px;
  font-family: var(--font-family);
  margin-bottom: 5px;
}

.certified-box {
  padding: 58px 12px 12px 12px;
  background-color: #000000a3;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  height: 11rem;
  display: flex;
  justify-content: center;
  border-radius: 10px;
}

.certified-form {
  padding: 25px;
  box-shadow: 0px 0px 5px 0px #ddd;
  height: 100%;
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: center;
  border-top: 10px solid #2691e4;
  margin-left: auto;
}

.certified-form form p {
  font-size: 28px;
  margin-bottom: 30px;
  color: #313131;
}

#certified .form-wrap {
  box-shadow: 0px 0px 8px 0px #c5c5c5;
}

/* ##################################################### Testimonial ##################################################### */

.testimonial-box {
  padding: 20px;
}

.testimonial-image img {
  border-radius: var(--primary-radius);
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.testimonial-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.testimonial-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border-radius: var(--primary-radius);
  background: #407bcd;
}

.testimonial-content {
  padding: 25px;
  border: 1px solid #4092e7;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  background: #4092e7;
}

.testimonial-content p {
  color: #fff;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 5px solid #ffffff;
  z-index: -1;
  border-radius: 15px;
}

.testimonial-name {
  font-weight: 500;
  padding-left: 28px;
  position: relative;
  color: #4092e7;
}

.testimonial-name:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

/* ########################################## Service Area #################################################### */

.service-area-link {
  font-size: 17px;
  background-color: #fff;
  color: #212529;
  text-align: center;
  padding: 15px;
  font-weight: 300;
  border: 1px solid #f3f3f3;
  transition: 0.3s;
  margin-bottom: 15px;
}

.service-area-link:hover {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  border: 1px solid #f3f3f3;
  color: #fff;
  transition: 0.3s;
}

/* ################################################ Footer ################################################# */

#footer {
  background: linear-gradient(
    142deg,
    rgba(37, 37, 37, 1) 16%,
    rgba(83, 83, 83, 1) 52%,
    rgba(36, 36, 36, 1) 100%
  );
  padding-top: 40px;
}

.footer-wrap {
  padding: 0px 30px;
}

.footer-wrap ul {
  list-style: none;
}

.footer-wrap ul li a {
  font-size: 17px;
  color: #fff;
}

.map-footer iframe {
  width: 100%;
}

.whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 38px;
  right: 15px;
  border-radius: 50%;
  z-index: 999;
}

.whatsapp img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-heading {
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  font-family: var(--font-family);
  color: #fff;
}

.footer-heading:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  margin: auto;
}

.footer-heading:after {
  position: absolute;
  content: "";
  width: 10px;
  left: 25px;
  right: auto;
  bottom: -4px;
  margin: auto;
  height: 10px;
  border-radius: 50%;
  background-color: #2691e4;
}

.bottom-bar p {
  font-size: 14px;
}

.bottom-bar {
  background-color: #272727;
}

.bottom-bar a:hover {
  color: #fff;
  transition: 0.3s;
}

.call {
  position: fixed;
  bottom: 51px;
  left: 15px;
  z-index: 999;
}

/* ################################################ Services Box ######################################### */

.service-wrap-image img {
  width: 100%;
  object-fit: cover;
  height: 185px;
}

.service-wrap {
  display: block;
  margin-bottom: 20px;
}

.service-wrap:hover > .service-wrap-image .service-wrap-name {
  transition: 0.3s;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  color: #fff;
}

.service-wrap:hover {
  transition: 0.3s;
  box-shadow: 0px 0px 11px 0px #797979;
}

.service-wrap-name {
  font-size: 17px;
  text-align: center;
  background-color: #f5f5f5;
  color: #212529;
  padding: 10px 0;
  font-weight: 400;
  margin-bottom: 0;
  transition: 0.3s;
}



/* ################################################ Modal ############################################# */

.modal-header {
  position: absolute;
  width: 90%;
  z-index: 9;
  top: 14px;
}

/* ############################################## Page Banner ######################################### */

#page-banner {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  padding: 60px 0;
}

.page-banner-heading {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-family);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-size: 14px;
}

/* ############################################ Faqs #################################################### */

.faq {
  width: 75%;
  margin: 0 0 0 12%;
}

.faq-q h3 span {
  color: #4092e7;
}

.faq-q {
  border-top: 2px dashed;
  border-color: #2691e4 !important;
  margin: 0;
  padding: 30px;
  counter-increment: section;
  position: relative;
}

.faq-q span {
  font-size: 22px;
  display: block;
  line-height: 1.4;
}

.faq-q:nth-child(even):before {
  content: counter(section);
  right: 100%;
  margin-right: -20px;
  position: absolute;
  border-radius: var(--primary-radius);
  padding: 10px;
  height: 35px;
  width: 45px;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  text-align: center;
  color: white;
  font-size: 110%;
  display: inline-table;
  top: 0;
}

.faq-q:nth-child(odd):before {
  content: counter(section);
  left: 100%;
  margin-left: -20px;
  position: absolute;
  border-radius: var(--primary-radius);
  padding: 10px;
  display: inline-table;
  height: 35px;
  top: 0;
  width: 45px;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  text-align: center;
  color: white;
  font-size: 110%;
}

.faq-q:nth-child(even) {
  border-left: 2px dashed;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-right: 30px;
  padding-right: 0;
}

.faq-q:nth-child(odd) {
  border-right: 2px dashed;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: 30px;
  padding-left: 0;
}

.faq-q:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.faq-q:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* ########################################### About Us #################################################### */

#about-us-second iframe {
  width: 100%;
}

.about-us-image {
  object-fit: cover;
  width: 100%;
  border-radius: 50px 0px 50px 0px;
  -moz-border-radius: 50px 0px 50px 0px;
  -webkit-border-radius: 50px 0px 50px 0px;
  border: 5px solid #2691e4;
  height: 100%;
}

/* ########################################## Vision ####################################################### */

.vision-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50px 0px 50px 0px;
  -moz-border-radius: 50px 0px 50px 0px;
  -webkit-border-radius: 50px 0px 50px 0px;
  border: 5px solid #2691e4;
}

/* ########################################### Contact Us #################################################### */

#contact-us .form-wrap {
  box-shadow: 0px 0px 8px 0px #ddd;
  height: 100%;
}

.contact-icon span {
  width: 55px;
  height: 55px;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: var(--primary-radius);
  margin-bottom: 15px;
  color: #fff;
  font-size: 20px;
}

.contact-info .form-heading {
  font-size: 28px;
  color: #fff;
  margin: 0;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

/* ############################################### Contact Stripe ############################################### */

#contact-strip {
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  padding: 40px 0;
  position: relative;
  margin-top: 135px;
}

#contact-strip img {
  position: absolute;
  bottom: -35px;
  height: 250px;
}

#contact-strip .white-button:hover {
  border: 1px solid white;
}

#contact-strip p {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}

body.suburb #contact-strip {
  display: none;
}

.note {
  padding: 35px;
  background-color: #f5f5f5 !important;
  margin-top: 30px;
  position: relative;
}

.note-icon {
  width: 45px;
  height: 45px;
  display: flex;
  background: radial-gradient(
    circle,
    rgba(38, 145, 228, 1) 0%,
    rgba(23, 119, 194, 1) 35%,
    rgba(21, 123, 203, 1) 100%
  );
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
}
.strip-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* additional css */

.price-heading {
  text-align: center;
  font-size: 20px;
  margin-bottom: 18px;
  background-color: #313131;
  color: #fff;
  padding: 10px 0;
  position: relative;
  border-radius: 2px;
  font-family: var(--font-family);
}

.price-heading::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 10px;
  height: 100%;
  background: #313131;
  z-index: 1;
  top: -2px;
  transform: skew(0deg, 22deg);
  border-radius: 2px;
}

.price-heading::before {
  content: "";
  position: absolute;
  right: -9px;
  width: 10px;
  height: 100%;
  background: #313131;
  z-index: 1;
  top: -2px;
  transform: skew(0deg, -22deg);
  border-radius: 2px;
}

.price-box {
  padding: 30px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-flow: column;
  margin-bottom: 60px;
  border-radius: 10px;
  z-index: 1;
}

.price-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: 1px solid #4092e747;
  z-index: -1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.price-box a {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 70%;
  z-index: 10;
  text-align: center;
}

.cost-list {
  padding: 0;
  margin: 0;
}

.cost-list li {
  list-style: none;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #030000;
  padding-left: 17px;
  position: relative;
  z-index: 1;
}

.cost-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(#5c5252, #307acb);
  z-index: 2;
  bottom: 0;
  margin: auto;
}

/* footer css */

footer .footer-menu {
  padding: 0;
  margin: 0;
}

.extra-link {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: center;
  border-top: 1px solid #fff;
  flex-wrap: wrap;
}

.extra-link li {
  margin: 10px 15px;
}

.copy-right {
  display: flex;
  justify-content: center;
}

.social-media {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.social-media li {
  width: 50px;
  height: 50px;
  border-radius: var(--primary-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.social-media li a {
  color: #fff;
  font-size: 18px;
}

.social-media li:nth-child(1) {
  background: #2691e4;
}

.social-media li:nth-child(2) {
  background: #2691e4;
}

.social-media li:nth-child(3) {
  background: #2691e4;
}

.social-media li:nth-child(4) {
  background: #2691e4;
}

.social-media li:nth-child(5) {
  background: #2691e4;
}

.social-media li:nth-child(6) {
  background: #2691e4;
}

/* about us css */

.removal-service {
  padding: 0;
  margin: 0;
  list-style: none;
}

.removal-service li {
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: #4092e7;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  position: relative;
}

.removal-service li::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 10px;
  height: 100%;
  background: #4092e7;
  z-index: 1;
  top: -2px;
  transform: skew(0deg, 22deg);
  border-radius: 2px;
}

.removal-service li::before {
  content: "";
  position: absolute;
  right: -9px;
  width: 10px;
  height: 100%;
  background: #4092e7;
  z-index: 1;
  top: -2px;
  transform: skew(0deg, -22deg);
  border-radius: 2px;
}

.removal-service li a {
  color: #ffffff;
  transition: 0.3s ease-in-out;
  letter-spacing: 1px;
}

.removal-service li:hover a {
  color: #000;
  letter-spacing: 2px;
}

.mission-content {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 10px solid;
  line-height: 2;
  border-radius: 10px;
}

.mission-content::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 30%;
  width: 50%;
  border-right: 10px solid #4092e7;
  border-bottom: 10px solid #4092e7;
  z-index: -1;
  border-radius: 10px;
}

.mission-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  height: 30%;
  width: 50%;
  border-left: 10px solid #4092e7;
  border-top: 10px solid #4092e7;
  z-index: -1;
  border-radius: 10px;
}

/* service pages css */
.service-img {
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.service-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  height: 665.97px;
}

.service-content-wrap {
  line-height: 2;
}

.mini-heading {
  position: relative;
  padding: 5px 10px;
  color: #fff;
  background: linear-gradient(to right, #5c5252, #5c5252, #4092e7);
  letter-spacing: 1.5px;
}

.service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 10px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2;
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: linear-gradient(#5c5252, #307acb);
  z-index: 2;
  bottom: 0;
}

.process {
  list-style: none;
}

/* contact-us */

.contact-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
  padding: 10px 0px;
}
.contact-box p {
  margin: 0;
  padding: 0;
}

.contact-info {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  height: 100%;
  border: 1px solid;
  padding-left: 20px;
  background: #313131;
  border: 10px;
}

.contact-info .contact-icon {
  margin-right: 20px;
}

.contact-content p {
  color: #fff;
}
.contact-content p a {
  color: #fff;
}
.contact-info .contact-icon span {
  margin: 0;
}

.contact-social li {
  margin: 10px !important;
}

/* ##### Media Query #### */

/*Validation CSS*/

label.error {
  color: red;
  font-size: 11px;
}

/*youtube section css start*/

.process {
  width: 100%;
  padding: 0 2px;
  text-align: center;
  margin: 0px;
}

.b-right {
  border-right: 1px solid rgb(204, 204, 204);
}

.b-bottom {
  border-bottom: 1px solid rgb(204, 204, 204);
}

.process__item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  position: relative;
  padding: 15px 35px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__item:hover {
  background: #f2f2f2;
}

.process__item:hover .process__number {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  color: #2691e4;
}

.process__number {
  font-size: 50px;
  -webkit-text-stroke: 1px #2691e4;
  display: block;
  color: transparent;
  font-weight: 700;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__title {
  display: block;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 20px;
  color: #2691e4;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.5;
}

.process__subtitle {
  display: block;
  font-size: 17px;
  color: #8c8c8c;
  margin-top: 6px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .process {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .process__item {
    width: 100%;
  }

  .process__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/*youtube section css end*/

.header-call {
  background-color: #2691e4;
}

.header-call span {
  color: white;
  font-weight: 600;
}

/* Firefox old*/

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* IE */

@-ms-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Opera and prob css3 final iteration */

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blink-image {
  -moz-animation: blink normal 1s infinite ease-in-out;
  /* Firefox */
  -webkit-animation: blink normal 1s infinite ease-in-out;
  /* Webkit */
  -ms-animation: blink normal 1s infinite ease-in-out;
  /* IE */
  animation: blink normal 1s infinite ease-in-out;
  /* Opera and prob css3 final iteration */
}

/* fixed btn css start */

.call-us {
  display: block;
}

.quote-us {
  display: none;
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    transition: 0.5s;
  }

  .call-us {
    display: none;
  }

  .quote-us {
    display: block;
  }
}

/* fixed btn css end */

/* scroll navbar */

.scrollable-menu {
  height: auto;
  max-height: 450px;
  overflow-x: hidden;
}

/* width */

.scrollable-menu::-webkit-scrollbar {
  width: 8px;
}

/* Track */

.scrollable-menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */

.scrollable-menu::-webkit-scrollbar-thumb {
  background: #2691e4;
  border-radius: 10px;
  height: 2rem;
}

/* Handle on hover */

.scrollable-menu::-webkit-scrollbar-thumb:hover {
  background: #2691e4;
}

#sub-strip {
  background: #2691e4;
  padding: 40px 0;
  position: relative;
}

#sub-strip p {
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-family);
}

/*youtube section css start*/
.process {
  width: 100%;
  padding: 0 2px;
  text-align: center;
  margin: 0px;
}

.b-right {
  border-right: 1px solid rgb(204, 204, 204);
}

.b-bottom {
  border-bottom: 1px solid rgb(204, 204, 204);
}

.process__item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  position: relative;
  padding: 15px 35px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__item:hover {
  background: #f2f2f2;
}

.process__item:hover .process__number {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  color: #2691e4;
}

.process__number {
  font-size: 50px;
  -webkit-text-stroke: 1px #2691e4;
  display: block;
  color: transparent;
  font-weight: 700;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.process__title {
  display: block;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 20px;
  color: #2691e4;
  text-transform: uppercase;
  margin-top: 10px;
}

.process__subtitle {
  display: block;
  font-size: 17px;
  color: #8c8c8c;
  margin-top: 6px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .process {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .process__item {
    width: 100%;
  }

  .process__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  /* .youtube .container {
        max-width: 100%;
    } */
}

iframe {
  box-shadow: 0px 0px 54px #2691e4;
}

/*additional css*/

.why-us-list {
  padding: 0;
}

@media (min-width: 992px) {
  .footer-icon-wraper {
    display: none;
  }
}

.footer-icon-wraper {
  padding: 15px 0;
  background-color: #2691e4;
  position: sticky;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 99;
}

.footer-icon-wraper i,
.footer-icon-wraper a {
  padding-right: 4px;
  color: #fff;
  font-size: 15px;
}

.footer-icon-wraper a {
  position: relative;
  line-height: 12px;
}

.footer-icon-wraper .icon-wraper {
  display: flex;
  justify-content: center;
  padding: 0;
}

.footer-icon-wraper .icon-wraper::after {
  content: "";
  position: absolute;
  height: calc(100% + 35px);
  border-right: 1px solid #fff;
  right: 0;
  top: -18px;
}

.footer-icon-wraper .icon-wraper:nth-child(3)::after {
  border-right: none;
}

.mail-response {
  font-size: 22px;
  text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.modal-body .form-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

button.close {
  width: fit-content;
  position: absolute;
  top: 19px;
  right: 29px;
}

button.close span {
  font-size: 38px;
  display: flex;
}

.video-frame {
  width: 100%;
}

/* media */

@media (max-width: 1200px) {
  .price-text .count {
    font-size: 36px;
  }
}

@media screen and (max-width: 1199.98px) {
  .booking-wrap {
    margin-bottom: 30px;
  }
  .social-media li {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

@media (max-width: 1024px) {
  .form-wrap {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .contact-info {
    padding: 20px;
    margin-top: 30px;
  }
  .call-us,
  .whatsapp {
    display: none !important;
  }

  .social-media li {
    margin-right: 5px;
    margin-bottom: 20px;
    height: 33px;
    width: 33px;
  }

  .mobile-logo {
    display: block;
  }

  .vision-image {
    margin-bottom: 25px;
  }


  #navigation {
    background-color: #fff;
  }

  .navbar-toggler-icon {
    background-image: url("../images/menu.svg");
  }

  #navigation .navbar-nav .nav-link {
    color: rgb(49 49 49);
    line-height: 1.8rem;
    font-size: 15px;
    border-bottom: 1px solid #f1f1f1;
  }

  .fixed-call {
    text-align: center;
    padding: 12px;
    background: radial-gradient(
      circle,
      rgba(38, 145, 228, 1) 0%,
      rgba(23, 119, 194, 1) 35%,
      rgba(21, 123, 203, 1) 100%
    );
    margin-bottom: 20px;
  }

  .service-box {
    height: auto;
    margin-bottom: 20px;
  }

  .counter-box br {
    display: none;
  }

  .about-box {
    margin-bottom: 20px;
  }

  #contact-strip img {
    display: none;
  }

  #contact-strip {
    margin-top: 0;
  }

  .price-box {
    margin-bottom: 20px;
  }

  .testimonial-box {
    margin-bottom: 20px;
  }

  .footer-menu a {
    white-space: nowrap;
  }

  .common-heading {
    font-size: 24px;
  }
  .blink-image {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
  }
  .fixed-call {
    display: none;
  }
}

@media screen and (max-width: 991.98px) and (min-width: 767.98px) {
  .removal-service li {
    width: 80%;
  }
  .removal-service {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    transition: 0.5s;
  }
}

@media (max-width: 767px) {
  .contact-icon span {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  #contact-strip h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .process__item {
    padding: 15px;
  }
  .process__title {
    font-size: 17px;
  }
  .process__subtitle {
    font-size: 15px;
  }
  .extra-link li {
    margin: 4px 8px;
  }

  .extra-link li a {
    font-size: 11px;
  }

  .footer-icon-wraper i,
  .footer-icon-wraper a {
    font-size: 14px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }

  .counter-icon i {
    font-size: 20px;
  }

  .count {
    font-size: 18px;
  }

  .social-media li {
    margin-right: 2px;
    margin-bottom: 20px;
    height: 33px;
    width: 33px;
  }

  .copy-right p {
    font-size: 11px !important;
  }

  .certified-box {
    height: fit-content;
    padding: 31px 12px 12px 12px;
  }

  .certified-box-icon span i {
    font-size: 18px;
  }

  .certified-box-icon {
    width: 60px;
    height: 60px;
  }
  .faq-q span {
    font-size: 18px;
  }
  .bottom-bar .d-flex {
    display: block !important;
    text-align: center;
  }

  .bottom-bar p {
    text-align: center;
  }
  .mission-content {
    text-align: center;
  }

  .error-wrap p {
    font-size: 58px !important;
  }

  .error-wrap span {
    font-size: 22px !important;
  }

  .error-wrap img {
    width: 345px !important;
  }
}

@media screen and (max-width: 575px) {
  .faq-q span {
    font-size: 16px;
  }
  .footer-wrap ul li a {
    font-size: 14px;
  }
  .extra-link li {
    margin: 10px;
  }
  .social-media li {
    margin-bottom: 10px;
  }
  .section-padding {
    padding: 30px 0px;
  }
  li {
    font-size: 14px;
  }
  .cost-list li {
    margin-bottom: 20px;
  }

  .error-wrap p {
    font-size: 50px !important;
  }

  .error-wrap span {
    font-size: 20px !important;
  }

  .error-wrap img{
    width: 294px !important;
  }

  
}

@media (max-width: 480px) {
  .service-img img
  {
    height:auto;
  }
  .banner-heading {
    font-size: 30px;
  }

  #services .pt-5 {
    padding-top: 0px !important;
  }

  .bottom-bar p {
    font-size: 11px;
  }

  a.navbar-brand.mobile-logo img {
    width: 160px;
  }

  ul {
    padding-left: 28px;
  }

  .common-heading {
    font-size: 17px;
  }

  .service-heading {
    font-size: 18px;
  }

  .counter-box {
    margin-bottom: 25px;
    display: block !important;
  }

  .col-lg-3:last-child .counter-box {
    margin-bottom: 0;
  }

  p {
    font-size: 14px !important;
  }

  .counter-icon {
    font-size: 20px;
    width: 65px;
    height: 65px;
    margin: auto;
  }

  .count {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }

  .testimonial-image img {
    margin-bottom: 12px;
  }

  .footer-heading {
    font-size: 18px;
    margin-bottom: 24px;
  }

  #banner {
    height: 60vh;
  }

  .banner-heading {
    font-size: 26px;
  }

  .banner-para {
    font-size: 14px;
  }

  #services p.d-flex a:last-child {
    display: none;
  }

  #services p.d-flex a {
    display: block;
    text-align: center;
    width: 100%;
  }

  .service-image img {
    height: 220px;
  }

  .price-text .count {
    font-size: 26px;
  }

  .page-banner-heading {
    font-size: 20px !important;
  }

  .call {
    bottom: 35px;
    font-size: 12px;
    padding: 5px 15px;
  }

  form .col {
    flex-basis: auto;
  }

  .form-row.mb-3 {
    margin-bottom: 0 !important;
  }

  .form-control {
    margin-bottom: 15px;
  }

  #page-banner {
    padding: 30px 0;
  }

  #contact-us .form-wrap {
    height: auto;
    margin-bottom: 20px;
  }

  .faq {
    width: 85%;
    margin: auto;
  }

  #process ul {
    padding-left: 15px !important;
  }

  .breadcrumb-item,
  .breadcrumb-item a {
    font-size: 10px;
  }

  .note {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .note-icon {
    top: -16px;
    left: -16px;
  }

  .whatsapp img {
    width: 50px;
    height: 50px;
  }

  .whatsapp {
    bottom: 25px;
  }

  .service-content {
    padding: 10px 15px 20px;
  }

  .project {
    font-size: 15px;
    color: #fff;
    text-align: center;
  }
  .form-control {
    font-size: 11px;
  }
  .footer-icon-wraper i,
  .footer-icon-wraper a {
    font-size: 12px;
  }
}

.error-wrap {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  height: 100vh;
  background-color: #e5eefd;
}

.error-wrap p {
  font-size: 90px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 2px;
}

.error-wrap span {
  font-size: 28px;
}

.error-wrap .theme-button {
  border-radius: 8px;
}

.error-wrap img {
  width: 472px;
}

h4
{
   font-size:17px;
   display:inline;
   margin-right:.25rem;
}

li h3
{
   font-size:17px;
   display:inline;
   margin-right:.25rem;
}

h3.d-inline
{
   font-size:17px;
   display:inline;
   margin-right:.25rem;
}

@media screen and (max-width:500px)
{
   h4
{
   font-size:14px;
}
h3.d-inline
{
   font-size:14px;
}

li h3
{
   font-size:14px;
}
}

   /* area we serve */

.areas-we-serve {
  text-align: center;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  justify-content: center;
  align-items:center;
	margin-top: 30px;
}

.area {
  box-shadow: 0 0 3px rgb(0 0 0 / 99%);
  padding: 20px;
  text-align: center;
}
.see-more{
     grid-column: 2;
    font-size:semi-bold;
    background-color:#2691e4;
    color:#fff;
}
.see-more:hover{
     grid-column: 2;
     background-color:#000000;
     
}
.see-more:hover a{
     color:black;
}
.area:not(:last-child):hover{
    background-color: var(--secondary-color);
    cursor:pointer;
    box-shadow: 0 0 3px rgb(0 0 0 / 9%);
    color:white !important;
}
.area:hover a{
	color: #000000;
}
.area:hover area{
	color: #2691e4;
}

.area:nth-child(13):hover a{
	 color:var(--secondary-color) ;
}

.area:nth-child(13) a{
	color: white ;
}

.areas-we-serve h2 {
  position: relative;
margin-bottom: 30px;
}

.areas-we-serve h2::before,
.areas-we-serve h2::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color:var(--secondary-color);
  bottom: -5px;
  margin-top:5px;

}

.areas-we-serve h2::before {
  left: 50%;
  width: 10%;
}

.areas-we-serve h2::after {
  right: 50%;
  width: 10%;
}
.suburbs-head {
   color:white;
   background-color:#2691e4;
   padding-top: 20px;
}  

@media (max-width:576px)
{
display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 

}

