﻿/*Floating Buttons*/
@import url(docs.md-iconic-font.min.css);


body {
    background-color: #F5F5F5;
    color: #333333;
}

.btn-primary {
    background-color: #003366;
    border-color: #003366;
}

.btn-warning {
    background-color: #FF6600;
    border-color: #FF6600;
}

.btn-danger {
    background-color: #CC0000;
    border-color: #CC0000;
}

.btn-success {
    background-color: #2E7D32;
    border-color: #2E7D32;
}

.dropdown-item {
    padding: 0 !important;
}

#slider {
    height: 500px; /* or whatever height you prefer */
}

.carousel-inner, .carousel-item {
    height: 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* Remove background and border from carousel arrows */
.carousel-control-prev,
.carousel-control-next {
    background: none !important; /* remove default grey/white background */
    border: none !important; /* remove any border */
    width: 5%; /* optional: make arrow area smaller */
}

/* Make icons more visible if needed */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100%, 100%;
    filter: invert(1); /* makes white arrows on dark background */
}

/* Move indicators 20px above bottom */
.carousel-indicators {
    bottom: 20px !important;
}

    /* Line style indicators */
    .carousel-indicators [data-bs-target] {
        width: 40px; /* line length */
        height: 4px; /* line thickness */
        border-radius: 2px; /* slightly rounded edges */
        background-color: #ccc; /* grey for inactive */
        border:0px;
        margin: 0 5px;
        transition: all 0.2s ease;
    }

    /* Active indicator */
    .carousel-indicators .active {
        background-color: #0066cc; /* brand primary color */
    }


/* Alert Bar Styles */
.alert-bar {
    color: white;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Blinking alert indicator */
.blink {
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Ticker animation */
.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    animation: ticker-scroll 22s linear infinite;
}

.contact-item {
    font-size: 0.95rem;
    color: #333;
    display: inline-flex;
    align-items: center;
}

    .contact-item i {
        font-size: 1.1rem;
    }

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.alert-bar {
    white-space: nowrap;
}

.alert-contents {
    overflow: hidden;
    min-width: 0; /* important for flex-grow child to shrink on small screens */
    color: #212529
}

.alert-label {
    flex-shrink: 0;
}

/*sliders*/
.carousel-inner img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

    .carousel-inner img:hover {
        transform: scale(1.02);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .alert-bar {
        font-size: 0.9rem;
    }

    .contact-item {
        margin-right: 1.5rem;
    }
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    pointer-events: none;
}


/*Vertical Divider*/

@media ( min-width: 768px ) {
    .grid-divider {
        position: relative;
        padding: 0;
    }

        .grid-divider > [class*='col-'] {
            position: static;
        }

            .grid-divider > [class*='col-']:nth-child(n+2):before {
                content: "";
                border-left: 1px solid #DDD;
                position: absolute;
                top: 0;
                bottom: 0;
            }

    .col-padding {
        padding: 0 15px;
    }
}

.top-bar ul {
    list-style: none;
    margin: 0 10px;
    padding: 0;
}

#top-header-menu li {
    display: inline;
    padding: 10px;
}

.top-bar {
    background: #1FA67A;
    line-height: 30px;
    height: 30px;
}

    .top-bar a {
        color: #fff;
    }

    .top-bar #social {
        text-align: right;
    }

.content-height {
  height:600px;
}

/*Scroll Bar*/
.scroll-bar-wrap1 {
    height: 400px; /* container height */
    overflow: hidden; /* hides outside */
    position: relative;
}

.vticker {
    position: absolute;
    width: 100%;
}



.scroll-box {
    width: 100%;
    height: 600px;
    overflow-y: scroll;
    padding:20px;
}

    .scroll-box::-webkit-scrollbar {
        width: .4em;
    }

    .scroll-box::-webkit-scrollbar,
    .scroll-box::-webkit-scrollbar-thumb {
        overflow: visible;
        border-radius: 4px;
    }

    .scroll-box::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.2);
    }

