﻿




.slider-container {
    width: 100%;
    height:100%;
    position: relative;
}

.slide {
    width: 100%;
    display: none;
}

.slide-image {
    width: 100%;
    height: 89.9vh;
    object-fit: cover;
    filter: brightness(0.6);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
}

/*.slide-title {
    width: 100%;
    max-width: 50rem;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize;
}

.slide-desc {
    width: 100%;
    max-width: 50rem;
    color: lightgray;
    font-size: 1rem;
    font-weight: 300;
}*/

/*.slide-btn {
    color: black;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    text-transform: capitalize;
    transition: ease 0.3s;
}

    .slide-btn:hover {
        gap: 1rem;
    }*/

.slide-number-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 5;
    font-size: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(211, 211, 211, 0.788);
    letter-spacing: 0.2rem;
}

    .slide-number-container hr {
        width: 3rem;
        transform: rotate(130deg);
        border-color: rgba(211, 211, 211, 0.788);
    }

/*.slider-nav {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-nav-btn {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.226);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
}*/

    /*.slider-nav-btn:hover {
        background-color: white;
        color: black;
    }

.dot-container {
    position: absolute;
    bottom: 1rem;
    left: 0;
    z-index: 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    background-color: rgba(211, 211, 211, 0.226);
    border-radius: 50%;
    display: inline-block;
    transition: ease 0.3s;
}

    .active,
    .dot:hover {
        background-color: white;
    }*/

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}







.card {
    height: 400px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    margin: 0 10px;
}

    .card:before{
        /*height: 120px;*/
        width: calc(100% + 100px);
        content: "";
        position: absolute;
        background-image: linear-gradient(to top, #17a3e2 0%, #203763 100%);
        /*border-radius: 4px 4px 100% 100%;*/
        transition: all 0.4s ease-out;
        top: 0;
    } 
 
    


    .card article {
        z-index: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

        .card article h2 {
            color: #203763;
            margin: 0;
            padding: 15px 0px 0px 0px;
            font-weight: 500;
            font-size: 24px;
        }

        .card article .title {
            color: white;
            padding: 10px 20px;
            letter-spacing: 0.8px;
            transition: all 0.4s ease;
        }

        .card article .desc {
            padding: 10px 10px;
            line-height: 1.3;
            font-size: 18px;
            text-align: center;
            color: #666;
            transition: all 0.4s ease-out;
        }
        

        .card article .pic {
            width: 100px;
            height: 100px;
            background-color: #1ca4e21f;
            overflow: hidden;
            border-radius: 100%;
            margin: 20px 0;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
            transition: all 0.6s ease;
        }

            .card article .pic img {
                padding: 1.5em;
                /*-webkit-filter: grayscale(100%);
                    filter: grayscale(100%);*/
            }


@keyframes icon {
    0% {
        width: 22px;
    }

    50% {
        width: 40px;
    }

    100% {
        width: 22px;
    }
}



.card:hover {
    color:#fff;
    transform: translateY(-10px);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
}

    .card:hover:before {
        height: 100%;
        border-radius: 4px;
    }

    .card:hover .desc {
        color: white;
    }
    .card:hover h2 {
        color: white;
    }
    .card:hover .trk-btn--arrow {
        color: white;
    }

    .card:hover .pic {
        background-color:#fff;
        box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.3);
    }

        .card:hover .pic img {
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }

.banner__content {
    background-color: #000000ab;
    padding: 25px;
    width: fit-content;
}
