@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap");

.price-table {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.price-card {
  border: 2px solid #3DBB92;
  /* Primary color border */
  border-radius: 10px;
  transition: transform 0.3s;
  position: relative;
  margin-bottom: 20px;
  /* Add bottom margin for responsive layout */
  background-color: #fff;
  font-family: "oswald", sans-serif;
  /* Card background color */
}

.price-card:hover {
  transform: scale(1.05);
  /* border-color: #015f40; */
  /* Darkened primary color on hover */
}

.price-card-kdv {
  color: #a9a9a9;
  font-size: 14px;
}

.price-card-body {
  padding: 60px 20px 20px 20px;
  color: #000;
}

.price-card-body strike {
  font-size: 16px;
  display: block;
  font-weight: normal;
  color: #5d5757;
}

.price-card-body .fa-check {
  color: #3DBB92
}

.price-table .col-md-3 {
  width: 17%;
}

.price-card-title {
  font-weight: bold;
  margin-top: 15px;
  /* Add margin-top */
  border-bottom: 1px dashed #ddd;
  margin-bottom: 7px;
  text-align: center;
}

.price-card-desc {
  font-size: 15px;
  margin: 0;
  color: #726e6e;
}

.price-card-text {
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 5px;
}

.btn-free-trial {
  background-color: #3DBB92;
  /* Primary color background */
  border: 2px solid #3DBB92;
  /* Primary color border */
  color: #fff;
  /* White text color */
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 15px;
  /* Add margin-top */
  padding: 15px;
  border-radius: 10px;
  ;
}

.btn-free-trial:hover {
  background-color: #1f7457;
  /* Darkened primary color on hover */
  color: #fff;
  /* White text color on hover */
}

.features-list {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.features-list li {
  border-bottom: 1px dashed #ddd;
  font-weight: 500;
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
}

/* Highlight Styles for Small Business */
.price-card-highlight {
  border: 2px solid #3DBB92;
  /* Primary color border */
  border-radius: 10px;
  /* Rounded corners */
  position: relative;
}

.highlight-box {
  background-color: #3DBB92;
  /* Primary color background */
  padding: 10px;
  /* Add padding instead of height */
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-text {
  color: #fff;
  /* White text color */
  font-weight: bold;
}

.price-card-highlight .price-card-body {
  margin-top: 20px;
  /* Adjust spacing to accommodate the highlight box */
}

.highlight-btn {
  background-color: #3DBB92;
  /* Primary color background */
  border: 2px solid #3DBB92;
  /* Primary color border */
  color: #fff;
  /* White text color */
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.highlight-btn:hover {
  background-color: #fff;
  /* White background color on hover */
  color: #3DBB92;
  /* Primary color text on hover */
}

.price-bg-color-orange {
  background-color: #fca102;
}

.price-bg-color-blue {
  background-color: #36b6f9;
}

.price-bg-color-pink {
  background-color: #d71961;
}

.price-border-color-orange {
  border-color: #fca102;
}

.price-border-color-blue {
  border-color: #36b6f9;
}

.price-border-color-pink {
  border-color: #d71961;
}

@media (min-width: 769px) {
  .price-slider-mobile {
    display: none;
  }
}

@media(max-width:768px) {
  .price-table {
    display: none;
  }

  .price-card:hover {
    transform: scale(1);
  }

  .price-slider-mobile {
    display: block;
    padding: 10px;
    margin-top: 25px;
    position: relative;
  }

  .slider-wrapper .col-md-3 {
    width: 100%;
    padding: 0 10px;
    position: relative;
  }

  .arrow-box {
    position: absolute;
    top: -10px;
    z-index: 5;
    display: flex;
    right: 50px;
  }

  .arrow-box .slick-arrow,
  .arrow-box .slick-arrow {
    background: #3DBB92;
    padding: 4px;
    border-radius: 5px;
  }

  .arrow-box .slick-prev:hover,
  .arrow-box .slick-prev:focus,
  .arrow-box .slick-next:hover,
  .arrow-box .slick-next:focus {
    color: black;
    outline: none;
    background: #3DBB92;
  }

  .arrow-box .slick-arrow:before,
  .arrow-box .slick-arrow:after {
    all: unset;
  }

  .arrow-box .slick-disabled {
    opacity: 0.5;
  }

  .arrow-box button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #333;
  }
}