:root {
    --light-body: #f7f8fc;
    --light-main: #ffffff;
    --light-second: #dcdce0;
    --light-hover: #f2f4f9;
    --light-text: #212121;

    --blue: #004080;
    --white: #ffffff;

    --shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;

    --font-family: 'Inter', serif;
}

.light {
    --bg-body: var(--light-body);
    --bg-main: var(--light-main);
    --bg-second: var(--light-second);
    --color-hover: var(--light-hover);
    --color-txt: var(--light-text);
}

.calendar {
    height: max-content;
    width: max-content;
    background-color: var(--bg-main);
    border-radius: 0px;
    padding: 0px !important;
    position: relative;
    overflow: hidden;
    border-color: #cbd5e0;
    border: 1px solid #cbd5e0;
    margin-top: 10px;
    left: 15px;
}

.light .calendar {
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    color: var(--color-txt);
    padding: 8px;
    padding-bottom: 0px;
}

.calendar-body {
    padding: 8px;
    padding-top: 0px;
}

.calendar-week-day {
    height: 40px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
}

.calendar-week-day div {
    display: grid;
    place-items: center;
    color: #a0aec0;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    color: var(--color-txt);
}

.calendar-days div {
    /* width: 50px; */
    /* height: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    /* cursor: pointer; */
    animation: to-top 1s forwards;
}

.calendar-day-hover a {
    font-size: 14px;
    width: 40px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    color: #1a202c;
    font-weight: 800;
}

.calendar-days .calendar-day-hover:hover {
    background-color: var(--light-hover);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.calendar-days div span {
    position: absolute;
}

.calendar-days div.curr-date span {
    display: none;
}

.month-picker {
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    color: #2d3748;
    font-size: 18px;
    cursor: pointer;
}

.month-picker:hover {
    background-color: var(--color-hover);
}

.year-picker {
    display: flex;
    align-items: center;
}

.year-change {
    height: 40px;
    width: 15px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 10px;
    cursor: pointer;
    /* align-items: center; */
}

.year-change:hover {
    background-color: var(--color-hover);
}

.calendar-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.toggle {
    display: flex;
}

.toggle span {
    margin-right: 10px;
    color: var(--color-txt);
}

.dark-mode-switch {
    position: relative;
    width: 48px;
    height: 25px;
    border-radius: 14px;
    background-color: var(--bg-second);
    cursor: pointer;
}

.dark-mode-switch-ident {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: var(--bg-main);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s ease-in-out;
}

.dark .dark-mode-switch .dark-mode-switch-ident {
    top: 2px;
    left: calc(2px + 50%);
}

.month-list {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50px;
    left: 20px;
    background-color: var(--bg-main);
    padding: 0px;
    grid-template-columns: repeat(3, auto);
    gap: 0px;
    display: grid;
    transform: scale(1.5);
    visibility: hidden;
    pointer-events: none;
}

.month-list.show {
    transform: scale(1);
    visibility: visible;
    pointer-events: visible;
    transition: all 0.2s ease-in-out;
    background: #3f4987;
    border: 1px solid #3f4987;
}

.month-list > div {
    display: grid;
    place-items: center;
}

.month-list > div > div {
    width: 100%;
    padding: 0px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.month-list > div > div:hover {
    background-color: var(--color-hover);
}

.month-list > div:hover {
    background: #fff;
}

.month-list > div:hover > div {
    color: #3f4987;
}


span#year {
    color: #2d3748;
    font-size: 18px;
}
.calendar-days .calendar-day-hover.curr-date a {
    background: #3f4987;
    color: #fff;
}
.year-change pre {
    margin: 3px 0px 0px 0px !important;
    font-size: 72.5%;
    color: #718096;
}
@keyframes to-top {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Swiper container styling */
.swiper-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Slide image styling */
.slide-image {
    width: 100%;
    height: auto;
}

/* Slide caption styling */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(63, 73, 135, .7);
    color: #fff;
    padding: 0px 5px 15px !important;
    font-size: 14px;
    line-height: 20px;
}

/* Swiper navigation styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: none;
    padding: 10px;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: none;
}

/* Pagination styling */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

img.slide-image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 250px;
    vertical-align: middle;
}

