/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME SCSS
	-----------------
		1.1 spacing
		1.2 theme
		1.3 typography
		1.4 index

	-----------------
    01. utils SCSS
	-----------------
		1.1 breakpoints
		1.2 extends
		1.3 mixins
		1.4 root
		1.5 index
		1.6 main

	-----------------
    02. COMPONENTS SCSS
	-----------------
		2.1 accordion
		2.2 animation
		2.3 background
		2.4 backtotop
		2.5 breadcrumb
		2.6 buttons
		2.7 color
		2.8 common
		2.9 counter
		2.10 cursor
		2.11 dark-light
		2.12 forms
		2.13 lenis
		2.14 list
		2.15 navigation
		2.16 offcanvas
		2.17 pagination
		2.18 post-list
		2.19 post-meta
		2.20 post-tag
		2.21 preloader
		2.22 progress-bar
		2.23 scrollbar
		2.24 section-title
		2.25 settings
		2.26 smooth-scroll
		2.27 social
		2.26 index

	-----------------
    03. layout
	-----------------
		-----------------
		3.1.1 banner SCSS
		-----------------
			3.1.1 banner
			3.1.2 index

		-----------------
		3.1.2 blog SCSS
		-----------------
			3.2.1 blog-tag
			3.2.2 blog
			3.2.3 postbox
			3.2.4 sidebar-tag
			3.2.5 sidebar
			3.2.6 index

		-----------------
		3.1.3 footer SCSS
		-----------------
			3.3.1 footer
			3.3.2 copyright
			3.3.3 index

		-----------------
		3.1.4 header SCSS
		-----------------
			3.4.1 header-1
			3.4.2 header-2
			3.4.2 header-common
			3.4.3 header-top
			3.4.4 index
		-----------------
		3.1.5 menu SCSS
		-----------------
			3.5.1 memu
			3.5.2 mobile-menu
			3.5.3 index

	-----------------
    04. Page SCSS
	-----------------
		4.1 about
		4.2 ad-banner
		4.3 categories
		4.4 contact
		4.5 cta
		4.6 error
		4.7 feature
		4.8 featured-post
		4.9 latest-post
		4.10 login
		4.11 medium-card
		4.12 overlay-card
		4.13 privacy policy
		4.14 small-card
		4.15 social-card
		4.16 sports
		4.17 team
		4.18 top-stories
		4.19 trending-news
		4.20 video-card
		4.21 video
		4.22 work
		4.23 index

/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&amp;display=swap");
.btn {
    font-size: 10px;
}
.offcanvas-overlay,
a,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

:root {
    /**  @font family declaration */
    --rs-ff-body: "Inter Tight", sans-serif;
    --rs-ff-title: "Inter Tight", sans-serif;
    --rs-ff-p: "Inter Tight", sans-serif;
    --rs-ff-fontawesome: "Font Awesome 6 Free";
    --rs-ff-remixicon: "remixicon";
    /** @color declaration */
    --rs-white: #ffffff;
    --rs-black: #000;
    --rs-light: #eee;
    --rs-green: #54bd05;
    --rs-yellow: #f69c00;
    --rs-pink: #e033e0;
    --rs-red: #e80000;
    --rs-theme-primary: #0073ff;
    --rs-theme-secondary: #10171e;
    --rs-text-primary: #616c74;
    --rs-text-secondary: #bebebe;
    --rs-title-primary: #121213;
    --rs-bg-primary: #171a1e;
    --rs-bg-secondary: #f7f7f7;
    --rs-bg-grey: #e5e5e5;
    --rs-bg-black: #121213;
    --rs-border-primary: #e5e5e5;
    --rs-border-secondary: rgba(255, 255, 255, 0.15);
    --rs-placeholder: rgba(30, 30, 30, 0.4);
    --rs-gradient-primary: #00033d;
    --rs-gradient-secondary: #0349ef;
    --rs-rating: #f3b656;
    /** @font weight declaration */
    --rs-fw-normal: normal;
    --rs-fw-thin: 100;
    --rs-fw-elight: 200;
    --rs-fw-light: 300;
    --rs-fw-regular: 400;
    --rs-fw-medium: 500;
    --rs-fw-sbold: 600;
    --rs-fw-bold: 700;
    --rs-fw-ebold: 800;
    --rs-fw-black: 900;
    /** @font size declaration */
    --rs-fs-body: 16px;
    --rs-fs-p: 16px;
    --rs-fs-h1: 60px;
    --rs-fs-h2: 36px;
    --rs-fs-h3: 30px;
    --rs-fs-h4: 26px;
    --rs-fs-h5: 24px;
    --rs-fs-h6: 18px;
    --rs-fs-b1: 14px;
    --rs-fs-b2: 16px;
    --rs-fs-b3: 18px;
    --rs-fs-b4: 22px;
}

/*----------------------------------------
   Bootstrap customize
-----------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 3rem;
}

@media (min-width: 1441px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}
.row {
    --bs-gutter-x: 3rem;
}

.g-20,
.gx-20 {
    --bs-gutter-x: 20px;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-10,
.gx-10 {
    --bs-gutter-x: 10px;
}

.g-30,
.gx-30 {
    --bs-gutter-x: 30px;
}

.gy-24 {
    --bs-gutter-y: 24px;
}

.g-30,
.gy-30 {
    --bs-gutter-y: 30px;
}

.g-40,
.gx-40 {
    --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
    --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
    --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
    --bs-gutter-y: 50px;
}

.g-60,
.gy-60 {
    --bs-gutter-y: 60px;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.opacity-05 {
    opacity: 0.5;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.position-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.position-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hr-1 {
    border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
    overflow-x: clip;
}

@media only screen and (max-width: 575px) {
    .o-xs {
        overflow-x: hidden;
    }
}

.overflow-visible {
    overflow: visible;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.image-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*----------------------------------------
   Text Underline
-----------------------------------------*/
.underline a {
    display: inline;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, currentColor),
        to(currentColor)
    );
    background-image: linear-gradient(
        to right,
        currentColor 0,
        currentColor 100%
    );
    background-position: left 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    -webkit-transition:
        all 0.3s,
        background-size 0.8s;
    transition:
        all 0.3s,
        background-size 0.8s;
    padding-bottom: 0;
}
.underline a:hover {
    color: var(--rs-title-primary);
    background-size: 100% 1px;
}
.underline.is-white a {
    background-image:
        linear-gradient(var(--rs-white), var(--rs-white)),
        linear-gradient(var(--rs-white), var(--rs-white));
}
.underline.is-white a:hover {
    color: var(--rs-white);
}

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 1280px;
}
@media only screen and (max-width: 1366px) {
    .mfp-iframe-holder .mfp-content {
        max-width: 850px;
    }
}
@media only screen and (max-width: 1199px) {
    .mfp-iframe-holder .mfp-content {
        max-width: 820px;
    }
}
@media only screen and (max-width: 991px) {
    .mfp-iframe-holder .mfp-content {
        max-width: 750px;
    }
}

