body {
    margin: 0;
    font-family: "Poppins", Arial;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #788487;
    text-align: left;
    background-color: #fff;
}


.post p {
    text-align: justify;
}

.menu li:hover > ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
}

#submenu {
    padding: 15px;
    border: 0px;
}

a.dropdown-item:hover {
    border: 0px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

/* Back to top button */

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}

.software-box {
    padding: 30px 18px;
    box-shadow: 0 0px 27px 3px rgb(0 0 0 / 5%);
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.icon-move-right i {
    transition: all 0.2s cubic-bezier(0.34, 1.61, 0.7, 1.3);
}

.icon-move-right:hover i,
.icon-move-right:focus i {
    transform: translateX(5px);
}

.dropdown-menu {
    top: 98%;
}

.boxed-icon {
    background: #fafafa;
}

.wrap-mask {
    height: 100%;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 0;
    background: rgba(52, 74, 107, 0.5);
}


.card {
    border: 1px solid var(--color-three);
    margin-bottom: 20px;
    transition: border 0.1s, transform 0.3s;
}

.card:hover {
    border: 1px solid var(--color-two);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    cursor: pointer;
}

.card .card-body h2 {
    color: var(--color-two);
}

.card img:hover {
    opacity: 0.6;
}

.card-p {
    color: var(--color-three);
}

.card-p i {
    color: var(--color-two);
    margin-right: 8px;
}

.card-img-top {
    height: 180px;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
}

[data-toggle="collapse"] .fa:before {
    content: "\f139";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f138";
}

.alumnus > tbody > tr > td {
    vertical-align: middle;
}

/*Carousel CSS*/
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px;
    height: 40px;
}

.carousel-control-prev {
    left: -120px;
}

.carousel-control-next {
    right: -100px;
}

.carousel-indicators li {
    width: 50px;
    height: 10px;
}

/* Gallery CSS*/
.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    padding-top: 66.67%; /* 2:3 aspect ratio */
}
.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits the 2:3 aspect ratio */
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.modal-content {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-content img {
    /*max-width: 100%;*/
    max-height: 80vh;
    border: 15px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
