/* Blogosphere: main stylesheet */

/* Table of Contents
-----------------------------------------------------------
    
    # General Styles
    # Loaders
    # Top Bar
    # Polylang Plugin
    # Main Menu
    # Mega Menu
    # Mobile Menu
    # Banner Author Page
    # Widgets
    # Carousel
    # Multi Post
    # Post Box Layout 1
    # Post Box Layout 10
    # Figure Holder
    # Content Holder
    # Entry Category
    # Entry Title
    # Entry Meta
    # VC: banner-slider
    # VC: templates
    # Single Blog
    # Comments
    # Sidebar
    # Footer
*/


/* # General Styles
------------------------------------------------------- */
html {
    overflow-x: hidden;
}

body {
   overflow: visible !important;    
}

body,
html {
    width: 100%;
    position: relative;
}

body:not(.loading) {
    overflow: auto; 
}

body.dark-mode,
body.dark-mode [class^="vc_custom_"] {
    background-color: #201f1f;
    transition: .3s;
}

body.customize-partial-edit-shortcuts-shown {
    overflow-x: hidden !important;
}

.container {
    max-width: 1076px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    object-fit: cover;
}

.figure-holder img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.text-align-center {
    text-align: center;
}

.link-wrap {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 14px;
}

.inline {
   display: flex;
   align-items: center;
   column-gap: 20px;
}

.align-right {
   float: right;
}

.padding-10 {
    padding:10px;
}

.padding-20 {
    padding:20px;
}

.padding-30 {
    padding: 30px;
}

.padding-40 {
    padding: 40px;
}

.radius-default {
   border-radius: 8px;
}

.border-default {
    border: 1px solid #000;
}

h3.h3-large {
    font-size: 28px;
}

h3.h3-medium {
    font-size: 20px;
}

h3.h3-small {
    font-size: 22px;
}

h3.h3-extra-small {
    font-size: 16px;
}

/* Desktop only */
.sticky-element {  
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    z-index: 10;
}

/* Disable on tablet + mobile */
@media (max-width: 1024px) {
  .sticky-element {
    position: static !important;
    top: auto !important;
  }
  .my-custom-sidebar-wrapper {
      height: auto !important;
  }
}

.size-medium,
.size-small,
.size-large {
    border-radius: 50%;
    position: absolute;
    text-decoration: none;
}

.size-medium {
    margin: 2px;
    width: 50px;
    height: 50px;
}

.size-small {
    margin: 2px;
    width: 36px;
    height: 36px;
}

.size-large {
    width: 96px;
    height: 96px;
}

.size-medium i {
    position: relative;
    font-weight: 900;
    font-size: 22px;
    color: #000;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.8s ease, color 0.8s ease;
}

.size-small i {
    position: relative;
    font-weight: 900;
    font-size: 11px;
    color: #000;
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.8s ease, color 0.8s ease;
}

.size-large i {
    position: relative;
    font-weight: 900;
    font-size: 50px;
    color: #000;
    background: #fff;
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.8s ease, color 0.8s ease;
}

.blogosphere-pagination span,
.blogosphere-pagination a {
    border:none !important;
}

.play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
    animation: blinking 2s ease-out infinite;
}

.play-btn i:hover {
    background-color: #f75959;
    color: #fff;
}

@keyframes blinking {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.separator {
    border-bottom: 1px solid #303030;
}

.separator:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(90px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

#backto-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: #ffffff;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
    display: none;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

#backto-top.show {
    display: block;
}

#backto-top i {
    font-size: 18px;
}

input.form-control,
input.form-control:focus,
.search input,
.search input:focus,
.searchform input,
.searchform input:focus,
textarea.form-control,
textarea.form-control:focus {
    outline: none;
    box-shadow: none;
}

.search,
.searchform {
    position: relative;
}

.search button,
.searchform buttom {
    position: absolute;
    right: 0;
    height: 100%;
    width: 69px;
    background-color: #a4f4f9;
    border: 1px solid #000;
}

.link-img {
    width: 100%;
}

.wp-block-list.color-light li,
p.color-light,
.color-light p,
.wpb_wrapper + p.color-light,
.entry-category.color-light a,
.entry-title.color-light a,
.entry-meta.color-light ul li a,
.entry-meta.color-light ul li,
.entry-description.color-light p,
span.color-light,
h1.color-light,
h2.color-light,
h3.color-light,
h4.color-light,
h5.color-light,
h6.color-light,
i.color-light,
span a.nav-link.color-light,
li.color-light,
.comment-author.color-light,
.reply-link .comment-reply-link.color-light,
a.color-light {
    color: #fff;
}

