﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.carousel-container {
    display: flex;
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    width: calc(100% * 3);
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    display: flex;
}

.left-panel {
    width: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .left-panel h2 {
        color: #2f5ea7;
        font-size: 19px;
        margin-bottom: 15px;
    }

    .left-panel button {
        background-color: #2f5ea7;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }

.right-panel {
    width: 50%;
    background: #2f5ea7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .right-panel img {
        max-width: 150px;
        height: auto;
    }

.controls {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    gap: 10px;
}

    .controls span {
        cursor: pointer;
        font-size: 24px;
        color: #2f5ea7;
        user-select: none;
        background: white;
        padding: 5px 10px;
        border-radius: 50%;
    }

