.page-header__title {
    font-size: 2rem;
}
.breadcrumbs {
    font-size: 1rem;
}
.person-profile__carousel-item img {
    height: 350px;
}
.top__left {
        margin-left: 0 !important;
    }
.main-navigation .pt-special-dropdown .sub-menu a {
        padding: 0.944444rem;
    }
.content-area .iconid .icon-box {
        text-align: center !important;
    }
.top-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pt-slick-carousel__content.js-pt-slick-carousel-captions {
    background: #08466cc2;
    padding: 20px;
}
/* COMMON BUTTON STYLE */
.top__container .container {
    max-width: 1240px;
}
.top-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    position: relative;
		border: 1px solid #ffffff;
}

/* TEAL BUTTON */
.btn-teal {
    background: #a28750;
}

/* BLUE BUTTON */
.btn-blue {
    background: #a28750;
}

/* HOVER EFFECT */
.top-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ICON STYLE */
.top-btn i {
    font-size: 16px;
}

/* SEPARATOR (LIKE IMAGE) */
.top-btn::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 10%;
    height: 80%;
    width: 2px;
    background: #ffffff40;
}

.top-btn:last-child::after {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .top-action-buttons {
        flex-direction: column;
    }

    .top-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .top-btn::after {
        display: none;
    }
}