.mfp-close {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mfp-close:hover {
    color: var(--rs-white);
}
/* .mfp-close::after {
    position: absolute;
    content: "\f00d";
    height: 100%;
    width: 100%;
    font-family: var(--rs-ff-fontawesome);
    font-size: 31px;
    font-weight: 200;
    right: -20px;
    margin-top: -25px;
} */
.mfp-close::after {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
}
@media only screen and (max-width: 991px) {
    .mfp-close::after {
        right: 15px;
        margin-top: -30px;
    }
}

/*---------------------------------
	1.3 Typography SCSS
---------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

/*---------------------------------
    Typography css start 
---------------------------------*/
body {
    color: var(--rs-text-primary);
    font-family: var(--rs-ff-body);
    font-size: var(--rs-fs-body);
    font-weight: normal;
    line-height: 1.5;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h5,
h5,
.h5,
h6,
.h6 {
    color: var(--rs-title-primary);
    margin-top: 0px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: var(--rs-fw-sbold);
    word-break: break-word;
    font-family: var(--rs-ff-title);
}

h1,
.h1 {
    font-size: var(--rs-fs-h1);
    line-height: 1;
    font-family: var(--rs-ff-title);
}

h2,
.h2 {
    font-size: var(--rs-fs-h2);
    line-height: 1.22;
}
@media only screen and (max-width: 1600px) {
    h2,
    .h2 {
        font-size: 34px;
    }
}
@media only screen and (max-width: 1199px) {
    h2,
    .h2 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 991px) {
    h2,
    .h2 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    h2,
    .h2 {
        font-size: 28px;
    }
}
@media only screen and (max-width: 575px) {
    h2,
    .h2 {
        font-size: 26px;
    }
}

h3,
.h3 {
    font-size: var(--rs-fs-h3);
    line-height: 1.46;
}
@media only screen and (max-width: 1600px) {
    h3,
    .h3 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 991px) {
    h3,
    .h3 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    h3,
    .h3 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 480px) {
    h3,
    .h3 {
        font-size: 20px;
    }
}

h4,
.h4 {
    font-size: var(--rs-fs-h4);
    line-height: 1.33;
}
@media only screen and (max-width: 1600px) {
    h4,
    .h4 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 991px) {
    h4,
    .h4 {
        font-size: 22px;
    }
}

h5,
.h5 {
    font-size: var(--rs-fs-h5);
    line-height: 1.4;
}
@media only screen and (max-width: 1600px) {
    h5,
    .h5 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 1199px) {
    h5,
    .h5 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 991px) {
    h5,
    .h5 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 575px) {
    h5,
    .h5 {
        font-size: 20px;
    }
}

h6,
.h6 {
    font-size: var(--rs-fs-h6);
    line-height: 1.44;
}
h6.small,
.h6.small {
    font-size: 18px;
}
@media only screen and (max-width: 575px) {
    h6,
    .h6 {
        font-size: 18px;
    }
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-size: var(--rs-fs-p);
    font-family: var(--rs-ff-p);
    font-weight: var(--rs-fw-normal);
    color: var(--rs-text-primary);
    margin-bottom: 30px;
    line-height: 30px;
}
p.b1 {
    font-size: var(--rs-fs-b1);
    line-height: 1.714;
}
p.b2 {
    font-size: var(--rs-fs-b2);
    line-height: 1.625;
}
p.b3 {
    font-size: var(--rs-fs-b3);
    line-height: 1.55;
}
p.b4 {
    font-size: var(--rs-fs-b4);
    line-height: 1.454;
}
p:last-child {
    margin-bottom: 0;
}

.b1 {
    font-size: var(--rs-fs-b1);
    line-height: 1.714;
}

.b2 {
    font-size: var(--rs-fs-b2);
    line-height: 1.625;
}

.b3 {
    font-size: var(--rs-fs-b3);
    line-height: 1.55;
}

.b4 {
    font-size: var(--rs-fs-b4);
    line-height: 1.454;
}

a {
    text-decoration: none;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

img {
    max-width: 100%;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

hr:not([size]) {
    margin: 0;
    opacity: 1;
    border: none;
    height: 1px;
    background-color: #ececec;
}
/* [rs-theme="rs-theme-dark"] hr:not([size]) {
    background-color: #2d2d27;
} */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
    outline: none;
    background-color: transparent;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid var(--rs-border-primary);
    color: var(--rs-black);
    padding-inline-start: 25px;
    padding-inline-end: 25px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: var(--rs-red);
}

textarea {
    padding: 14px 24px;
}
textarea:focus {
    border-color: var(--rs-red);
}

*::-moz-selection {
    background: var(--rs-red);
    color: var(--rs-white);
    text-shadow: none;
}

::selection {
    background: var(--rs-red);
    color: var(--rs-white);
    text-shadow: none;
}

*::-moz-placeholder {
    opacity: 1;
    font-size: 16px;
    color: var(--rs-placeholder);
}

*::placeholder {
    opacity: 1;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--rs-ff-title);
    color: var(--rs-placeholder);
}

/*---------------------------------
	1.1 Default Spacing SCSS
---------------------------------*/
.section-space {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
    .section-space {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 480px) {
    .section-space {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.section-space-top {
    padding-top: 80px;
}
@media only screen and (max-width: 767px) {
    .section-space-top {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 480px) {
    .section-space-top {
        padding-top: 60px;
    }
}

.section-space-bottom {
    padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
    .section-space-bottom {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 480px) {
    .section-space-bottom {
        padding-bottom: 60px;
    }
}

.section-title-space {
    margin-bottom: 32px;
}

.rs-ptop {
    padding-top: 70px;
}
@media only screen and (max-width: 767px) {
    .rs-ptop {
        padding-top: 60px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-ptop {
        padding-top: 40px;
    }
}

.rs-pbottom {
    padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
    .rs-pbottom {
        padding-bottom: 60px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-pbottom {
        padding-bottom: 40px;
    }
}
/*----------------------------------------*/
/*  2.3 Background
/*----------------------------------------*/
.bg-primary {
    background-color: var(--rs-bg-primary);
}

.secondary-bg {
    background-color: var(--rs-bg-secondary);
}

.bg-grey {
    background-color: var(--rs-bg-grey);
}

.black-bg {
    background: var(--rs-theme-secondary);
}

.blue-bg {
    background: var(--rs-blue);
}

/*----------------------------------------*/
/*  2.6 Buttons
/*----------------------------------------*/
.rs-rotate-btn {
    width: 180px;
    height: 180px;
    position: relative;
}
.rs-rotate-btn:hover .rs-text-circle {
    animation-play-state: paused;
}
.rs-rotate-btn .rs-circle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transform: translate(-50%, -50%);
    background: var(--rs-red);
    border-radius: 50%;
    text-align: center;
    padding: 20px;
    z-index: 1;
    transition: 0.3s;
}
.rs-rotate-btn .rs-circle-btn:hover svg {
    transform: rotate(45deg);
}
.rs-rotate-btn .rs-circle-btn svg {
    width: 27px;
    height: 27px;
}
.rs-rotate-btn .rs-circle-btn svg path {
    fill: var(--rs-theme-secondary);
}
.rs-rotate-btn .rs-text-circle-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.rs-rotate-btn .rs-text-circle {
    animation: rotate-infinite 30s infinite linear;
    width: 100%;
    height: 100%;
    position: relative;
}
.rs-rotate-btn .rs-text-circle span {
    position: absolute;
    height: 100%;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    color: var(--rs-title-primary);
}
.rs-rotate-btn .rs-text-circle.is-text-white span {
    color: var(--rs-white);
}

.rs-play-btn {
    width: 70px;
    height: 70px;
    font-size: 20px;
    background: var(--rs-red);
    display: inline-flex;
    border-radius: 50%;
    color: var(--rs-white);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out 0s;
}
.rs-play-btn.is-large {
    width: 80px;
    height: 80px;
    font-size: 26px;
}
.rs-play-btn.is-large::before {
    width: 80px;
    height: 80px;
}
.rs-play-btn.is-small {
    width: 30px;
    height: 30px;
    font-size: 10px;
}
.rs-play-btn.is-small::before {
    width: 30px;
    height: 30px;
}
.rs-play-btn.is-red {
    background: var(--rs-red);
    color: var(--rs-white);
}
.rs-play-btn.is-red::before {
    background: var(--rs-red);
}
.rs-play-btn.is-white {
    background: var(--rs-white);
    color: var(--rs-bg-black);
}
.rs-play-btn.is-white::before {
    background: var(--rs-white);
}
.rs-play-btn.is-white:hover {
    background: var(--rs-red);
    color: var(--rs-white);
}
.rs-play-btn.has-transparent-btn::before,
.rs-play-btn.has-transparent-btn::after {
    content: none;
}
.rs-play-btn:hover {
    color: var(--rs-black);
}
.rs-play-btn::before {
    background: var(--rs-red);
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    border-radius: 50%;
    -webkit-animation: rs-pulse-border 1500ms ease-out infinite;
    animation: rs-pulse-border 1500ms ease-out infinite;
}
.rs-play-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    border-radius: 50%;
    transition: all 200ms;
}
/*----------------------------------------*/
/*  2.7 Color Short Code
/*----------------------------------------*/
.rs-text-primary {
    color: var(--rs-primary);
}

.rs-white {
    color: var(--rs-white);
}

.rs-black {
    color: var(--rs-black);
}

.rs-light-purple {
    color: var(--rs-theme-purple-light);
}

.rs-red {
    color: var(--rs-red);
}

.rating-color {
    color: #ffb21d;
}

/*----------------------------------------*/
/*  2.9 counter
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.16 Offcanvas
/*----------------------------------------*/
.offcanvas-area {
    background: var(--rs-white) none repeat scroll 0 0;
    position: fixed;
    inset-inline-end: -100%;
    top: 0;
    width: 400px;
    height: 100%;
    z-index: 8888;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    transition: all 0.5s ease-in-out;
}
.offcanvas-area ::-webkit-scrollbar {
    display: none;
}
@media only screen and (max-width: 575px) {
    .offcanvas-area {
        width: 320px;
    }
}
.offcanvas-area.info-open {
    inset-inline-end: 0%;
}
.offcanvas-area .mean-container .mean-nav ul li.active > a {
    color: var(--rs-red);
}
.offcanvas-area
    .mean-container
    .mean-nav
    .rs-mega-menu.is-text-white.active
    > a {
    color: #000;
}
.offcanvas-area.has-theme-orange .offcanvas-close {
    background: #fa6e46;
}
.offcanvas-area.has-theme-orange .offcanvas-close-icon {
    color: var(--rs-white);
}
.offcanvas-area.has-theme-orange .mean-container .mean-nav ul li.active > a {
    color: var(--rs-theme-purple);
}
.offcanvas-area.has-theme-orange .mean-container .mean-nav ul li a.active {
    color: var(--rs-theme-purple);
}
.offcanvas-area.has-theme-orange .mean-container .mean-nav ul li a:hover,
.offcanvas-area.has-theme-orange .mean-container .mean-nav ul li span:hover {
    color: var(--rs-theme-purple);
}
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > a,
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > span {
    color: var(--rs-theme-purple);
}
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > a.mean-expand.mean-clicked,
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > span.mean-expand.mean-clicked {
    background: var(--rs-theme-purple);
}
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > a.mean-expand.mean-clicked
    i,
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > span.mean-expand.mean-clicked
    i {
    color: var(--rs-white);
}
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li
    a.mean-expand:hover,
.offcanvas-area.has-theme-orange
    .mean-container
    .mean-nav
    ul
    li
    span.mean-expand:hover {
    background: var(--rs-theme-purple);
    color: var(--rs-white);
}
.offcanvas-area.has-theme-orange .offcanvas-contact-text a:hover {
    color: #fa6e46;
}
.offcanvas-area.has-theme-orange .offcanvas-contact-icon svg path {
    fill: #fa6e46;
}
.offcanvas-area.has-theme-orange .offcanvas-social ul li a:hover {
    background: #fa6e46;
    border-color: #fa6e46;
    color: var(--rs-white);
}
.offcanvas-area.has-theme-orange
    .mobile-menu.mean-container
    .menu-item:hover
    .title {
    color: var(--rs-theme-purple);
}
.offcanvas-logo a img {
    width: 200px;
}
.offcanvas-logo .logo-white {
    display: none;
}
.offcanvas-content {
    padding-bottom: 45px;
}
.offcanvas-wrapper {
    position: relative;
    height: 100%;
    padding: 25px;
}
@media only screen and (max-width: 575px) {
    .offcanvas-wrapper {
        padding: 18px;
    }
}
.offcanvas-title-meta {
    color: var(--rs-title-primary);
    margin-bottom: 20px;
    font-size: 20px;
}
.offcanvas-text p {
    margin-bottom: 25px;
}
.offcanvas-social {
    margin-bottom: 40px;
}
.offcanvas-social ul li {
    display: inline-block;
}
.offcanvas-social ul li:not(:last-child) {
    margin-right: 5px;
}
.offcanvas-social ul li a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--rs-border-primary);
    color: #585b6f;
    font-size: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.offcanvas-social ul li a:hover {
    background: var(--rs-red);
    color: var(--rs-white);
    border-color: var(--rs-red);
}
.offcanvas-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
}
.offcanvas-overlay:hover {
    cursor: url(../images/shape/cross-out.webp), pointer;
}
.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}
.offcanvas-contact ul li:not(:last-child) {
    margin-bottom: 10px;
}
.offcanvas-contact ul li a:hover {
    color: var(--rs-red);
}
.offcanvas-contact ul li:hover svg {
    animation: rs-fold linear 0.5s;
}
.offcanvas-contact-icon {
    flex: 0 0 auto;
}
.offcanvas-contact-icon i {
    color: #e40101;
}

.offcanvas-close {
    width: 35px;
    height: 35px;
    background: var(--rs-red);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.offcanvas-close-icon {
    line-height: 1;
    color: var(--rs-black);
}
.offcanvas-close-icon .offcanvas-m-lines {
    position: relative;
    display: block;
    height: 14px;
    width: 14px;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--1 {
    top: 6px;
    transform: rotate(45deg);
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--3 {
    opacity: 0;
    opacity: 0;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--2 {
    top: 6px;
    transform: rotate(-45deg);
}
.offcanvas-close-icon .offcanvas-m-line {
    position: absolute;
    inset-inline-start: 0;
    height: 2px;
    width: 100%;
    background-color: var(--rs-white);
    transition:
        top 0.15s ease,
        transform 0.3s ease;
}
.offcanvas-close-icon .offcanvas-m-line.line--1 {
    top: 0;
}
.offcanvas-close-icon .offcanvas-m-line.line--2 {
    top: 5px;
}
.offcanvas-close-icon .offcanvas-m-line.line--3 {
    bottom: 0;
    bottom: 0;
}
.offcanvas-close-icon:hover .offcanvas-m-line {
    animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
    animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.offcanvas-close-icon:hover .offcanvas-m-line:nth-of-type(2) {
    animation-delay: 0.1s;
}

/*----------------------------------------*/
/*  2.24 Section Title  
/*----------------------------------------*/
.section-wrapper {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .section-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.section-wrapper .section-border-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .section-wrapper .section-border-wrapper {
        display: none;
    }
}
.section-wrapper .section-border {
    padding-inline-end: 20px;
}
@media only screen and (max-width: 991px) {
    .section-wrapper .section-border {
        padding-inline-end: 0px;
    }
}
.section-wrapper .section-border.has-border {
    padding-inline-end: 0;
}
.section-wrapper .section-btn {
    flex: 0 0 auto;
}
.section-wrapper .rs-section-line.bg-light-grey {
    border-color: var(--rs-border-secondary);
}
/**** Heading for about page ***/
.section-title-wrapper .section-subtitle-wrapper {
    color: #e80000;
}

/*----------------------------------------*/
/*  2.5 Breadcrumb
/*----------------------------------------*/
.sn-breadcrumb-outer {
    background: linear-gradient(135deg, #b30000 0%, #f03d3d 50%, #e80000 100%);
}
.sn-breadcrumb-area {
    padding: 20px 0px;
}
.sn-breadcrumb-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
}
@media (max-width: 768px) {
    .sn-breadcrumb-title {
        font-size: 22px;
    }
}
/*----------------------------------------
   2.17 Basic pagination
-----------------------------------------*/
.rs-pagination.swiper-pagination {
    position: unset;
    overflow: visible;
    font-size: unset;
    transform: unset !important;
    width: 100% !important;
}
.rs-pagination.swiper-pagination .swiper-pagination-bullet {
    background: #cdd5d9;
    border-radius: 0;
    height: 6px;
    margin: 0 6px;
    width: 30px;
    transform: unset;
    opacity: unset;
}
.rs-pagination.swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--rs-red);
}
.rs-pagination.swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--rs-red);
}
.rs-pagination.swiper-pagination.has-orange .swiper-pagination-bullet {
    background: #695ce8;
}
.rs-pagination.swiper-pagination.has-orange .swiper-pagination-bullet:hover {
    background: #fa6e46;
}
.rs-pagination.swiper-pagination.has-orange
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fa6e46;
}
.rs-pagination.swiper-pagination.has-purple .swiper-pagination-bullet {
    background: #dfdef7;
}
.rs-pagination.swiper-pagination.has-purple .swiper-pagination-bullet:hover {
    background: var(--rs-theme-purple);
}
.rs-pagination.swiper-pagination.has-purple
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--rs-theme-purple);
}
.rs-pagination.swiper-pagination.has-circle .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
}
.rs-pagination.swiper-pagination.has-circle .swiper-pagination-bullet::before {
    content: none;
}

.common-pagination {
    margin-top: 45px;
}
.common-pagination ul {
    display: inline-flex;
    gap: 10px;
}
.common-pagination ul li {
    list-style: none;
}
.common-pagination ul li.current {
    background: var(--rs-red);
}
.common-pagination ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.11);
    color: var(--rs-black);
    border-radius: 50%;
    position: relative;
}
.common-pagination ul li a:hover {
    background: var(--rs-red);
    border-color: var(--rs-red);
}
.common-pagination ul li a.current {
    background: var(--rs-red);
    color: var(--rs-black);
    border: none;
}
.common-pagination ul li a.is-next::before {
    position: absolute;
    font-family: remixicon !important;
    font-size: 16px;
    line-height: 1;
    opacity: 1;
    content: "\ea6c";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*  2.12 forms
/*----------------------------------------*/
/* Custom checkbox button */
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked ~ label::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
input[type="checkbox"]:checked ~ label::after {
    background-color: var(--rs-red);
    border-color: var(--rs-red);
}
input[type="checkbox"]:checked ~ label::before {
    visibility: visible;
    opacity: 1;
}
input[type="checkbox"] ~ label {
    position: relative;
    padding-inline-start: 25px;
    color: var(--rs-white);
    font-size: 16px;
}
input[type="checkbox"] ~ label::after {
    position: absolute;
    content: "";
    top: 4px;
    inset-inline-start: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: -1;
    transition: all 0.2s linear;
    border-radius: 2px;
}
input[type="checkbox"] ~ label::before {
    position: absolute;
    content: "\eb7a";
    top: 3px;
    inset-inline-start: 1px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    color: var(--rs-white);
    transition: all 0.2s linear;
    font-family: remixicon !important;
    font-size: 10px;
}
input[type="checkbox"] ~ label:hover {
    cursor: pointer;
}

/*----------------------------------------*/
/*  2.27 social
/*----------------------------------------*/
.theme-social {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}
.theme-social a {
    color: var(--rs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 18px;
    background-color: #202021;
    transition: 0.3s;
    border-radius: 6px;
}
.theme-social a:hover {
    background: var(--rs-red);
    color: var(--rs-black);
}
.theme-social svg {
    width: 16px;
    height: 16px;
}
.theme-social.has-transparent a {
    background: transparent;
    color: #fff;
    width: unset;
    height: unset;
    border-radius: 0;
}
.theme-social.has-transparent a:hover {
    color: var(--rs-red);
}
.theme-social.rs-social-links a {
    width: 32px;
    height: 32px;
    border-radius: 3px;
}
.theme-social.rs-social-links a:hover {
    background: 0.5;
}
.theme-social.rs-social-links a.is-facebook {
    background: #1559c2;
}
.theme-social.rs-social-links a.is-twitter {
    background: #202021;
}
.theme-social.rs-social-links a.is-linkedin {
    background: #0077b5;
}
.theme-social.rs-social-links a.is-instagram {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
}
.theme-social.rs-social-links a.is-whatsapp {
    background: #06b500;
}
.theme-social.has-transform a:hover {
    transform: translate(0, -10%);
}

/*----------------------------------------*/
/*  2.4 Back to top
/*----------------------------------------*/
.backtotop-gradient {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    background: linear-gradient(135deg, #f5918e 0%, #f73e37 50%, #860804 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    animation: gradient-shift 4s ease infinite;
    transition: all 0.4s ease;
    z-index: 999;
}

.backtotop-gradient .gradient-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #fff;
}

.backtotop-gradient:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(225, 6, 0, 0.5);
}

.backtotop-gradient:hover .gradient-icon {
    transform: translateY(-4px);
    animation: bounce 0.6s infinite;
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(-8px);
    }
}
/*----------------------------------------*/
/*  2.2 Animations
/*----------------------------------------*/
.animate-play {
    position: relative;
    z-index: 5;
}
.animate-play::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 1px solid rgb(134, 134, 134);
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0px;
    z-index: 0;
    animation-name: popupBtn;
    animation-duration: 1.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: -1;
}
.animate-play::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 1px solid rgb(134, 134, 134);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 0;
    animation-name: popupBtn;
    animation-duration: 1.8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: -1;
}

@keyframes qode-draw {
    0%,
    100% {
        -webkit-clip-path: inset(-2px 0);
        clip-path: inset(-2px 0);
    }
    42% {
        -webkit-clip-path: inset(-2px 0 -2px 100%);
        clip-path: inset(-2px 0 -2px 100%);
    }
    43% {
        -webkit-clip-path: inset(-2px 100% -2px 0);
        clip-path: inset(-2px 100% -2px 0);
    }
}
@keyframes rs-scale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
    }
}
@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-ms-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rs-left-right {
    0% {
        transform: translateX(-200px);
        -webkit-transform: translateX(-200px);
    }
    0% {
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
    }
}
@keyframes rs-pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@keyframes rs-fold {
    0% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0);
    }
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@keyframes scale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(1.07);
        -webkit-transform: scale(1.07);
    }
}
@keyframes btnHoverEffectReverse {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes btnHoverEffect {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes marquee_rev {
    100% {
        transform: translateX(0);
    }
    0% {
        transform: translateX(-50%);
    }
}
/* marquee left */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes rs-scale-two {
    0% {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }
    100% {
        transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }
}
@keyframes rs-scale-three {
    0% {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }
    100% {
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
    }
}
@-webkit-keyframes rs-scale-three {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.popup-circle:before {
    content: "";
    position: relative;
    display: block;
    top: -14px;
    inset-inline-start: -14px;
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #e40101;
    animation: rs-pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.popup-circle:after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #e40101;
    border-radius: 50%;
    animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s
        infinite;
}

@keyframes rs-pulse {
    0% {
        transform: scale(0.33);
    }
    80%,
    100% {
        opacity: 0;
    }
}
@keyframes popup-circle {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}
@keyframes textRotatingOut {
    from {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
    to {
        transform: translateY(-70%) rotateX(100deg);
        opacity: 0;
    }
}
@keyframes textRotatingIn {
    from {
        transform: translateY(70%) rotateX(-100deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
}
@keyframes rs-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
/*----------------------------------------*/
/*  2.8 Short codes
/*----------------------------------------*/
.container.has-large {
    max-width: 1720px;
}

.is-stroke-text {
    -webkit-text-stroke: 2px var(--rs-primary);
    -webkit-text-fill-color: var(--rs-white);
}

.h-55 {
    height: 55px;
}

.height-50 {
    height: 50px;
}

/* display flex */
.d-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.has-separator {
    position: relative;
}
.has-separator::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    background-color: rgba(101, 101, 103, 0.3);
    transform: translateY(-50%);
    inset-inline-end: 0px;
    top: 50%;
}

.image-link {
    width: 100%;
    height: 100%;
}

/* gap */
.gap-05 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-16 {
    gap: 16px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-35 {
    gap: 35px;
}

.mb-0 {
    margin-bottom: 0;
}

/* List Style None */
.list-none ul {
    list-style: none;
}

.gap-20 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* Font Weight */
.fw-1 {
    font-weight: var(--rs-fw-thin);
}

.fw-2 {
    font-weight: var(--rs-fw-elight);
}

.fw-3 {
    font-weight: var(--rs-fw-light);
}

.fw-4 {
    font-weight: var(--rs-fw-regular);
}

.fw-5 {
    font-weight: var(--rs-fw-medium);
}

.fw-6 {
    font-weight: var(--rs-fw-sbold);
}

.fw-7 {
    font-weight: var(--rs-fw-bold);
}

.fw-8 {
    font-weight: var(--rs-fw-ebold);
}

.fw-9 {
    font-weight: var(--rs-fw-black);
}

.rs-section-border-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
@media only screen and (max-width: 991px) {
    .rs-section-border-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.rs-section-border-wrapper .section-border {
    width: 100%;
    display: flex;
    align-items: center;
}
.rs-section-border-wrapper .section-border {
    padding-inline-end: 20px;
}
@media only screen and (max-width: 991px) {
    .rs-section-border-wrapper .section-border {
        padding-inline-end: 0px;
    }
}
.rs-section-border-wrapper .rs-section-dot {
    width: 7px;
    height: 7px;
    background-color: var(--rs-red);
    display: inline-block;
    transform: rotate(45deg);
    margin-inline-end: 5px;
    margin-inline-start: 5px;
}
.rs-section-border-wrapper .rs-section-line {
    border: 1px solid var(--rs-border-primary);
    border-width: 1px 0;
    flex-grow: 1;
    height: 4px;
}

/*----------------------------------------*/
/*  2.21 Preloader
/*----------------------------------------*/
#pre-load {
    background-color: var(--rs-white);
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}

.loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #ebebec;
    border-radius: 50%;
}

.loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--rs-red);
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
}

.loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 40px;
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
/*----------------------------------------*/
/*  2.22 Progress Bar
/*----------------------------------------*/
.single-progress {
    position: relative;
    overflow: hidden;
}

.progress {
    height: 6px;
    overflow: visible;
    background-color: #eee;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
    width: 0;
    height: 100%;
    background-color: var(--rs-red);
    transition: width 0.5s ease;
    overflow: visible;
}

.progress-number {
    position: absolute;
    font-size: 14px;
    top: 0;
    inset-inline-end: 0;
    z-index: 1;
}

/*----------------------------------------*/
/*  2.10 cursor
/*----------------------------------------*/
#rs-mouse {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 999999;
    transition: opacity 0.2s ease-in-out 0.5s;
}

#rs-mouse #cursor-ball {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(156, 156, 156, 0.5);
    border-radius: 50%;
    pointer-events: none;
    box-sizing: border-box;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

#rs-mouse #cursor-ball:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--rs-red);
    transform: translate(-50%);
}

@media only screen and (max-width: 991px) {
    #rs-mouse {
        display: none;
    }
}
/*----------------------------------------*/
/*  2.23 Swiper scrollbar 
/*----------------------------------------*/
.rs-swiper-scrollbar.swiper-scrollbar {
    height: 5px;
    background: var(--rs-bg-secondary);
}
.rs-swiper-scrollbar .swiper-scrollbar-drag {
    width: 220px !important;
    background: var(--rs-red);
}

