﻿.yellowslider-container {
    position: relative;
    background-color: #FDC800;
    height: 415px;
    /*height: 460px;*/
    overflow: hidden;
}

.yellowslider {
    /*display: flex;*/
    overflow: hidden;
    position: relative;
    width: 100%;
}

.yellowslide {
    min-width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.yellowslide-wrap {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.yel {
    margin-bottom: 20px;
    color: white;
    font-size: 30px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.yellowslider p {
    color: #002147;
    font-size: 17px;
    font-weight: 650;
    text-align: center;
}

.yellowprev, .yellownext {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px 25px;
    margin-top: -22px;
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    text-align: center;
    user-select: none;
}

.yellownext {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.yellowslider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.yellowdot {
    height: 7px;
    width: 7px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

    .active, .yellowdot:hover {
        background-color: #FFF;
    }

.yellowslider-content {
    padding: 20px;
    text-align: center;
    color: #002147;
}

    .yellowslider-content h2 {
        font-size: 24px;
        color: #002147;
    }

    .yellowslider-content p {
        font-size: 18px;
        color: #002147;
    }

@media (max-width: 767px) { 
    .yellowslider-container {
        height: 470px; 
    }


    .yellowprev, .yellownext {
        padding: 0 5px;
    }
}