:root {
    --primary-color: #B90303;
}

a {
    text-decoration: none !important;
}

.primary-button {
    width: fit-content;
    height: 70px;
    display: block;
    margin: 0 auto;
    color: white;
    background-color: var(--primary-color);
    font-family: "Hind Siliguri", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid white;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.primary-button:hover {
    color: black;
    background-color: white;
}

.secondary-button {
    width: fit-content;
    height: 70px;
    display: block;
    margin: 0 auto;
    color: black;
    background-color: #FFED4D;
    font-family: "Hind Siliguri", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid black;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.secondary-button:hover {
    color: white;
    background-color: #008001;
}

.curve-background {
    background-color: #313131; 
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

.button-wrapper {
    height: 60px;
}


.slide-arrow {
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.prev-arrow {
    left: -40px;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    background: transparent;
    cursor: pointer;
}

.next-arrow {
    right: -40px;
    width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    background: transparent;
    cursor: pointer;
}

.slick-arrow-next {
    border-right: 0 solid transparent;
    border-left: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    background: 0 0;
    cursor: pointer;
}

.slick-arrow-prev {
    border-left: 0 solid transparent;
    border-right: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    background: 0 0;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .prev-arrow {
        left: -25px;
    }

    .next-arrow {
        right: -25px;
    }
}