:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #64748b;
    --accent: #f59e0b;
    --bg-main: #f1f5f9;
    /* Slightly darker slate-grey for the background */
    --bg-surface: #ffffff;
    --text-main: #0f172a;
    /* Slightly deeper slate for better contrast */
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: var(--bg-main);
    line-height: 1.6;
}

a {
    color: #1a1a1a;
    /* Very dark grey, almost black */
    transition: var(--transition);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 1.25rem 0;
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem 0;
    padding: 0;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h4,
h5,
h6 {
    font-weight: 600;
}


/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.form-select,
.custom-select {
    width: 100%;
    height: 42px;
    padding: 8px 16px;
    color: var(--text-main);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.btn {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}


/**********************************/
/*********** Top Bar CSS **********/
/**********************************/
.top-bar {
    padding: 8px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.top-bar .tb-contact p {
    display: inline-block;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.top-bar .tb-contact p i {
    margin-right: 6px;
    color: #1a1a1a;
}

.top-bar .tb-contact p:first-child {
    margin-right: 20px;
}

.top-bar .tb-menu {
    text-align: right;
}

.top-bar .tb-menu a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-left: 16px;
}

.top-bar .tb-menu a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {

    .top-bar .tb-contact,
    .top-bar .tb-menu {
        text-align: center;
    }
}


/**********************************/
/*********** Brand CSS ************/
/**********************************/
.brand {
    padding: 20px 0;
    background: var(--bg-main);
}

.brand .b-logo a img {
    max-height: 50px;
    width: auto;
}

.brand .b-search {
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.brand .b-search input[type=text] {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    transition: var(--transition);
}

.brand .b-search input[type=text]:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.brand .b-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.brand .b-search button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .brand {
        text-align: center;
    }

    .brand .b-search {
        margin: 20px auto 0;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    background: var(--text-main);
    z-index: 1000;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-bar .navbar {
    padding: 0;
}

.nav-bar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition);
}

.nav-bar .navbar-nav .nav-link:hover,
.nav-bar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.nav-bar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-bar .navbar-nav .nav-link:hover::after,
.nav-bar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {
    .nav-bar .navbar-nav .nav-link {
        padding: 12px 20px;
    }

    .nav-bar .navbar-nav .nav-link::after {
        display: none;
    }
}

.nav-bar .social {
    display: flex;
    gap: 8px;
    padding-left: 20px;
}

.nav-bar .social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.nav-bar .social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/**********************************/
/********** Top News CSS **********/
/**********************************/
.top-news {
    padding: 60px 0;
}

.top-news .text-center.pb-5 {
    margin-top: 40px;
    padding-top: 20px;
}

.top-news .row {
    display: flex;
    flex-wrap: wrap;
}

.top-news .tn-left {
    margin-bottom: 30px;
}

.top-news swiper-container {
    height: 100%;
    border-radius: var(--radius);
}

.top-news swiper-slide {
    height: 100%;
}

.top-news .tn-left .tn-img {
    height: 100%;
}

.top-news .tn-left .tn-img img {
    height: 100%;
    object-fit: cover;
}

.top-news .tn-right .col-md-6 {
    margin-bottom: 24px;
}

.top-news .tn-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.top-news .tn-right .tn-img {
    height: calc(100% - 10px);
    /* Small adjustment for gap */
}

.top-news .tn-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.top-news .tn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.top-news .tn-img:hover img {
    transform: scale(1.05);
}

.top-news .tn-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.top-news .tn-title a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
}

.top-news .tn-left .tn-title a {
    font-size: 28px;
}

.top-news .tn-title a:hover {
    color: var(--accent);
}

/**********************************/
/******* Category News CSS ********/
/**********************************/
.cat-news {
    padding: 40px 0;
}

.cat-news h2 {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.cat-news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.cat-news .col-md-6 {
    margin-bottom: 20px;
}

.cat-news .cn-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 5px;
}

.cat-news .cn-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cat-news .cn-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: var(--transition);
}

.cat-news .cn-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.cat-news .cn-title a {
    color: #ffffff;
    font-weight: 600;
}

/**********************************/
/********** Tab News CSS **********/
/**********************************/
.tab-news {
    padding-bottom: 40px;
}

.tab-news .nav-pills {
    background: var(--bg-surface);
    padding: 8px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.tab-news .nav-pills .nav-link {
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 20px;
    transition: var(--transition);
}

.tab-news .nav-pills .nav-link.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.tab-news .tn-news {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tab-news .tn-news:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.tab-news .tn-img {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.tab-news .tn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-news .tn-title a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
}



/**********************************/
/********** Main News CSS *********/
/**********************************/
.main-news {
    padding: 30px 0;
}

.main-news .col-md-4 {
    margin-bottom: 24px;
}

.main-news .mn-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-news .mn-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main-news .mn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.main-news .mn-img:hover img {
    transform: scale(1.05);
}

.main-news .mn-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.main-news .mn-title a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
}

.main-news .mn-title a:hover {
    color: var(--accent);
}

.main-news .mn-title a:hover {
    color: #FF6F61;
}

.main-news .mn-list {
    background: var(--bg-surface);
    padding: 2px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.main-news .mn-list img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-news .mn-list h2 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.main-news .mn-list ul {
    list-style: none;
    padding: 0;
}

.main-news .mn-list ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-news .mn-list ul li:last-child {
    border-bottom: none;
}

.main-news .mn-list ul li a {
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-news .mn-list ul li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

/*
.main-news .mn-list ul li::before {
    position: relative;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    right: 1px;
}
*/
.main-news .mn-list ul li a:hover {
    color: #FF6F61;
}

/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    padding: 20px 0;
    background: var(--bg-main);
}

.breadcrumb {
    background: var(--bg-surface);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin: 0;
}

.breadcrumb-item a {
    color: #1a1a1a;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}


/**********************************/
/********* Single News CSS ********/
/**********************************/
.single-news {
    padding: 40px 0;
}

.single-news .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-img img {
    width: 100%;
}

.sn-content {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

h1.sn-title {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sn-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.single-news .sn-related {
    margin-bottom: 45px;
}

.single-news .sn-related h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.single-news .sn-slider .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-slider .sn-img img {
    width: 100%;
}

.single-news .sn-slider .sn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.single-news .sn-slider .sn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.single-news .sn-slider .sn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.single-news .sn-slider .sn-title a:hover {
    color: #FF6F61;
}

.single-news .sn-slider .slick-prev,
.single-news .sn-slider .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}

.single-news .sn-slider .slick-prev {
    left: calc(100% - 85px);
}

.single-news .sn-slider .slick-next {
    right: 14px;
}

.single-news .sn-slider .slick-prev:hover,
.single-news .sn-slider .slick-prev:focus,
.single-news .sn-slider .slick-next:hover,
.single-news .sn-slider .slick-next:focus {
    color: #ffffff;
    background: #FF6F61;
}

.single-news .sn-slider .slick-prev::before,
.single-news .sn-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.single-news .sn-slider .slick-prev::before {
    content: "\f104";
}

.single-news .sn-slider .slick-next::before {
    content: "\f105";
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

.sidebar .sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget h2.sw-title {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.sidebar .sidebar-widget .news-list {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .news-list .nl-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .news-list .nl-item .nl-img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-img img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-title {
    padding-left: 15px;
}

.sidebar .news-list .nl-item .nl-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .news-list .nl-item .nl-title a:hover {
    color: #FF6F61;
}

.sidebar .sidebar-widget .tab-news {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
}

.sidebar .tab-news .nav.nav-pills .nav-link:hover,
.sidebar .tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF6F61;
}

.sidebar .tab-news .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-news .tab-content .container {
    padding: 0;
}

.sidebar .tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .tab-news .tn-img {
    width: 100px;
}

.sidebar .tab-news .tn-img img {
    width: 100px;
}

.sidebar .tab-news .tn-title {
    padding: 0 0 0 15px;
}

.sidebar .tab-news .tn-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .tab-news .tn-title a:hover {
    color: #FF6F61;
}

.sidebar .sidebar-widget .category {
    position: relative;
}

.sidebar .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category ul li a {
    display: inline-block;
    color: #000000;
    line-height: 23px;
}

.sidebar .category ul li a:hover {
    color: #FF6F61;
}

.sidebar .category ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
}

/*
.sidebar .category ul li span {
    display: inline-block;
    float: right;
}
*/
.sidebar .sidebar-widget .tags {
    position: relative;
}

.sidebar .sidebar-widget .tags a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
}

.sidebar .sidebar-widget .tags a:hover {
    color: #ffffff;
    background: #FF6F61;
    border: 1px solid #FF6F61;
}

.sidebar .sidebar-widget .image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .sidebar-widget .image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .sidebar-widget .image img:hover {
    transform: scale(1.1);
    filter: blur(3px);
    -webkit-filter: blur(3px);
}


/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 0px 0 15px 0;

}

.contact .contact-form,
.contact .contact-info {
    margin-bottom: 45px;
}

.contact .contact-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.contact .contact-info h4 i {
    color: #000000;
    margin-right: 5px;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 4px;
}

.contact .social a i {
    color: #000000;
}

.contact .social a:hover {
    background: #FF6F61;
    border-color: #FF6F61;
}

.contact .social a:hover i {
    color: #ffffff;
}


/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    position: relative;
    padding: 60px 0 0 0;
    background: #111111;
}

.footer .footer-widget {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.footer .footer-widget .title {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 3px double #ffffff;
}

.footer .footer-widget p {
    color: #ffffff;
}

.footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li {
    margin-bottom: 12px;
}

.footer .footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-widget ul li a {
    color: #ffffff;
    white-space: nowrap;
    display: block;
    line-height: 23px;
}

.footer .footer-widget ul li a::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 5px;
}

.footer .footer-widget ul li a:hover {
    padding-left: 10px;
    color: #FF6F61;
}

.footer .contact-info p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer .contact-info p i {
    color: #ffffff;
    margin-right: 5px;
}

.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    border-radius: 4px;
}

.footer .social a i {
    color: #111111;
}

.footer .social a:hover {
    background: #FF6F61;
}

.footer .social a:hover i {
    color: #ffffff;
}

.footer .newsletter {
    position: relative;
    width: 100%;
}

.footer .newsletter form {
    position: relative;
    width: 100%;
}

.footer .newsletter input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.footer .newsletter .btn {
    position: absolute;
    width: 80px;
    height: 35px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    border: 1px solid #ffffff;
    border-radius: 0 4px 4px 0;
}

.footer .newsletter .btn:hover {
    background: #FF6F61;
}

.footer .newsletter input:focus,
.footer .newsletter .btn:focus {
    box-shadow: none;
}


/**********************************/
/******** Footer Menu CSS *********/
/**********************************/
.footer-menu {
    position: relative;
    background: #111111;
}

.footer-menu .container {
    padding: 15px 0;
    border-top: 1px solid #000000;
}

.footer-menu .f-menu {
    font-size: 0;
    text-align: center;
}

.footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.footer-menu .f-menu a:hover {
    color: #FF6F61;
}

.footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
    position: relative;
    padding: 25px 0;
    background: #000000;
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .template-by {
    text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    font-weight: 600;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
    color: #ffffff;
}

@media (max-width: 768.98px) {

    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center;
    }
}


.texto-categoria {
    font-size: smaller;
}