@charset "UTF-8";
@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");
@import url("https://fonts.googleapis.com/css2?family=Lobster&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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Kugile_Demo";
  src: url("../fonts/Kugile_Demo.ttf");
}
body {
  font-family: "Poppins", sans-serif !important;
}
body a {
  text-decoration: none;
}

h1 {
  font-family: "Lobster", cursive !important;
  font-size: 55px !important;
  font-weight: 300 !important;
}

h2 {
  font-size: 35px !important;
  font-weight: 400 !important;
}

/* ======= Sticky Navbar ======= */
.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4196078431) !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  animation: stickySlideDown 1s;
  transition: top 0.5s ease-in;
}

@keyframes stickySlideDown {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
.navbar {
  background-color: rgba(255, 255, 255, 0.6156862745) !important;
}
.navbar .nav-item {
  padding-right: 12px;
}
.navbar a {
  color: #000;
}
.navbar .navbar-brand img {
  height: 70px;
}

.main-banner {
  background: url("../images/cleaning-banner.png") center no-repeat;
  width: 100%;
  height: 510px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 510px;
  text-align: center;
  color: #fff;
}
.main-banner .banner_title h1 {
  font-weight: bold;
  font-size: 45px;
  padding-bottom: 10px;
}
.main-banner .banner_title h5 {
  font-size: 22px;
  font-weight: 300;
}
.main-banner .banner_btn .read-more {
  background: #F9DF19;
  width: 150px;
  display: inline-block;
  padding: 10px;
  color: #000;
  border-radius: 50px;
  border: 1px solid #F9DF19;
  transition: all 0.3s ease-in-out;
}
.main-banner .banner_btn .read-more:hover {
  background: none;
  color: #fff;
}

.banner_form {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}
.banner_form .btn-submit {
  background-color: #F9DF19;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
}

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.dropdown-menu {
  width: 250px;
  padding: 0 !important;
}
.dropdown-menu li .dropdown-item {
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(180, 171, 171, 0.3411764706);
  font-size: 15px !important;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #F9DF19 !important;
  color: #000 !important;
}

.services_heading {
  text-align: center;
}
.services_heading p {
  width: 80%;
  margin: 15px auto;
}

.col-card {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.col-card .card_icon {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(249, 223, 25, 0.7254901961);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background-color: #000;
  padding: 15px !important;
}
.col-card .card_icon img {
  height: 80px !important;
  height: auto;
  padding: 10px;
}
.col-card h4 {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
  line-height: 25px;
}
.col-card p {
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  max-height: auto;
}

.product-grid img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/* Positioning images */
.product-grid img:nth-child(1) {
  grid-row: 1/3;
  /* big image spanning 2 rows */
  grid-column: 1/2;
}

.product-grid img:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/3;
}

.product-grid img:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}

.product-grid img:nth-child(4) {
  grid-row: 3/2;
  grid-column: 1/3;
}

.sec_bg {
  background-color: #f1f1f1;
}
.sec_bg .services_list {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-bottom: 20px;
}
.sec_bg .services_list .card_img {
  overflow: hidden;
}
.sec_bg .services_list .card_img img {
  transition: all 0.3s ease-in-out;
}
.sec_bg .services_list:hover img {
  transform: scale(1.2);
}
.sec_bg .services_list h4 {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
  line-height: 25px;
}
.sec_bg .services_list .arrow_btn {
  padding: 15px;
}
.sec_bg .services_list .arrow_btn h4 {
  margin-bottom: 0 !important;
  font-size: 14px;
  line-height: normal;
}
.sec_bg .services_list .arrow_btn .arrow-t {
  background-color: #F9DF19;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.sec_bg .services_list .arrow_btn i {
  transform: rotate(-45deg);
  font-size: 14px;
}

.sec_bg2 {
  background-color: #F9DF19;
}
.sec_bg2 .services__list ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 17px;
}
.sec_bg2 .services__list ul li span {
  width: 35px;
  height: 35px;
  background-color: rgba(241, 241, 241, 0.7058823529);
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 5px;
}
.sec_bg2 .services__list ul li i {
  color: rgba(0, 0, 0, 0.7960784314);
  font-size: 14px;
}

.carousel_img {
  background-color: #fff;
  border: 1px solid rgba(151, 151, 146, 0.7254901961);
  text-align: end;
}
.carousel_img img {
  height: 90px;
}

/* Owl Carousel custom arrow styles */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #F9DF19 !important;
  color: #fff !important;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background 0.3s, opacity 0.3s;
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev {
  left: -80px;
}