/*----------------------------------------*/
/* 2.13 lenis
/*----------------------------------------*/
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-scrolling {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/*----------------------------------------*/
/*  2.25 cursor
/*----------------------------------------*/
.rs-theme-settings-area {
    position: fixed;
    top: 50%;
    right: 0px;
    width: 240px;
    background-color: var(--rs-white);
    transform: translateY(-50%) translateX(100%);
    z-index: 991;
    border-bottom-right-radius: 4px;
    box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s 0s ease-out;
}
.rs-theme-settings-area.settings-opened {
    transform: translateY(-50%) translateX(0%);
}
.rs-theme-settings-area.settings-opened .rs-theme-settings-gear {
    opacity: 0;
}
.rs-theme-settings-area.settings-opened .rs-theme-settings-close {
    opacity: 1;
}
.rs-theme-settings-open {
    position: absolute;
    top: -1px;
    right: 100%;
}
.rs-theme-settings-open button {
    background-color: var(--rs-white);
    border-inline-end: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    color: var(--rs-black);
    position: relative;
    border-start-start-radius: 2px;
    border-bottom-left-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
}
.rs-theme-settings-gear {
    display: inline-block;
    color: var(--rs-black);
    animation: spin 8s linear infinite;
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-ms-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.rs-theme-settings-close {
    display: inline-block;
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
[dir="rtl"] .rs-theme-settings-close {
    inset-inline-end: 50%;
    inset-inline-start: auto;
}
.rs-theme-header-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--rs-black);
}
.rs-theme-wrapper {
    padding: 20px 30px 30px;
}
.rs-theme-toggle {
    text-align: center;
}
.rs-theme-toggle-main {
    display: inline-block;
    width: 160px;
    margin: auto;
    position: relative;
    z-index: 1;
    background-color: var(--rs-black);
    padding: 4px;
    border-radius: 2px;
}
.rs-theme-toggle-main span.active {
    color: var(--rs-black);
}
.rs-theme-toggle-light,
.rs-theme-toggle-dark {
    display: inline-block;
    width: 48%;
    height: 26px;
    line-height: 26px;
}
.rs-theme-toggle input {
    display: none;
}
.rs-theme-toggle:hover {
    cursor: pointer;
}
.rs-theme-toggle label {
    font-size: 14px;
    font-weight: 500;
}
.rs-theme-toggle label:hover {
    cursor: pointer;
}
.rs-theme-toggle #rs-theme-toggler {
    display: none;
}
.rs-theme-toggle #rs-theme-toggler:checked + i {
    inset-inline-end: calc(50% - 4px);
}
.rs-theme-toggle-slide {
    position: absolute;
    top: 50%;
    inset-inline-end: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    height: 26px;
    background-color: var(--rs-white);
    border-radius: 3px;
    -webkit-transform: translate3d(0, 0);
    transform: translate3d(0, 0);
    transition: all, 0.2s, cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}
.rs-theme-dir {
    text-align: center;
}
.rs-theme-dir-main {
    display: inline-block;
    width: 160px;
    margin: auto;
    position: relative;
    z-index: 1;
    background-color: var(--rs-black);
    padding: 4px 0px 3px 0px;
    border-radius: 2px;
}
.rs-theme-dir-main span.active {
    color: var(--rs-black);
}
.rs-theme-dir-ltr,
.rs-theme-dir-rtl {
    display: inline-block;
    width: 48%;
    height: 26px;
    line-height: 26px;
}
.rs-theme-dir input {
    display: none;
}
.rs-theme-dir:hover {
    cursor: pointer;
}
.rs-theme-dir label {
    font-size: 14px;
    font-weight: 500;
}
.rs-theme-dir label:hover {
    cursor: pointer;
}
.rs-theme-dir #rs-dir-toggler {
    display: none;
}
.rs-theme-dir #rs-dir-toggler:checked + i {
    inset-inline-end: calc(50% - 4px);
}
.rs-theme-dir-slide {
    position: absolute;
    top: 50%;
    inset-inline-end: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    height: 25px;
    background-color: var(--rs-white);
    border-radius: 2px;
    -webkit-transform: translate3d(0, 0);
    transform: translate3d(0, 0);
    transition: all, 0.2s, cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

/*----------------------------------------
   2.15 Basic navigation
-----------------------------------------*/
.rs-swiper-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-swiper-btn {
    width: 40px;
    height: 40px;
    background: var(--rs-theme-secondary);
    color: var(--rs-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s 0s ease-out;
    cursor: pointer;
}
[dir="rtl"] .rs-swiper-btn {
    transform: rotateY(-180deg);
}
.rs-swiper-btn.is-large {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    backdrop-filter: blur(21px);
    background: rgba(255, 255, 255, 0.168);
    border-radius: 0%;
    font-size: 20px;
}
.rs-swiper-btn.is-large:hover {
    background: var(--rs-primary);
}
.rs-swiper-btn.is-red {
    background: var(--rs-red);
}
.rs-swiper-btn.is-red:hover {
    background: var(--rs-theme-black);
}
.rs-swiper-btn.has-radius-small {
    border-radius: 3px;
}
.rs-swiper-btn:hover {
    background: var(--rs-red);
    color: var(--rs-theme-secondary);
}

.rs-swiper .swiper-button-prev,
.rs-swiper .swiper-button-next {
    position: unset;
    margin-top: 0;
}
.rs-swiper .swiper-button-prev::after,
.rs-swiper .swiper-button-next::after {
    content: none;
}

/*----------------------------------------*/
/*  2.14 list
/*----------------------------------------*/
.rs-list-item ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}
@media only screen and (max-width: 480px) {
    .rs-list-item ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
.rs-list-item ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rs-title-primary);
}
.rs-list-item ul li svg {
    width: 20px;
    height: 20px;
}
.rs-list-item ul li svg path {
    fill: var(--rs-red);
}
.rs-list-item ul li i {
    border: 2px solid var(--rs-theme-blue);
    color: var(--rs-theme-blue);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rs-list-item.is-list-block ul {
    display: block;
}
.rs-list-item.is-list-block ul li:not(:last-child) {
    margin-bottom: 13px;
}
.rs-list-item.is-large ul li svg {
    width: 22px;
    height: 22px;
}
.rs-list-item.is-large ul li svg path {
    fill: var(--rs-primary);
}

/*----------------------------------------*/
/*  2.20 post tag
/*----------------------------------------*/
.rs-post-tag .post-tag {
    background: var(--rs-red);
    color: var(--rs-white);
    display: inline-flex;
    align-items: center;
    padding: 5px 10px 5px 10px;
    height: 21px;
    border-radius: 0 100px 100px 70px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 22px;
}
.rs-post-tag .post-tag.is-yellow {
    background-color: var(--rs-yellow);
}
.rs-post-tag .post-tag.is-green {
    background-color: var(--rs-green);
}
.rs-post-tag .post-tag.is-pink {
    background-color: var(--rs-pink);
}
.rs-post-tag .post-tag.is-red {
    background: #ff3a3a;
}
.rs-post-tag-two .post-tag {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--rs-text-primary);
    padding-inline-start: 16px;
}
.rs-post-tag-two .post-tag:hover {
    color: var(--rs-red);
}
.rs-post-tag-two .post-tag::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(246, 156, 0, 0.5);
    border-radius: 50%;
}
.rs-post-tag-two .post-tag.is-white {
    color: var(--rs-white);
}
.rs-post-tag-two .post-tag.is-white:hover {
    color: var(--rs-red);
}