.scroll-Listbox {
    width: 100%;
    height: 352px;
    overflow-y: scroll;
}

    .scroll-Listbox::-webkit-scrollbar {
        width: .4em;
    }

    .scroll-Listbox::-webkit-scrollbar,
    .scroll-Listbox::-webkit-scrollbar-thumb {
        overflow: visible;
        /*border-radius: 4px;*/
    }

    .scroll-Listbox::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.2);
    }

.scroll-Infobox {
    width: 100%;
    height: 280px;
    overflow-y: scroll;
}

    .scroll-Infobox::-webkit-scrollbar {
        width: .4em;
    }

    .scroll-Infobox::-webkit-scrollbar,
    .scroll-Infobox::-webkit-scrollbar-thumb {
        overflow: visible;
        border-radius: 4px;
    }

    .scroll-Infobox::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.2);
    }

.cover-bar {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    width: .4em;
    -webkit-transition: all .5s;
    opacity: 1;
}



/* Multi-level dropdown support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #dee2e6;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a::after {
    content: "›";
    float: right;
    margin-left: 10px;
}

.dropdown-item form {
    margin: 0;
}

    .dropdown-item form button {
        padding: 0;
        border: none;
        background: none;
        color: inherit;
        text-align: left;
        width: 100%;
    }

        .dropdown-item form button:hover {
            background-color: #f8f9fa;
            color: #007bff;
        }


/*Content List Box*/
.single {
    padding: 5px;
    margin-top: 10px;
    background: #fcfcfc;
    border: 1px solid #ccc;
    border-radius: 10px;
}
    .single h3.side-title {
        margin: 0;
        margin-bottom: 10px;
        padding: 0;
        font-size: 20px;
        color: #333;
        text-transform: uppercase;
    }

        .single h3.side-title:after {
            content: '';
            width: 60px;
            height: 1px;
            background: #ff173c;
            display: block;
            margin-top: 6px;
        }

    .single ul {
        margin-bottom: 0;
    }

    .single li a {
        color: #666;
        font-size: 14px;
        text-transform: uppercase;
        border-bottom: 1px solid #f0f0f0;
        line-height: 40px;
        display: block;
        text-decoration: none;
    }

        .single li a:hover {
            color: #ff173c;
        }

    .single li:last-child a {
        border-bottom: 0;
    }


.singleinfo {
    padding: 20px 10px;
    margin-top: 20px;
    background: #fcfcfc;
}

    .singleinfo h3.side-title {
        margin: 0;
        margin-bottom: 10px;
        padding: 0;
        font-size: 20px;
        color: #333;
        text-transform: uppercase;
    }

        .singleinfo h3.side-title:after {
            content: '';
            width: 60px;
            height: 1px;
            background: #ff173c;
            display: block;
            margin-top: 6px;
        }

    .singleinfo ul {
        margin-bottom: 0;
    }

    .singleinfo li a {
        color: #666;
        font-size: 14px;
        text-transform: uppercase;
        border-bottom: 1px solid #f0f0f0;
        line-height: 20px;
        display: block;
        text-decoration: none;
    }

        .singleinfo li a:hover {
            color: #ff173c;
        }

    .singleinfo li:last-child a {
        border-bottom: 0;
    }
    

/*Card Horizontal*/
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
    /*height:100px;*/
}


/*Multiple Carousal*/
.carousel-inner .active.left {
    left: -25%;
}

.carousel-inner .next {
    left: 25%;
}

.carousel-inner .prev {
    left: -25%;
}

.carousel-control {
    width: 4%;
}

    .carousel-control.left, .carousel-control.right {
        margin-left: 15px;
        background-image: none;
    }

/*Scroll*/
#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: #e74c3c;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }


.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}




/*Floating Action Button*/

.fabs {
    bottom: 0;
    position: fixed;
    margin: 1em;
    right: 0;
    z-index: 998;
}

