.btn-primary {
    background-color: #ea5021;
    border-color: #ea5021;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #d0481c;
    border-color: #d0481c;
}

.text-primary {
    color: #ea5021 !important;
}

.bg-primary {
    background-color: #ea5021 !important;
}

.border-primary {
    border-color: #ea5021 !important;
}

.bi-primary {
    color: #ea5021 !important;
}

.row.equal-height .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.row.equal-height .card-body {
    flex: 1;
}

#egg {
    display: block;
    width: 500px;
    height: 480px;
    background-color: #FE5E00;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.card-img {
    width: 200px;
    /* Set a fixed width */
    height: 200px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensure the image covers the area while maintaining aspect ratio */
    margin: 10px auto 0 auto;
    /* Center the image horizontally and add a top margin */
    padding: 0;
    /* Remove padding */
    display: block;
    /* Ensure the image is displayed as a block-level element */
}



.carousel-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    text-align: center;
    color: #fff;
}

.carousel-caption h5,
.carousel-caption p {
    margin: 0;
}

li {
    color: #000000;
}

.bg-nav {
    background-color: #000000 !important;
}

@media (max-width: 764px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}

@media (max-width: 574px) {
    .navbar-brand {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }



}

@media (max-width: 574px) {
    .navbar-brand span {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        max-width: 80%;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        max-width: 42px;
        height: auto;
    }

    .navbar-brand span {
        font-size: 1rem;
        line-height: 1.2;
    }

    .navbar-toggler {
        order: -1;
    }
}

.card-body {
    padding: 0;
}

figure {
    margin: 0;
}

.card-img {
    border-radius: 0;
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.card {
    border-radius: 0.5rem;
    overflow: hidden;
}


.flip-card {
    background-color: transparent;
    width: 100%;
    height: 360px;
    perspective: 1000px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: translateX(-100%);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 0.5rem;
}

.flip-card-front {
    background-color: #2A2A2A;
}

.flip-card-back {
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.card.overflow-hidden {
    border-radius: 0.5rem;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-drop-in {
    animation: dropIn 0.5s ease-out forwards;
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}


.quick-links {
    display: flex;
    flex-wrap: wrap;
}

.quick-links .col-6 {
    margin-bottom: 15px;
}

.quick-links a {
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ea5021 !important;
}

.text-primary {
    color: #ea5021 !important;
}


.slide-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .slide-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .carousel-caption {
        padding-top: 20px;
    }
}