.swiper-container {
    border-radius: 0px;
    box-shadow: none;
}

.slide-caption h3 {
    font-size: 14px;
    line-height: 20px;
    padding: 8px;
    margin-bottom: 0px;
    /* line-height: 30px; */
    /* padding: 15px 0; */
}


.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 3px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #fff;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0 !important;
}

.not-found {
    padding: 70px 20px;
    background: #333;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.swiper-container.swiper-slider-main {
    max-width: 763px;
}

.swiper-container.swiper-slider-main img.slide-image{
    height: 492px;
}
.swiper-container.swiper-slider-main  .slide-caption {
    padding: 0px 10px 15px !important;
}

.swiper-container.swiper-slider-main  .slide-caption h3{
    line-height: 30px;
    padding: 7px 0;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 500;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 33px;
    font-weight: bold;
}
.swiper-container.swiper-slider-full {
    max-width: 100%;
}

.swiper-container.swiper-slider-full .slide-image{
    height:400px;
}

@media (min-width: 768px) {
    .swiper-container.swiper-slider-full .slide-image{
        height: 677px !important;
    }
    .swiper-container.swiper-slider-full .slide-caption h3 {
        font-size: 30px !important;
        line-height: 45px !important;
        font-weight: 700 !important;
    }
    #closeMenu{
        display: none;
    }
}
#menuContentClose{
    display: none;
}
.castum-navbar .nav-item.mobile {
    display: none;
}
@media (max-width: 768px) {
    .hide {
        display: none;
    }
    .show, #closeMenu {
        display: block;
    }

    #menuContent {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #menuContent nav.navbar.navbar-expand-lg.navbar-light.nav-shadow.pt-3.pb-0.d-lg-block {
        width: 100%;
        height: 100%;
        background-color: hsla(0, 0%, 100%, .9);
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1030;
        padding: 0px !important;
    }

    #menuContent nav.navbar.navbar-expand-lg.navbar-light.nav-shadow.pt-3.pb-0.d-lg-block .container {
        width: 80%;
        height: 100%;
        background: #3f4987;
        z-index: 99999;
        right: 0;
        position: absolute;
        overflow-y: scroll;
        display: block;
    }

    #menuContent nav.navbar.navbar-expand-lg.navbar-light.nav-shadow.pt-3.pb-0.d-lg-block .container ul.navbar-nav.castum-navbar {
        width: 100%;
        padding: 12px;
        /* display: block; */
    }

    #menuContent .castum-navbar .nav-item {
        padding: 0px 10px !important;
    }

    #menuContent .castum-navbar .nav-item .nav-link {
        font-family: BPG Arial Caps;
        display: block;
        width: 100%;
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid #4b5592;
        color: #fff;
    }

    #menuContent .castum-navbar .nav-item .SubMenuDiv {
        visibility: unset;
        opacity: 1;
        position: unset !important;
        background:#3a4380;
    }

    #menuContent .navbar>.container {
        display: block;
    }

    #menuContent .castum-navbar .nav-item .SubMenuDiv .nav-item .nav-link {
        color: #fff;
    }

    #menuContentClose{
        display: block;
        position: absolute;
        z-index: 1111111111;
        top: 18px;
        left: 18px;
        font-size: 22px;
    }
    .castum-navbar .nav-item.mobile {
        display: block;
    }
}

.swiper-container.swiper-slider-full .slide-caption {
    background: none;
    text-align: center;
    width: 50% !important;
    max-height: 150px !important;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

#mobileMenu{
    color:#3f4987
}

.top-banner{
    max-width: 690px;
    width: 690px;
}

.top-banner img{
    width: 100%;
}
.Important_2 img {
    height: auto !important;
}

.right-article.col-lg-3.col-md-3.col-sm-12.col-xs-12.px-2.d-none.d-lg-block {
    padding: 0px !important;
}

.left-article.col-lg-3.col-md-3.col-sm-12.col-xs-12.px-2.d-none.d-lg-block {
    padding: 0px !important;
}