.wp-block-list.color-dark li,
p.color-dark,
.color-dark p,
.wpb_wrapper + p.color-dark,
.entry-category.color-dark a,
.entry-category.color-dark ul li a,
.entry-title.color-dark a,
.entry-meta.color-dark ul li a,
.entry-meta.color-dark li,
.entry-description.color-dark p,
span.color-dark,
h1.color-dark,
h2.color-dark,
h3.color-dark,
h4.color-dark,
h5.color-dark,
h6.color-dark,
.default-color, 
.default-color a,
i.color-dark,
li.color-dark,
a.color-dark {
    color: #2a2a2a;
}

.faq-pro-item.color-light {
    background-color: transparent;
}

.color-light .faq-pro-status:before, 
.color-light .faq-pro-status:after {
    background-color: #fff;
}

.color-light .faq-pro-title,
.color-light .faq-pro-inner {
    color: #fff;
}

[data-force-dark="yes"] .entry-title,
[data-force-dark="yes"] .entry-meta,
[data-force-dark="yes"] .entry-meta a {
    color: #2a2a2a;
}

.author-thumb {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
}

.btn {
    border:none;
}

.btn-text {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
    color: #2e2e2e;
    text-decoration: none;
}

.custom-breadcrumb {
    background-color: #FDEDDD;
    padding: 20px 0;
}

.custom-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.no-found {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0;
}

p { line-height:36px }

[type=button]:not(:disabled), 
[type=reset]:not(:disabled), 
[type=submit]:not(:disabled), 
button:not(:disabled) {
    outline: none;
    cursor: pointer;
}

.wpb_button, 
.wpb_content_element, 
ul.wpb_thumbnails-fluid>li {
    margin-bottom: 15px !important;
}

div.mce-floatpanel[style] {
    position: fixed !important;
    top: 20% !important;
    left: 32% !important;
}

#page.el-style-border-all .form-control,
#page.el-style-border-all .form-control + button {
    border: 1px solid #000;
}

#page.el-style-border-all.el-style-border-width-2 .form-control,
#page.el-style-border-all.el-style-border-width-2 .form-control + button {
    border: 2px solid #000;
}

#page.el-style-border-bottom .form-control,
#page.el-style-border-bottom .form-control + button {
    border: 0;
    border-bottom: 1px solid #000;
}

#page.el-style-border-bottom.el-style-border-width-2 .form-control,
#page.el-style-border-bottom.el-style-border-width-2 .form-control + button {
    border: 0;
    border-bottom: 2px solid #000;
}

textarea {
    border-radius: var(--bs-border-radius) !important;
}

/* # Loaders
------------------------------------------------------- */
#blogosphere-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  visibility: visible;
}

#blogosphere-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#blogosphere-name {
  position: relative;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.12);
  user-select: none;
  padding: 6px 10px;
  white-space: nowrap;
  --p: 0%;
}

#blogosphere-name::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  width: var(--p);
  white-space: nowrap;
  pointer-events: none;
  background: linear-gradient(90deg, #ff6600 0%, #ff8a1a 40%, #ffd166 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: width 0.12s linear;
}

#blogosphere-name.fill-anim::before {
  transition: width 0.12s linear, transform 0.18s ease;
  transform-origin: left center;
}

/* # Top Bar
------------------------------------------------------- */
.topbar {
    background: #000;
    color: #fff;
    padding: 11px 0;
    font-size: 14px;
    display: flex;
}

.topbar-menu li {
    display: inline-block;
    margin-right:1rem;
}

.topbar-menu li:last-child {
    margin-right: 0;
}

.topbar-menu li a {
    text-decoration: none;
    color:#fff;
}

.topbar-items.topbar-left,
.topbar-items.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-items p {
    margin-bottom: 0;
}

.topbar-items > * {
    padding-left: 0;
    padding-right: 15px;
    line-height: 20px;
}

.topbar-items > *:last-child {
    padding-right: 0;
    border-right: none;
}

