@import url('main.css');

/* Banner-Section */
.Breadcrumb {
    margin-top: 104px;
    display: flex;
    margin-bottom: 40px;
}

.Breadcrumb a h4 {
    color: var(--primary-blue);
    margin-right: 16px;
}

.Breadcrumb h4 {
    color: var(--secondary-text);
}

/* Fund-Section */
.Fund-Section .Fund-Hearder {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.Fund-Section .Fund-Status-Container{
    display: flex;
    align-items: center;
    gap: 30px;
}

.Fund-Section .Fund-Tag {
    padding-left: 10px;
}

.Fund-Section .Fund-Tag h5 {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--secondary-yellow);
    border-radius: 4px;
    border: 1.5px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-size: 16px;
    margin-right: 8px;
}

.Fund-Section p {
    margin: 0;
    margin-left: 8px;
    font-size: 16px;
    color: var(--secondary-text);
}

.Fund-Section .Fund-Container .Fund-Image{
    display: flex;
    justify-content: center;
    max-height: 900px;
}

.Fund-Section .Fund-Container img{
    max-height: 500px;
}

.Fund-Section .Fund-Container .Fund-Content{
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.Fund-Section .Fund-Container .Fund-Content p{
    color: var(--text5);
}

/* .Fund-Section .Fund-Gallery{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.Fund-Section .Fund-Gallery img {
    max-width: 100%;
    cursor: pointer;
} */

.Fund-Section .circle-container {
    width: 50px;
    height: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    margin-left: 24px;
    transition: 0.3s;
    cursor: pointer;
}

.Fund-Section .circle-container:hover {
    background-color: var(--primary-blue);
}

.Fund-Section .circle-container:hover svg path {
    fill: var(--white-text)
}

/* Other-Section */
.Other-Section{
    background-color: #F1F5FB;
    padding: 48px 0px;
}

.Other-Section .Other-Fund-Cotainer {
    display: flex;
    flex-direction: column;
}

.Other-Section .Other-Fund-Cotainer .Fund-Header {
    margin-bottom: 32px;
}

.Other-Section .Other-Fund-Cotainer .Fund-Title h1 {
    font-size: 35px;
    color: var(--primary-text);
}

.Other-Section .Other-Fund-Cotainer .Fund-Button button {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white-text);
    font-size: 16px;
    padding: 10px 36px;
}

.Other-Section .Other-Fund-Cotainer .card {
    overflow: hidden;
    border: 1px solid var(--primary-blue-o20);
    /* cursor: pointer; */
    margin-bottom: 24px;
}

.Other-Section .Other-Fund-Cotainer .card .card-img-top {
    border-top: 3px solid var(--primary-blue);
}

.Other-Section .Other-Fund-Cotainer .card-body {
    padding: 30px 20px 24px 20px;
}

.Other-Section .Other-Fund-Cotainer .Fund-Tag {
    padding-left: 16px;
    padding-bottom: 16px;
}

.Other-Section .Other-Fund-Cotainer .Fund-Tag h5 {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--secondary-yellow);
    border-radius: 4px;
    border: 1.5px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-size: 16px;
    margin-right: 8px;
}

.Other-Section .Other-Fund-Cotainer .card-title {
    font-size: 18px;
    color: var(--primary-text);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Other-Section .Other-Fund-Cotainer .card-body p {
    margin: 0;
    margin-left: 8px;
    font-size: 16px;
    color: var(--secondary-text);
}

.Other-Section .Other-Fund-Cotainer .card-body p {
    margin: 0;
    margin-left: 8px;
    font-size: 16px;
    color: var(--secondary-text);
}

.Other-Section .Other-Fund-Cotainer .right-Fund-text p {
    color: var(--primary-blue);
}

.Other-Section .Other-Fund-Cotainer .image-container {
    position: relative;
}

.Other-Section .Other-Fund-Cotainer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s;
}

.Other-Section .Other-Fund-Cotainer .card .Fund-svg-onhover {
    display: none;
}

.Other-Section .Other-Fund-Cotainer .card:hover {
    box-shadow: 0px 0px 12px 4px rgba(216, 216, 216, 0.50);
}


.Other-Section .Other-Fund-Cotainer .card:hover .overlay {
    opacity: 0.6;
}

.Other-Section .Other-Fund-Cotainer .card:hover .right-Fund-text p {
    color: var(--secondary-blue);
}

.Other-Section .Other-Fund-Cotainer .card:hover .Fund-svg-nohover {
    display: none;
}

.Other-Section .Other-Fund-Cotainer .card:hover .Fund-svg-onhover {
    display: block;
}

/* Modal */
#ImageModal .modal-content{
    padding: 30px 40px;
}

#ImageModal .modal-content img{
    padding: 30px 0px 20px 0px;
}

#ImageModal .circle-container {
    width: 50px;
    height: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    margin-left: 24px;
    transition: 0.3s;
    cursor: pointer;
}

#ImageModal .circle-container:hover {
    background-color: var(--primary-blue);
}

#ImageModal .circle-container:hover svg path {
    fill: var(--white-text)
}

#ImageModal .text-box{
    display: flex;
    align-items: center;
    gap: 8px;
}

#ImageModal .text-box .yellow{
    color: var(--primary-yellow);
}

.Fund-Section .Fund-Gallery{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.Fund-Section .Fund-Gallery img {
    max-width: 100%;
    cursor: pointer;
}
