@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);
}

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

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

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

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


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

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

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

.News-Section .News-Container .News-Content{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

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

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

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

.News-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;
}

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

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

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

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

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

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

.Other-Section .Other-News-Cotainer .News-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-News-Cotainer .card {
    overflow: hidden;
    border: 1px solid var(--primary-blue-o20);
    /* cursor: pointer; */
    margin-bottom: 24px;
}

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

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

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

.Other-Section .Other-News-Cotainer .News-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-News-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-News-Cotainer .card-body p {
    margin: 0;
    margin-left: 8px;
    font-size: 16px;
    color: var(--secondary-text);
}

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

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

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

.Other-Section .Other-News-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-News-Cotainer .card .news-svg-onhover {
    display: none;
}

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


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

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

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

.Other-Section .Other-News-Cotainer .card:hover .news-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);
}
