/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif; */
    font-family: "Hind", sans-serif;
}

:root {
    --main-color: #E31837;
    --black-color: #1e1e1e;
    --white-color: #fff;
    --white-smoke: #f1f1f1;
}

h1,glbal
h3 {
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Josefin Sans", sans-serif;
}

h1,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

.global_btn {
    background-color: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
}

.global_btn:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    transition: .3s ease;
}

/* slick css */
.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px;
    /* background: rgba(182, 182, 182, 0.5) !important; */
    background: rgba(0, 0, 0, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    /* background: var(--white-color) !important; */
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
}