@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white-color: #fff;
    --white-smoke: #f1f1f1;
    --black-color: #1e1e1e;
    --red-color: #f44460;
    --main-color: #019dd7;
}

h1,
h2,
h3 {
    font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

a {
    text-decoration: none !important;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: none !important;
}

.global_btn {
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 10px 30px;
}


/* 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;
}

.slick-dots li.slick-active button {
    /* background: var(--main-color) !important; */
    background: var(--main-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;
}

.global_wrapper {
    padding: 70px 0;
    background-color: #152553;
}


/* This only changes this particular animation duration */
.animate__animated.animate__shakeX {
    --animate-duration: 2s;
}

/* This changes all the animations globally */
:root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}

@media(max-width:768px) {
    .global_btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}