color {
    color: #23A3E5;
    color: #1D257A;
    color: #ABCDE8;
}

.bg-orange {
    background-color: white;
}

.nav-item a {
    color: #3D3125;
}

.nav-item .nav-link {
    color: #3D3125;
}

.nav-item:hover {
    background-color: #23A3E5;
    color: white;
}

.navbar-nav {
    gap: 30px;
    font-size: 18px;
    color: white;
}

/* dropdown */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1D257A;
    color: #3D3125;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    gap: 50px;
}

.dropdown-content a {
    color: white;
}

.dropdown-content:hover {
    background-color: #23A3E5;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
    color: black;
}

.dropdown-link {
    padding-top: 30px;
}

/* banner */

.home-banner {
    /* margin-top: 79.5px; */
    width: 100%;
    height: 70vh;
    font-family: 'Fredoka', sans-serif;
}

.home-banner img {
    margin-top: 0px;
    width: 100%;
    height: 70vh;
    /* filter: brightness(50%);
    object-fit: cover; */
}

@keyframes slideDown {
    0% {
        padding-top: 200px;
    }
    100% {
        padding-top: 300px;
    }
}

.banner-heading {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding-top: 300px;
    color: white;
    animation-name: slideDown;
    animation-duration: 2s;
    padding-left: 20px;
}

.banner-heading h1 {
    /* padding-right: 50px; */
    text-align: center;
    color: #3D3125;
    font-family: 'Fredoka', sans-serif;
}

.banner-button {
    text-align: center;
    width: 100%;
    padding-top: 40px;
}

.banner-button button {
    padding: 15px;
    border: none;
    /* font-size: large; */
    /* border-radius: 50px; */
    /* width: 200px; */
    /* padding-top: 30px; */
}

.banner-button button:hover {
    background-color: #23A3E5;
}

/* about */

.about {
    padding-top: 100px;
    padding-bottom: 30px;
}

.about-container {
    display: flex;
    padding-top: 20px;
    padding-bottom: 30px;
}

.about-title {
    width: 50%;
}

.about-pic {
    width: 50%;
}

.about-pic img {
    width: 100%;
}

.about-button button {
    border: none;
}

.about p {
    color: black;
}

.about h1 {
    color: black;
}

.about-view {
    color: black;
}

.about-banner {
    margin-top: 0px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/short-banner.jpg");
    height: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
}

.about-banner h2 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

@media(max-width:800px) {
    .banner-button button {
        padding: 10px;
        border: none;
        /* font-size: large; */
        /* border-radius: 50px; */
        /* width: 200px; */
        /* padding-top: 30px; */
    }
    .about-container {
        display: inline;
    }
    .about-title {
        width: 100%;
    }
    .about-pic {
        width: 100%;
    }
}