/*----------------------------------------
   2.19 Post Meta
-----------------------------------------*/
.rs-post-meta ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media only screen and (max-width: 1600px) {
    .rs-post-meta ul {
        flex-wrap: wrap;
    }
}
.rs-post-meta ul li {
    list-style: none;
}
.rs-post-meta .rs-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.rs-post-meta .rs-meta svg {
    width: 15px;
    height: 15px;
}
.rs-post-meta .rs-meta svg path {
    fill: #616c74;
}
.rs-post-meta .rs-meta svg path {
    fill: rgba(255, 255, 255, 0.8);
}
.rs-post-meta .rs-meta .meta-author:hover {
    color: var(--rs-red);
}
.rs-post-meta .rs-meta .rs-meta-thumb img {
    width: 30px;
    height: 30px;
}
.rs-post-meta.meta-white .rs-meta svg path {
    fill: rgba(255, 255, 255, 0.8);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.4.1 Header Style 1
/*----------------------------------------*/
.rs-header-one {
    background: var(--rs-red);
    overflow-x: clip;
}
.rs-header-one.has-border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.121);
}
.rs-header-one .header-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
    justify-content: space-between;
    background: var(--rs-bg-black);
    padding-inline-start: 248px;
    padding-inline-end: 248px;
}
@media only screen and (max-width: 1600px) {
    .rs-header-one .header-wrapper {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-header-one .header-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
@media only screen and (max-width: 575px) {
    .rs-header-one .header-wrapper {
        padding-top: 9px;
        padding-bottom: 9px;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-header-one .header-wrapper.rs-sticky {
        padding-inline-end: 15px;
        padding-inline-start: 15px;
    }
}
.rs-header-one .header-wrapper.is-small-padding {
    padding-inline-start: 140px;
    padding-inline-end: 140px;
}
@media only screen and (max-width: 1600px) {
    .rs-header-one .header-wrapper.is-small-padding {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}
.rs-header-one .header-logo {
    position: relative;
    z-index: 1;
}
.rs-header-one .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
}
.rs-header-one .header-menu {
    display: flex;
    align-items: center;
}
.rs-header-one .header-right {
    display: flex;
    gap: 25px;
    align-items: center;
}
@media only screen and (max-width: 1600px) {
    .rs-header-one .header-right {
        gap: 20px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-header-one .header-right {
        gap: 30px;
    }
}
@media only screen and (max-width: 1366px) {
    .rs-header-one .header-btn {
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-header-one .header-btn {
        display: block;
    }
}
@media only screen and (max-width: 575px) {
    .rs-header-one .header-btn {
        display: none;
    }
}
.rs-header-one.rs-sticky.has-sticky-bg {
    background: rgba(16, 23, 30, 0.878);
}
/*----------------------------------------*/
/*  3.4.3 Header Top Style
/*----------------------------------------*/
.rs-header-top.rs-header-top-one {
    padding-inline-start: 248px;
    padding-inline-end: 248px;
    padding-bottom: 5px;
    padding-top: 5px;
    background: var(--rs-bg-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 0.5px solid #525151;
}
@media only screen and (max-width: 1600px) {
    .rs-header-top.rs-header-top-one {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-header-top.rs-header-top-one {
        justify-content: center;
    }
}
.rs-header-top.rs-header-top-one.is-small-padding {
    padding-inline-start: 140px;
    padding-inline-end: 140px;
}
@media only screen and (max-width: 1600px) {
    .rs-header-top.rs-header-top-one.is-small-padding {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}
.rs-header-top.rs-header-top-one .header-top-left {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 575px) {
    .rs-header-top.rs-header-top-one .header-top-left {
        gap: 5px 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.rs-header-top.rs-header-top-one .header-top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media only screen and (max-width: 480px) {
    .rs-header-top.rs-header-top-one .header-top-right {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    .theme-social {
        gap: 6px;
    }
}
.rs-header-top.rs-header-top-one .header-top-content {
    overflow: hidden;
    position: relative;
}
.rs-header-top.rs-header-top-one .header-top-description {
    font-size: 14px;
    font-weight: 500;
    color: var(--rs-white);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    min-width: 350px;
}
@media only screen and (max-width: 480px) {
    .rs-header-top.rs-header-top-one .header-top-description {
        text-align: center;
    }
}
.rs-header-top.rs-header-top-one .header-top-description.is-active {
    position: relative;
    opacity: 1;
    animation: textRotatingIn 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}
.rs-header-top.rs-header-top-one .header-top-description:not(.is-active) {
    animation: textRotatingOut 0.8s cubic-bezier(0.86, 0, 0.07, 1) both;
}
.rs-header-top.rs-header-top-one .header-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.rs-header-top.rs-header-top-one .header-top-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}
.rs-header-top.rs-header-top-one .header-top-item:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    inset-inline-end: 0;
}
@media only screen and (max-width: 575px) {
    .rs-header-top.rs-header-top-one
        .header-top-item:not(:last-child):not(:last-child) {
        padding-inline-end: 0px;
        margin-inline-end: 0px;
    }
    .rs-header-top.rs-header-top-one
        .header-top-item:not(:last-child):not(:last-child)::before {
        content: none;
    }
}
.rs-header-top.rs-header-top-one .header-top-item h6 {
    font-size: 15px;
    font-weight: 400;
    color: var(--rs-white);
}
.rs-header-top.rs-header-top-one .header-top-item h6 a:hover {
    color: rgba(255, 255, 255, 0.72);
}
.rs-header-top.rs-header-top-one .header-top-meta {
    background: var(--rs-red);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 10px;
    height: 28px;
    border-radius: 0px 100px 100px 100px;
}
.rs-header-top.rs-header-top-one .header-top-meta-title {
    font-size: 12px;
    color: var(--rs-white);
    font-weight: 500;
    text-transform: uppercase;
}
.rs-header-top.rs-header-top-one .header-top-meta-icon {
    position: relative;
    top: -2px;
}
/* .rs-header-top.rs-header-top-one .header-top-meta-icon svg {
  width: 17px;
  height: 17px;
} */
.rs-header-top.rs-header-top-one .popup-circle {
    width: 8px;
    height: 8px;
    position: relative;
}
.rs-header-top.rs-header-top-one .header-top-title {
    font-size: 14px;
    font-weight: 600;
    color: #e40101;
    text-transform: uppercase;
    line-height: 20px;
}
.rs-header-top.rs-header-top-one .header-top-social a {
    font-size: 14px;
}
.rs-header-top.rs-header-top-one .header-top-social-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-header-top.rs-header-top-one .header-top-social-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--rs-white);
}
/*----------------------------------------*/
/*  3.4.2 Search News 
/*----------------------------------------*/
.top-search-bar {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    padding: 15px 10px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0px 0px 30px 30px;
}

.top-search-bar.active {
    top: 0;
}

.search-form {
    max-width: 760px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    outline: none;
    background: #ffffff;
    height: 52px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.search-form input::placeholder {
    color: #999;
}

.search-form input:focus {
    box-shadow: 0 10px 30px rgba(153, 2, 2, 0.35);
    transform: translateY(-1px);
}

.search-form button {
    background: linear-gradient(135deg, #e40101, #ed8181);
    color: #fff;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(153, 2, 2, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 35px rgba(153, 2, 2, 0.55);
}

.search-form button i {
    font-size: 17px;
}

/*----------------------------------------*/
/*  3.4.2 Header Common Style 
/*----------------------------------------*/
.header-logo {
    max-width: 180px;
}
@media only screen and (max-width: 575px) {
    .header-logo {
        max-width: 160px;
    }
}
.header-search-wrapper {
    position: relative;
}
.header-search-inner {
    display: none;
    position: absolute;
    width: 290px;
    top: 64px;
    z-index: 2;
    inset-inline-end: 0;
}
@media only screen and (max-width: 1199px) {
    .header-search-inner {
        top: 52px;
    }
}
@media only screen and (max-width: 575px) {
    .header-search-inner {
        top: 54px;
    }
}
@media only screen and (max-width: 575px) {
    .header-search-inner {
        width: 250px;
    }
}
.header-search-icon {
    cursor: pointer;
}
.header-search-icon:hover .has-search {
    color: var(--rs-red);
}
.header-search-icon:hover .has-close {
    color: var(--rs-red);
}
.header-search-icon i {
    font-size: 22px;
    transition: all 0.3s ease-out 0s;
    color: var(--rs-white);
}
.header-search-icon .has-close {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
}
.header-search-icon.icon-close .has-search {
    opacity: 0;
    visibility: hidden;
}
.header-search-icon.icon-close .has-close {
    opacity: 1;
    visibility: visible;
}
@media only screen and (max-width: 480px) {
    .header-search {
        display: none;
    }
}
.header-search input {
    color: var(--rs-white);
    padding-inline-end: 40px;
    padding-inline-start: 15px;
    width: 100%;
    background: var(--rs-bg-primary);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    height: 48px;
}
[dir="rtl"] .header-search input {
    padding-inline-end: 40px;
}
.header-search input::placeholder {
    color: var(--rs-text-primary);
    font-weight: 500;
}
.header-search button {
    position: absolute;
    right: 5px;
    font-size: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
}
[dir="rtl"] .header-search button {
    left: 20px;
}
.header-search button:hover {
    color: var(--rs-red);
}
.header-icon-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 6px;
}
.header-btn .rs-btn {
    height: 48px;
    padding: 15px 23px;
    font-size: 16px;
}
.header-inner.rs-sticky .header-menu > nav > ul > li > a {
    padding: 32px 0;
}
.header-inner.rs-sticky .header-search-inner {
    top: 56px;
}
@media only screen and (max-width: 1199px) {
    .header-inner.rs-sticky .header-search-inner {
        top: 51px;
    }
}
@media only screen and (max-width: 480px) {
    .header-inner.rs-sticky .header-search-inner {
        top: 48px;
    }
}

.user-support-menu,
.sidebar-toggle {
    cursor: pointer;
    padding: 4px 2px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 37px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rs-bg-primary);
    color: white;
    font-size: 14px;
}

.header-bar-icon {
    width: 20px;
    height: 16px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: color 0.2s ease-out;
}
.header-bar-icon span {
    width: 28px;
    height: 2px;
    background: var(--rs-white);
    display: inline-block;
    transition: color 0.2s ease-out;
    margin: 0 auto;
    margin-right: auto;
    margin-right: 0;
}
.header-bar-icon span:nth-child(1) {
    width: 20px;
    transition: all 0.3s linear;
}
.header-bar-icon span:nth-child(2) {
    width: 15px;
    transition: all 0.3s linear;
}
.header-bar-icon span:nth-child(3) {
    width: 20px;
    transition: all 0.3s linear;
}
.header-bar-icon:hover span {
    animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.header-bar-icon:hover span:nth-child(2) {
    animation-delay: 0.1s;
}
.header-bar-icon:hover span:nth-child(3) {
    animation-delay: 0.2s;
}

.rs-sticky-header {
    position: fixed !important;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    width: 100%;
    z-index: 999;
    background: var(--rs-white);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.6s ease;
}
.rs-sticky-header.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-transparent {
    position: absolute;
    inset-inline-start: 0;
    margin: auto;
    width: 100%;
    z-index: 99;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1.1 banner Style 1
/*----------------------------------------*/
/* Menu index */
.main-menu ul li.active > a {
    color: var(--rs-red);
}
.main-menu ul li ul.submenu li.active > a {
    color: var(--rs-red);
}
.main-menu > ul {
    display: inline-flex;
    gap: 0 30px;
}
@media only screen and (max-width: 1366px) {
    .main-menu > ul {
        gap: 0 20px;
    }
}
.main-menu > ul > li:hover > a {
    color: var(--rs-red);
}
.main-menu > ul > li:hover > a::before {
    opacity: 1;
}
.main-menu > ul > li:hover .mega-menu {
    opacity: 1;
    pointer-events: all;
    transform: scaleY(1);
    visibility: visible;
}
.main-menu > ul > li:hover > ul {
    opacity: 1;
    pointer-events: all;
    transform: scaleY(1);
    visibility: visible;
}
.main-menu > ul > li:hover > ul.submenu li:hover > ul {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.main-menu li {
    position: relative;
    list-style: none;
}
.main-menu li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--rs-white);
    padding: 25px 0px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s linear;
}
.main-menu .submenu {
    background-color: var(--rs-theme-secondary);
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    width: 260px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    top: 100%;
    transform: scaleY(0);
    transition: all 0.5s ease;
    visibility: hidden;
    transform-origin: top center;
}
.main-menu .submenu ul {
    background-color: var(--rs-theme-secondary);
    width: 260px;
    position: absolute;
    inset-inline-start: 100%;
    top: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.5s;
}
.main-menu .submenu li {
    position: relative;
}
.main-menu .submenu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.main-menu .submenu li:hover > a {
    color: var(--rs-red);
}
.main-menu .submenu li:hover > ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}
.main-menu .submenu li a {
    font-size: 15px;
    color: var(--rs-white);
    display: block;
    transition: all 0.5s;
    text-align: start;
    cursor: pointer;
    padding: 15px 20px 15px 20px;
}
.main-menu .mega-menu {
    background-color: var(--rs-white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    top: 100%;
    transform: scaleY(0);
    transition: all 0.5s ease;
    visibility: hidden;
    transform-origin: top center;
    padding: 25px 30px 30px 30px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    border-radius: 0px 0px 12px 12px;
    z-index: 99;
}
@media only screen and (max-width: 1600px) {
    .main-menu .mega-menu {
        width: 1150px;
    }
}
.main-menu .mega-menu li a {
    padding: 0px;
}
.main-menu .mega-menu .rs-post-small-title a {
    color: var(--rs-title-primary);
    display: unset;
    font-weight: 600;
}
.main-menu .mega-menu .rs-post-medium-title a {
    color: var(--rs-title-primary);
    display: unset;
    font-size: 20px;
    font-weight: 600;
}
.main-menu .mega-menu .rs-post-small-thumb {
    border-radius: 8px;
}
.main-menu .mega-menu .rs-post-tag .post-tag {
    padding: 5px 10px 5px 10px;
}
.main-menu .mega-menu .rs-meta a {
    font-size: 13px;
    color: var(--rs-text-primary);
    font-weight: 400;
    text-transform: unset;
}
.main-menu .mega-menu .rs-post-medium-thumb img {
    height: 160px;
}
.main-menu .mega-menu .rs-post-small-eight {
    border-bottom: none;
    border: 0;
    padding-top: 0;
    padding-bottom: 20px;
}
.main-menu .mega-menu .rs-post-small-eight:nth-child(2) {
    padding-bottom: 0;
}
.main-menu .mega-menu .rs-post-small-eight .rs-post-small-thumb img {
    width: 110px;
    height: 110px;
}
.main-menu .mega-menu .rs-post-medium-item {
    padding: 0;
    border: 0;
}
.main-menu .mega-menu .rs-post-medium-content {
    padding-top: 20px;
    padding-inline-start: 0;
}
.main-menu .mega-grid {
    grid-template-columns: 320px auto;
    gap: 0 40px;
    display: grid;
}
.main-menu .mega-grid-two .rs-mega-menu-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 17px;
}
.main-menu .mega-grid-two .rs-mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.main-menu .mega-grid-two .mega-menu-title {
    margin-bottom: 0;
    font-size: 20px;
}
.main-menu .mega-grid-two .rs-post-overlay-title {
    line-height: 1.2;
    margin-bottom: 10px;
}
.main-menu .mega-grid-two .rs-post-overlay-title a {
    display: unset;
    color: var(--rs-title-primary);
    font-weight: 600;
}
.main-menu .mega-grid-two .rs-post-medium-content {
    padding-top: 15px;
}
.main-menu .mega-grid-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 50px;
    display: grid;
    width: 1000px;
}
.main-menu .mega-grid-three .title {
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    font-size: 15px;
    color: var(--rs-text-primary);
    padding-bottom: 20px;
    pointer-events: none;
    padding-top: 0;
}
.main-menu .mega-grid-three li a {
    color: var(--rs-text-primary);
    padding: 15px 20px 15px 0px;
    border-bottom: 1px solid rgba(200, 192, 226, 0.18);
    font-size: 16px;
}
.main-menu .mega-grid-three li a:hover {
    color: var(--rs-red);
}
.main-menu .rs-mega-menu {
    position: static;
    transition: all 15s ease-in-out;
}
.main-menu .mega-menu-title {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--rs-title-primary);
}
.main-menu .mega-menu-title a {
    display: inline-block;
    border-radius: 6px;
    font-size: 22px;
    margin-bottom: 0px;
    color: var(--rs-title-primary);
    font-weight: 600;
}
.main-menu .mega-menu-title a:hover {
    color: var(--rs-red);
}
.main-menu .rs-mega-menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.main-menu li .has-arrow > a::after {
    position: absolute;
    inset-inline-end: 20px;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    content: "\ea4e";
    font-family: var(--rs-ff-remixicon);
}
.main-menu li .has-arrow:hover a::after {
    transform: rotate(-90deg);
}
[dir="rtl"] .main-menu li .has-arrow:hover a::after {
    transform: rotate(90deg);
}

.main-menu > ul > li:hover > a::after {
    transform: rotate(180deg);
    color: var(--rs-red);
}
.main-menu > ul > li.menu-item-has-children > a {
    position: relative;
}
.main-menu > ul > li.menu-item-has-children > a::after {
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    margin-left: 2px;
    font-size: 20px;
    content: "\ea4e";
    font-family: var(--rs-ff-remixicon);
}
.main-menu ul li.rs-mega-menu.is-text-white.active > a {
    color: var(--rs-white);
}
.main-menu ul li.rs-mega-menu.is-text-white.active > a:hover {
    color: var(--rs-red);
}

/*----------------------------------------*/
/*  3.5.2 Mobile Menu css
/*----------------------------------------*/
.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
    float: left;
    width: 100%;
    position: relative;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999;
    margin-bottom: 15px;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px 13px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: var(--rs-white);
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    font-weight: 700;
    display: none !important;
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: var(--rs-white);
    height: 3px;
    margin-top: 3px;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
    float: left;
    width: 100%;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.mean-container .mean-nav ul.mega-menu {
    position: static;
    height: 100%;
    background: transparent;
    z-index: 3;
    display: block;
    padding: 0 0;
    opacity: 1;
    visibility: visible;
    transition: none;
    padding-inline-start: 20px;
}
[dir="rtl"] .mean-container .mean-nav ul.mega-menu {
    padding-inline-start: 22px;
    padding-inline-end: 0;
}

.mean-container .mean-nav .submenu {
    padding-inline-start: 20px;
}
.mean-container .mean-nav .submenu a {
    font-size: 16px;
}
.mean-container .mean-nav .mega-menu ul {
    padding-inline-start: 20px;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid var(--rs-border-primary);
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li span {
    display: block;
    float: left;
    width: 90%;
    padding: 10px 5%;
    margin: 0;
    text-align: start;
    text-decoration: none;
    width: 100%;
    padding: 10px 0;
    color: var(--rs-black);
    border-top: 1px solid rgba(255, 255, 255, 0.079);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li span:hover {
    color: var(--rs-red);
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li.dropdown-opened > a,
.mean-container .mean-nav ul li.dropdown-opened > span {
    color: var(--rs-red);
}

.mean-container .mean-nav ul li a.mean-expand,
.mean-container .mean-nav ul li span.mean-expand {
    text-align: center;
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    z-index: 2;
    background: transparent;
    border: none !important;
    font-size: 14px !important;
    margin-top: 8px;
    padding: 0 !important;
    height: 30px;
    width: 30px;
    color: var(--rs-black);
    line-height: 30px;
    font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li span.mean-expand:hover {
    background: var(--rs-red);
    color: var(--rs-white);
}
.mean-container .mean-nav ul li a.mean-expand i,
.mean-container .mean-nav ul li span.mean-expand i {
    transition: all 0.3s ease-out 0s;
    display: inline-block;
}

.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked,
.mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > span.mean-expand.mean-clicked {
    background: var(--rs-red);
    color: var(--rs-white);
    border-color: transparent;
}

.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i,
.mean-container
    .mean-nav
    ul
    li.dropdown-opened
    > span.mean-expand.mean-clicked
    i {
    color: var(--rs-white);
    transform: rotate(45deg);
}

.mobile-menu.mean-container .menu-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(43, 77, 255, 0.1215686275);
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
}
.mobile-menu.mean-container .menu-item:hover {
    background: rgba(43, 77, 255, 0.0392156863);
}
.mobile-menu.mean-container .menu-item:hover .title {
    color: var(--rs-red);
}
.mobile-menu.mean-container .menu-item-has-children.dropdown-opened {
    border-bottom: 0;
}

.mean-container .mean-nav ul li .rs-post-meta a.mean-expand {
    display: none;
}
.mean-container .mean-nav ul li .rs-post-meta ul {
    display: flex !important;
    align-items: center;
    padding-inline-start: 0px;
}
.mean-container .mean-nav ul li .rs-post-meta ul li {
    border-bottom: 0;
}
.mean-container .mean-nav ul li .rs-post-meta .rs-meta {
    padding: 0;
    font-size: 13px;
    color: var(--rs-text-primary);
    display: flex;
}
.mean-container .mean-nav ul li .rs-post-meta .rs-meta span {
    padding-bottom: 0;
    padding-top: 0;
    font-size: 13px;
    color: var(--rs-text-primary);
}
.mean-container .mean-nav ul li .rs-post-meta .rs-meta a {
    color: var(--rs-text-primary);
}
.mean-container .mean-nav ul li .rs-post-meta .rs-meta a:hover {
    color: var(--rs-red);
}
.mean-container .mean-nav ul li .mega-menu-title {
    margin-bottom: 15px;
}
.mean-container .mean-nav ul li .rs-post-medium-item a {
    float: unset;
    display: unset;
    padding: unset;
    font-size: 13px;
    width: unset;
}
.mean-container .mean-nav ul li .rs-post-medium-title a {
    font-weight: 600;
    font-size: 20px;
}
.mean-container .mean-nav ul li .rs-post-tag a {
    padding: 5px 10px 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--rs-white);
}
.mean-container .mean-nav ul li.rs-mega-menu-left {
    border-bottom: 0;
    margin-bottom: 15px;
}
.mean-container .mean-nav ul li.rs-mega-menu-left a {
    float: unset;
    font-weight: 600;
    padding: 0;
}
.mean-container .mean-nav ul li.rs-mega-menu-left .rs-post-medium-content {
    padding-top: 15px;
    padding-inline-start: 0px;
}
.mean-container .mean-nav ul li .rs-post-small-eight {
    flex-wrap: wrap;
    border-top: 0;
    padding-bottom: 0px;
    border-bottom: 0;
    padding-top: 0px;
}
.mean-container .mean-nav ul li .rs-post-small-eight a {
    float: unset;
    display: unset;
    width: unset;
    padding: 0;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-post-tag a {
    padding: 5px 10px 5px 10px;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-meta a {
    font-weight: 400;
    font-size: 13px;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-post-small-thumb {
    flex: unset;
    border-radius: 8px;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-post-meta ul li {
    width: unset;
}
.mean-container .mean-nav ul li .rs-post-small-eight .rs-post-small-title a {
    font-weight: 600;
}
.mean-container .mean-nav ul li .rs-mega-menu-btn {
    margin-bottom: 20px;
}
.mean-container .mean-nav ul li .rs-mega-menu-btn a {
    display: inline-flex;
    float: unset;
    align-items: center;
    justify-content: start;
    font-size: 15px;
    height: unset;
    padding: unset;
    width: unset;
}
.mean-container .mean-nav ul li .rs-post-medium-two .rs-post-medium-item {
    padding: 0;
    border: 0;
}
.mean-container .mean-nav ul li.rs-mega-menu.dropdown-opened {
    border-bottom: 0;
}
.mean-container .mean-nav ul li .rs-mega-menu-right {
    border-bottom: 0;
}
.mean-container
    .mean-nav
    ul
    li
    .rs-mega-menu-right
    .rs-mega-menu-list-item:not(:last-child) {
    margin-bottom: 20px;
}
.mean-container
    .mean-nav
    ul
    li
    .rs-mega-menu-right
    .rs-menu-post-small
    .rs-post-small-eight:not(:last-child) {
    padding-bottom: 20px;
}
.mean-container .mean-nav ul li .icon-box {
    width: unset;
    padding: 0;
}
.mean-container .mean-nav ul li .rs-post-overlay-title a {
    font-size: unset;
    font-weight: 600;
}
.mean-container .mean-nav ul li .mega-grid-two .rs-post-medium-content {
    padding-top: 15px;
    padding-inline-start: 0px;
    padding-bottom: 10px;
}
.mean-container .mean-nav ul li .mega-grid-two ul li {
    width: unset;
}
.mean-container .mean-nav ul li .mega-grid-two .rs-post-medium-two {
    margin-bottom: 20px;
}
.mean-container .mean-nav ul li .mega-grid-two .rs-mega-menu-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 0;
    margin-top: 10px;
}
.mean-container .mean-nav ul li .mega-grid-two .mega-menu-title {
    margin-bottom: 0;
}
.mean-container .mean-nav ul li .mega-grid-two .rs-mega-menu-btn {
    margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
    #mobile-menu-two {
        display: none;
    }
}

/*----------------------------------------*/
/*  3.2.3 Postbox css
/*----------------------------------------*/
.rs-postbox-more-navigation {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--rs-border-primary);
    border-bottom: 1px solid var(--rs-border-primary);
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--rs-white);
}
@media only screen and (max-width: 991px) {
    .rs-postbox-more-navigation {
        display: none;
    }
}
.rs-postbox-more-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--rs-title-primary);
}
.rs-postbox-more-navigation a:hover {
    color: var(--rs-red);
}
.rs-postbox-more-navigation a:hover svg path {
    fill: var(--rs-red);
}
.rs-postbox-more-navigation a svg {
    width: 20px;
    height: 20px;
}
.rs-postbox-more-navigation a svg path {
    transition: all 0.3s 0s ease-out;
}

.rs-postbox-item:not(:last-child) {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    padding-bottom: 50px;
}
@media only screen and (max-width: 575px) {
    .rs-postbox-item:not(:last-child) {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}
.rs-postbox-content {
    padding-top: 30px;
}
.rs-postbox-accordion .accordion-item {
    background: var(--rs-white);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    border-radius: 6px !important;
    padding: 30px 30px 30px 30px;
}
@media only screen and (max-width: 480px) {
    .rs-postbox-accordion .accordion-item {
        padding: 20px 20px 20px 20px;
    }
}
.rs-postbox-accordion .accordion-button:not(.collapsed) .accordion-icon i {
    transform: rotate(180deg);
}
.rs-postbox-accordion .accordion-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--rs-title-primary);
}
.rs-postbox-accordion .accordion-icon {
    width: 28px;
    height: 28px;
    background: var(--rs-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 13px;
    color: var(--rs-white);
    position: absolute;
    right: 0;
}
.rs-postbox-accordion .accordion-icon i {
    transition: 0.3s;
}
.rs-postbox-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.rs-postbox-thumb:hover img {
    transform: scale(1.1);
}
.rs-postbox-thumb img {
    width: 100%;
    transition: 0.9s;
}
.rs-postbox-tag {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
}
.rs-postbox-tag a {
    color: var(--rs-title-primary);
    font-size: 16px;
    text-transform: capitalize;
    padding: 5px 20px 5px 20px;
    border-radius: 4px;
    background: var(--rs-red);
    transition: 0.3s;
}
.rs-postbox-tag a:hover {
    background: var(--rs-theme-secondary);
    color: var(--rs-white);
}
.rs-postbox-meta-list {
    display: flex;
    align-items: center;
    gap: 20px 0px;
}
.rs-postbox-title {
    margin: 15px 0 15px;
    font-size: 30px;
}
@media only screen and (max-width: 1199px) {
    .rs-postbox-title {
        font-size: 26px;
    }
}
.rs-postbox-title a:hover {
    color: #acd601;
}
.rs-postbox-meta-item {
    position: relative;
    display: flex;
    align-items: center;
}
.rs-postbox-meta-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}
.rs-postbox-meta-item::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    inset-inline-start: -15px;
    top: 50%;
    background: #616161;
    transform: translate(-50%, -50%);
}
.rs-postbox-meta-item:not(:last-child)::before {
    content: none;
}
.rs-postbox-meta-item span {
    font-size: 16px;
}
.rs-postbox-meta-item .meta-author {
    font-weight: 700;
}
.rs-postbox-meta-item .meta-author:hover {
    color: var(--rs-red);
}
.rs-postbox-btn {
    margin-top: 30px;
}
.rs-postbox-btn .rs-btn {
    height: 55px;
    padding: 15px 20px;
}
.rs-postbox-details-thumb img {
    width: 100%;
    border-radius: 6px;
}
.rs-postbox-details-title {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1600px) {
    .rs-postbox-details-title {
        font-size: 35px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-postbox-details-title {
        font-size: 30px;
    }
}
.rs-postbox-details-tags {
    align-items: center;
}
.rs-postbox-details-tags span {
    font-weight: 600;
    padding-inline-end: 10px;
    color: var(--rs-title-primary);
}
.rs-postbox-details-tags.tagcloud a {
    padding: 6px 15px;
    margin-bottom: 0px;
    margin-inline-end: 0px;
    border: 1px solid var(--rs-border-primary);
    border-radius: 6px;
}
.rs-postbox-details-social {
    align-items: center;
    justify-content: space-between;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid #fcc2c2;
    border-bottom: 1px solid #fcc2c2;
    padding-top: 20px;
    padding-bottom: 20px;
}
.rs-postbox-details-comment-title {
    margin-bottom: 20px;
    margin-top: 40px;
}
.rs-postbox-details-video {
    position: relative;
    z-index: 1;
    height: 380px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
    .rs-postbox-details-video {
        height: 300px;
    }
}
.rs-postbox-details-video .rs-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.rs-postbox-details-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 8px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-postbox-details-comment-inner ul li {
    list-style: none;
}
.rs-postbox-details-comment-inner ul.children {
    margin-inline-start: 77px;
}
@media only screen and (max-width: 1199px) {
    .rs-postbox-details-comment-inner ul.children {
        margin-inline-start: 0px;
    }
}
.rs-postbox-details-comment-inner ul.children li {
    border-bottom: 1px solid var(--rs-border-primary);
}
.rs-postbox-details-comment-inner ul.children li:first-child {
    border-top: 1px solid var(--rs-border-primary);
}
.rs-postbox-details-avater-meta {
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 8px;
    display: inline-block;
}
.rs-postbox-details-comment-content P {
    margin-bottom: 20px;
}
.rs-postbox-details-comment-box {
    margin-bottom: 30px;
    padding-top: 30px;
    gap: 20px 30px;
    display: flex;
    align-items: start;
}
@media only screen and (max-width: 575px) {
    .rs-postbox-details-comment-box {
        flex-wrap: wrap;
    }
}
.rs-postbox-details-comment-reply a {
    padding: 6px 20px;
    background: var(--rs-red);
    color: var(--rs-title-primary);
    font-size: 14px;
    border-radius: 5px;
}
.rs-postbox-details-comment-reply a:hover {
    background: var(--rs-theme-secondary);
    color: var(--rs-white);
}
.rs-postbox-details-comment-thumb img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
}
.rs-postbox-details-social .rs-postbox-social span {
    font-weight: 600;
    padding-inline-end: 10px;
    color: var(--rs-title-primary);
}
.rs-postbox-details-social .rs-postbox-social a {
    color: #616c74;
    font-size: 16px;
}
.rs-postbox-details-social .rs-postbox-social .rs-theme-social {
    gap: 15px;
}
.rs-postbox-quote {
    margin-bottom: 30px;
    margin-top: 65px;
    position: relative;
}
@media only screen and (max-width: 575px) {
    .rs-postbox-quote {
        margin-top: 50px;
    }
}
.rs-postbox-quote blockquote {
    position: relative;
    overflow: hidden;
    padding: 50px 40px 20px 30px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px dashed var(--rs-border-primary);
}
@media only screen and (max-width: 480px) {
    .rs-postbox-quote blockquote {
        padding: 20px 20px;
    }
}
.rs-postbox-quote blockquote p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--rs-title-primary);
    font-style: italic;
}
.rs-postbox-quote .rs-postbox-quote-shape {
    width: 72px;
    height: 72px;
    background: var(--rs-white);
    box-shadow: 0px 10px 30px rgba(0, 115, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and (max-width: 575px) {
    .rs-postbox-quote .rs-postbox-quote-shape {
        width: 50px;
        height: 50px;
    }
    .rs-postbox-quote .rs-postbox-quote-shape img {
        width: 20px;
    }
}
.rs-postbox-details-feature {
    margin-top: 20px;
}
.rs-postbox-details-feature ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media only screen and (max-width: 1199px) {
    .rs-postbox-details-feature ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 575px) {
    .rs-postbox-details-feature ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
.rs-postbox-details-feature ul li {
    list-style: none;
    position: relative;
    display: flex;
    color: var(--rs-black);
    gap: 7px;
    font-weight: 500;
}
.rs-postbox-details-feature ul li span {
    width: 22px;
    height: 22px;
    border: 1px solid var(--rs-border-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.rs-postbox-details-feature ul li span svg {
    width: 11px;
    height: 11px;
}
.rs-postbox-comment-form .rs-contact-input-title {
    font-size: 16px;
    color: var(--rs-title-primary);
    margin-bottom: 7px;
    font-weight: 500;
}
.rs-postbox-comment-form .rs-contact-input input {
    height: 56px;
    border-radius: 6px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    border: 1px solid var(--rs-border-primary);
}
.rs-postbox-comment-form .rs-contact-input input:focus {
    border-color: var(--rs-red);
}
.rs-postbox-comment-form .rs-contact-input textarea {
    height: 200px;
    border-radius: 6px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    border: 1px solid var(--rs-border-primary);
}
.rs-postbox-comment-form .rs-contact-input textarea:focus {
    border-color: var(--rs-red);
}

.rs-blog-post-one .rs-blog-post-wrapper {
    display: grid;
    grid-template-columns: 870px auto;
    gap: 15px;
    justify-content: space-between;
}
@media only screen and (max-width: 1600px) {
    .rs-blog-post-one .rs-blog-post-wrapper {
        grid-template-columns: 750px auto;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-blog-post-one .rs-blog-post-wrapper {
        grid-template-columns: 550px auto;
    }
}
@media only screen and (max-width: 991px) {
    .rs-blog-post-one .rs-blog-post-wrapper {
        grid-template-columns: auto;
    }
}
.rs-blog-post-one .rs-blog-post-title {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.45;
}
.rs-blog-post-one .rs-blog-post-social {
    align-items: center;
    display: flex;
    gap: 15px;
}
.rs-blog-post-one .rs-blog-post-social-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--rs-title-primary);
    flex: 0 0 auto;
}
.rs-blog-post-one .rs-blog-post-right {
    margin-top: 45px;
}
@media only screen and (max-width: 991px) {
    .rs-blog-post-one .rs-blog-post-right {
        margin-top: 0;
    }
}
.rs-blog-post-one .rs-blog-post-description {
    max-width: 90%;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
    .rs-blog-post-one .rs-blog-post-description {
        max-width: 100%;
    }
}

/*----------------------------------------*/
/*  3.2.5 Sidebar css
/*----------------------------------------*/
.rs-sidebar-sticky {
    position: sticky;
    top: 110px;
}
@media only screen and (max-width: 991px) {
    .rs-sidebar-sticky {
        position: relative;
        top: unset;
    }
}

.sidebar-widget {
    position: relative;
    background: var(--rs-bg-secondary);
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
}
@media only screen and (max-width: 1600px) {
    .sidebar-widget {
        padding: 10px 20px 20px 20px;
    }
}
@media only screen and (max-width: 991px) {
    .sidebar-widget {
        padding: 20px 30px 30px 30px;
    }
}
@media only screen and (max-width: 480px) {
    .sidebar-widget {
        padding: 10px 20px 20px 20px;
    }
}
.sidebar-widget.white-bg {
    background: var(--rs-white);
}
.sidebar-widget.widget-categories ul li {
    list-style: none;
}
.sidebar-widget.widget-categories ul li:not(:last-child) {
    border-bottom: 1px solid rgba(62, 62, 62, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.sidebar-widget.widget-categories ul li a {
    cursor: pointer;
    transition: all 0.3s ease 0s;
    position: relative;
}
.sidebar-widget.widget-categories ul li a:hover {
    color: var(--rs-theme-orange);
}
.sidebar-widget.widget-categories-two {
    padding: 40px 30px 40px 30px;
}
@media only screen and (max-width: 1199px) {
    .sidebar-widget.widget-categories-two {
        padding: 20px 20px 20px 20px;
    }
}
.sidebar-widget.widget-categories-two.has-content-none::before {
    content: none;
}
.sidebar-widget.widget-categories-two ul li {
    list-style: none;
}
.sidebar-widget.widget-categories-two ul li:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 10px;
}
.sidebar-widget.widget-categories-two ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(2, 1, 1, 0.09);
    padding: 10px 20px;
    background: var(--rs-white);
    font-weight: 500;
    border-radius: 2px;
    font-size: 17px;
}
.sidebar-widget.widget-categories-two ul li a:hover {
    background: var(--rs-red);
    border-color: var(--rs-red);
    color: var(--rs-title-primary);
}
.sidebar-widget.widget-categories-two ul li i {
    font-size: 20px;
}
.sidebar-widget.widget-cta {
    position: relative;
    z-index: 1;
    height: 600px;
}
@media only screen and (max-width: 1199px) {
    .sidebar-widget.widget-cta {
        height: 500px;
    }
}
@media only screen and (max-width: 767px) {
    .sidebar-widget.widget-cta {
        height: 400px;
    }
}
.sidebar-widget.widget-cta::before {
    content: none;
}
.sidebar-widget-cta-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.sidebar-widget.widget-download {
    background: var(--rs-primary-bg);
    padding: 40px 40px 40px 40px;
    border-radius: 4px;
}
@media only screen and (max-width: 1199px) {
    .sidebar-widget.widget-download {
        padding: 20px 20px 20px 20px;
    }
}
.sidebar-widget.widget-download::before {
    content: none;
}
.sidebar-widget.widget-download ul li {
    list-style: none;
}
.sidebar-widget.widget-download ul li:not(:last-child) {
    margin-bottom: 10px;
}
.sidebar-widget.widget-download ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(2, 1, 1, 0.09);
    padding: 0 15px;
    height: 50px;
    background: var(--rs-white);
    border-radius: 2px;
}
.sidebar-widget.widget-download ul li a:hover {
    color: var(--rs-theme-orange);
}
.sidebar-widget.widget-download ul li a .left {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}
.sidebar-widget.widget-project::before {
    content: none;
}
.sidebar-widget.widget-project .sidebar-widget-icon {
    width: 60px;
    height: 60px;
    background: #e1e1e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 auto;
}
.sidebar-widget.widget-project .sidebar-widget-icon svg {
    width: 22px;
    height: 22px;
}
.sidebar-widget.widget-project .sidebar-widget-icon svg path {
    fill: var(--rs-black);
}
.sidebar-widget.widget-project .sidebar-widget-title {
    font-size: 30px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
    .sidebar-widget.widget-project .sidebar-widget-title {
        font-size: 26px;
    }
}
.sidebar-widget.widget-project .sidebar-widget-info span {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
}
.sidebar-widget.widget-project .sidebar-widget-info h6 {
    font-weight: 500;
}
.sidebar-widget.widget-project .sidebar-widget-client-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sidebar-widget.widget-project .sidebar-widget-client-item:not(:last-child) {
    border-bottom: 1px solid rgba(97, 97, 97, 0.18);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.sidebar-widget.widget-project .sidebar-widget-client-item:first-child {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(97, 97, 97, 0.18);
}
.sidebar-widget.widget-project
    .sidebar-widget-client-item:hover
    .sidebar-widget-icon
    svg {
    animation: rs-fold linear 0.5s;
}
.sidebar-widget.widget-social::before {
    content: none;
}
.sidebar-widget.widget-social .sidebar-widget-title {
    font-size: 30px;
    margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
    .sidebar-widget.widget-social .sidebar-widget-title {
        font-size: 26px;
    }
}
.sidebar-widget.widget-services .sidebar-widget-content ul li {
    list-style: none;
}
.sidebar-widget.widget-services .sidebar-widget-content ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--rs-white);
    font-weight: 500;
    border-radius: 8px;
    font-size: 17px;
    color: var(--rs-dark-blue);
    transition: all 0.5s;
}
.sidebar-widget.widget-services .sidebar-widget-content ul li a:hover {
    background: var(--rs-primary);
    color: var(--rs-white);
}
.sidebar-widget.widget-services .sidebar-widget-content ul li:not(:last-child) {
    margin-bottom: 15px;
}
.sidebar-widget.widget-time .sidebar-widget-content ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--rs-dark-blue);
    font-weight: 500;
    background: var(--rs-white);
    border-radius: 8px;
    padding: 20px;
}
.sidebar-widget.widget-time .sidebar-widget-content ul li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
}
.sidebar-widget.widget-time .sidebar-widget-content ul li:not(:last-child) {
    margin-bottom: 15px;
}
.sidebar-widget.widget-contact {
    height: 365px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    justify-content: center;
    display: flex;
    align-items: end;
}
.sidebar-widget.widget-contact .sidebar-widget-contact-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}
.sidebar-widget.widget-contact .sidebar-widget-contact-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(
        180deg,
        rgba(43, 77, 255, 0) 0%,
        var(--rs-primary) 100%
    );
    border-radius: 10px;
    z-index: -1;
}
.sidebar-widget.widget-contact .sidebar-widget-subtitle {
    color: var(--rs-white);
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}
.sidebar-widget.widget-contact .sidebar-widget-title {
    color: var(--rs-white);
    margin-bottom: 25px;
}
.sidebar-widget.widget-contact .sidebar-call-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.sidebar-widget.widget-contact .sidebar-widget-content {
    text-align: center;
}
.sidebar-widget.widget-contact .sidebar-call-icon {
    background-color: var(--rs-primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.sidebar-widget.widget-contact .sidebar-call-icon svg {
    width: 24px;
    height: 24px;
}
.sidebar-widget.widget-contact .sidebar-call-icon svg path {
    fill: var(--rs-white);
}
.sidebar-widget.widget-contact .sidebar-call-content .title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--rs-white);
    margin-bottom: 2px;
    display: flex;
    justify-content: start;
}
.sidebar-widget.widget-contact .sidebar-call-content h6 {
    font-size: 18px;
    color: var(--rs-white);
}
.sidebar-widget.widget-contact .sidebar-call-content h6 a:hover {
    color: var(--rs-black);
}
.sidebar-search-input {
    position: relative;
}
.sidebar-search-input input {
    padding-inline-end: 50px;
    background: var(--rs-white);
    border: 1px solid #ddd;
    height: 60px;
}
.sidebar-search-input button {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    color: var(--rs-black);
    font-size: 16px;
    transform: translateY(-50%);
}
.sidebar-search-input button:hover {
    color: var(--rs-primary);
}
.sidebar-widget-title {
    margin-bottom: 20px;
}
.sidebar-widget-title.has-large {
    font-size: 36px;
}
@media only screen and (max-width: 575px) {
    .sidebar-widget-title.has-large {
        font-size: 30px;
    }
}
.sidebar-widget-title.has-border {
    position: relative;
    margin-bottom: 40px;
    border-inline-start: 2px solid var(--rs-theme-orange);
    padding-inline-start: 20px;
}
.sidebar-blog-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media only screen and (max-width: 480px) {
    .sidebar-blog-item {
        display: grid;
        grid-template-columns: auto;
    }
}
.sidebar-blog-item:not(:last-child) {
    margin-bottom: 25px;
}
.sidebar-blog-item:hover .sidebar-blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.sidebar-blog-thumb {
    overflow: hidden;
    flex: 0 0 auto;
    width: 85px;
    border-radius: 4px;
}
@media only screen and (max-width: 480px) {
    .sidebar-blog-thumb {
        width: 100%;
    }
}
.sidebar-blog-thumb img {
    width: 100%;
    border-radius: 4px;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}