.slider-center.col-lg-6.col-md-12.col-sm-12.col-xs-12 {
    padding: 0px !important;
}

.Important_2 {
    border-bottom: 1px solid #d0d0d0 !important;
}

.no-border .Important_2 {
    border-bottom: 0px !important;
}
.swiper-container.swiper-slider-main .slide-caption h3 {
    line-height: 19px !important;
    padding: 7px 0 0 0 !important;
    font-size: 16px !important;
    font-weight: 500;
}
.costum-card {
    padding-bottom: 0px !important;
    padding-top: 10px !important;
}

.top-banner.center {
    margin: auto;
}

summary {
    cursor: pointer;
    min-width: 8.23rem;
}
.tabs {

}

details.tab[open] summary {
    border-bottom: 4px solid #3f4986;
    color: #fff;
    background: #3f4986;

}
/* TABS */
.tab1[open] ~ .tab__content--tab1, .tab2[open] ~ .tab__content--tab2, .tab3[open] ~ .tab__content--tab3 {
    display: block;
}


/* Tailwind utility classes */

.tw-w-full {
    width: 100%;
}
.tw-hidden {
    display: none;
}

.tw-flex {
    display: flex;
}
.tw-flex-row {
    flex-direction: row;
}
.tw-flex-col {
    flex-direction: column;
}
.tw-flex-nowrap {
    flex-wrap: nowrap;
}
.tw-basis-full {
    flex-basis: 100%;
}

@media (min-width: 800px) {
    .lg\:tw-basis-1 {
        flex-basis: 0.25rem;
    }
    .lg\:tw-justify-start {
        justify-content: flex-start;
    }
    .lg\:tw-flex-wrap {
        flex-wrap: wrap;
    }
    .lg\:tw-flex-row {
        flex-direction: row;
    }
}

.tw-order-1 {
    order: 1;
}
.tw-order-2 {
    order: 2;
}
.tw-order-3 {
    order: 3;
}
.tw-order-4 {
    order: 4;
}
.tw-order-5 {
    order: 5;
}
.tw-order-6 {
    order: 6;
}
@media (min-width: 800px) {
    .lg\:tw-order-1 {
        order: 1;
    }
    .lg\:tw-order-2 {
        order: 2;
    }
    .lg\:tw-order-3 {
        order: 3;
    }
    .lg\:tw-order-4 {
        order: 4;
    }
    .lg\:tw-order-5 {
        order: 5;
    }
    .lg\:tw-order-6 {
        order: 6;
    }
}

details.tab summary h3 {
    text-align: center;
    width: 100%;
    font-size: 22px;
    padding-top: 15px;
}
details.tab{
    border: 1px solid #3f4986;
}

details.tab summary h3 {
    font-size: 16px;
    padding-top: 10px;
}

.tab__content {
    margin-top: 10px;
}

.tab__content div {
    float: left;
}
.tab__content .Important_2 h2{
    margin-bottom: .25rem;
}
.tab__content .Important_2 {

}
.tab__content div {
    padding:0px;
}
.tab__content>div:last-child .Important_2 {
    border-bottom: 0px !important;
}

.right-article{
    position: relative;
}

.right-article:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 95%;
    background: #e6e6e6;
}

.right-article .tie-animate-slideInUp {
    /* opacity: 0; */
    animation: tieSlideInUp 0.4s forwards 1;
    animation-delay: 0.3;
}


tieSlideInUp animation {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
}

.right-article .tie-animate-slideInUp:first-child {
    padding-top: 0;
}

.right-article .tie-animate-slideInUp {
    border-bottom: 0;
    padding-bottom: 10px;
}
.right-article .tie-animate-slideInUp {
    /* padding: 6px 0; */
}

.right-article .tie-animate-slideInUp:after {
    clear: both;
    display: table;
    content: "";
}

.right-article .tie-animate-slideInUp .date {
    font-size: 10px;
    display: block;
    position: relative;
    color: #666;
    line-height: 12px;
    margin-bottom: 5px;
}

.right-article .tie-animate-slideInUp .date:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #e6e6e6;
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
}

