@import url(responsive.css);

body {
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: clamp(30px, 5vw, 60px);
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.text-grey {
    color: rgba(137, 140, 137, 1);
}

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

.bdr-light {
    border: 1px solid #dbdbdb;
}

.divider-dotted {
    margin: 24px 0 30px;
    border-top: 1px dashed rgba(219, 219, 219, 1);
}

.btn-primary {
    background-color: rgba(232, 42, 110, 1);
    border-color: rgba(232, 42, 110, 1);
    border-radius: 6px;
    padding: 8px 20px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;

    &:hover {
        background-color: rgb(212, 20, 88);
        border-color: rgb(212, 20, 88);
    }
}

.text-danger {
    color: rgba(232, 42, 110, 1) !important;
}

.btn-outline {
    border: 1px solid rgba(231, 234, 238, 1);
    border-radius: 6px;
    justify-content: center;

    &:hover {
        background-color: rgba(232, 42, 110, 1);
        border-color: rgba(232, 42, 110, 1);
        color: #fff;
    }
    &:hover img{
        filter: invert(1);
    }
}

.navbar-toggler {
    padding: 6px;
    font-size: 14px;
    background: rgba(232, 42, 110, 1);
}
.navbar-toggler:focus {
    box-shadow: none !important
}
.navbar-toggler-icon{
    background-image: url(../images/toggler-icon.svg);
}

img.hero_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.icon_rounded {
    background: #fff5f8;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
}


/* Testimonial Card */

.testimonial-card {
  background: white;
  padding: 30px;
  margin: 16px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 64px 140px -48px rgba(153, 153, 153, 0.08);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 25px !important;
    margin: 0 auto;
    background: #fafafa;
}


/* table */
th {
    font-weight: 500;
}
.table tbody tr td {
    background-color: #fbfbfb !important;
    padding: 15px 20px;
    border-bottom: 5px solid #fff;
}

.badge {
    padding: 7px 15px;
    border-radius: 40px;
    font-weight: 400;
}

.high {
    background: #007610;
}

.low {
    background: #ff007a;
}

.moderate {
    background: #BCA300;
}

/* faq */
.accordion-item {
    border: none;
    border-bottom: 1px solid #DBDBDB;
}

.accordion-item:last-child {
    border: none;
}

.accordion-button {
    font-weight: 500;
    background: #fbfbfb;
}

.accordion-button::after, .accordion-button:not(.collapsed)::after {
    background-image: url(../images/chevron-down.svg);
    width: 13px;
    height: 13px;
    background-size: 100%;
    background-position: center;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ff007a;
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    color: #fff;
}

/* footer */
footer {
    font-size: 14px;
}

footer ul li {
    line-height: 2.4;
}


/* Custom Arrow Styles */
.slick-prev img, .slick-next img {
    width: 30px;
    height: 30px;
}

.slick-prev:before, .slick-next:before {
  display: none;
}

.slick-prev, .slick-next {
    background: white;
    z-index: 10;
    top: 105%;
}
.slick-prev {
    left: calc(50% - 30px);
}
.slick-next {
    right: calc(50% - 30px);
}