.owl-nav button.owl-next {
  right: -80px;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #0056b3;
  opacity: 1;
}

.owl-nav button span {
  font-size: 30px;
  line-height: 1;
}

.owl-dots {
  display: none !important;
}

#testimonial-carousel .owl-nav button.owl-prev,
#testimonial-carousel .owl-nav button.owl-next {
  background: none !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  font-size: 30px;
}
#testimonial-carousel .owl-nav button.owl-prev:hover,
#testimonial-carousel .owl-nav button.owl-next:hover {
  background: #F9DF19 !important;
  color: #000 !important;
}

.test__bg {
  background: url("../images/testimonials-bg.png") center no-repeat;
  width: 100%;
  margin-bottom: 35px;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4862745098);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test__bg .testimonial_text {
  color: #fff;
  width: 80%;
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
}
.test__bg .testimonial_text::before {
  content: "̏";
  font-size: 50px !important;
  color: #fff;
}

.footer_link h4 {
  padding-bottom: 10px;
  font-size: 19px;
}
.footer_link p {
  font-size: 14px;
  width: 90%;
  line-height: 25px;
}
.footer_link ul {
  padding-left: 0 !important;
}
.footer_link ul li {
  list-style: none;
  margin-bottom: 10px;
}
.footer_link ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer_link ul li a:hover {
  color: #F9DF19;
}

.footer_contact ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3294117647);
  padding: 5px 0;
}
.footer_contact ul li span {
  padding-right: 15px;
}

.social-icons ul {
  display: flex;
  justify-content: start;
  align-items: start;
  padding-left: 0 !important;
  gap: 15px;
}
.social-icons ul li {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  padding: 8px;
  background-color: #F9DF19;
  list-style: none;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.social-icons ul li:hover {
  border-radius: 0;
}
.social-icons ul li a {
  color: #000;
}

.copy_right {
  border-top: 1px solid rgba(255, 255, 255, 0.3294117647);
  padding: 15px 0;
}
.copy_right a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}
.copy_right a:hover {
  color: #F9DF19;
}

/* <========== WHATSAPP-ICONS ============ */
.whatsapp-icon {
  position: fixed;
  bottom: 20px !important;
  right: 20px !important;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  z-index: 99999999999999 !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-icon i {
  font-size: 30px;
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.76);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.main-gallery {
  background: url("../images/gallery/img16.jpeg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-gallery .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 350px;
}
.main-gallery a {
  color: #F9DF19;
}

.card-gallery {
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0;
}
.card-gallery .card-image {
  overflow: hidden;
  border-radius: 10px;
}
.card-gallery .card-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product_btn .view__more {
  background-color: #F9DF19;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  /* make button flex */
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
}
.product_btn .view__more span {
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_btn .view__more span i {
  color: #fff;
  transform: rotate(-45deg);
  font-size: 14px !important;
}

.video_card {
  width: 100%;
  margin: 10px 0;
}
.video_card video {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.client_img {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(151, 151, 146, 0.7254901961);
  text-align: center;
}
.client_img img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.client_img img:hover {
  filter: grayscale(0%);
}

.main-about-banner {
  background: url("../images/about-banner.jpeg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-about-banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 350px;
  text-align: center;
}
.main-about-banner a {
  color: #F9DF19;
}

.about-us-section {
  background: url("../images/cliening-img.png") center no-repeat;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.about_content h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.about_content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #F9DF19;
  margin-top: 5px;
}
.about_content p {
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 28px;
  text-align: justify;
}

.about-us-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.about-us-section2 {
  background-color: #F9DF19;
}
.about-us-section2 .services__list ul {
  display: flex;
  gap: 20px;
  padding-left: 0 !important;
  align-items: center;
  justify-content: center;
}
.about-us-section2 .services__list ul li {
  padding: 10px 9px;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  background-color: #fff;
  border-radius: 30px;
}
.about-us-section2 .services__list ul li span {
  width: 35px;
  height: 35px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 5px;
}
.about-us-section2 .services__list ul li i {
  color: #fff;
  font-size: 14px;
}

.testimonials-section {
  background-color: #f1f1f1;
}

.testimonials__card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  margin: 12px 0;
  min-height: 380px;
}
.testimonials__card img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testimonials__card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 25px;
}
.testimonials__card p {
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 28px;
  text-align: justify;
}
.testimonials__card .star-icon i {
  color: #F9DF19;
  font-size: 14px;
}

.contact_us_form {
  background-color: #f1f1f1;
}

.contact_form {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 95%;
  margin-left: auto;
}
.contact_form .form-control {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid #ced4da !important;
  height: 45px !important;
}
.contact_form .form-control:focus {
  border-color: #F9DF19 !important;
  box-shadow: 0 0 0 0.2rem rgba(249, 223, 25, 0.25) !important;
}
.contact_form textarea.form-control {
  height: auto !important;
}
.contact_form .btn-submit {
  background-color: #F9DF19;
  color: #000;
  border: none;
  padding: 10px 10px;
  width: 60% !important;
  margin: 0 auto;
  display: block;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.contact_form .btn-submit:hover {
  background-color: #000;
  color: #fff;
}

.contact_info ul {
  padding-left: 0 !important;
}
.contact_info ul li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact_info ul li span {
  width: 40px;
  height: 40px;
  background-color: #F9DF19;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.contact_info ul li span i {
  color: #000;
  font-size: 18px;
}
.contact_info ul li a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s;
}
.contact_info ul li a:hover {
  color: #F9DF19;
}
.contact_info .contact_info_social-icons h4 {
  font-size: 18px;
  padding-bottom: 15px;
}
.contact_info .contact_info_social-icons ul {
  display: flex;
  justify-content: start;
  gap: 18px;
  align-items: start;
}
.contact_info .contact_info_social-icons ul li {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  background-color: #000;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  margin-right: 0px;
}
.contact_info .contact_info_social-icons ul li:hover {
  border-radius: 0;
}
.contact_info .contact_info_social-icons ul li a {
  color: #fff;
}
.contact_info .contact_info_social-icons ul li a i {
  font-size: 18px;
}

.service_section {
  background-color: #f1f1f1;
}
.service_section .service_content {
  text-align: justify;
}
.service_section .service_content h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: start;
}
.service_section .service_content h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #F9DF19;
  margin-top: 5px;
}

.product_img {
  margin: 15px 0;
}

.service_title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.service_title h2::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0 auto;
  height: 3px;
  background-color: #F9DF19;
  margin-top: 5px;
}
.service_title p {
  width: 85%;
  margin: 0 auto;
}