.right-article .tie-animate-slideInUp .date {
    font-size: 10px;
    display: block;
    position: relative;
    color: #666;
    line-height: 12px;
    margin-bottom: 5px;
    padding-left: 15px;
}

.right-article .tie-animate-slideInUp h3 {
    font-size: 14px;
    line-height: 1.4;
}

.right-article .Important_2 h2 {
    padding-left: 15px;
    font-size: 13px !important;
    line-height: 14px;
    margin-bottom: 3px;
}

.right-article .Important_2 {
    border:0px !important;
}
h3.right-sidebar-title {
    font-size: 20px;
    padding-left: 15px;
    background: #fff;
    position: relative;
    z-index: 11;
    padding-bottom: 5px;
}

.tie-animate-slideInUp:last-child {
    padding-bottom:0px;
}

.right-article .tie-animate-slideInUp a:hover {
    color:red;
}

.right-article .tie-animate-slideInUp a:hover .date:before {
    background: red;
    transform: scale(1.2);
}

.main-mb{
    margin-bottom: 20px;
}

.simple-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
}

.simple-pagination a {
    width: 50%;
    border-radius: 0px;
    font-size: 14px;
}

.show-content, .show-content p, .show-content p a, .show-content p span, .show-content a, .show-content span {
    font-family: BPG Arial !important;
    font-size: 16px !important;
}


.sharing {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
}

.sharing .tit {
    color: #373435;
    font-size: 14px
}

.sharing .tit,.sharing a {
    margin-right: 1em;
    display: inline-block
}

.sharing a,.sharing a:hover {
    transition: all .5s
}

.sharing a:hover {
    opacity: .9
}

.fb-share {
    background: #4865a5
}

.fb-share .fa, .fb-share .fab {
    padding: 10px 12px;
    background: #3a589b;
    font-size: 18px
}

.fb-share .fa, .fb-share .fab,.fb-share .txt {
    display: inline-block;
    color: #fff
}

.fb-share .txt {
    padding: 0 10px
}

.gplus-share {
    background: #e45252
}

.gplus-share .fa {
    padding: 10px 12px;
    display: inline-block;
    background: #e02f2f;
    font-size: 18px;
    color: #fff
}

.gplus-share .txt {
    display: inline-block;
    padding: 0 10px;
    color: #fff
}

.linkedin-share {
    background: #6183ac
}

.linkedin-share .fab {
    padding: 10px 12px;
    display: inline-block;
    background: #466c9c;
    font-size: 18px;
    color: #fff
}

.linkedin-share .txt {
    display: inline-block;
    padding: 0 10px;
    color: #fff
}

.twitter-share {
    background: #66b7f5
}

.twitter-share .fab {
    padding: 10px 13px;
    display: inline-block;
    background: black;
    font-size: 18px;
    color: #fff
}

.twitter-share .txt {
    display: inline-block;
    padding: 0 10px;
    color: #fff
}

.chart-share {
    background: #c95757
}

.chart-share .fa {
    padding: 10px 12px;
    display: inline-block;
    background: #bb1919;
    font-size: 18px;
    color: #fff
}

.chart-share .txt {
    display: inline-block;
    padding: 0 10px;
    color: #fff
}

.print-btn {
    background: #d2d2d2
}

.print-btn .fa {
    padding: 10px 12px;
    background: #c1c1c1;
    font-size: 18px
}

.print-btn .fa,.print-btn .txt {
    display: inline-block;
    color: #fff
}

.print-btn .txt {
    padding: 0 10px
}

.taggable {
    display: flex;
    color: #ccc;
    margin-top: 10px;
    font-size: 12px;
    padding: 30px 0;
}

.taggable div {
    margin-left: 10px
}

.taggable div h5 {
    display: inline-block;
    margin: 0;
    font-size: 11px;
    border: 1px solid #c0c0c0;
    padding: 4px 8px 4px 8px;
    margin-right: 7px;
    border-radius: 10px;
}
.taggable div h5 a {
    color: #000;
}

.taggable div h5:hover {
    background: #3f4986;
    border: 1px solid #3f4986;
}

.taggable div h5:hover a {
    color: #fff;
}