.sidebar-blog-title {
    font-size: 18px;
}
.sidebar-blog-title a:hover {
    color: #acd601;
}
.sidebar-blog-meta {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.sidebar-blog-meta i {
    color: var(--rs-red);
}
.sidebar-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(116, 116, 117, 0.141);
    background: transparent;
}
.sidebar-social a:hover {
    border-color: var(--rs-red);
}

/*----------------------------------------*/
/*  3.2.4 Sidebar css
/*----------------------------------------*/
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tagcloud.has-bg-transparent {
    background: transparent;
    border: 1px solid var(--rs-border-secondary);
    border-radius: 8px;
    padding: 30px;
}
.tagcloud.has-bg-transparent a {
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--rs-white);
    background: var(--rs-bg-primary);
}
.tagcloud.has-bg-white a {
    background: var(--rs-white);
}
.tagcloud a {
    font-size: 16px;
    border: 1px solid var(--rs-border-primary);
    padding: 7px 15px;
    position: relative;
    transition: 0.3s;
    font-weight: 500;
    background: transparent;
    border-radius: 6px;
    color: var(--rs-title-primary);
}
@media only screen and (max-width: 480px) {
    .tagcloud a {
        font-size: 14px;
        padding: 6px 13px;
    }
}
.tagcloud a:hover {
    color: var(--rs-white) !important;
    background-color: var(--rs-red);
    border-color: var(--rs-red);
}

