

/* STATIC CSS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* transition: all 0.2s; */
}

body{
    font-size: 16px;
    color: #000;
    /* background-color: #000; */
    /* background-color: #151515; */
    user-select: none;
    font-family: "Oswald", sans-serif;
    /* font-family: "Montserrat", serif; */
    overflow-x: hidden;
    position: relative;
}

.overflowY {
    overflow-y: hidden;
}

p, span, ul, li, ol, h1, h2, h3, h4, h5, h6{
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

p {
    font-size: 18px;
    line-height: 34px !important;
}

li{
    list-style-type: none;
}

a{
    display: block;
    text-decoration: none;
}

.ss--button{
    font-size: 18px;
    padding: 5px 15px;
    /* background-color: #ff8110; */
    background-color: #348899;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #348899;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    width: max-content;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
.ss--button:hover{
    border-color: #348899;
    background-color: #fff;
    color: #348899;
}


.link{
    font-size: 20px;
    font-weight: bold;
    color: #ff8110;
}

.box{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.box-item{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.pd-t100{
    padding-top: 100%;
}
.pd-t70{
    padding-top: 70%;
}
.pd-t50{
    padding-top: 50%;
}
.pd-t130 {
    padding-top: 130%;
}
.box-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text{
    font-size: 45px;
    font-weight: 600;
    color: #ff8110;
}

.footer-info-bg{
    background-color: #202020;
    padding: 20px;
}

.color-black{
    color: #000 !important;
}
.color-white {
    color: #fff !important;
}

.white-bg {
    /* background-color: #fff !important; */
    background-color: #eff0ef !important;
}
.black-bg {
    background-color: #000 !important;
}


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* background-color: #151515; */
    z-index: -1;
}

@media screen and (max-width: 992px){
    #particles-js {
        display: none;
    }
    p {
        font-size: 14px;
        line-height: 24px !important;
    }
}




/* Top Header */
.ss--topHeader {
    padding-top: 15px;
}
.ss--topHeader--body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.ss--topHead-quote {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
}
.ss--topHead-quote-content--head {
    font-size: 16px;
    line-height: 26px;
    color: #61491d;
    font-weight: 600;
}
.ss--topHead-quote-content--text {
    font-size: 16px;
    line-height: 26px;
    color: #61491d;
    font-style: italic;
    font-weight: 500;
}
.ss--topHead-quote-image--img {
    width: 100px;
}




/* SECTION CSS START */
/* .ss--section{
    padding: 40px 0;
} */
.ss--section-head{
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}
.ss--section-head.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ss--section-head--header {
    color: #348899;
    font-size: 38px;
    line-height: 54px;
    font-weight: 700;
    text-transform: uppercase;
}

.ss--section-body--header{
    color: #000;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ss--section-body--header::first-letter {
    text-transform: capitalize;
}
.ss--section-body--description{
    color: #000;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.ss--section-body--description * {
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
}

.white-section .ss--section-head--majorHeader, .white-section .ss--section-head--description {
    color: #000;
}

.ss--section-image--img {
    width: 100%;
}

@media screen and (max-width: 992px){
    .ss--section {
        padding: 30px 0;
    }
    .ss--section-head {
        padding: 20px 0;
    }
    .ss--section-head--header {
        font-size: 28px;
        line-height: 44px;
    }
    .ss--section-image {
        margin-bottom: 20px;
    }
    .ss--section-head--minorHeader{
        font-size: 14px;
    }
    .ss--section-head--majorHeader {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .ss--section-head--description{
        width: 100%;
    }

    .ss--section-body--header {
        font-size: 22px;
        line-height: 28px;
    }
    .ss--section-body--description * {
        font-size: 13px;
        line-height: 24px !important;
    }
}
/* SECTION CSS FINISHED */




/* HEADER CSS START */
.ss--header{
    /* padding: 15px 20px; */
    padding: 10px 0;
    /* position: fixed; */
    top: 0;
    width: 100%;
    z-index: 99999;
    background-color: #fff;
    transition: all 0.3s;
}
.hidden {
    top: -138px;
}
.ss--header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ss--header-content-menu-item--link{
    font-size: 14px;
    transition: all 0.3s;
}

.ss--header-content-menu-item--link:hover{
    color: red;
}

.ss--header-content-menu-item--link.active, .ss--header-content-menu-item.active {
    font-weight: bold;
}
/* .ss--header-content-menu-item--link.active::after {
    content: '';
    display: block;
    width: 50%;
    margin: 0 auto;
    height: 4px;
    border-radius: 5px;
    background-color: #0081ba;
} */

.ss--header-content-menu-item--link.dropdown-toggle {
    outline: none;
    border: none;
    background-color: unset;
    font-weight: unset;
}

.ss--header-content-logo {
    /* width: 250px; */
    /* min-width: 120px; */
    font-size: 20px;
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
}
.ss--header-content-logo--img{
    width: 70px;
}

.ss--header-content-menu{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.ss--header-content-menu-item--link{
    font-size: 16px;
    line-height: 24px;
    /* font-weight: 600; */
    color: #000;
}
.ss--header-content-menu-item--link:hover{
    color: #0081ba;
}

.ss--header-content-burger, .ss--header-content-close, .lang-mobile {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu-end {
    right: 0;
    left: auto;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #348899;
}



@media (max-width: 992px){
    .ss--header-content-burger, .ss--header-content-close, .lang-mobile {
        display: block;
    }
    .ss--header-content-burger{
        display: block;
    }
    .ss--header-content-burger-icon, .ss--header-content-close-icon {
        outline: none;
        border: none;
        background-color: transparent;
    }
    .ss--header-content-burger-icon svg, .ss--header-content-close-icon svg {
        color: #000;
        font-size: 20px;
    }
    .ss--header-content-mobile {
        position: absolute;
        left: -100%;
        top: 0;
        height: 100vh;
        background-color: #fff;
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        /*width: 50%;*/
        transition: all 0.3s;
    }
    .ss--header-content-mobile.isOpen {
        left: 0;
    }
    .ss--header-content-menu{
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .dropdown-menu.show {
        position: relative !important;
        inset: unset !important;
        margin: 0;
        transform: unset !important;
        border: none !important;
    }
    .dropdown-toggle + .dropdown-menu {
        display: none !important;
    }
    .dropdown-toggle.show + .dropdown-menu {
        display: block !important;
    }

    .lang-desktop {
        display: none;
    }
    .lang-mobile {
        margin-top: auto;
    }

    .ss--header-content-logo {
        font-size: 14px;
    }
}


/* HEADER CSS END */


/* BANNER CSS START */
.ss--banner{
    /*position: relative;*/
    /* height: 100vh; */
    background-image: url('../../assets/images/home_page_banner.jpg');
}
.ss--banner .row{
    height: calc(100vh - 160px);
    min-height: 550px;
    /* padding-top: 100px; */
}
.ss--banner-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.ss--banner-image{
    display: flex;
    justify-content: center;
}
.ss--banner-animation{
    display: inline-block;
    width: 50%;
    height: auto;
    line-height: 80px;
    animation: witr-shadow 1s linear infinite;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes witr-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.ss--banner-image--img{
    width: 100%;
    height: 100%;
}
.ss--banner-content-socials{
    display: flex;
    align-items: center;
    gap: 15px;
}
.ss--banner-content-socials--icon{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    /* background-color: #ff8110; */
    background-color: #0081ba;
    transition: all 0.3s;
}
.ss--banner-content-socials--icon svg{
    color: #eff0ef;
    font-size: 20px;
}
.ss--banner-content-socials--icon:hover{
    background-color: #eff0ef;
}
.ss--banner-content-socials--icon:hover svg{
    /* color: #ff8110; */
    color: #ff8110;
}

.ss--banner-content-info--header{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ss--banner-content-info--header div{
    font-size: 68px;
    line-height: 86px;
    color: #348899;
}
.ss--banner-content-info--header div::after {
    content: '';
    width: 100px;
    height: 10px;
    background-color: #348899;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}
.ss--banner-content-info--desc{
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}


@media screen and (max-width: 992px){
    .ss--banner {
        padding: 40px 0;
    }
    .ss--banner .row{
        height: 100%;
    }
    .ss--banner-content-socials {
        display: none;
    }
    .ss--banner-content {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .ss--banner-content-info--header {
        font-size: 32px;
        line-height: 48px;
    }
    .ss--banner-content-info--header div {
        font-size: 32px;
        line-height: 48px;
    }

    .banner-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #00000091;
        display: none;
        transition: all 0.3s;
    }
    .banner-overlay.show {
        display: block;
    }
}

@media screen and (max-width: 375px){
    .ss--banner-content-info--header, .ss--banner-content-info--header div {
        font-size: 24px;
    }
}
/* BANNER CSS END */


/* Slider Section CSS Start */
.ss--slider{
    padding: 80px 0;
}
.ss--slider-slides-item-image--img{
    width: 100%;
}
.ss--slider-slides-item--desc {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #000;
}

.ss--slider .slick-dots li button:before {
    font-size: 10px;
}
.slick-dots li.slick-active button:before{
    color: #348899;
}

@media screen and (max-width: 992px){
    .ss--slider{
        padding: 40px 0;
    }
}

/* Slider Section CSS End */


/* ABOUT US CSS START */
.ss--about-image--img{
    width: 100%;
    height: 100%;
}
/* ABOUT US CSS END */



/* CONTACT CSS START */
.ss--contact{
    padding: 80px 0;
}

.ss--contact-map--header {
    font-size: 24px;
    line-height: 32px;
    color: #348899;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.ss--contact-item--header {
    font-size: 24px;
    line-height: 36px;
    color: #348899;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.ss--contact-item-socialIcons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.ss--contact-item-socialIcons-icon svg {
    font-size: 35px;
    color: #000;
}

.ss--contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ss--contact-item-content-item {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
}

.ss--input{
    width: 100%;
    height: 50px;
    padding: 15px;
    outline: none;
    border: none;
    color: #292836;
    background-color: #eff0ef;
    border-radius: 5px;
}
.ss--textarea{
    width: 100%;
    min-height: 100px;
    max-height: 200px;
    padding: 15px;
    outline: none;
    border: none;
    color: #292836;
    background-color: #eff0ef;
    border-radius: 5px;
}

.alert-message.success {
    color: #ff8110;
}
.alert-message.failed {
    color: red;
}

.ss--contact-map{
    margin-top: 100px;
}
.ss--contact-map iframe{
    width: 100%;
}
/* CONTACT CSS END */


@media screen and (max-width: 992px){
    .ss--contact-info {
        margin-bottom: 30px;
    }
    .ss--contact-info--header{
        margin-bottom: 10px;
    }
}




/* FOOTER CSS START */
.ss--footer{
    background-color: #ebf3f5;
    padding: 50px 0;
}
.ss--footer-info{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ss--footer-info-logo--img{
    width: 170px;
}
.ss--footer--header{
    color: #348899;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.ss--footer-info--description{
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: #348899;
}
.ss--footer-links-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
}
.ss--footer-links-content--item{
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #348899;
    list-style-type: square;
}
.ss--footer-links-content--item svg{
    color: #ddd;
    margin-right: 8px;
}

.ss--footer-info-socials-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss--footer-info-socials-icons-item{
    color: #fff;
    background-color: #ff8110;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 992px){
    .ss--footer {
        padding: 30px 0;
    }
    .ss--footer-info {
        align-items: center;
        text-align: center;
    }
    .ss--footer-info-logo {
        width: 250px;
    }
    .ss--footer--header {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .ss--footer-links-content {
        gap: 10px;
    }
    .ss--footer-links-content--item {
        font-size: 14px;
    }
}

/* FOOTER CSS END */



/* FOOTER BOTTOM START */
.ss--footer-bottom{
    background-color: #348899;
    border-top: 1px solid #b1b1b146;
    padding: 30px 0;
}
.ss--footer-bottom--description{
    color: #d8d8d8;
    font-size: 12px;
    line-height: 32px;
    font-weight: 400;
}
.ss--footer-bottom-links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.ss--footer-bottom-links-item{
    color: #d8d8d8;
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
}
.ss--footer-bottom-links-item span{
    color: #fff;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .ss--footer-bottom .row {
        text-align: center;
    }
    .ss--footer-bottom-links {
        justify-content: center;
    }
}
/* FOOTER BOTTOM END */



/* BREADCRUMBS START */
.ss--breadcrumbs {
    background-color: #202020;
    padding: 40px 0 !important;
    /*margin-top: 63px;*/
    background-image: url('../../assets/images/home_page_banner.jpg');
}
.ss--breadcrumbs .ss--section-head {
    margin-bottom: 0;
}
.ss--breadcrumbs .ss--section-head--description{
    width: 100%;
}
.ss--breadcrumbs-content{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.ss--breadcrumbs-content-item--link{
    font-size: 12px;
    line-height: 21px;
    color: #f8f6f4;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}
.ss--breadcrumbs-content-item:not(:first-child) .ss--breadcrumbs-content-item--link::before{
    content: '/';
    position: absolute;
    left: -12.5px;
}
a.ss--breadcrumbs-content-item--link:hover{
    color: #ff8110;
}

.ss--breadcrumbs--header {
    position: relative;
    width: 100%;
    font-size: 46px;
    color: #fff;
    text-align: center;
}
.ss--breadcrumbs--header:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 7px;
    background: #348899;
}

@media screen and (max-width: 992px) {
    .ss--breadcrumbs--header {
        font-size: 28px;
    }
}

/* BREADCRUMBS END */


/* Announcements START*/

.ss--announcements-section{
    padding: 60px 0;
}
.ss--announcements--white{
    background-color: #fff;
}
.ss--announcements--blue{
    background-color: #348899;
}

.ss--announcements--blue * {
    color: #fff !important;
}
.ss--announcements-section .ss--section-body--header{
    /*text-align: center;*/
}

.ss--announcements--white * {
    color: #348899;
}

@media screen and (max-width: 992px) {
    .ss--announcements-section {
        padding: 30px 0;
    }
}

/* Announcements END*/


/* News Css Start */
.ss--news-section {
    padding: 60px 0;
}
.ss--news-item {
    display: flex;
    gap: 10px;
}
/*.ss--news .col-lg-6:nth-child(3) .ss--news-item, .ss--news .col-lg-6:nth-child(4) .ss--news-item {*/
/*    flex-direction: row-reverse;*/
/*}*/

.ss--news-item-image {
    width: 40%;
}
.ss--news-item-image--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ss--news-item-content {
    width: 60%;
}
.ss--news-item-content--header {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}
.ss--news-item-content--link {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    .ss--news-item {
        flex-direction: column;
    }
    .ss--news-item-image, .ss--news-item-content {
        width: 100%;
    }
}

/* News Css End */


/* Video Section Css Start */
.ss--video {
    padding: 0 0 60px 0;
}
.ss--video-content-iframe {
    display: flex;
    justify-content: center;
}
/* Video Section Css End */


/* Founded Date Css Start */
.ss--founded_date {
    padding: 60px 0;
}
.ss--founded_date-content--header {
    font-size: 24px;
    line-height: 36px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.ss--founded_date-content--desc * {
    font-size: 18px;
    line-height: 34px;
    color: #000;
    font-weight: 400;
}

@media screen and (max-width: 992px) {
    .ss--founded_date-content--header {
        font-size: 20px;
        line-height: 28px;
    }
    .ss--founded_date-content--desc * {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

/* Founded Date Css End */


/* Scientific activity Css Start */
.ss--scientific_activity {
    padding: 60px 0;
}
.ss--scientific_activity-content--header {
    font-size: 26px;
    line-height: 42px;
    color: #348899;
    font-weight: bold;
    margin-bottom: 20px;
}
.ss--scientific_activity-content-list {
    padding-left: 20px;
}

.ss--scientific_activity-content-list-item {
    font-size: 20px;
    line-height: 36px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
    list-style-type: square;
}

/* Scientific activity Css End */


/* News Page Css Start */
.ss--news {
    padding: 60px 0;
}
.ss--news-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--news-content-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ss--news-content-item-image {
    width: 40%;
}
.ss--news-content-item-image--img {
    width: 100%;
}
.ss--news-content-item-body {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--news-content-item-body--header {
    font-size: 24px;
    line-height: 36px;
    color: #348899;
    width: 80%;
}
.ss--news-content-item-body--link {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    .ss--news {
        padding: 30px 0;
    }
    .ss--news-content-item {
        flex-direction: column;
    }
    .ss--news-content-item-image, .ss--news-content-item-body {
        width: 100%;
    }
    .ss--news-content-item-body--header {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
    }
}

/* News Page Css End */


/* News Inner Page Css Start */
.ss--newsInner {
    padding: 60px 0;
}
.ss--newsInner-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.ss--newsInner-content-item {
    display: flex;
    gap: 20px;
}
.ss--newsInner-content-item-image {
    width: 40%;
}
.ss--newsInner-content-item-image--img {
    width: 100%;
}
.ss--newsInner-content-item-body {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--newsInner-content-item-body--header {
    font-size: 26px;
    line-height: 36px;
    color: #348899;
    width: 80%;
}
.ss--newsInner-content-item-body--date {
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

.ss--newsInner-content--desc {
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

@media screen and (max-width: 992px) {
    .ss--newsInner-content-item {
        flex-direction: column;
    }
    .ss--newsInner-content-item-image, .ss--newsInner-content-item-body {
        width: 100%;
    }
    .ss--newsInner-content-item-body--header {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
    }
}

/* News Inner Page Css End */


/* Library Page Css Start */
.ss--library {
    padding: 60px 0;
}
.ss--library-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--library-item-image--img {
    width: 100%;
}
.ss--library-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
/*.ss--library-item:hover .ss--library-item-content {*/
/*    display: flex;*/
/*}*/
.ss--library-item-content--header {
    font-size: 22px;
    line-height: 32px;
    color: #348899;
    font-weight: 600;
}
.ss--library-item-content--title {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
}
.ss--library-item-content--link {
    font-size: 16px;
    line-height: 26px;
    color: #348899;
    font-weight: 500;
}
.ss--library-item-content--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}
/* Library Page Css End */


/* Jurnals Page Css Start */
.ss--jurnals {
    padding: 60px 0;
}
.ss--jurnals-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--jurnals-item:hover .ss--jurnals-item-image--img {
    transform: scale(1.09);
}
.ss--jurnals-item-image {
    height: 400px;
    overflow: hidden;
}
.ss--jurnals-item-image--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.ss--jurnals-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.ss--jurnals-item-content--header {
    font-size: 24px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
}
.ss--jurnals-item-content--title {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
}
.ss--jurnals-item-content--link {
    font-size: 18px;
    line-height: 32px;
    color: #348899;
    font-weight: 500;
}
.ss--jurnals-item-content--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

@media screen and (max-width: 992px) {
    .ss--jurnals-item-content--header {
        font-size: 18px;
        line-height: 28px;
    }
    .ss--jurnals-item-content--desc {
        font-size: 15px;
        line-height: 20px !important;
    }
}

/* Jurnals Page Css End */



/* Jurnals Inner Page Css Start */
.ss--jurnalsInner {
    padding: 60px 0;
}
.ss--jurnalsInner-about {
    margin-bottom: 60px;
}
.ss--jurnalsInner-about--header {
    font-size: 28px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.ss--jurnalsInner-about--desc {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 500;
}
.ss--jurnalsInner-item {
    display: flex;
    gap: 20px;
}

.ss--jurnalsInner-item-image {
    width: 40%;
}
.ss--jurnalsInner-item-image--img {
    width: 100%;
}
.ss--jurnalsInner-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    width: 60%;
}

.ss--jurnalsInner-item-content--header {
    font-size: 26px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
}
.ss--jurnalsInner-item-content--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.ss--jurnalsInner-archive {
    margin-top: 60px;
}
.ss--jurnalsInner-archive-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--jurnalsInner-archive-item-image--img {
    width: 100%;
    height: 100%;
}
.ss--jurnalsInner-archive-item--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: center;
}
/* Jurnals Inner Page Css End */



/* Articles Page Css Start */
.ss--articles {
    padding: 60px 0;
}
.ss--articles-item {
    display: flex;
    gap: 20px;
}
.ss--articles-item-image {
    width: 50%;
}
.ss--articles-item-image--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ss--articles-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}
/*.ss--library-item:hover .ss--library-item-content {*/
/*    display: flex;*/
/*}*/
.ss--articles-item-content--header {
    font-size: 22px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
}
.ss--articles-item-content--title {
    font-size: 18px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
}
.ss--articles-item-content--link {
    font-size: 16px;
    line-height: 32px;
    color: #348899;
    font-weight: 500;
}
.ss--articles-item-content--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

@media screen and (max-width: 992px) {
    .ss--articles {
        padding: 40px 0;
    }
    .ss--articles-item {
        flex-direction: column;
    }
    .ss--articles-item-image, .ss--articles-item-content {
        width: 100%;
    }
    .ss--articles-item-content--header {
        font-size: 18px;
        line-height: 24px;
    }
    .ss--articles-item-content--desc {
        font-size: 15px;
        line-height: 20px;
    }
}

/* Articles Page Css End */




/* Structure Page Css Start */
.ss--structure {
    padding: 60px 0;
}
.ss--structure-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ss--structure-list-item {
    list-style-type: square;
}
.ss--structure-list-item--link {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    text-decoration: underline;
}

.ss--accordion-card--title {
    display: block;
    padding: 15px 0;
    color: #348899;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    opacity: 100%;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    background-color: #fff;
    text-align: left;
    outline: none;
    border: none;
    /*text-transform: uppercase;*/
    border-bottom: 1px solid #303030;
}

.ss--accordion-card {
    /*border-bottom: 1px solid #303030;*/
    position: relative;
}

.ss--accordion-card--content {
    /* max-height: 0; */
    overflow: hidden;
    display: none;
    width: 100% !important;
    transition: max-height 0.2s ease-out;
    padding: 20px 0;
}

/*.ss--accordion-card--content p {*/
/*    color: #000;*/
/*    font-size: 14px;*/
/*    line-height: 26px;*/
/*    padding: 15px 0;*/
/*}*/

.ss--accordion-card--title::after {
    content: " ";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    right: 12px;
    top: 30px;
    transition: all 0.3s;
}

.ss--accordion-card.open .ss--accordion-card--title::after {
    transform: rotate(225deg);
}

.ss--accordion-card--content-header {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin-bottom: 20px;
}

.ss--accordion-card--content-desc {
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

@media screen and (max-width: 992px) {
    .ss--accordion-card--title {
        font-size: 18px;
        line-height: 24px;
    }
}


/* Structure Page Css End */



/* StaffInner Page Css Start */
.ss--staffInner {
    padding: 60px 0;
}
.ss--staffInner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--staffInner-content-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ss--staffInner-content-item-image {
    width: 40%;
}
.ss--staffInner-content-item-image--img {
    width: 100%;
    height: 100%;
}
.ss--staffInner-content-item-body {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--staffInner-content-item-body--header {
    font-size: 24px;
    line-height: 36px;
    color: #348899;
    width: 80%;
    font-weight: 700;
}
.ss--staffInner-content-item-body--link {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
}
/* StaffInner Page Css End */


/* AAK Documents Page Css Start */
.ss--aak_documents {
    padding: 60px 0;
}

.ss--aak_documents-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ss--aak_documents-content-item.center {
    text-align: center;
}

.ss--aak_documents-content-item-logo {
    background-color: #f5f5f5;
    padding: 30px;
    width: 60%;
    margin: 0 auto;
}

.ss--aak_documents-content-item-logo--img {
    width: 100%;
}

.ss--aak_documents-content-item--majorHeader {
    font-size: 26px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.ss--aak_documents-content-item--minorHeader {
    font-size: 22px;
    line-height: 34px;
    color: #348899;
    font-weight: 500;
    margin-bottom: 10px;
}

.ss--aak_documents-content-item--desc {
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.ss--aak_documents-content-item-list {
    padding-left: 20px;
}

.ss--aak_documents-content-item-list-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin: 5px 0;
    list-style-type: square;
}
/* AAK Documents Page Css End */


/* Dissertation Page Css Start */
.ss--dissertation_councils {
    padding: 60px 0;
}
.ss--dissertation_councils-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ss--dissertation_councils-item-image {
    height: 400px;
}
.ss--dissertation_councils-item-image--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ss--dissertation_councils-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}
/*.ss--library-item:hover .ss--library-item-content {*/
/*    display: flex;*/
/*}*/
.ss--dissertation_councils-item-content--header {
    font-size: 24px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
}
.ss--dissertation_councils-item-content--title {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
}
.ss--dissertation_councils-item-content--link {
    font-size: 18px;
    line-height: 32px;
    color: #348899;
    font-weight: 500;
}
.ss--dissertation_councils-item-content--desc {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.ss--dissertation_councils-item-content--link {
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    .ss--dissertation_councils {
        padding: 40px 0;
    }
}

/* Dissertation Page Css End */


/* Dissertation Inner Page Css Start */
.ss--dissertation_councilsInner {
    padding: 60px 0;
}
.ss--dissertation_councilsInner-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 40px;
}
.ss--dissertation_councilsInner-content-desc {
    display: flex;
    justify-content: flex-end;
}
.ss--dissertation_councilsInner-content-desc--text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: 40%;
}
.ss--dissertation_councilsInner-content-header--head {
    font-size: 28px;
    line-height: 36px;
    color: #348899;
    font-weight: 600;
    text-align: center;
}
.ss--dissertation_councilsInner-content-list-item {
    text-align: center;
}
.ss--dissertation_councilsInner-content-list-item--header {
    font-size: 18px;
    line-height: 28px;
    color: #348899;
    font-weight: 500;
    margin-bottom: 40px;
}
.ss--dissertation_councilsInner-content-list-item-ol {
    text-align: left;
}
.ss--dissertation_councilsInner-content-list-item-ol-li {
    display: flex;
    /*justify-content: space-between;*/
    /*gap: 20px;*/
}
.ss--dissertation_councilsInner-content-list-item-ol-li--div {
    width: 70%;
    margin-left: auto;
}
/* Dissertation Inner Page Css End */
