﻿/*Slider Start*/
.slider {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

    .slider-item img {
        width: 100%;
        height: 90vh;
        object-fit: cover;
    }

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
    pointer-events: none;
}

.caption-container {
    position: absolute;
    top: 50%;
    left: 8%;
    color: white;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
    width: 50%;
}

    .caption-container h2 {
        font-family: var(--togo-ff-playfair);
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0;
        background: linear-gradient(to bottom, #ffffff 20%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 3px 3px 8px rgba(0,0,0,0.35);
    }

    .caption-container h5 {
        font-size: 1.5rem;
        margin-top: 10px;
        background: linear-gradient(to bottom, #ffffff 10%, #fccb02 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    }

    .caption-container a.button {
        display: inline-block;
        margin-top: 15px;
        background-color: #890C25;
        color: black;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1rem;
        color: #fff;
    }

        .caption-container a.button:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #0054b5;
        }

button.prev,
button.next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    padding: 0;
    background-color: #032f36;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

button.prev {
    left: 5px;
}

button.next {
    right: 5px;
}

    button.prev:hover, button.next:hover {
        background-color: #0054b5;
    }

@media (max-width: 768px) {
    .slider {
        padding-top: 0px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        max-width: 100%;
    }

    .slider-item img {
        height: 35vh;
        object-fit: contains;
    }

    button.prev,
    button.next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        padding: 0;
        background-color: #032f36;
        color: white;
        border: none;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
    }

    .caption-container {
        width: 100%;
    }

    .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        z-index: 1;
        pointer-events: none;
    }

    .caption-container h2 {
        display: block;
        font-size: 1.5rem;
    }

    .caption-container h5 {
        display: block;
        font-size: 1rem;
    }

    .caption-container a.button {
        display: none;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .gradient-overlay {
        background: none;
    }
}
/*Slider End*/

.specialhtwo {
    font-size:18px!important;
}
.specialp {
    font-size:14px!important;
}

.togo-btn-primary-new {
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    padding: 0px 12px 0px;
}
.togo-btn-primary-package {
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    padding: 0px 12px 0px;
    border:solid 1px #032f36;
}