.fab {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
    background: #00BCD4;
    margin: 25px auto 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
    cursor: pointer;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    position: relative;
    z-index: 998;
    overflow: hidden;
}

    .fab > i {
        font-size: 2em;
        line-height: 55px;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .2s ease-in-out;
    }

    .fab:not(:last-child) {
        width: 0;
        height: 0;
        margin: 20px auto 0;
        opacity: 0;
        visibility: hidden;
    }

        .fab:not(:last-child) > i {
            font-size: 1.4em;
            line-height: 40px;
        }

        .fab:not(:last-child).is-visible {
            width: 40px;
            height: 40px;
            margin: 15px auto 10;
            opacity: 1;
            visibility: visible;
        }

    .fab:nth-last-child(1) {
        -webkit-transition-delay: 25ms;
        -moz-transition-delay: 25ms;
        -o-transition-delay: 25ms;
        transition-delay: 25ms;
    }

    .fab:not(:last-child):nth-last-child(2) {
        -webkit-transition-delay: 20ms;
        -moz-transition-delay: 20ms;
        -o-transition-delay: 20ms;
        transition-delay: 20ms;
    }

    .fab:not(:last-child):nth-last-child(3) {
        -webkit-transition-delay: 40ms;
        -moz-transition-delay: 40ms;
        -o-transition-delay: 40ms;
        transition-delay: 40ms;
    }

    .fab:not(:last-child):nth-last-child(4) {
        -webkit-transition-delay: 60ms;
        -moz-transition-delay: 60ms;
        -o-transition-delay: 60ms;
        transition-delay: 60ms;
    }

    .fab:not(:last-child):nth-last-child(5) {
        -webkit-transition-delay: 80ms;
        -moz-transition-delay: 80ms;
        -o-transition-delay: 80ms;
        transition-delay: 80ms;
    }

    .fab:not(:last-child):active,
    .fab:not(:last-child):focus,
    .fab:not(:last-child):hover {
        box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
    }

.fab_field {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: #eceff1;
    box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

    .fab_field a {
        display: inline-block;
        text-align: center;
    }

#fab_listen {
    float: left;
    background: rgba(0, 0, 0, 0);
}

#fab_send {
    float: right;
    background: rgba(0, 0, 0, 0);
}

.fab_field .fab {
    width: 35px;
    height: 35px;
    box-shadow: none;
    margin: 5px;
}

    .fab_field .fab > i {
        font-size: 1.6em;
        line-height: 35px;
        color: #263238;
    }


/*Element state*/

