@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px; /* Increased width */
    height: 40px; /* Increased height */
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: rgba(22, 66, 60, 0.7); /* Added background with your color */
    border-radius: 50%; /* Made it circular */
    z-index: 10; /* Ensure it's above other elements */
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: rgba(22, 66, 60, 1); /* Solid background on hover/focus */
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .5; /* Increased opacity for better visibility */
}
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 30px; /* Increased font size */
    line-height: 1;
    opacity: 1; /* Full opacity */
    color: white; /* White color for better contrast */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
    left: -50px; /* Moved outside the slider */
}
[dir='rtl'] .slick-prev
{
    right: -50px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}
.slick-next
{
    right: -50px; /* Moved outside the slider */
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -50px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}
/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 35px; /* Increased to make room for dots */
}
.slick-dots
{
    position: absolute;
    bottom: -30px; /* Moved down slightly */
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 14px; /* Reduced width for tighter layout */
    height: 14px; /* Reduced height for tighter layout */
    margin: 0 6px; /* Slightly larger margin between dots */
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 14px; /* Match li width */
    height: 14px; /* Match li height */
    padding: 0; /* Removed padding */
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
    background-color: rgba(22, 66, 60, 0.8); /* Hover state with your color */
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 0; /* Hide the default bullet */
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px; /* Dot size */
    height: 10px; /* Dot size */
    content: '';
    text-align: center;
    opacity: 1; /* Full opacity */
    background-color: rgba(22, 66, 60, 0.4); /* Your color with transparency */
    border-radius: 50%; /* Circular dots */
    transform: translate(-50%, -50%); /* Center the dot */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    background-color: #16423C; /* Solid color for active dot */
    width: 12px; /* Slightly larger active dot */
    height: 12px; /* Slightly larger active dot */
}

/* Added selector for the slider container to provide space for outside arrows */
.slick-slider {
    margin-left: 50px;
    margin-right: 50px;
}

/* Added media query for mobile devices */
@media (max-width: 768px) {
    .slick-prev, .slick-next {
        width: 35px;
        height: 35px;
    }
    
    /* On mobile, move arrows slightly inside to ensure they're visible */
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
    
    /* Remove extra margin on mobile */
    .slick-slider {
        margin-left: 0;
        margin-right: 0;
    }
}