/********** Template CSS **********/
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;

  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ---------------------------------------------
# Cookies
-----------------------------------------------*/
.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: #0E2E50;
  width: 98%;
  z-index: 999998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 5px;
  color: #f1f1f1;
  font-size: 18px;
  margin-bottom: 20px;
}

.msg-cookies {
  margin-left: 20px;
  margin-top: 20px;
}

.box-cookies .btn-cookies {
  background: #f39c14;
  border: 0;
  padding: 5px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;


}

.box-cookies .btn-cookies:hover {
  background: #fff;
  border: 0;
  padding: 5px;
  color: #f39c14 !important;
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;
  /* padding: 20px; */

}

.productLink {
  padding: 12px;
  background: #f39c14;
  color: #0E2E50;
  border-radius: 10px;
}

.productLink:hover {
  color: #f39c14;
  background: #0E2E50;
}

.box-cookies-size {
  justify-content: center;
  display: flex;
}

.color-cookies {
  color: #f39c14;
}

.color-cookies:hover {
  color: #ffff;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}

.bg-section {
  background-color: #ffff;
}

.bg-section1 {
  background-color: #0E2E50;
}

.bg-section2 {
  background-color: #d2e7ff;
}

.img-gray {
  width: 100px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.img-gray2 {
  width: 180px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.img-gray:hover {
  transform: scale(1.1);
  transition: 0.9s;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.img-gray2:hover {
  transform: scale(1.1);
  transition: 0.9s;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

:root {
  --primary: #f39c14;
  --secondary: #ffffff;
  --light: #d2e7ff;
  --dark: #0E2E50;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 25px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
  position: relative;
  margin-top: 45px;
  padding: 0 3rem;
  transition: .5s;
  z-index: 9999;
}

.nav-bar.sticky-top {
  position: sticky;
  padding: 0;
  z-index: 9999;
}

.navbar {
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #0E2E50;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .nav-bar {
    margin: 0;
    padding: 0;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: 100%;
    margin-top: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;

  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
@media (min-width: 992px) {
  .header {
    margin-top: -120px;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: #0E2E50;
  color: #f39c14;
}

@media (max-width: 768px) {
  .header-carousel .owl-nav {
    left: 25px;
  }
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #0E2E50;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

/* .php-email-form label {
    color: #000000;
    position: relative;
  }
  .php-email-form select.form-control-lg:not([size]):not([multiple]) {
    height: 3.5rem;
  }
  .php-email-form .form-control {
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 300;
  }
  .php-email-form .form-control.form-control-a {
    height: 3.5rem;
  }
  .php-email-form .form-control:focus {
    box-shadow: none;
    border-color: #d00000;
  } */

.form {
  --input-text-color: #f39c14;
  --input-bg-color: #0E2E50;
  --focus-input-bg-color: transparent;
  --text-color: #f39c14;
  --active-color: #0E2E50;
  --width-of-input: 400px;
  --inline-padding-of-input: 1.2em;
  --gap: 0.9rem;
}

/* form style */
.form {
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: var(--width-of-input);
  position: relative;
  isolation: isolate;
}

/* a fancy bg for showing background and border when focus. */
.fancy-bg {
  position: absolute;
  width: 100%;
  inset: 0;
  background: var(--input-bg-color);
  border-radius: 30px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  box-shadow: #0E2E50;
}

/* label styling */
label {
  width: 100%;
  padding: 0.8em;
  height: 40px;
  padding-inline: var(--inline-padding-of-input);
  display: flex;
  align-items: center;
}

.search,
.close-btn {
  position: absolute;
}

/* styling search-icon */
.search {
  fill: var(--text-color);
  left: var(--inline-padding-of-input);
}

/* svg -- size */
svg {
  width: 17px;
  display: block;
}

/* styling of close button */
.close-btn {
  border: none;
  right: var(--inline-padding-of-input);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c14;
  padding: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--active-color);
  opacity: 0;
  visibility: hidden;
}

/* styling of input */
.input {
  color: var(--input-text-color);
  width: 100%;
  margin-inline: min(2em, calc(var(--inline-padding-of-input) + var(--gap)));
  background: none;
  border: none;
}

.input:focus {
  outline: none;
}

.input::placeholder {
  color: var(--text-color)
}

/* input background change in focus */
.input:focus~.fancy-bg {
  border: 1px solid var(--active-color);
  background: var(--focus-input-bg-color);
}

/* search icon color change in focus */
.input:focus~.search {
  fill: var(--active-color);
}

/* showing close button when typing */
.input:valid~.close-btn {
  opacity: 1;
  visibility: visible;
}

/* this is for the default background in input,when selecting autofill options -- you can remove this code if you do not want to override the browser style.  */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}

/*** Icon ***/
.icon {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF !important;
  border-radius: 50px;
  border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
  z-index: 1;
}


/*** Category ***/
.cat-item div {
  background: #0E2E50;
  border: 1px dashed #f39c14;
  transition: .5s;
}

.cat-item h6 {
  color: #ffffff;
}

.cat-item span {
  color: #ffffff !important;
}

.cat-item:hover div {
  background: var(--primary);
  border-color: transparent;
}

.cat-item div * {
  transition: .5s;
}

.cat-item:hover div * {
  color: #0E2E50 !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
  color: #0E2E50;
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #FFFFFF;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
  transition: .5s;
}

.property-item:hover img {
  transform: scale(1.1);
}

.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
  transition: .5s;
}

.team-item .btn {
  color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .testimonial-carousel {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.testimonial-carousel .testimonial-item .border {
  border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: .5s;
}

.text-color-1 {
  color: #0E2E50;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: #ffff;
  color: #f39c14;
}


/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}




@media (min-width:991px) {
  .call {
    display: none;
  }
}

.wpp2 {
  background: rgb(149, 186, 255);
  background: linear-gradient(266deg, rgba(149, 186, 255, 1) 0%, rgba(5, 17, 230, 1) 100%);
  padding: 10px;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 12px;
  color: #fff;
  border-radius: 15px 0 0 15px;

}

.wpp2:hover {
  background-color: #ce0b0b;
  transition: 0.5s;

}

.wpp3 {
  background: rgb(7, 170, 34);
  background: linear-gradient(266deg, rgba(7, 170, 34, 1) 0%, rgba(60, 224, 49, 1) 100%);
  padding: 10px;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 12px;
  color: #fff;
  border-radius: 0 15px 15px 0;

}

.wpptext {
  color: #fff;
  text-transform: uppercase;
}






/*** Testimonial ***/
.testimonial {
  background: #0E2E50;
  background-size: cover;
}

.testimonial-item {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  background: #FFFFFF;
  border: 30px solid var(--primary);
}

.testimonial-item img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
}

.testimonial-carousel .owl-dots {
  margin-top: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 15px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--dark);
}

.text_testi{
  text-align: justify;
}



/*----------------------------------------*/
/*  Milestones Section CSS
/*----------------------------------------*/
.milestone {
	min-height: 110px;
	padding-left: 43px;
	padding-top: 15px;
	position: relative;
}

.milestone h2 {
	margin-bottom: 0;
	font-size: 68px;
	display: inline-block;
	float: left;
	position: relative;
	z-index: 1;
}

.milestone p {
	float: left;
	font-size: 20px;
	margin-top: 10px;
	margin-left: 10px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.milestone:after {
	position: absolute;
	content: "";
	width: 110px;
	height: 110px;
	left: 0;
	top: 0;
	background: #e8ebfc;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.milestone:hover:after {
	background: var(--primary);
}



/*faq*/
.text_FAQ{
  color: #0E2E50 !important;
}
.a_faq{
  color: #0E2E50 !important;
}
.a_faq.active{
  color: #0E2E50 !important;
}
#faq .icon-help a{
  color: #d0a941;
}
#faq{
  padding: 50px;
}
#faq h2{
  color: #fff;
}

/* .section-bg{
  background: #fca40234;
} */

.faq .faq-list {
  padding: 0 100px;
  color: #e68301 !important;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;

}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 28px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: -2px -10px 88px 0px rgba(1, 4, 49, 0.459);
  -moz-box-shadow: -2px -10px 88px 0px rgba(1, 4, 49, 0.459);
  box-shadow: -2px -10px 88px 0px rgba(1, 4, 49, 0.459);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 17px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #d0a941;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--dark);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #d0a941;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*faq*/
.parceiro-logo {
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.parceiro-item:hover .parceiro-logo {
    transform: translateY(-8px);
    border-color: #007bff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.parceiro-item h6 {
    color: #333;
    transition: color 0.3s ease;
}

.parceiro-item:hover h6 {
    color: #007bff;
}

.parceiros-carousel .owl-item {
    padding: 15px;
}

/* Configurações do Owl Carousel */
.parceiros-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.parceiros-carousel .owl-nav button {
    background: #007bff !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

.parceiros-carousel .owl-nav button:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
}

.parceiros-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.parceiros-carousel .owl-dot span {
    background: #dee2e6 !important;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.parceiros-carousel .owl-dot.active span {
    background: #007bff !important;
    width: 30px;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .parceiro-logo {
        width: auto;
        height: auto;
    }
    
    .parceiro-logo img {
        max-height: 50px !important;
    }
}
.owl-nav{
  display: none!important;
}
.bg-main{
 background: #0E2E50;
}
.bg-ecoflex{
 background: #0D512C;
}
.service-card {
    height: 350px;
    /* cursor: pointer; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, #0E2E50 0%, rgba(0, 123, 255, 0.6) 50%, transparent 100%);
}

.service-content {
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Efeito de brilho no hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-card {
        height: 300px;
    }
    
    .service-content h4 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    .owl-carousel .owl-dot {
  display: none;
}
}

@media (max-width: 576px) {
    .service-card {
        height: 250px;
        margin-bottom: 1rem;
    }
}