/*----------------------------------------*/
/*  3.3.2 Footer Style
/*----------------------------------------*/
.rs-footer-one {
    position: relative;
    z-index: 1;
    background: var(--rs-bg-black);
}
.rs-footer-one .footer-top {
    padding-top: 60px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}
.rs-footer-one .rs-footer-widget-description {
    color: var(--rs-text-secondary);
    margin-bottom: 17px;
    margin-top: 25px;
    line-height: 25px;
    word-spacing: 5px;
}
.rs-footer-one .footer-widget-title {
    color: var(--rs-white);
    margin-bottom: 27px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    font-size: 20px;
}
@media only screen and (max-width: 1199px) {
    .rs-footer-one .footer-widget-title {
        font-size: 18px;
    }
}
.rs-footer-one .footer-widget-title::before {
    position: absolute;
    content: "";
    width: 121px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 0;
}
.rs-footer-one .footer-widget-title::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background: var(--rs-white);
    inset-inline-start: 0;
    bottom: 0px;
}
.rs-footer-one .rs-footer-widget-app {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 105px;
}
@media only screen and (max-width: 1199px) {
    .rs-footer-one .rs-footer-widget-app {
        margin-top: 60px;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 991px) {
    .rs-footer-one .rs-footer-widget-app {
        margin-top: 100px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-footer-one .rs-footer-widget-app {
        margin-top: 40px;
    }
}
.rs-footer-one .rs-footer-widget-app-thumb a {
    display: block;
}
.rs-footer-one .rs-footer-widget-app-thumb a:hover {
    transform: translateY(-3px);
}
.rs-footer-one .footer-widget-link ul li,
.rs-footer-one .footer-widget-contact ul li {
    list-style: none;
    line-height: 1;
    font-weight: 500;
    color: var(--rs-text-secondary);
}
.rs-footer-one .footer-widget-link ul li:not(:last-child),
.rs-footer-one .footer-widget-contact ul li:not(:last-child) {
    margin-bottom: 16px;
}
.rs-footer-one .footer-widget-link ul li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding-inline-start: 15px;
    transition: 0.5s;
}
.rs-footer-one .footer-widget-contact ul li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}
.rs-footer-one .footer-widget-link ul li a:hover {
    color: var(--rs-red);
    padding-inline-start: 20px;
}
.rs-footer-one .footer-widget-contact ul li a:hover {
    color: var(--rs-red);
}
.rs-footer-one .footer-widget-link ul li a::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #bebebe;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.rs-footer-one .footer-1-col-1 {
    margin-inline-end: 40px;
}
@media only screen and (max-width: 1199px) {
    .rs-footer-one .footer-1-col-1 {
        margin-inline-end: 0;
    }
}
.rs-footer-one .footer-1-col-2 {
    margin-inline-start: 10px;
}
@media only screen and (max-width: 1600px) {
    .rs-footer-one .footer-1-col-2 {
        margin-inline-start: 0;
    }
}
.rs-footer-one .footer-1-col-4 {
    margin-inline-start: 25px;
}
@media only screen and (max-width: 1600px) {
    .rs-footer-one .footer-1-col-4 {
        margin-inline-start: 0;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-footer-one .footer-widget-tags .sidebar-widget-content {
        padding: 15px;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-footer-one .footer-widget-tags .sidebar-widget-content a {
        font-size: 14px;
        padding: 6px 6px;
    }
}

/*----------------------------------------*/
/*  3.3.1 Copyright Style
/*----------------------------------------*/
.rs-copyright-one {
    position: relative;
    z-index: 1;
    background: var(--rs-bg-primary);
}
.rs-copyright-one .rs-footer-copyright-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rs-copyright-one .rs-footer-copyright-item {
    padding-top: 10px;
    padding-bottom: 10px;
}
.rs-copyright-one .rs-footer-copyright {
    text-align: center;
}
.rs-copyright-one .rs-footer-copyright a {
    color: var(--rs-red);
}
.rs-copyright-one .rs-footer-copyright a:hover {
    color: var(--rs-red);
}
.rs-copyright-one .rs-footer-copyright p {
    color: var(--rs-white);
    line-height: 25px;
}
.rs-copyright-one .rs-footer-copyright-link a {
    font-size: 16px;
    color: var(--rs-white);
}
.rs-copyright-one .rs-footer-copyright-link a:hover {
    color: var(--rs-red);
}

/*----------------------------------------*/
/*  4.1 About css
/*----------------------------------------*/
/* ONE parent relative */
.rs-about-one .rs-about-thumb-wrapper {
    position: relative;
    width: 100%;
}

/* Small image (top-left) */
.rs-about-one .rs-about-thumb.thumb-small {
    width: 260px;
    position: absolute;
    bottom: -50px;
    left: -45px;
    z-index: 2;
}

.rs-about-one .rs-about-thumb.thumb-small img {
    width: 100%;
    border-radius: 10px;
    border: 8px solid var(--rs-white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* Rotate badge → top-right of small image */
.rs-about-one .rs-about-meta {
    position: absolute;
    top: -50px;
    right: -10px;
    z-index: 3;
}

/* Rotate button */
.rs-about-one .rs-rotate-btn {
    width: 150px;
    height: 150px;
    background: var(--rs-white);
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.09);
    position: relative;
    padding: 2px;
}

/* Circle text */
.rs-about-one .rs-text-circle span {
    font-size: 14px;
    font-weight: 500;
}

/* Center logo */
.rs-about-one .rs-meta-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    z-index: 1;
}

.rs-about-one .rs-meta-shape img {
    animation: rs-scale 1s infinite alternate;
}

.rs-about-one .rs-about-thumb.thumb-large img {
    width: 100%;
    border-radius: 12px;
    border: 8px solid var(--rs-white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.rs-about-one .rs-about-description {
    margin-bottom: 0;
}

.rs-about-one .rs-about-description.has-space {
    margin-top: 16px;
    margin-bottom: 12px;
}

/*----------------------------------------*/
/*  4.17 Team css
/*----------------------------------------*/
/* Team Card Wrapper */
.team-card-wrapper {
    position: relative;
    padding: 0px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e80000, #ff6b6b, #e80000);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    margin-bottom: 10px;
}
@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}
/* Team Card */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(165deg, #ffffff 0%, #fff8f8 50%, #fff5f5 100%);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(232, 0, 0, 0.08);
}
/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 10;
}
/* Image Container */
.team-image-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}
.image-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #e80000;
    border-right-color: #e80000;
    animation: spin 4s linear infinite;
}
.image-ring:nth-child(2) {
    inset: 8px;
    border-top-color: rgba(232, 0, 0, 0.3);
    border-right-color: rgba(232, 0, 0, 0.3);
    animation-direction: reverse;
    animation-duration: 3s;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.image-wrapper {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e80000, #ff6b6b);
    padding: 3px;
    box-shadow:
        0 10px 30px rgba(232, 0, 0, 0.25),
        0 5px 15px rgba(232, 0, 0, 0.15);
    transition: all 0.4s ease;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}
/* Content */
.team-content {
    position: relative;
    z-index: 5;
}
.member-name {
    color: #2d3436;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}
.member-designation {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(232, 0, 0, 0.08);
    color: #e80000;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 20px 0;
    border: 1px solid rgba(232, 0, 0, 0.15);
    transition: all 0.4s ease;
}
/* Hover Effects */
.team-card-wrapper:hover .team-card {
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px rgba(232, 0, 0, 0.15),
        0 15px 30px rgba(232, 0, 0, 0.1);
}
.team-card-wrapper:hover .shine-effect {
    left: 100%;
}
.team-card-wrapper:hover .image-wrapper {
    transform: scale(1.05);
    box-shadow:
        0 15px 40px rgba(232, 0, 0, 0.35),
        0 8px 20px rgba(232, 0, 0, 0.2);
}
.team-card-wrapper:hover .image-wrapper img {
    transform: scale(1.1);
}
.team-card-wrapper:hover .member-name {
    color: #e80000;
}
.team-card-wrapper:hover .member-designation {
    background: #e80000;
    color: #fff;
    border-color: transparent;
}
.team-card-wrapper:hover .image-ring {
    border-color: #e80000;
}
/* Responsive */
@media (max-width: 768px) {
    .team-card {
        padding: 25px 20px;
    }
    .team-image-container {
        width: 110px;
        height: 110px;
        margin-bottom: 20px;
    }
    .member-name {
        font-size: 18px;
    }
    .member-designation {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/*----------------------------------------*/
/*   4.4 Contact css
/*----------------------------------------*/
/* ===== Section Space ===== */
.section-space {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== Contact Map Container ===== */
.contact-map {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
}

.contact-map:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* ===== Map Info Section ===== */
.map-info {
    flex: 0 0 45%;
    padding: 50px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.map-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #e80000, #ef5b5b, #a70303);
}

/* ===== Map Info Item ===== */
.m-inf-item {
    padding: 20px 10px;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-inf-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.05), transparent);
    transition: width 0.4s ease;
}

.m-inf-item:hover::before {
    width: 100%;
}

.m-inf-item:hover {
    border-color: #e80000;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.1);
    transform: translateX(10px);
}

.m-inf-item:last-child {
    margin-bottom: 0;
}

/* ===== Icon Styling ===== */
.icon-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.3s ease;
    border: 2px solid #ffd6d6;
}

.icon-lg i {
    font-size: 20px;
    color: #e80000;
    transition: transform 0.3s ease;
}

.m-inf-item:hover .icon-lg {
    background: linear-gradient(135deg, #e80000 0%, #c1121f 100%);
    border-color: #e80000;
    /* transform: rotate(10deg) scale(1.1); */
}

.m-inf-item:hover .icon-lg i {
    filter: brightness(0) invert(1);
    /* transform: scale(1.1); */
}

/* ===== Text Content ===== */
.m-inf-txt {
    flex: 1;
    position: relative;
    z-index: 1;
}

.m-inf-txt h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}

.m-inf-txt p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.m-inf-txt p + p {
    margin-top: 5px;
}

.m-inf-txt a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.m-inf-txt a:hover {
    color: #e80000;
}

.m-inf-txt a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e80000;
    transition: width 0.3s ease;
}

.m-inf-txt a:hover::after {
    width: 100%;
}

/* ===== Map Location Section ===== */
.map-loc {
    flex: 0 0 55%;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.map-loc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid #ffffff;
    z-index: 1;
    pointer-events: none;
}

.google-map {
    width: 100% !important;
    height: 100% !important;
    min-height: 450px;
    border: none !important;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-loc:hover .google-map {
    filter: grayscale(0%) contrast(1);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .map-info {
        flex: 0 0 50%;
        padding: 40px 30px;
    }

    .map-loc {
        flex: 0 0 50%;
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 60px 0;
    }

    .contact-map {
        flex-direction: column !important;
    }

    .map-info {
        flex: 0 0 100%;
        padding: 40px 30px;
    }

    .map-info::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }

    .map-loc {
        flex: 0 0 100%;
        min-height: 350px;
    }

    .google-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .section-space {
        padding: 50px 0;
    }

    .map-info {
        padding: 30px 20px;
    }

    .m-inf-item {
        padding: 20px;
        margin-bottom: 15px;
        flex-direction: column;
        text-align: center;
    }

    .icon-lg {
        margin-right: 0;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .m-inf-item:hover {
        transform: translateY(-5px);
    }

    .map-loc {
        min-height: 300px;
    }

    .google-map {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .section-space {
        padding: 40px 0;
    }

    .map-info {
        padding: 25px 15px;
    }

    .m-inf-item {
        padding: 18px 15px;
    }

    .icon-lg {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .icon-lg i {
        font-size: 20px;
    }

    /* .m-inf-txt h5::after {
                        display: none;
                    } */

    .map-loc {
        min-height: 250px;
    }

    .google-map {
        min-height: 250px;
    }
}

/* ===== Animation on Scroll (Optional) ===== */
.m-inf-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.5s ease forwards;
}
.m-inf-item:nth-child(1) {
    animation-delay: 0.1s;
}
.m-inf-item:nth-child(2) {
    animation-delay: 0.2s;
}
.m-inf-item:nth-child(3) {
    animation-delay: 0.3s;
}
.m-inf-item:nth-child(4) {
    animation-delay: 0.4s;
}
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ===== Pulse Animation for Icons ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}
.m-inf-item:hover .icon-lg {
    animation: pulse 1.5s infinite;
}
/*----------------------------------------*/
/*  4.22 video css
/*----------------------------------------*/
.rs-video-one .section-btn {
    display: flex;
    justify-content: end;
}
.rs-video-two {
    position: relative;
    z-index: 1;
}
.rs-video-two .rs-video-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.rs-video-two .rs-video-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0) 5%, #121213 90%);
    z-index: -1;
}
.rs-video-two .rs-video-bg-thumb.has-bg-gradient::before {
    background: linear-gradient(
        180deg,
        rgba(18, 18, 19, 0) -2.54%,
        #121213 71.44%
    );
}
.rs-video-two .rs-video-play-btn {
    padding-top: 182px;
}
@media only screen and (max-width: 1600px) {
    .rs-video-two .rs-video-play-btn {
        padding-top: 150px;
    }
}
@media only screen and (max-width: 1366px) {
    .rs-video-two .rs-video-play-btn {
        padding-top: 120px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-video-two .rs-video-play-btn {
        padding-top: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-video-two .rs-video-play-btn {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-video-two .rs-video-play-btn {
        padding-top: 60px;
    }
}
.rs-video-two .rs-video-content {
    padding-top: 182px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 1600px) {
    .rs-video-two .rs-video-content {
        padding-top: 150px;
    }
}
@media only screen and (max-width: 1366px) {
    .rs-video-two .rs-video-content {
        padding-top: 120px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-video-two .rs-video-content {
        padding-top: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-video-two .rs-video-content {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-video-two .rs-video-content {
        padding-top: 60px;
    }
}
.rs-video-three .rs-post-video-thumb {
    position: relative;
    z-index: 1;
    border: 12px solid var(--rs-bg-black);
    border-radius: 8px;
}
.rs-video-three .rs-post-video-thumb img {
    width: 100%;
    border-radius: 6px;
}
.rs-video-three .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*   4.7 feature css
/*----------------------------------------*/
.rs-feature-one .feature-wrapper {
    background: var(--rs-bg-secondary);
    padding: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--rs-border-primary);
}
@media only screen and (max-width: 1600px) {
    .rs-feature-one .feature-wrapper {
        padding: 20px;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-feature-one .feature-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 767px) {
    .rs-feature-one .feature-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
.rs-feature-one .shape-one {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
}
.rs-feature-one .shape-two {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
}

/*----------------------------------------*/
/*  4.12 overlay card css
/*----------------------------------------*/
.rs-post-overlay-one {
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}
.popularNewsSlider,
.popularNewsSlider .swiper-slide {
    height: 100%;
}

.rs-post-overlay-bg-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 991px) {
    .rs-post-overlay-one {
        height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-post-overlay-one {
        height: 300px;
    }
}
.popular-next,
.popular-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.popular-next::after,
.popular-prev::after {
    font-size: 18px;
    font-weight: bold;
}
.rs-post-overlay-one:hover .rs-post-overlay-bg-thumb {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-overlay-one .rs-post-overlay-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    background-position: top;
}
.rs-post-overlay-one .rs-post-overlay-bg-thumb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 19, 0) 18.83%,
        #121213 91.88%
    );
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-post-overlay-one .rs-post-overlay-title {
    margin-top: 15px;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.rs-post-overlay-one .rs-post-overlay-title.is-white {
    color: var(--rs-white);
}
.rs-post-overlay-one .rs-post-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top: 40px;
    padding-inline-end: 25px;
    padding-bottom: 20px;
    padding-inline-start: 25px;
}
@media only screen and (max-width: 480px) {
    .rs-post-overlay-one .rs-post-overlay-content {
        padding-top: 15px;
        padding-inline-end: 15px;
        padding-bottom: 15px;
        padding-inline-start: 10px;
    }
}
.rs-post-overlay-two {
    position: relative;
    height: 460px;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}
@media only screen and (max-width: 991px) {
    .rs-post-overlay-two {
        height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-post-overlay-two {
        height: 350px;
    }
}
.rs-post-overlay-two:hover .rs-post-overlay-bg-thumb {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-overlay-two .rs-post-overlay-bg-thumb {
    position: absolute;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.rs-post-overlay-two .rs-post-overlay-bg-thumb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 19, 0) 18.83%,
        #121213 91.88%
    );
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-post-overlay-two .rs-post-overlay-title {
    margin-top: 15px;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.rs-post-overlay-two .rs-post-overlay-title.is-white {
    color: var(--rs-white);
}
.rs-post-overlay-two .rs-post-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top: 40px;
    padding-inline-end: 80px;
    padding-bottom: 35px;
    padding-inline-start: 40px;
}
@media only screen and (max-width: 1199px) {
    .rs-post-overlay-two .rs-post-overlay-content {
        padding-top: 40px;
        padding-inline-end: 40px;
        padding-bottom: 35px;
        padding-inline-start: 40px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-post-overlay-two .rs-post-overlay-content {
        padding-top: 25px;
        padding-inline-end: 25px;
        padding-bottom: 25px;
        padding-inline-start: 25px;
    }
}
.rs-post-overlay-three {
    position: relative;
    height: 460px;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}
.rs-post-overlay-three:hover .rs-post-overlay-bg-thumb {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-overlay-three .rs-post-overlay-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.rs-post-overlay-three .rs-post-overlay-bg-thumb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 19, 0) 18.83%,
        #121213 91.88%
    );
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-post-overlay-three .rs-post-overlay-title {
    margin-top: 15px;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.rs-post-overlay-three .rs-post-overlay-title.is-white {
    color: var(--rs-white);
}
.rs-post-overlay-three .rs-post-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top: 40px;
    padding-inline-end: 40px;
    padding-bottom: 35px;
    padding-inline-start: 40px;
}
@media only screen and (max-width: 480px) {
    .rs-post-overlay-three .rs-post-overlay-content {
        padding-top: 25px;
        padding-inline-end: 25px;
        padding-bottom: 25px;
        padding-inline-start: 25px;
    }
}
.rs-post-overlay-four {
    position: relative;
    height: 500px;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}
.rs-post-overlay-four:hover .rs-post-overlay-bg-thumb {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-overlay-four .rs-post-overlay-bg-thumb {
    position: absolute;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.rs-post-overlay-four .rs-post-overlay-bg-thumb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 19, 0) 18.83%,
        #121213 91.88%
    );
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-post-overlay-four .rs-post-overlay-title {
    margin-top: 15px;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.rs-post-overlay-four .rs-post-overlay-title.is-white {
    color: var(--rs-white);
}
.rs-post-overlay-four .rs-post-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 40px 40px 35px 40px;
}
@media only screen and (max-width: 1600px) {
    .rs-post-overlay-four .rs-post-overlay-content {
        padding: 30px 30px 25px 30px;
    }
}

/*----------------------------------------*/
/*  4.14 small card css
/*----------------------------------------*/
.rs-post-small-two {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow:
        rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding: 5px;
    border-radius: 8px;
    background: var(--rs-white);
}
@media only screen and (max-width: 1600px) {
    .rs-post-small-two {
        align-items: unset;
    }
}
@media only screen and (max-width: 480px) {
    .rs-post-small-two {
        /* flex-wrap: wrap; */
        padding: 5px;
        gap: 10px;
    }
}
.rs-post-small-two:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-small-two .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}
@media only screen and (max-width: 1600px) {
    .rs-post-small-two .rs-post-small-thumb {
        min-width: 100px;
        max-width: 100px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-post-small-two .rs-post-small-thumb {
        min-width: 100px;
        max-width: 100px;
    }
}
.rs-post-small-two .rs-post-small-thumb a {
    display: block;
}
.rs-post-small-two .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}
.rs-post-small-two .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-size: 16px;
}
.rs-post-small-two .rs-post-small-title a {
    background-size: 0 1px;
}
.rs-post-small-two .rs-post-small-title a:hover {
    background-size: 100% 1px;
}
.rs-post-small-three .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
@media only screen and (max-width: 480px) {
    .rs-post-small-three .rs-post-small-thumb {
        min-width: 100px;
        max-width: 100px;
    }
}
.rs-post-small-three .rs-post-small-thumb a {
    display: block;
}
.rs-post-small-three .rs-post-small-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
    object-position: top;
}
.rs-post-small-three .rs-post-small-title {
    margin-top: 5px;
    margin-bottom: 1px;
    text-transform: capitalize;
    font-size: 15px;
}
.rs-post-small-three .rs-post-small-title a {
    background-size: 0 1px;
}
.rs-post-small-three .rs-post-small-title a:hover {
    background-size: 100% 1px;
}
.rs-post-small-three .rs-post-small-item {
    border-bottom: 1px solid #fcc2c2;
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media only screen and (max-width: 500px) {
    .rs-post-small-three .rs-post-small-item {
        /* flex-wrap: wrap; */
        gap: 10px;
    }
    .rs-post-small-three .rs-post-small-title {
        font-size: 13px;
    }
}
.rs-post-small-three .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-small-three .rs-post-small-item:first-child {
    padding-top: 25px;
}
.rs-post-small-three .rs-post-small-item:last-child {
    margin-bottom: 0;
}
/** Trending slider **/
.latest-news-slider-wrap {
    position: relative;
}
.latestNewsSwiper {
    padding-bottom: 70px; /* creates safe space for arrows */
}

.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

/* Image */
.news-card-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    object-position: top;
}

/* Content */
.news-card-content {
    padding: 14px;
}

.news-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #e80000;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.news-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0 10px;
}

.news-card-title a {
    color: #111;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
}
.latest-nav {
    position: absolute;
    bottom: 0px; /* INSIDE the swiper */
    left: 50%; /* horizontal center */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
}

/* Left arrow */
.latest-nav-prev {
    transform: translateX(-135%);
}

/* Right arrow */
.latest-nav-next {
    transform: translateX(35%);
}

/* Hover */
.latest-nav:hover {
    background: #e80000;
}

@media (max-width: 768px) {
    .latestNewsSwiper {
        padding-bottom: 56px;
    }

    .latest-nav {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .latest-nav-prev {
        transform: translateX(-120%);
    }

    .latest-nav-next {
        transform: translateX(20%);
    }
    .news-card-thumb img {
        height: 120px;
    }
    .news-card-content {
        padding: 9px;
    }
    .news-card-title {
        margin: 0px 0 4px;
    }
}
/*----------------------------------------*/
/*  4.11 medium card css
/*----------------------------------------*/
.rs-post-medium-one .rs-post-medium-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #fcc2c2;
}
@media only screen and (max-width: 767px) {
    .rs-post-medium-one .rs-post-medium-item {
        border-bottom: 0;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-post-medium-one .rs-post-medium-item {
        grid-template-columns: 350px 1fr;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-post-medium-one .rs-post-medium-item {
        grid-template-columns: 200px 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .rs-post-medium-one .rs-post-medium-item {
        /* grid-template-columns: 1fr; */
        gap: 12px;
        padding-bottom: 35px;
        margin-bottom: 0px;
    }
}
@media only screen and (max-width: 500px) {
    .rs-post-medium-one .rs-post-medium-item {
        grid-template-columns: 150px 1fr;
    }
}
.rs-post-medium-one .rs-post-medium-item:hover .rs-post-medium-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-medium-one .rs-post-medium-item:first-child {
    /* border-top: 1px solid var(--rs-border-primary); */
    padding-top: 12px;
}
@media only screen and (max-width: 767px) {
    .rs-post-medium-one .rs-post-medium-item:first-child {
        border-top: 0;
        padding-top: 0;
    }
}
.rs-post-medium-one .rs-post-medium-item:last-child {
    margin-bottom: 0;
}
.rs-post-medium-one .rs-post-medium-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.rs-post-medium-one .rs-post-medium-thumb a {
    display: block;
}
.rs-post-medium-one .rs-post-medium-thumb img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
    height: 155px;
}
.rs-post-medium-one .rs-post-medium-content {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
@media only screen and (max-width: 767px) {
    .rs-post-medium-one .rs-post-medium-content {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.rs-post-medium-one .rs-post-description {
    margin-bottom: 10px;
}
.rs-post-medium-one .rs-post-medium-title {
    margin-top: 12px;
    margin-bottom: 8px;
    text-transform: capitalize;
    max-width: 400px;
    font-size: 18px;
}
.rs-post-medium-one .rs-post-medium-title a {
    background-size: 0 1px;
}
.rs-post-medium-one .rs-post-medium-title a:hover {
    background-size: 100% 1px;
}
.rs-post-medium-two .rs-post-medium-item {
    position: relative;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 12px 12px 20px 12px;
    border-radius: 8px;
    /* margin-bottom: 20px; */
}
.rs-post-medium-two .rs-post-medium-item:hover .rs-post-medium-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-medium-two .rs-post-medium-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.rs-post-medium-two .rs-post-medium-thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: top;
    transform: scale(1.02);
    transition: all 0.8s ease;
}
.rs-post-medium-two .rs-post-medium-content {
    padding-top: 25px;
    padding-inline-start: 5px;
}

.rs-post-medium-two .rs-post-medium-title {
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize;
    max-width: 400px;
    font-size: 16px;
}
.rs-post-medium-two .rs-post-medium-title a {
    background-size: 0 1px;
}
.rs-post-medium-two .rs-post-medium-title a:hover {
    background-size: 100% 1px;
}
.rs-post-medium-two .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 480px) {
    .rs-post-medium-two .rs-post-medium-content {
        padding-inline-start: 0px;
        padding-top: 15px;
    }
    .rs-post-medium-two .rs-post-medium-title {
        font-size: 14px;
    }
    .rs-post-medium-two .rs-post-medium-item {
        padding: 12px 12px 15px 12px;
    }
    .rs-post-medium-one .rs-post-medium-title {
        font-size: 15px;
        margin-bottom: 2px;
        margin-top: 6px;
    }
    .rs-post-medium-one .rs-post-medium-item {
        gap: 10px;
    }
    .rs-post-medium-one .rs-post-medium-thumb img {
        height: 125px;
    }
}
/*----------------------------------------*/
/*  4.21 video card css
/*----------------------------------------*/
.rs-post-video-one {
    height: 100%;
}
.rs-post-video-one .rs-post-video-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top: 40px;
    padding-inline-end: 90px;
    padding-bottom: 40px;
    padding-inline-start: 40px;
}
@media only screen and (max-width: 1366px) {
    .rs-post-video-one .rs-post-video-content {
        padding: 40px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-post-video-one .rs-post-video-content {
        padding: 30px;
    }
}
.rs-post-video-one .rs-post-video-item {
    position: relative;
    height: 100%;
}
.rs-post-video-one .rs-post-video {
    height: 100%;
}
@media only screen and (max-width: 991px) {
    .rs-post-video-one .rs-post-video {
        height: 300px;
    }
}
.rs-post-video-one .rs-post-video video {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}
.rs-post-video-one .rs-post-video-title {
    color: var(--rs-white);
    margin-top: 15px;
    margin-bottom: 9px;
}
.rs-post-video-three .rs-post-video-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
@media (max-width: 991px) {
    .rs-post-video-three {
        margin-top: 90px;
    }
}
.rs-post-video-three .rs-post-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}
.rs-post-video-three .rs-post-video-title {
    margin-top: 3px;
    margin-bottom: 2px;
    text-transform: capitalize;
    font-size: 15px;
}
.rs-post-video-three .rs-post-video-title a {
    background-size: 0 1px;
}
.rs-post-video-three .rs-post-video-title a:hover {
    background-size: 100% 1px;
}
.rs-post-video-three .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rs-post-video-three .rs-post-video-item {
    border-bottom: 1px solid var(--rs-border-secondary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media only screen and (max-width: 480px) {
    .rs-post-video-three .rs-post-video-item {
        gap: 8px;
    }
    .rs-post-video-three .rs-post-video-thumb {
        min-width: 130px;
        max-width: 130px;
    }
    .rs-post-video-three .rs-post-video-title {
        font-size: 13px;
    }
}
.rs-post-video-three .rs-post-video-item:hover .rs-post-video-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-post-video-three .rs-post-video-item:first-child {
    border-top: 1px solid var(--rs-border-secondary);
    padding-top: 12px;
}
.rs-post-video-three .rs-post-video-item:last-child {
    margin-bottom: 0;
}
/*----------------------------------------*/
/*  4.2 Heading CSS
/*----------------------------------------*/
.common-section-title {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin: 0 0 18px;
    padding: 10px 20px; /* space after line */
    overflow: hidden;
}

/* LEFT VERTICAL LINE (touches top & bottom) */
.common-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e80000, #f62b2b, #f18787);
    z-index: 2;
    border-radius: 10px 0px 0px 10px;
}

/* FULL-WIDTH BACKGROUND AFTER THE LINE */
.common-section-title::after {
    content: "";
    position: absolute;
    left: 4px; /* starts AFTER the line */
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 0, 0, 0.1),
        /* light red on left */ rgba(255, 0, 0, 0)
            /* fully transparent on right */
    );
    z-index: 1;
    border-radius: 0px 20px 20px 0px;
}

/* Keep text above everything */
.common-section-title {
    z-index: 3;
}

@media (max-width: 575px) {
    .common-section-title {
        position: relative;
        font-size: 18px;
        font-weight: 600;
        color: #111;
        margin: 0 0 18px;
        padding: 7px 14px;
        overflow: hidden;
    }
}

/*----------------------------------------*/
/*  4.2 ad banner css
/*----------------------------------------*/
.rs-ad-banner-one {
    position: relative;
}

.rs-ad-banner-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* Image */
.rs-ad-banner-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    transition: transform 0.6s ease;
}

/* Hover effect */
.rs-ad-banner-thumb:hover img {
    transform: scale(1.04);
}

/* Glow shadow */
.rs-ad-banner-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.rs-ad-banner-thumb:hover::after {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Sponsored tag */
.ad-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e80000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Dark mode support */
[rs-theme="rs-theme-dark"] .rs-ad-banner-thumb {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
}

/* Mobile polish */
@media (max-width: 576px) {
    .ad-label {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/*----------------------------------------*/
/*  4.19 Trending News css
/*----------------------------------------*/
.rs-trending-news-one .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-trending-news-one .section-btn {
        justify-content: start;
    }
}
.rs-trending-news-two .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-trending-news-two .section-btn {
        justify-content: start;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-trending-news-three .rs-post-overlay-one {
        height: 450px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-trending-news-three .rs-post-overlay-one {
        height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-trending-news-three .rs-post-overlay-one {
        height: 350px;
    }
}

/*----------------------------------------*/
/*  4.3 categories css
/*----------------------------------------*/
.rs-categories-one {
    background: var(--rs-white);
    border: 1px solid var(--rs-border-primary);
    border-radius: 8px;
    padding: 20px 30px 30px 30px;
}
@media only screen and (max-width: 1600px) {
    .rs-categories-one {
        padding: 10px 20px 20px 20px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-categories-one {
        padding: 20px 30px 30px 30px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-categories-one {
        padding: 10px 20px 20px 20px;
    }
}
.rs-categories-one ul li {
    list-style: none;
}
.rs-categories-one ul li:not(:last-child) {
    margin-bottom: 12px;
}
.rs-categories-one ul li .rs-categories-bg-thumb {
    position: relative;
    width: 100%;
    height: 52px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
}
.rs-categories-one ul li .rs-categories-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: -1;
    border-radius: 3px;
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}
.rs-categories-one ul li .rs-categories-bg-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--rs-red);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.rs-categories-one ul li .rs-categories-bg-thumb:hover::before {
    opacity: 0;
}
.rs-categories-one ul li .rs-categories-bg-thumb:hover::after {
    opacity: 1;
}
.rs-categories-one .rs-categories-btn {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
[dir="rtl"] .rs-categories-one .rs-categories-btn {
    transform: rotate(180deg);
}
.rs-categories-one .rs-categories-name {
    font-size: 16px;
    color: var(--rs-white);
    font-weight: 500;
}
.rs-categories-two .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-categories-two .section-btn {
        justify-content: start;
    }
}
.rs-categories-two .rs-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}
@media only screen and (max-width: 1600px) {
    .rs-categories-two .rs-categories-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media only screen and (max-width: 1199px) {
    .rs-categories-two .rs-categories-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (max-width: 991px) {
    .rs-categories-two .rs-categories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 767px) {
    .rs-categories-two .rs-categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 480px) {
    .rs-categories-two .rs-categories-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
.rs-categories-two .rs-categories-item {
    padding: 12px;
    border: 1px solid var(--rs-border-secondary);
    border-radius: 8px;
}
.rs-categories-two .rs-categories-item:hover .rs-categories-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-categories-two .rs-categories-thumb {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.rs-categories-two .rs-categories-thumb img {
    width: 100%;
    transform: scale(1.02);
    transition: all 0.8s ease;
}
.rs-categories-two .rs-categories-title {
    color: var(--rs-white);
}
.rs-categories-two .rs-categories-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.rs-categories-two .rs-categories-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rs-categories-three .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-categories-three .section-btn {
        justify-content: start;
    }
}
.rs-categories-three .rs-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}
@media only screen and (max-width: 1600px) {
    .rs-categories-three .rs-categories-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media only screen and (max-width: 1199px) {
    .rs-categories-three .rs-categories-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (max-width: 991px) {
    .rs-categories-three .rs-categories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 767px) {
    .rs-categories-three .rs-categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 480px) {
    .rs-categories-three .rs-categories-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
.rs-categories-three .rs-categories-item {
    padding: 12px;
    border: 1px solid var(--rs-border-primary);
    border-radius: 8px;
}
.rs-categories-three .rs-categories-item:hover .rs-categories-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}
.rs-categories-three .rs-categories-thumb {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.rs-categories-three .rs-categories-thumb img {
    width: 100%;
    transform: scale(1.02);
    transition: all 0.8s ease;
}
.rs-categories-three .rs-categories-meta {
    font-size: 13px;
    color: var(--rs-text-primary);
}
.rs-categories-three .rs-categories-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*----------------------------------------*/
/*  4.15 social card css
/*----------------------------------------*/
.np-social-inline {
    background: #ffffff;
    padding: 16px;
    border-radius: 9px;
}

/* .np-social-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    border-left: 4px solid #e10600;
    padding-left: 10px;
} */

/* Inline List */
.np-social-inline-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each Icon */
.np-social-inline-list li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

/* Hover */
.np-social-inline-list li a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Platform Colors */
.np-social-inline-list .facebook a {
    background: #1877f2;
}

.np-social-inline-list .twitter a {
    background: #1da1f2;
}

.np-social-inline-list .instagram a {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.np-social-inline-list .youtube a {
    background: #ff0000;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .np-social-inline-list {
        gap: 12px;
    }
}
/*----------------------------------------*/
/*  4.20 Trending News css
/*----------------------------------------*/
.rs-trending-stories-one .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-trending-stories-one .section-btn {
        justify-content: start;
    }
}

/*----------------------------------------*/
/*  4.8 featured post css
/*----------------------------------------*/
.rs-featured-post-one .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-featured-post-one .section-btn {
        justify-content: start;
    }
}
.rs-featured-post-two .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-featured-post-two .section-btn {
        justify-content: start;
    }
}
@media only screen and (max-width: 1199px) {
    .rs-featured-post-two .rs-post-overlay-one {
        height: 500px;
    }
}
@media only screen and (max-width: 991px) {
    .rs-featured-post-two .rs-post-overlay-one {
        height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .rs-featured-post-two .rs-post-overlay-one {
        height: 350px;
    }
}

/*----------------------------------------*/
/*  4.18 top stories css
/*----------------------------------------*/
.rs-top-stories-one .section-btn {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 991px) {
    .rs-top-stories-one .section-btn {
        justify-content: start;
    }
}
@media only screen and (max-width: 991px) {
    .rs-top-stories-one .rs-post-overlay-one {
        height: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .rs-top-stories-one .rs-post-overlay-one {
        height: 350px;
    }
}
@media only screen and (max-width: 1600px) {
    .rs-top-stories-one .rs-post-overlay-content {
        padding: 30px 30px 30px 30px;
    }
}
@media only screen and (max-width: 480px) {
    .rs-top-stories-one .rs-post-overlay-content {
        padding: 25px 25px 25px 25px;
    }
}

/*----------------------------------------*/
/*  4.9 latest post css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.23 work
/*----------------------------------------*/
.rs-work-one .rs-work-wrapper {
    /* border-top: 1px solid var(--rs-border-primary);
    padding-top: 40px; */
    margin-top: 30px;
}
.rs-work-one .rs-work-thumb img {
    width: 100%;
    border-radius: 8px;
    box-shadow:
        rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.rs-work-one .rs-work-description {
    margin-top: 20px;
}

/*----------------------------------------*/
/*  4.16 sports
/*----------------------------------------*/
.rs-sports-score-one {
    background: radial-gradient(
        151.64% 120.36% at 47.19% -0.63%,
        rgba(66, 69, 86, 0.4) 0%,
        rgba(175, 188, 255, 0) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(21px);
    border-radius: 8px;
    padding-top: 18px;
    padding-inline-end: 24px;
    padding-bottom: 18px;
    padding-inline-start: 24px;
}
@media only screen and (max-width: 575px) {
    .rs-sports-score-one {
        padding-top: 18px;
        padding-inline-end: 15px;
        padding-bottom: 18px;
        padding-inline-start: 15px;
    }
}
.rs-sports-score-one .rs-sports-score-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rs-sports-score-one .rs-sports-score-title-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-sports-score-one .rs-sports-score-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--rs-white);
    text-transform: capitalize;
}
.rs-sports-score-one .rs-sports-score-meta {
    font-size: 14px;
    font-weight: 400;
    color: var(--rs-white);
    text-transform: capitalize;
}
.rs-sports-score-one .rs-sports-team-icon {
    width: 40px;
    height: 40px;
    background: var(--rs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.rs-sports-score-one .rs-sports-team-name {
    font-size: 14px;
    color: var(--rs-white);
}
.rs-sports-score-one .rs-sports-score-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.rs-sports-score-one .rs-sports-score-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--rs-white);
}
.rs-sports-score-two {
    background: radial-gradient(
        151.64% 120.36% at 47.19% -0.63%,
        rgba(66, 69, 86, 0.4) 0%,
        rgba(175, 188, 255, 0) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(21px);
    border-radius: 8px;
    padding-top: 18px;
    padding-inline-end: 20px;
    padding-bottom: 18px;
    padding-inline-start: 24px;
    margin-top: 25px;
}
@media only screen and (max-width: 575px) {
    .rs-sports-score-two {
        padding-top: 18px;
        padding-inline-end: 15px;
        padding-bottom: 18px;
        padding-inline-start: 15px;
    }
}
.rs-sports-score-two .rs-sports-point-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-sports-score-two .rs-sports-point-info span {
    font-size: 14px;
    color: var(--rs-white);
    font-weight: 400;
}
.rs-sports-score-two .rs-sports-score-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.rs-sports-score-two .rs-sports-score-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--rs-white);
}
.rs-sports-score-two .rs-sports-point-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-sports-score-two .rs-sports-point-info span {
    font-size: 14px;
    color: var(--rs-white);
    font-weight: 400;
    width: 18px;
    justify-content: center;
    display: flex;
}
.rs-sports-score-two .rs-sports-team-name {
    font-size: 15px;
    font-weight: 400;
    color: var(--rs-white);
}
.rs-sports-score-two .rs-sports-point-number {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rs-sports-score-two .rs-sports-point-number span {
    font-size: 14px;
    color: var(--rs-white);
    font-weight: 400;
    width: 18px;
    justify-content: center;
    display: flex;
}
.rs-sports-score-two .rs-sports-score-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.rs-sports-score-two .rs-sports-score-item:not(:last-child) {
    margin-bottom: 8px;
}
.rs-sports-score-two .rs-sports-score-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*----------------------------------------*/
/*  4.10 login
/*----------------------------------------*/
.rs-login-wrapper {
    background-color: var(--rs-white);
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
    padding: 30px 30px;
    margin: 0 auto;
    border-radius: 8px 0 0px 8px;
}
@media only screen and (max-width: 480px) {
    .rs-login-wrapper {
        padding: 25px 25px;
    }
}
.rs-login-wrapper input[type="checkbox"] ~ label {
    color: var(--rs-black);
}
.rs-login-wrapper input[type="checkbox"] ~ label::after {
    border: 1px solid rgba(102, 102, 102, 0.278);
    z-index: 1;
}
.rs-login-wrapper input[type="checkbox"] ~ label::before {
    color: var(--rs-white);
    z-index: 2;
}
.rs-login-wrapper .form-input-title label {
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 16px;
    text-align: left;
    display: block;
    font-weight: 500;
    color: var(--rs-black);
}
.rs-login-thumb {
    height: 100%;
}
.rs-login-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0px;
}
.rs-login-link {
    color: var(--rs-red);
}
.rs-login-link:hover {
    color: var(--rs-black);
}
.rs-login-btn .rs-btn {
    height: 50px;
}
.rs-login-meta-divider-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 -15px;
    margin-top: 30px;
}
.rs-login-meta-divider-line {
    position: relative;
    background-image: linear-gradient(90deg, #46494d, rgba(33, 38, 45, 0));
    width: 100%;
    height: 1px;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
}
.rs-login-meta-divider-line.left-line {
    background-image: linear-gradient(-90deg, #46494d, rgba(33, 38, 45, 0));
}
.rs-login-meta-divider-line-right-line {
    background-image: linear-gradient(90deg, #46494d, rgba(33, 38, 45, 0));
}
.rs-login-meta-divider-title {
    position: relative;
    padding: 0 15px;
    width: max-content;
    font-size: 17px;
    color: var(--rs-black);
}
.rs-login-label {
    color: var(--rs-black);
}

/*----------------------------------------*/
/*  4.6 error
/*----------------------------------------*/
/* .error-wrapper {
    position: relative;
}
.error-wrapper .section-title {
    font-size: 50px;
}
@media only screen and (max-width: 1366px) {
    .error-wrapper .section-title {
        font-size: 45px;
    }
}
@media only screen and (max-width: 1199px) {
    .error-wrapper .section-title {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .error-wrapper .section-title {
        font-size: 35px;
    }
}
@media only screen and (max-width: 575px) {
    .error-wrapper .section-title {
        font-size: 30px;
    }
}
@media only screen and (max-width: 480px) {
    .error-wrapper .section-title {
        font-size: 25px;
    }
}

.error-title {
    font-size: 500px;
    line-height: 0.8;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 1600px) {
    .error-title {
        font-size: 400px;
    }
}
@media only screen and (max-width: 1199px) {
    .error-title {
        font-size: 300px;
    }
}
@media only screen and (max-width: 991px) {
    .error-title {
        font-size: 200px;
    }
}
@media only screen and (max-width: 767px) {
    .error-title {
        font-size: 150px;
    }
} */

/*----------------------------------------*/
/*  4.13 privacy policy css
/*----------------------------------------*/
.policy-wrapper {
    padding: 50px 50px 50px 50px;
    background-color: var(--rs-white);
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 767px) {
    .policy-wrapper {
        padding: 40px 40px;
    }
}
@media only screen and (max-width: 575px) {
    .policy-wrapper {
        padding: 30px 20px;
    }
}
.policy-meta {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.policy-title {
    margin-bottom: 10px;
    font-size: 20px;
}
@media only screen and (max-width: 575px) {
    .policy-title {
        font-size: 22px;
    }
}
.policy-item:not(:last-child) {
    margin-bottom: 25px;
}
.policy-item ul li {
    font-size: 16px;
    position: relative;
    padding-inline-start: 15px;
    list-style: none;
}
.policy-item ul li::after {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--rs-red);
    border-radius: 50%;
}
.policy-item ul li:not(:last-child) {
    margin-bottom: 5px;
}
.policy-item ul li b {
    color: var(--rs-black);
}
.policy-contact ul {
    margin-bottom: 10px;
}
.policy-contact ul li {
    list-style: none;
    font-size: 16px;
    color: var(--rs-black);
}
.policy-contact ul li:hover {
    color: var(--rs-red);
}
.policy-address p {
    font-size: 16px;
    line-height: 1.5;
}

/*----------------------------------------*/
/*  2.21 Fixed footer
/*----------------------------------------*/
.mobile-footer {
    display: none;
}
@media (max-width: 767px) {
    .mobile-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0px;
        z-index: 1000;
    }
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666666;
        padding: 7px 15px 3px 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .nav-item i {
        font-size: 19px;
        margin-bottom: 2px;
        transition: all 0.3s ease;
    }
    .nav-item span {
        font-size: 10px;
        font-weight: 500;
    }
    .nav-item.active,
    .nav-item:hover {
        color: #e80000;
    }
    .nav-item.active i,
    .nav-item:hover i {
        color: #e80000;
        transform: scale(1.1);
    }
    .content {
        padding: 20px;
        min-height: 100vh;
    }
    /*scroll to top*/
    .backtotop-gradient {
        bottom: 65px;
    }
    /*Copyright*/
    .rs-copyright-one .rs-footer-copyright-item {
        padding-bottom: 65px;
    }
    /* .nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 5px;
    height: 5px;
    background-color: #e80000;
    border-radius: 50%;
}
.nav-item {
    position: relative;
} */
}

/*----------------------------------------*/
/*  2.21 Video page css
/*----------------------------------------*/
.sn-video-card {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sn-video-content {
    padding: 15px 10px;
}

.sn-video-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin-bottom: 8px;
}

.sn-watch-youtube {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e80000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sn-watch-youtube i {
    font-size: 15px;
}

.sn-watch-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    color: #fff;
}

.sn-video-thumb {
    position: relative;
    cursor: pointer;
}

.sn-video-thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.sn-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sn-play-icon i {
    width: 48px;
    height: 48px;
    background: #e80000;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    position: relative;
    z-index: 3;
}

.sn-play-icon::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: sn-pulse 1500ms ease-out infinite;
    z-index: 1;
}

.sn-play-icon::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    background: #e80000;
    border-radius: 50%;
    z-index: 2;
}

@keyframes sn-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.sn-video-thumb:hover .sn-play-icon i {
    transform: scale(1.1);
    background: #e80000;
}

@media (max-width: 768px) {
    .sn-video-title {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .sn-video-title {
        font-size: 13px;
    }
    .sn-watch-youtube i {
        font-size: 13px;
    }
    .sn-watch-youtube {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/*----------------------------------------*/
/*  2.21 Inquiry form design
/*----------------------------------------*/

.animated-border {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.animated-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e80000, #ed4747, #fd7777, #e80000);
    animation: borderSlide 30s linear infinite;
}

@keyframes borderSlide {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    50.01% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.animated-border:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ===== Form Header ===== */
.form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fcc2c2;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* ===== News Badge ===== */
.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #e80000, #c1121f);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    margin-bottom: 10px;
}

/* ===== Form Input Box ===== */
.form-input-box {
    position: relative;
    margin-bottom: 5px;
}

/* ===== Form Input Title ===== */
.form-input-title {
    margin-bottom: 6px;
}

.form-input-title label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-input-title label::before {
    content: "";
    width: 2px;
    height: 17px;
    background: #e80000;
    border-radius: 2px;
    margin-right: -1px;
}

.form-input-title .text-danger {
    color: #e80000 !important;
    font-size: 1.1rem;
}

/* ===== Input & Textarea Styling ===== */
.form-input {
    position: relative;
}

.form-input input,
.form-input textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 15px;
    font-family: inherit;
    color: #2b2d42;
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
    color: #6c757d;
    opacity: 0.7;
    font-size: 14px;
}

/* Hover State */
.form-input input:hover,
.form-input textarea:hover {
    background: #eef1f5;
    border-color: #e9ecef;
}

/* Focus State */
.form-input input:focus,
.form-input textarea:focus {
    background: #ffffff;
    border-color: #e80000;
    box-shadow: 0 0 0 4px rgba(248, 57, 39, 0.12);
}
/* ===== Textarea Specific ===== */
.form-input textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* ===== Submit Button ===== */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, #e80000, #c1121f);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* ===== Error State ===== */
.form-input input:invalid:not(:placeholder-shown) {
    border-color: #e80000;
    background: #fff8f8;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .animated-border {
        padding: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    .animated-border {
        padding: 30px 20px !important;
    }

    .form-input input,
    .form-input textarea {
        padding: 13px 15px;
    }

    .btn-primary {
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .animated-border {
        padding: 25px 15px !important;
    }
}

/*----------------------------------------*/
/*  2.21 News category design
/*----------------------------------------*/
.category-card-wrapper {
    position: relative;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e80000, #f58d8d, #e80000);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 20px;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Floating Particles */
.category-card::before,
.category-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.15);
    filter: blur(25px);
    transition: all 0.5s ease;
}

.category-card::before {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -50px;
}

.category-card::after {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    background: rgba(116, 185, 255, 0.2);
}

/* Icon Container */
.icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #e80000;
    border-right-color: #e80000;
    animation: spin 3s linear infinite;
}

.icon-ring:nth-child(2) {
    inset: 8px;
    border-top-color: rgba(255, 107, 157, 0.4);
    border-right-color: rgba(255, 107, 157, 0.4);
    animation-direction: reverse;
    animation-duration: 2s;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.icon-wrap {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.15),
        rgba(116, 185, 255, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-wrap i {
    font-size: 32px;
    background: linear-gradient(135deg, #e80000, #e80000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

/* Card Title */
.category-card h5 {
    color: #2d3436;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 0;
    transition: all 0.4s ease;
}

/* Card Count Badge */
.card-count {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e80000, #f45d5d);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.4s ease;
}

/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: left 0.6s ease;
}

/* Hover Effects */
.category-card-wrapper:hover .category-card {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(255, 107, 157, 0.2),
        0 0 100px rgba(116, 185, 255, 0.1);
}

.category-card-wrapper:hover .shine-effect {
    left: 100%;
}

.category-card-wrapper:hover .icon-wrap {
    background: linear-gradient(135deg, #e80000, #f45d5d);
    transform: scale(1.1);
}

.category-card-wrapper:hover .icon-wrap i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.2);
}

.category-card-wrapper:hover .icon-ring {
    border-color: #e80000;
}

.category-card-wrapper:hover h5 {
    color: #e80000;
}

/* Responsive */
@media (max-width: 768px) {
    .category-card h5 {
        font-size: 15px;
    }

    .card-count {
        padding: 3px 10px;
        font-size: 11px;
        margin-top: 8px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .icon-wrap i {
        font-size: 24px;
    }
}

/*----------------------------------------*/
/*  Subscribe bell container
/*----------------------------------------*/
.subscribe-bell-container {
    position: fixed;
    bottom: 0.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

/* Bell button */
.bell-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #f9fafb;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bell-button:hover {
    transform: scale(1.1);
}

.bell-button.subscribed {
    background-color: #fee2e2;
}

/* Bell icon */
.bell-icon {
    width: 28px;
    height: 28px;
    stroke: #ff0000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.3s ease;
}

.bell-button.subscribed .bell-icon {
    stroke: #ef4444;
    fill: #ef4444;
}

.bell-button.animate .bell-icon {
    animation: pulse 1s ease;
}

/* Notification dot */
.notification-dot {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: none;
}

.bell-button.subscribed .notification-dot {
    display: block;
}

.dot-ping {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #f87171;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-center {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}

/* Label */
.subscribe-label {
    margin-top: 0.5rem;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ff0000;
    transition: all 0.3s ease;
}

.subscribe-label.subscribed {
    color: #ef4444;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .subscribe-bell-container {
        bottom: 50px;
    }
}

/*======================
//Counter CSS
======================*/
.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f73e37 0%, #860804 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.stat-card .icon-1 {
    background: linear-gradient(135deg, #f5918e 0%, #f73e37 50%, #860804 100%);
}

.counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1;
    text-align: center;
}

.counter-label {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 576px) {
    .stat-card {
        padding: 20px;
    }

    .counter {
        font-size: 3rem;
    }
}

/* Animation for counter (optional enhancement) */
.counter {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
