.fixed-container {
    margin: 0 auto;
    height: 100%;
    background-color: #ece2cd;
    padding: 40px;
    text-align: center;
    border-bottom: 11px solid #ffcc00;
    overflow: hidden;
}

.slider-frame {
	width: 60%;
    height: auto;
	margin:50px auto 0;
	overflow: hidden;
}

.slider-frame ul {
	display: flex;
	padding: 0;
	width:500%;
	animation: slide 20s infinite alternate ease-in-out;
}

.slider-frame li {
	width: 100%;
	list-style: none;
}

.slider-frame img {
	width: 100%;
}

.slider-frame_2 {
	width: 60%;
    height: auto;
	margin:50px auto 0;
	overflow: hidden;
    margin-bottom: 80px;
}

.slider-frame_2 ul {
	display: flex;
	padding: 0;
	width:400%;
	animation: slide_2 20s infinite alternate ease-in-out;
}

.slider-frame_2 li {
	width: 100%;
	list-style: none;
}

.slider-frame_2 img {
	width: 100%;
    height: 600px;
    object-fit: cover;
}

@keyframes slide {
    0% {margin-left: 0;}          
    16% {margin-left: 0;}       
    20% {margin-left: -100%;}    
    36% {margin-left: -100%;}    
    40% {margin-left: -200%;}    
    56% {margin-left: -200%;}    
    60% {margin-left: -300%;}    
    76% {margin-left: -300%;}    
    80% {margin-left: -400%;}    
    100% {margin-left: -400%;}    
}

@keyframes slide_2 {
    0% {margin-left: 0;}
	20% {margin-left: 0;}
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

.fixed-container h2 {
    color: #b32e12;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.fixed-text {
    text-align: justify;
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10%;
}

.bullet-points {
    text-align: left;
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 30px;
    list-style-type: disc;
    padding: 0 10%;
}

.buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.buttons .btn {
    width: 100%; 
    max-width: 200px; 
}

.buttons .btn a {
    text-decoration: none;
    color: white;
    display: block;
}

.buttons .btn {
    background-color: #b32e12;
    color: white;
    width: 130px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buttons .btn:hover {
    background-color: #ffb84d;
    color: #b32e12;
}

@media (min-width: 768px) {
    .buttons {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 600px) {
    .fixed-text {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 5%;
    }
    .slider-frame, .slider-frame_2 {
        width: 100%;
        margin: 20px 0;
    }
    .slider-frame img, .slider-frame_2 img {
        height: auto;
    }
    .fixed-container h2 {
        font-size: 1.5rem;
    }
}