.project-bg {
  background-color: #fff;
  padding: 8;
  border-radius: 8px;
}
.project-bg .product_img {
  overflow: hidden;
  border-radius: 10px;
}
.project-bg .product_img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pro_title p {
  width: 95%;
  text-align: center;
  line-height: 30px;
}

.main-water-tank {
  background: url("../images/gallery/img47.jpeg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-water-tank .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 350px;
  text-align: center;
}
.main-water-tank a {
  color: #F9DF19;
}

.main-pit-banner {
  background: url("../images/gallery/img39.jpeg") top no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-pit-banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 350px;
  text-align: center;
}
.main-pit-banner a {
  color: #F9DF19;
}

.main-basemet-banner {
  background: url("../images/gallery/img17.jpeg") center no-repeat;
  width: 100%;
  height: 350px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.main-basemet-banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 350px;
  text-align: center;
}
.main-basemet-banner a {
  color: #F9DF19;
}

.bg_img {
  background: url("../images/bg-img.jpg") center;
  width: 100%;
  height: auto;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(250, 221, 3, 0.9254901961);
}
.bg_img .contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 35px;
}
.bg_img .contact-form input {
  background: none;
  color: #000 !important;
  border: 1px solid #000;
  padding: 10px;
}
.bg_img .contact-form input:focus {
  background: rgba(255, 255, 255, 0.7411764706);
}
.bg_img .contact-form input::-moz-placeholder {
  color: #000 !important;
}
.bg_img .contact-form input::placeholder {
  color: #000 !important;
}
.bg_img .form-control {
  background: none;
  background: none;
  color: #000 !important;
  border: 1px solid #000;
  padding: 10px;
}
.bg_img .btn-submit {
  background-color: #000;
  color: #fff;
  padding: 10px 35px;
  border: none;
}
.bg_img .btn-submit:hover {
  background-color: #F9DF19;
  color: #000;
}
.bg_img textarea:focus {
  background: rgba(255, 255, 255, 0.7411764706);
}

.cleaning-img {
  background: url("../images/png-img.png") center left;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.thank-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 48px 36px;
  text-align: center;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  margin: 8px 0;
  font-size: 35px !important;
  line-height: 1.8 !important;
}

p {
  margin: 0 auto;
  color: #000;
  width: 80%;
  text-align: center;
}

.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-click {
  background: #f9df19;
  color: #000;
  padding: 10px 15px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
  margin-top: 12px;
  border-radius: 30px;
  font-size: 14px;
}

.btn-ghost {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.small {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 14px;
}/*# sourceMappingURL=style.css.map */