.color-primary {
    color: var(--primary-color) !important;
}

.color-secondary {
    color: var(--secondary-color) !important;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    border: none;
    font-weight: 700 !important;
    padding: 8px 10px;
}

.button-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color) !important;
    border: none;
    font-weight: 700 !important;

    padding: 8px 10px;
}
.section-container {
    background: url(../img/bg/concrete.webp) lightgray 50% / cover no-repeat;
    padding: 15px 15px;
}
@media(min-width: 1024px) {    
    .section-container {
        padding: 40px 150px;

    }
}


.section-container h4 {
    color: var(--secondary-color);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(../img/bg/plaza-cusco.jpg) lightgray 0px -233.522px / 100% 515.942% no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 10px;
    color: white;
}

.separator img {
    width: 100%;
    min-height: 30px;
    opacity: 0.5;
    object-fit: cover;
}

.separator-secondary {
    background-image: linear-gradient(rgba(255, 107, 1, 0.30), rgba(255, 107, 1, 0.30)), url(../img/bg/plaza-cusco.jpg);
    /* background-color: rgba(255, 107, 1, 0.30); */
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 10px;
    color: white;
    background-blend-mode: multiply;

}

.separator-secondary img {
    width: 100%;
    object-fit: cover;
}

.separator-secondary h2 {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Inter';
}
.bold{
    font-weight: 700;
}

.line-separator-horizontal {
    width: 100%;
    border-bottom: 1px solid #9A9A9A;
}

.line-separator-vertical {
    height: auto;
    border-left: 1px solid #9A9A9A;
}

.hidden{
    display: none !important;
}

.active{
    display: flex !important;
}

.stars{
    display: flex;
    gap: 5px;    
}

.stars img{
    width: auto !important;
    height: 20px !important;
}

.popular-tours__title{
    font-family: Inter;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 800;
}

@media(min-width: 1024px) {
    .popular-tours__title{
        font-size: 40px;
    }
}