﻿* {
    padding: 0;
    margin: 0;
    /*    box-sizing: border-box;*/
}

/* Navigation */
.nav-link-custom {
    padding: 8px 8px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .nav-link-custom:hover {
        background-color: #0e72ed;
        color: white;
        text-decoration: none;
    }
        .nav-link-custom:hover a {
            color: white;
        }
nav-pills:hover {
    background-color: #0e72ed;
    color: white;
}
/*.navbar-nav .nav-item {
    margin-right: 10px;
}*/

.dropdown-item {
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .dropdown-item:hover {
        background-color: #0e72ed;
        color: white;
    }
/* Navigation */
.navbar a {
    margin-left: 10px;
    font-size: 1rem;
    color: black;
}
/* Make the text bold when hovering over the navigation items */
/*.navbar-left a:hover {
    color:midnightblue;
}*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 767.98px) {
    .form-container {
        padding: 1.5rem;
        box-shadow: none;
    }

    .hero-image {
        height: 200px;
    }
}
/* Make the active item have a bold font-weight */



ul li {
    list-style: none;
}

/* Loader Styles */


/* Overflow to the right on small screens */
@media (max-width: 576px) {
    #card {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

        #card + #card {
            margin-left: 0;
        }
}
/* Define the animations */


/* General styling */
.scrollable-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .scrollable-wrapper ul {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease-in-out;
        padding: 0;
        margin: 0;
    }

        /* Hide scrollbars */
        .scrollable-wrapper ul::-webkit-scrollbar {
            display: none;
        }

    .scrollable-wrapper ul {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

/* Styling for the swipe buttons */
.swipe-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    width: 40px;
    height: 100%;
    outline: none;
}

    .swipe-button.left {
        left: 0;
    }

    .swipe-button.right {
        right: 0;
    }

        /* Arrow styling for the swipe buttons */
        .swipe-button.left::before,
        .swipe-button.right::before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: 15px;
            height: 15px;
            border-top: 2px solid #000;
            border-right: 2px solid #000;
        }

    .swipe-button.left::before {
        transform: translateY(-50%) rotate(-135deg);
        left: 15px;
    }

    .swipe-button.right::before {
        right: 15px;
        transform: translateY(-50%) rotate(45deg);
    }

/*Dashboard*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .scrollable-wrapper ul {
        overflow-x: scroll;
        scroll-behavior: smooth;
    }

    .swipe-button {
        display: block;
    }
}

@media (min-width: 769px) {
    .scrollable-wrapper ul {
        flex-wrap: wrap;
    }

    .swipe-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .graduate-container {
        flex-direction: column;
        text-align: center;
    }
}

body {
    margin-top: 80px;
    /*    padding-left: 20px;
    padding-right: 20px;
    overflow:auto;*/
}

footer a {
    text-decoration: none;
    color: white;
}

.col h4 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.fee {
    background-color: burlywood;
}

footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
