.navbar {
  /*padding: 0.5rem 0;*/

}

.navbar-brand {
  /*margin-right: 1rem;*/
  padding-left: 20px;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: #212529;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #6c757d;
}

.navbar-nav .nav-item.active .nav-link {
  color: #000;
}

.navbar-nav .nav-item.active .nav-link::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 100%;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
}

.navbar-nav .nav-item .nav-link::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 100%;
  background-color: transparent;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
  transition: background-color 0.3s ease-out;
}

.navbar-brand img {
  max-height: 40px;
  max-width: 100%;
}

.navbar-nav .nav-item .nav-link:hover::after {
  background-color: #6c757d;
}

.price {
  font-size: 18px; /* change the font size as desired */
}
.hero-bg {
  background-image: url('/static/images/background.jpg');
  background-size: cover;
  background-position: center center;
  height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup {
  background-image: url('/static/images/background.jpg');
  background-size: cover;
  background-position: center center;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin: 0;
  padding-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 1.5rem;
}

.search-container {
  display: flex;
  justify-content: center;
}

.search-container input[type="text"] {
  width: 50%;
  font-size: 1.5rem;
  padding: 0.5rem;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
}

.search-container button {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}
.pharmacy-section {
  background-color: #72CEF7;
  height: 20%;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-top: 0;
  color: white;
}

.logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.logo {
  filter: grayscale(100%) brightness(200%);
}

.logo-row img {
  max-height: 50px;
  margin-right: 20px;
filter: brightness(0) invert(1);
}

.full-width-section {
  height: 0.5vh; /* Set height to 5% of the viewport height */
  background-color: white; /* Set background color to white */
  width: 100%; /* Set width to 100% */
  margin: 0; /* Remove any default margin */
  padding: 0; /* Remove any default padding */
}


.saving-prescription-section {
  background-color: #fff;
  padding: 50px 0;
}

.circular-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #0073aa;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.circular-image img {
  max-width: 100%;
}

.saving-prescription-section h4 {
  font-size: 24px;
  font-weight: 600;
  color: #0073aa;
}


#prescription-faqs {
  background-color: #f9f9f9;
  padding: 50px 0;
}

#prescription-faqs h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

#prescription-faqs .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#prescription-faqs .card {
  width: 75%;
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

#prescription-faqs .card h3 {
  color: #0095d9;
  font-weight: bold;
  margin-bottom: 10px;
}

#prescription-faqs .card p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

footer {
  background-color: #282828;
  color: #fff;


  font-size: 14px;
}

.footer a {
  font-size: 18px !important;
}

.footer p {
  font-size: 18px !important;
}

.footer-content {
  max-width: 1200px;

}

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.animation {
  animation-duration: 1s;
  animation-name: shake;
  animation-fill-mode: both;
}

.animation-target {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.animation-drop-target {
  animation: drop 0.5s ease-in-out both;
}

.pin {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  visibility: visible;
}

.pin.show {
  opacity: 1;
}


.sample-pricing{
background: url(/static/images/bg-map-sample.png) center center no-repeat;
height: 450px;
padding-top: 20px;
}

.sample-card{
    margin: 0 auto;
    margin-top: -30px;
    background: #fff;
    -webkit-box-shadow: 0 2px 14px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 14px 0 rgba(0,0,0,.3);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.3);
    max-width: 708px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    text-align: center;
}

.sample-card-h4 {

    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin: 0 0 5px;
    display: block;
}

.sample-card--slider{

    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
    width: calc(100%*4);
}
.sample-card--item{

    width: 708px;
}
.sample-card--name{
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 300;
    line-height: 120%;
    padding: 0;
}

.sample-card--amt {
    color: #aaa;
    font-size: 16px;
    margin: 4px 0 0 0;
    padding: 0;
}

.sample-card--footer {
    background: linear-gradient(to right,#fff 0%,rgba(255,255,255,0) 30%,rgba(255,255,255,0) 70%,#fff 100%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.sample-card--footer a.disabled {
    opacity: .25;
}
.sample-card--footer a {
    display: block;
    height: 100%;
    opacity: .6;
    width: 100px;
}

.sample-card--prev {
    background: url(/static/images/prev-arrow.svg) center no-repeat;
    float: left;
}
.sample-card--next {
    background: url(/static/images/next-arrow.svg) center no-repeat;
    float: right;
}

.sample-pricing .price-pins {
    height: 320px;
    left: calc(50% - 354px);
    max-width: 708px;
    position: relative;
}

.sample-pricing .price-pins .pin {
    background: url(/static/images/dark-pin.svg) no-repeat center;
    color: #fff;
    height: 44px;
    font-size: 12px;
    padding-top: 7px;
    position: absolute;
    text-align: center;
    width: 68px;
}
.animation-target{
    animation: animation 1960ms linear both;
}

.sample-pricing .price-pins .pin-0 {
    left: 226px;
    top: 115px;
}
.sample-pricing .price-pins .pin-1 {
    left: 207px;
    top: 4px;
}
.sample-pricing .price-pins .pin-2 {
    left: 260px;
    top: 160px;
}
.sample-pricing .price-pins .pin-3 {
    left: 320px;
    top: 50px;
}

.sample-pricing .price-pins .pin-4 {
    left: 430px;
    top: 15px;
}
.sample-pricing .price-pins .pin-5 {
    left: 400px;
    top: 92px;
}
.sample-pricing .price-pins .pin-green {
    background: url(/static/images/green-pin.svg) no-repeat center;
}

footer.full-width-footer {
  width: 100%;
  box-sizing: border-box;
}

.footer {
  background-color: #72CEF7;
  /*padding: 10px;*/
  display: flex;*/
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

.footer__left-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__right-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer__left-column h3,
.footer__right-column h3 {
  margin-bottom: 20px;
}

.footer__left-column a,
.footer__left-column p,
.footer__right-column a,
.footer__right-column p {
  /*margin: 0 0 10px 0;*/
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.footer__left-column a:hover {
  text-decoration: underline;
}

.footer__right-column a:hover {
  text-decoration: underline;
}

.footer__left-column a:not(:last-child) {
  /*margin-right: 20px;*/
}

.footer__bottom-text {
  background-color: #72CEF7;
  text-align: center;
  color: white;
  font-size: 14px;
  margin-top: 0;
}
/* Styles for desktop */
@media (min-width: 768px) {
  .heading {
    font-size: 50px !important;

    /* Add other desktop-specific styles here */
  }
  .leftadjust1 {
    font-size: 30px;
  }
}

/* Styles for mobile */
@media (max-width: 767px) {
  .heading {
    font-size: 24px !important;

    /* Add other mobile-specific styles here */
  }
  .leftadjust1{
    font-size: 16px;
  }
}

#leftadjust1 {
    font-weight: bold;
    text-align: left;
  }