.topbar-items {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar-items > *:not(:last-child) {
    border-right: 1px solid #fff;
}

.current-date,
.social-title {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.social-title,.inline-list,
.current-date,.h-not {
    float: left;
    font-weight: 400;
}

.social-title::before {
    position: absolute;
    height: 20px;
    width: 1px;
    content: "";
    background-color: #fff;
    right: -18px;
    top: calc(50% - 0.7em);
    margin-right: 0;
}

.topbar .social-icon {
    font-size: 14px;
    width: 23px;
    height: 0;
    line-height: 0;
}

.topbar .social-icon i {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.h-not .fa-moon {
  transform: rotate(-91deg);
}

.inline-list {
  padding-left: 0;
  list-style: none;
}

.social-layout-1 .inline-list {
    margin-left: 1rem;
}

.inline-list > *,
.h-not > * {
  display: inline-block;
}

.inline-list > * + *,
.h-not > * + * {
  margin-left: 0.6rem;
}

/* # Polylang Plugin 
---------------------------------------------------------*/
.pll-switcher-select {
    background: transparent;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    color-scheme: dark; 
}

.pll-switcher-select option {
    background: #fff;
    color: #000;
}

.pll-switcher-select:hover {
    opacity: 0.8;
}

/* # Main Menu
------------------------------------------------------- */
.mainbar {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1000;
}

.mainbar .navbar {
    padding: 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    background-color: #78d5f9;
}

.mainbar.color-light .nav-link {
    color: #ffffff !important;
}

.mainbar:not(.color-light) .nav-link {
    color: #2a2a2a;
}

.navbar.header-full-width .container,
.topbar.header-full-width .container {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.mainbar .navbar-toggler {
    position: relative;
    height: 28px;
    width: 25px;
}

.mainbar .navbar-toggler span {
    position: absolute;
    width:20px;
    height:2px;
    background-color: #000;
    right: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 8px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

.navbar-toggler:hover span:nth-child(1),
.navbar-toggler:hover span:nth-child(3) {
    width: 14px;
    transition: width 0.3s ease;
}

.navbar-toggler,
.navbar-toggler:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.mainbar .navbar .nav-link {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.navbar-nav .nav-link.active,
.nav-link:hover {
/*    color: #f75959;*/
}

.dropdown-toggle::after {
    display: none;
}

.dropdown i {
    font-size: 10px;
}

.dropdown-menu {
    z-index: 1060;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mainbar .dropdown.mega-menu > .dropdown-menu {
    max-width: 1052px !important;
} 

.dropdown:not(.mega-menu) > .dropdown-menu {
    position: absolute;
    top: 100%;
    display: none;
    background-color: #fff;
    z-index: 9999;
    padding: 1.5rem;
    border: none;
}

.dropdown:not(.mega-menu) .dropdown-item {
    justify-content: space-between !important;
    align-items: center !important;
    white-space: nowrap !important;
}

.dropdown:not(.mega-menu) .menu-label-wrapper {
    flex-shrink: 0 !important;
    display: inline-flex !important;
}

.mainbar .dropdown:not(.mega-menu) .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    z-index: 999;
}

.dropdown-menu .dropdown-toggle .fas.fa-chevron-down {
    right: 0;
    position: absolute;
    top: 12px;
    transform: rotate(-90deg);
    transition: transform 0.2s ease-in-out; 
}

.dropdown-menu .dropdown-submenu.show > .dropdown-toggle .fas.fa-chevron-down {
    transform: rotate(0deg); 
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
/*    color: #f75959;*/
}

.mainbar .dropdown-menu li {
    position: relative;
}

.mainbar .search {
    width: 20%;
}

.mainbar .search button,
.sidebar-area .search button {
    width: 47px;
    border: none;
    border-radius: 0 8px 8px 0;
    top: 0;
}

.mainbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mainbar.show {
    transform: translateY(0);
}

.menu-label {
    padding: 2px 6px;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10; 
}

.menu-item.menu-item-has-children > a .menu-label {
    position: absolute;
    top: 13px;
}

.menu-label:empty {
    display: none;
}

.dropdown-item:focus, .dropdown-item:hover {
   background-color: transparent;
}

/* # Mega Menu
------------------------------------------------------- */
.dropdown.mega-menu {
    position: unset;
}

.mega-menu img{
  width: 100%;
  height: auto;
}

.mega-menu .dropdown-item {
    padding: 0;
}

.mainbar .dropdown.mega-menu > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1117px;
    display: none;
    gap: 0rem;
    z-index: 9999;
    padding: 1.5rem;
    border: none;
}

.mainbar .dropdown.mega-menu > .dropdown-menu .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
}

.mega-menu-cols > .dropdown-menu {
    display: grid;
}

.mega-menu-2-cols > .dropdown-menu {
    grid-template-columns: repeat(2, 1fr);
}

.mega-menu-3-cols > .dropdown-menu {
    grid-template-columns: repeat(3, 1fr);
}

.mega-menu-4-cols > .dropdown-menu {
    grid-template-columns: repeat(4, 1fr);
}

/* # Mobile Menu
------------------------------------------------------- */

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border:2px solid #000000;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-navbar.open {
    left: 0;
}

.mobile-navbar .navbar-brand {
  margin-top: 44px;
  width: 100%;
  text-align: center;
}

.mobile-navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-navbar .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.mobile-navbar .nav-item:last-child .nav-link {
    border-bottom: none;
}

.mobile-navbar .dropdown {
    border-bottom: none;
}

.mobile-navbar .dropdown-menu {
    position: static !important;
    float: none !important;
    display: none;
    border: none;
    padding-left: 1rem;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    box-shadow: none;
}

.mobile-navbar .dropdown-menu.is-open {
    display: block !important;
}


.mobile-navbar .navbar-collapse {
    display: none;
}

.mobile-navbar.open .navbar-collapse {
    display: block;
}

@media (min-width: 992px) {
    .mobile-navbar {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mainbar .navbar {
        padding:15px 0;
    }

    .mainbar .search {
    display: none !important;
    }

    .mainbar .navbar-collapse {
    display: none !important;
    }

}

#mobileOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
}

/* # Banner Author Page
------------------------------------------------------- */
.author-banner {
    background-color: #fafafa;
    padding:60px 0;
    overflow: hidden; 
    display: flex; 
    align-items: center;
}

.author-banner .container {
    display: flex; 
    align-items: center;
}

.author-avatar-container {
    margin-right: 20px;
}

.author-avatar-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.author-bio {
    font-size:14px;
    margin:15px 0;
}

.author-details {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.author-details .author-name {
    font-size: 20px;
    font-weight: 600;
}

.author-details .author-title {
    font-size: 18px;
    font-weight: 400;
    max-width: max-content;
    position: relative;
    font-style: italic;
}

.author-details .author-title::before {
    position: absolute;
}

/* # Widgets
------------------------------------------------------- */
.widget_custom_wp_widget_recent_comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_custom_wp_widget_recent_comments li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.widget_custom_wp_widget_recent_comments li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.recent-comment-content {
    flex-grow: 1;
    font-size: 0.9em;
    line-height: 1.4;
}

.recent-comment-content .comment-author {
    font-weight: bold;
    color: #333;
}

.recent-comment-content .comment-post-title {
    font-style: italic;
    color: #666;
}

.recent-comment-content .comment-date {
    display: block;
    font-size: 0.8em;
    color: #999;
    margin-top: 2px;
}

.recent-comment-content .comment-excerpt {
    color: #555;
    margin-top: 5px;
}

.recent-comment-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
}

.recent-comment-link-wrapper:hover .comment-author,
.recent-comment-link-wrapper:hover .comment-post-title {
    color: #0073aa;
}

.widget_media_image {
    padding: 0 !important;
}

.widget_media_image img {
    width: 100%; 
    margin-bottom:0 !important;
}

/* # Carousel
------------------------------------------------------- */
body.dark-mode .slick-active button {
    background-color: #fff !important;
}

.slick-carousel,
.top-communist-slider,
.style-10 {
    margin: 0 -8px;
}

.slick-slide-box, 
.slick-slide-10 {
  padding: 0 10px;
  box-sizing: border-box;
}

.carousel-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  z-index: 2;
  white-space: nowrap;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev i,
.slick-next i {
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slick-prev:hover i,
.slick-next:hover i {
  transform: scale(1.2);
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  list-style: none;
  gap: 8px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover {
  background: #888;
}

.slick-dots li.slick-active button {
  background: #222;
  width: 14px;
  height: 14px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: var(--start-transform);
  }
  to {
    opacity: 1;
    transform: var(--end-transform);
  }
}

.slider-col-1 {
    opacity: 0;
    transform: var(--start-transform);
    border-radius: 8px;
}

.slider-col-1.animated {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
  .content-holder.slider-col-1 {
    width: auto !important;
    max-width: max-content !important;
  }
}

/* # Multi Post
------------------------------------------------------- */
.mb-mobile-1_5rem > .multi-post,
.mb-mobile-1_5rem .col-12 .multi-post {
    margin-top: 15px;
} 

.mb-mobile-1_5rem .col-12:first-child .separator {
    display: none;
}

/* # Post Box Layout 1
------------------------------------------------------- */
@media (max-width: 767px) {
  /* container list responsive */
  .blogosphere-blog-container.responsive-list-to-grid .post-box-layout-1.inline {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
  }

  /* figure (image) */
  .blogosphere-blog-container.responsive-list-to-grid .figure-holder {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* content */
  .blogosphere-blog-container.responsive-list-to-grid .content-holder {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* image full width */
  .blogosphere-blog-container.responsive-list-to-grid .figure-holder img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}

/* # Post Box Layout 10
------------------------------------------------------- */
.post-box-layout-10 {
    position: relative;
    z-index: 1;
    flex-direction: column;
    display: flex;
}

/* # Figure Holder
------------------------------------------------------- */
.figure-holder .link-img img {
    object-position: top center;
}

.figure-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.post-box-layout-10 .figure-holder {
    margin: 0;
}

/* # Content Holder
------------------------------------------------------- */
.content-holder {
    display: flex;
    flex-direction: column;
}

.content-holder p {
    line-height: inherit;
}

.post-box-layout-10 .content-holder {
    position: absolute;
    z-index: 1;
    width: 100%;
}

/* # Entry Category
------------------------------------------------------- */
.entry-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.entry-category ul li {
    margin-top: 0;
    margin-bottom: 0;
}

.entry-category.style-1 ul li a {
    color: #606468;
    border-color: #303030;
    background-color: #fff;
    text-transform: uppercase;
    padding: 4px 10px 3px;
    line-height: 1;
    border: 1px solid;
    border-radius: 27px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.entry-category.style-2 ul li a,
.entry-category.style-3 ul li a {
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.entry-category.style-2 ul li a {
    font-size: 12px;
}

.entry-category.style-3 ul li a {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding:6px 12px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 2;
    white-space: nowrap;
}

/* # Entry Title
------------------------------------------------------- */
.entry-title a {
    text-decoration: none;
    position: relative;
    display: inline;
    padding: .1% 0px;
}

/* # Entry Meta
------------------------------------------------------- */
.entry-meta ul {
  list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

.entry-meta ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    gap: 5px;
}

.entry-meta ul li.post-author {
    gap: 8px;
}

.entry-meta ul li.post-author a {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    text-decoration: none;
}

.entry-meta ul li::before {
    content: "";
    height: 12px;
    width: 1px;
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background-color: #56585a;
}

.entry-meta ul li:last-child::before {
    display: none;
}

.entry-meta ul li .author-thumb img {
    border-radius: 50%;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.entry-meta ul li i {
    display: inline-flex;
    line-height: 1;
}

/* # VC: banner-slider
------------------------------------------------------- */
.wpb_blogosphere_banner_slider {
    background: radial-gradient(lightblue, transparent) !important;
}

/* #VC: templates 
---------------------------------------------------------*/
/* Left-link pour vc */
.et_notice {
    margin-bottom: 30px;
}

.et_template {
    margin-right:15px !important;
}

.left-links {
    float: left;
    width: 20%;
}

.left-links li {
    margin-bottom: 12px;
}

.left-links a {
    text-decoration: none;
    color: #000;
    outline: none;
    font-weight: 500;
}

.left-links a:focus,
.left-links a:active {
    outline: none;
    box-shadow: none;
}

.left-links a:hover {
    color: #f75959;
}

.theme-browser {
    float: left;
    width: 80%;
}

.button.et_template_import {
   background-color: #f75959;
   color: #fff;
   border: none;
}

/* # Single Blog
------------------------------------------------------- */
.post-navigation-links {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 20px 0;
}

.blogosphere-nav-img {
    width:115px;
    height: 115px;
    border-radius: 50%;
}

/* # Comments
------------------------------------------------------- */
.blogosphere-comments-wrapper {
    max-width: 100%;
    margin: 0 ;
    padding: 40px 30px;
    background-color: transparent;
    border-radius: 12px;
    border: 1px solid #eaeaea;
}

.comments-title {
    margin-bottom: 20px;
}

.comments-list {
    margin: 0;
    padding: 0;
}

.comments-list li ul, 
.comments-list .children {
    margin-left: 50px !important;
    list-style: none;
}

.comments-list > li {
    padding-bottom: 25px;
}

.comment-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-content {
    position: relative;
}

.comment-author {
    font-weight: 600;
    font-size: 16px;
    color: #0073aa;
}

.comment-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.comment-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.reply-link a {
    font-size: 13px;
    color: #0073aa;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.reply-link a:hover {
    background-color: transparent;
    color: #005f8d;
}

.comment-form-section {
    padding-top: 30px;
}

#commentform {
    display: flex;
    flex-direction: column;
}

.comment-form-flex-row {
    display: flex;
    gap: 20px;
    order: 1;
}

.comment-form-comment {
    order: 2;
}

.comment-form-cookies-consent { order: 3; }
.form-submit { order: 4; }

.comment-form-flex-row p {
    flex: 1;
}

@media (max-width: 600px) {
    .comment-form-flex-row {
        flex-direction: column;
        gap: 0;
    }
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"],
.comment-form input[type="email"] {
    height: 51px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #333;
    background-color: transparent;
    outline: none;
    opacity: 0.5;
    transition: .3s;
}

.dark-mode .comment-form input:focus,
.dark-mode .comment-form textarea:focus {
    color:#fff;
    border-color: #fff;
}

.comment-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cancel-comment-reply-link {
    display: none !important;
}

.comment-form input[type="submit"]:hover {
    background-color: #005f8d;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: #777;
    opacity: 1;
}

.comment-form input:-ms-input-placeholder,
.comment-form textarea:-ms-input-placeholder {
    color: #777;
}
.comment-form input::-ms-input-placeholder,
.comment-form textarea::-ms-input-placeholder {
    color: #777;
}

/* # Sidebar
------------------------------------------------------- */
.sidebar-area {
    padding: 0;
}

.sidebar-area .search input {
    height: 42px;
}

.sidebar-area .title {
    margin-bottom: 20px;
}

.sidebar-area .widget_archive {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 25px;
}

.sidebar-area .widget_archive select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4L146.2%20208.6%205.4%2069.4c-1.3-1.3-3.4-1.3-4.7%200s-1.3%203.4%200%204.7l141.6%20141.6c1.3%201.3%203.4%201.3%204.7%200l141.6-141.6c1.3-1.3%201.3-3.4%200-4.7s-3.4-1.3-4.7%200z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

.sidebar-area .widget_archive select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.sidebar-area .widget_archive ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget_archive ul li {
    padding: 8px 0;
    border-bottom: 1px dotted #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-area .widget_archive ul li:last-child {
    border-bottom: none;
}

.sidebar-area .widget_archive ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-area .widget_archive ul li a:hover {
    color: #007bff;
}

.sidebar-area .widget_archive ul li .post-count {
    background-color: #007bff;
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 13px;
    margin-left: 10px;
    min-width: 25px;
    text-align: center;
}

.sidebar-area .widget {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #777;
}

.tagcloud {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tag-cloud-link {
    border-radius: 8px;
    border:1px solid #5c5c5c;
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: #2e2e2e;
    padding: 6px 12px;
    font-size: 14px;
    text-decoration: none;
}

.sidebar-area .widget_calendar #wp-calendar {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 15px;
}

.sidebar-area .widget_calendar #wp-calendar caption {
    caption-side: top;
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
    padding: 10px 0;
    margin-bottom: 10px;
}

.sidebar-area .widget_calendar #wp-calendar thead th {
    background-color: #007bff;
    color: #fff;
    padding: 10px 5px;
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid #007bff;
}

.sidebar-area .widget_calendar #wp-calendar tbody td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: center;
    color: #555;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

.sidebar-area .widget_calendar #wp-calendar tbody td.pad {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: default;
}

.sidebar-area .widget_calendar #wp-calendar #today {
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    border: 1px solid #e0a800;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.sidebar-area .widget_calendar #wp-calendar tbody td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

.sidebar-area .widget_calendar #wp-calendar tbody td:hover {
    background-color: #e9f5ff;
    color: #007bff;
}

.sidebar-area .widget_calendar #wp-calendar tfoot #prev,
.sidebar-area .widget_calendar #wp-calendar tfoot #next {
    padding-top: 10px;
    font-size: 14px;
}

.sidebar-area .widget_calendar #wp-calendar tfoot #prev a,
.sidebar-area .widget_calendar #wp-calendar tfoot #next a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.sidebar-area .widget_calendar #wp-calendar tfoot #prev a:hover,
.sidebar-area .widget_calendar #wp-calendar tfoot #next a:hover {
    text-decoration: underline;
}

.sidebar-area .widget_calendar #wp-calendar tfoot #prev {
    text-align: left;
}

.sidebar-area .widget_calendar #wp-calendar tfoot #next {
    text-align: right;
}

@media (max-width: 768px) {
    .sidebar-area .widget_calendar #wp-calendar tbody td,
    .sidebar-area .widget_calendar #wp-calendar thead th {
        padding: 5px;
        font-size: 12px;
    }
    .sidebar-area .widget_calendar #wp-calendar caption {
        font-size: 16px;
    }
}

