@tailwind base;
@tailwind components;
@tailwind utilities;

.slides-container {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}
.slides-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.sub-group:hover > ul {
    display: block;
}

/* partners section */
.slider {
    overflow: hidden;
    width: 100%;
}

/* tabs */
.tab-wrapper {
    width: 100%;
}

.tabs {
    display: flex;
    gap: 10px;
    justify-items: flex-end;
    margin-bottom: 20px;
}

.tab {
    padding: 12px;
    background: #9299af;
    color: white;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid #9299af;
    font-weight: bold;
}

.tab.active {
    background: #115f2c;
    color: white;
    border: 2px solid #115f2c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
		font-weight: bold;
}

.tab-content {
    padding: 20px;
    border-radius: 6px;
}

.tab:hover {
    color: #115f2c;
    background: white;
    border-color: #115f2c;
    border: 2px solid #115f2c;
}