.is-active {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.is-float {
    box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

.is-max {
    box-shadow: inset 0 -12px 10px -10px rgba(0, 0, 0, 0.18), inset 0 12px 10px -10px rgba(0, 0, 0, 0.10);
}

.is-loading {
    display: block;
    -webkit-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
    -moz-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
    -o-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
    animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
}


/*Animation*/

@keyframes zoomIn {
    0% {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    100% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes load {
    0% {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }

    50% {
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
/* SMARTPHONES PORTRAIT */

@media only screen and (min-width: 300px) {
    .chat {
        width: 200px;
    }
}
/* SMARTPHONES LANDSCAPE */

@media only screen and (min-width: 480px) {
    .chat {
        width: 300px;
    }

    .chat_field {
        width: 65%;
    }
}
/* TABLETS PORTRAIT */

@media only screen and (min-width: 768px) {
    .chat {
        width: 300px;
    }

    .chat_field {
        width: 65%;
    }
}
/* TABLET LANDSCAPE / DESKTOP */

@media only screen and (min-width: 1024px) {
    .chat {
        width: 400px;
    }

    .chat_field {
        width: 65%;
    }
}


/* Ripple */

.ink {
    display: block;
    position: absolute;
    background: rgba(38, 50, 56, 0.4);
    border-radius: 100%;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    webkit-transform: scale(0);
    transform: scale(0);
}
    /*animation effect*/

    .ink.animate {
        animation: ripple 0.5s ease-in-out;
    }

@keyframes ripple {
    /*scale the element to 250% to safely cover the entire link and fade it out*/
    100% {
        opacity: 0;
        -moz-transform: scale(5);
        -ms-transform: scale(5);
        webkit-transform: scale(5);
        transform: scale(5);
    }
}

/*Blink Effects*/
/* Flash class and keyframe animation */
.flashit {
    color: #f2f;
    -webkit-animation: flash linear 2s infinite;
    animation: flash linear 2s infinite;
}

@-webkit-keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

/*Profile Card*/


* {
    font-family: "Muli",sans-serif;
}

.card.profile-card {
    box-shadow: 0px 0px 20px #DFDFDF;
    border: none;
    border-radius: 0;
}

input.fab {
    display: none
}

figure {
    overflow: hidden
}

.img-profile {
    -webkit-clip-path: circle(52% at 70% 38%);
    -moz-clip-path: circle(52% at 70% 38%);
    clip-path: circle(52% at 70% 38%);
    transform: translatez(0);
    transition: all .3s linear;
}

    .img-profile:hover {
        -webkit-clip-path: circle(30% at 50% 50%);
        clip-path: circle(100% at 50% 50%);
        transform: scale(1.07) rotate(-5deg) translatez(0)
    }

.profile-card .fab + .toggle {
    top: 100%;
    z-index: 10;
    right: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    font-size: 40px;
    line-height: 10px;
    text-align: center;
    border-radius: 10%;
    position: absolute;
    color: #fff;
    background: #F44336;
    -webkit-user-select: none;
    box-shadow: 0 4px 4px #666;
    transition: all 0.3s ease-in-out 0s;
}

.fab:checked + .toggle {
    color: #fff;
    background: #F44336;
    transform: rotate(135deg);
    box-shadow: 2px -2px 4px #333;
    transition: all 0.3s ease-in-out 0s;
}

/*Read More*/
/*#summary {
    font-size: 14px;
    line-height: 1.5;
}

    #summary p.collapse:not(.show) {
        height: 42px !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #summary p.collapsing {
        min-height: 42px !important;
    }

    #summary a.collapsed:after {
        content: '+ Read More';
    }

    #summary a:not(.collapsed):after {
        content: '- Read Less';
    }*/


    /*Floating Tabs */

@media screen and (min-width: 600px) {
    .MobileContent {
        visibility: hidden;
        clear: both;
        float: left;
        margin: 10px auto 5px 20px;
        width: 28%;
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .DesktopContent {
        visibility: hidden;
        clear: both;
        float: left;
        margin: 10px auto 5px 20px;
        width: 28%;
        display: none;
    }
}

/*Profile Card*/
*:hover {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

section {
    float: left;
    width: 100%;
    background: #fff; /* fallback for old browsers */
    padding: 5px;
}

h1 {
    float: left;
    width: 100%;
    color: #232323;
    margin-bottom: 30px;
    font-size: 14px;
}

    h1 span {
        font-family: 'Libre Baskerville', serif;
        display: block;
        font-size: 45px;
        text-transform: none;
        margin-bottom: 20px;
        margin-top: 30px;
        font-weight: 700
    }

    h1 a {
        color: #131313;
        font-weight: bold;
    }

/*Profile Card */

.imagebox {
    background: black;
    padding: 0px;
    position: relative;
    text-align: center;
    width: 100%;
}

    .imagebox img {
        opacity: 1;
        transition: 0.5s opacity;
    }

    .imagebox .imagebox-desc {
        background-color: rgba(0, 0, 0, 0.6);
        bottom: 0px;
        color: white;
        font-size: 1.2em;
        left: 0px;
        padding: 1px 1px;
        position: absolute;
        transition: 0.5s padding;
        text-align: center;
        width: 100%;
    }

    .imagebox:hover img {
        opacity: 0.7;
    }

    .imagebox:hover .imagebox-desc {
        padding-bottom: 10%;
    }


    /*Horizontal Cards*/
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

/*Gallery Page*/

.green {
    background-color: #6fb936;
}

.thumb {
    margin-bottom: 30px;
}

.page-top {
    margin-top: 85px;
}


img.zoom {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}


.transition {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    color: #000;
}



/**/
.sidebar-outer {
    margin-top: 100px;
    position: fixed;
}

.fixed {
    position: fixed;
}

/*Accordian*/


.cke_contents {
    height: 60vh !important;
}


.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.info-title {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .info-links li {
        margin-bottom: 0.5rem;
    }

    .info-links a {
        color: #333;
        text-decoration: none;
        display: block;
        padding: 0.35rem 0.5rem;
        border-radius: 5px;
        transition: background 0.2s;
    }

        .info-links a:hover {
            background-color: #f8f9fa;
            color: #000;
        }

.scrollable-list {
    max-height: 250px;
    overflow-y: auto;
}

/* Add hover lift */
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