.sidebar-area .widget_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget_categories ul li {
    padding: 10px 0;
    border-bottom: 1px dotted #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-area .widget_categories ul li:last-child {
    border-bottom: none;
}

.sidebar-area .widget_categories ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sidebar-area .widget_categories ul li a:hover {
    color: #28a745;
}

.sidebar-area .widget_categories ul li .count {
    background-color: #28a745;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-left: 10px;
    min-width: 25px;
    text-align: center;
}

.sidebar-area .widget_categories select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4L146.2%20208.6%205.4%2069.4c-1.3-1.3-3.4-1.3-4.7%200s-1.3%203.4%200%204.7l141.6%20141.6c1.3%201.3%203.4%201.3%204.7%200l141.6-141.6c1.3-1.3%201.3-3.4%200-4.7s-3.4-1.3-4.7%200z%22%2F%3E%3C%2Fsvg%3E'); /* Flèche personnalisée */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

.sidebar-area .widget_categories select:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.sidebar-area .widget_media_gallery {
    background-color: #fcfcfc;
    padding: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-area .gallery {
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sidebar-area .gallery-item {
    float: left;
    margin-top: 0;
    text-align: center;
    width: calc(33.33% - 10px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.sidebar-area .gallery-icon {
    line-height: 0;
    margin: 0;
}

.sidebar-area .gallery-icon img {
    border: 2px solid #cfcfcf;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-area .gallery-item:hover .gallery-icon img {
    transform: scale(1.05);
    border-color: #007bff;
}

.sidebar-area .gallery-caption {
    margin-left: 0;
    padding: 5px 0;
    font-size: 13px;
    color: #666;
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-area .gallery-item:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .sidebar-area .gallery-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .sidebar-area .gallery-item {
        width: 100%;
    }
}

.sidebar-area img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.sidebar-area a img {
    transition: transform 0.3s ease;
}

.sidebar-area a:hover img {
    transform: scale(1.05);
}

.sidebar-area .widget_meta {
    background-color: #f8f8f8;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    margin-bottom: 25px;
}

.sidebar-area .widget_meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget_meta ul li {
    padding: 7px 0;
    border-bottom: 1px dotted #e0e0e0;
}

.sidebar-area .widget_meta ul li:last-child {
    border-bottom: none;
}

.sidebar-area .widget_meta ul li a {
    color: #607d8b;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
    display: block;
    padding-left: 0;
}

.sidebar-area .widget_meta ul li a:hover {
    color: #007bff;
    padding-left: 5px;
    text-decoration: underline;
}

.sidebar-area .widget_pages {
    background-color: #fdfdfd;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.sidebar-area .widget_pages ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget_pages ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.sidebar-area .widget_pages ul li:last-child {
    border-bottom: none;
}

.sidebar-area .widget_pages ul li a {
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding-left: 0;
    transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
}

.sidebar-area .widget_pages ul li a:hover {
    color: #007bff;
    padding-left: 5px;
    text-decoration: underline;
}

.sidebar-area .widget_pages ul ul.children {
    margin-top: 5px;
    margin-left: 20px;
    border-left: 2px solid #e8e8e8;
    padding-left: 10px;
}

.sidebar-area .widget_pages ul ul.children li {
    font-size: 0.95em;
    padding: 7px 0;
}

.sidebar-area .widget_recent_entries {
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.sidebar-area .widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget_recent_entries ul li {
    padding: 10px 0;
    border-bottom: 1px dotted #e0e0e0;
}

.sidebar-area .widget_recent_entries ul li:last-child {
    border-bottom: none;
}

.sidebar-area .recent-post-link-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.sidebar-area .recent-post-thumbnail {
    flex-shrink: 0;
    margin-right: 15px;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-area .recent-post-link-wrapper:hover .recent-post-thumbnail {
    transform: scale(1.08);
}

.sidebar-area .recent-post-content {
    flex-grow: 1;
}

.sidebar-area .recent-post-content {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.2s ease-in-out;
}

.sidebar-area .recent-post-link-wrapper:hover .recent-post-content {
    color: #007bff;
    text-decoration: underline;
}

.sidebar-area .post-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.sidebar-area .tnp-widget form {
    position: relative;
}

.sidebar-area .tnp-widget .tnp-submit {
    position: absolute;
    right: 0;
    width: max-content;
    background-color: #ff5e5e;
    color: #fff;
}

.tnp-field label {
    position: absolute;
    color: transparent !important;
}

.col-lg-9.has-right-sidebar-padding > div > .container:first-child {
    padding: 0 17px 0 0;
}

.col-lg-9.has-left-sidebar-padding > div > .container:first-child {
    padding: 0 0 0 17px; 
}

/* # Footer
------------------------------------------------------- */
footer {
    background-color: #000;
    color: #fff;
}

footer .widget {
    margin-bottom: 20px;
}

footer .logo {
    position: relative;
    margin-bottom: 20px;
}

footer .social-label {
    font-weight: 700;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

footer .social-label:before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 1;
}

.footer-menu-title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    word-break: break-word;
    margin: 0 0 20px 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu .menu-item {
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 0;
    padding-bottom: 0;
}

.footer-menu .menu-item a {
    color: #d6d6d6;
}

.footer a {
    text-decoration: none;
}

.footer .social-icon {
   width: 30px;
   height: 30px;
}

.footer-bar-border-1 {
    border-top: 1px solid rgba(204, 204, 204, 0.5);
}

.copyright {
    padding-top: 8px;
    padding-bottom: 8px;
}

.copyright p {
    margin-bottom: 0;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    width: 180px;
}

@media only screen and (min-width: 992px) {
    .navbar-brand {
        max-height: 49px !important;
    }
}

.footer h4 {
    margin-bottom: 24px;
}

.footer .footer-widgets p {
   line-height: 30px;
}

.left-box,
.right-box {
    width: 100%;
    margin-bottom:10px;
}

@media (min-width: 768px) {
    .left-box,
    .right-box {
        width: 50%;
    }
}

.footer-additional-info {
    padding: 20px 0;
}

.footer-additional-info img {
    max-width: 135px;
    margin-right: 20px;
}

.footer-additional-info img:last-child {
    margin-right: 0;
}

.footer-additional-info .container {
        display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-additional-info form {
    position: relative;
    width: 60%;
    display: block;
}

.footer-additional-info form input {
    width: 100%;
    padding: 14px 130px 14px 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
    outline: none !important;
    height: 40px;
    background: aliceblue !important;
}

.footer-additional-info form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 12px;
    padding: 10px;
    background: #ff5e5e;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    float: right;
}

.footer-additional-info .right-box {
    display: flex;
    justify-content: end;
}

@media (max-width:768px) {
   .footer-additional-info .right-box {
    display: block;
   }
}

.footer li {
    list-style: none;
    margin-bottom:10px;
}

.footer .widget-content a {
    line-height: 2.1em; 
}

.footer i,
.footer .copyright a {
    color: #ffffff;
}

.footer.dark a,
.footer.dark i:not(i.fa-bell),
.footer.dark .copyright,
.footer.dark p,
.footer.dark h1,
.footer.dark h2,
 .footer.dark h3,
 .footer.dark h4,
 .footer.dark h5,
 .footer.dark h6 {
    color: #000000 ;
}

.footer-copyright.dark .copyright,
.footer-copyright.dark .copyright a {
    color:#000000;
}
