/* Import the Sherman font */
@font-face {
    font-family: 'Sherman';
    src: url('../fonts/Sherman-Display.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the Sherman font to the entire project */
body {
    font-family: 'Sherman', sans-serif;
}

/*Carousel home*/
.carousel-home-partners-prev,
.carousel-home-partners-next {
    width: 50px;
    height: 50px;
    background: none;
    /* Remove default icon */
}

.carousel-home-partners-prev::before {
    content: '<';
    /* Custom arrow */
    font-size: 2rem;
    color: #ff0000;
    /* Change color */
}

.carousel-home-partners-next::before {
    content: '>';
    font-size: 2rem;
    color: #ff0000;
}

.carousel-indicators-partners [data-bs-target] {
    background-color: #000;
    /* Inactive indicator color */
    opacity: 0.5;
    /* Opacity for inactive indicators */
}

.carousel-indicators-partners .active {
    background-color: #ff0000;
    /* Active indicator color */
}


.home_sections_bg {
    background-image: url(../images/about_us/zapata_bowl_femenil.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 100vh;
    display: flex; */
    /* justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem; */
}

/*Colors*/
.color-red {
    color: #f31212;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='red' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}