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

	-----------------
   
	-----------------
		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&display=swap");

.offcanvas-overlay,
a,
.btn,
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 Pro";
    --rs-ff-remixicon: "remixicon";
    /** @color declaration */
    --rs-white: #FFFFFF;
    --rs-black: #ff0000;
    --rs-light: #eee;
    --rs-green: #54BD05;
    --rs-yellow: #F69C00;
    --rs-pink: #E033E0;
    --rs-red: #ff0000;
    --rs-theme-primary: #ff9900;
    --rs-theme-secondary: #ff9900;
    --rs-text-primary: #616C74;
    --rs-text-secondary: #BEBEBE;
    --rs-title-primary: #121213;
    --rs-bg-primary: #ff0000;
    --rs-bg-secondary: #F7F7F7;
    --rs-bg-grey: #E5E5E5;
    --rs-bg-black: #ff0000;
    --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;
}

@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-theme-primary);
}

textarea {
    padding: 14px 24px;
}

textarea:focus {
    border-color: var(--rs-theme-primary);
}

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

::selection {
    background: var(--rs-theme-primary);
    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: 80px;
    padding-bottom: 80px;
}

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

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

.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.1 accordion
/*----------------------------------------*/

.rs-accordion-one .accordion-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    min-height: 598px;
}

@media only screen and (max-width: 991px) {
    .rs-accordion-one .accordion-wrapper {
        padding: 40px;
        min-height: 550px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-accordion-one .accordion-wrapper {
        padding: 30px;
    }
}

.rs-accordion-one .accordion-item {
    border: 0;
    padding: 0px 0px 2px 0px;
    background: transparent;
}

.rs-accordion-one .accordion-item:not(:last-child) {
    margin-bottom: 25px;
}

.rs-accordion-one .accordion-button {
    font-size: 28px;
    font-weight: 700;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    padding-right: 50px;
    color: var(--rs-title-primary);
    padding: 0px;
    background-image: linear-gradient(to bottom, #10171e 0%, #10171e 100%);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
    transition: all 0.3s, background-size 0.5s;
}

@media only screen and (max-width: 1600px) {
    .rs-accordion-one .accordion-button {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-accordion-one .accordion-button {
        font-size: 22px;
    }
}

.rs-accordion-one .accordion-button::after {
    content: none;
}

.rs-accordion-one .accordion-button.collapsed {
    background-size: 100% 2px;
}

.rs-accordion-one .accordion-button:not(.collapsed) {
    pointer-events: none;
}

.rs-accordion-one .accordion-header {
    display: inline-flex;
    cursor: pointer;
}

.rs-accordion-one .accordion-body {
    color: var(--rs-text-primary);
    padding: 0px;
}

.rs-accordion-one .accordion-body p {
    margin-top: 10px;
}

.rs-accordion-one .accordion-details-btn .rs-btn {
    height: 42px;
    padding: 15px 22px;
    font-size: 16px;
}

.rs-accordion-two {
    margin-inline-start: 40px;
}

@media only screen and (max-width: 1600px) {
    .rs-accordion-two {
        margin-inline-start: 0px;
    }
}

.rs-accordion-two .accordion-item {
    border: 0;
    border-radius: 10px;
    padding: 30px 35px 30px 35px;
    border: 1px solid rgba(51, 112, 255, 0.168);
    background: var(--rs-white);
    cursor: pointer;
}

@media only screen and (max-width: 1199px) {
    .rs-accordion-two .accordion-item {
        padding: 30px 25px 30px 25px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-accordion-two .accordion-item {
        padding: 25px 25px 25px 25px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-accordion-two .accordion-item {
        padding: 20px 20px 20px 20px;
    }
}

.rs-accordion-two .accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.rs-accordion-two .accordion-item:hover .accordion-icon {
    background: var(--rs-theme-purple);
    border-color: var(--rs-theme-purple);
}

.rs-accordion-two .accordion-item:hover .accordion-icon path {
    fill: var(--rs-white);
}

.rs-accordion-two .accordion-thumb img {
    width: 40px;
}

.rs-accordion-two .accordion-button {
    font-size: 28px;
    font-weight: 600;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    padding-right: 50px;
    color: var(--rs-title-primary);
    padding: 0px 40px 0px 0px;
    display: flex;
    align-items: center;
    gap: 17px;
}

@media only screen and (max-width: 1600px) {
    .rs-accordion-two .accordion-button {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-accordion-two .accordion-button {
        font-size: 22px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-accordion-two .accordion-button {
        font-size: 20px;
        padding: 0px 60px 0px 0px;
        gap: 20px;
    }
}

.rs-accordion-two .accordion-button::after {
    content: none;
}

.rs-accordion-two .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--rs-theme-purple);
}

.rs-accordion-two .accordion-button:not(.collapsed) .accordion-icon {
    background: var(--rs-theme-purple);
    border-color: var(--rs-theme-purple);
}

.rs-accordion-two .accordion-button:not(.collapsed) .accordion-icon svg path {
    fill: var(--rs-white);
}

.rs-accordion-two .accordion-button:not(.collapsed) .accordion-icon svg {
    transform: rotate(90deg);
}

.rs-accordion-two .accordion-button .accordion-icon {
    position: absolute;
    right: 0px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s ease-out 0s;
}

.rs-accordion-two .accordion-button .accordion-icon svg {
    width: 20px;
}

.rs-accordion-two .accordion-button .accordion-icon svg path {
    fill: var(--rs-theme-purple);
    transition: all 0.4s ease-out 0s;
}

.rs-accordion-two .accordion-body {
    color: var(--rs-text-primary);
    padding: 20px 75px 0 57px;
}

@media only screen and (max-width: 480px) {
    .rs-accordion-two .accordion-body {
        padding: 20px 0px 0 0px;
    }
}

.rs-accordion-two .accordion-body a {
    text-decoration: underline;
    color: var(--rs-title-primary);
}

.rs-accordion-two .accordion-body a:hover {
    color: var(--rs-theme-purple);
}

.rs-accordion-three .accordion-button {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    padding: 0px 50px 0px 0px;
}

.rs-accordion-three .accordion-button .accordion-title {
    font-size: 28px;
    font-weight: 700;
    background-color: transparent;
    padding-right: 50px;
    color: var(--rs-title-primary);
    padding: 0px;
    background-image: linear-gradient(to bottom, #10171e 0%, #10171e 100%);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
    transition: all 0.3s, background-size 0.5s;
    display: inline-flex;
}

@media only screen and (max-width: 1600px) {
    .rs-accordion-three .accordion-button .accordion-title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-accordion-three .accordion-button .accordion-title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-accordion-three .accordion-button .accordion-title {
        font-size: 20px;
    }
}

.rs-accordion-three .accordion-button::after {
    content: none;
}

.rs-accordion-three .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.rs-accordion-three .accordion-button:not(.collapsed) .accordion-title {
    background-size: 100% 2px;
}

.rs-accordion-three .accordion-button:not(.collapsed) .accordion-icon {
    background: var(--rs-theme-primary);
    border-color: var(--rs-theme-primary);
}

.rs-accordion-three .accordion-button:not(.collapsed) .accordion-icon svg {
    transform: rotate(90deg);
}

.rs-accordion-three .accordion-icon {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s ease-out 0s;
    background: rgba(201, 243, 29, 0.2196078431);
}

.rs-accordion-three .accordion-icon svg {
    width: 16px;
}

.rs-accordion-three .accordion-icon svg path {
    fill: var(--rs-theme-secondary);
    transition: all 0.4s ease-out 0s;
}

.rs-accordion-three .accordion-item {
    padding: 22px 0px 22px 0px;
    border: 0;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.rs-accordion-three .accordion-item:first-child {
    border-top: 1px solid #ebebeb;
}

.rs-accordion-three .accordion-body {
    color: var(--rs-text-primary);
    padding: 20px 50px 0 0px;
    line-height: 28px;
}

@media only screen and (max-width: 767px) {
    .rs-accordion-three .accordion-body {
        padding: 20px 0px 0 0px;
    }
}

/*----------------------------------------*/

/*  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-btn {
    font-size: 17px;
    text-transform: capitalize;
    color: var(--rs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    height: 56px;
    transition: all 0.4s ease-out 0s;
    border-radius: 6px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--rs-theme-primary);
}

.rs-btn:hover {
    background: var(--rs-theme-secondary);
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-btn:hover {
    background: var(--rs-white);
    color: var(--rs-black);
}

[rs-theme=rs-theme-dark] .rs-btn:hover .icon-box svg path {
    fill: var(--rs-black);
}

.rs-btn:hover.has-icon .icon-first {
    transform: translateX(150%);
}

.rs-btn:hover.has-icon .icon-second {
    transform: translateX(0%);
}

.rs-btn.has-text {
    color: var(--rs-title-primary);
    padding: 8px 19px;
    width: unset;
    height: unset;
    background: transparent;
}

.rs-btn.has-text:hover {
    color: var(--rs-theme-primary);
}

.rs-btn.has-text:hover .icon-box svg path {
    fill: var(--rs-theme-primary);
}

.rs-btn.has-text.has-icon {
    gap: 8px;
}

.rs-btn.has-text .icon-box svg path {
    fill: var(--rs-title-primary);
}

.rs-btn.has-text.is-text-white {
    color: var(--rs-white);
}

.rs-btn.has-text.is-text-white:hover {
    color: var(--rs-theme-primary);
}

.rs-btn.has-text.is-text-white:hover .icon-box svg path {
    fill: var(--rs-theme-primary);
}

.rs-btn.has-text.is-text-white.has-icon svg path {
    fill: var(--rs-white);
}

.rs-btn.has-text.is-text-primary {
    color: var(--rs-theme-primary);
}

.rs-btn.has-text.is-text-primary:hover {
    color: var(--rs-theme-primary);
}

.rs-btn.has-text.is-text-primary.has-icon svg path {
    fill: var(--rs-theme-primary);
}

.rs-btn.has-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rs-btn.has-icon .icon-box {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    transition: all 0.3s ease-out 0s;
}

[dir=rtl] .rs-btn.has-icon .icon-box {
    transform: rotate(-180deg);
}

.rs-btn.has-icon .icon-box svg {
    width: 17px;
    fill: var(--rs-white);
}

.rs-btn.has-icon .icon-box:hover .icon-first {
    transform: translateX(150%);
}

.rs-btn.has-icon .icon-box:hover .icon-second {
    transform: translateX(0%);
}

.rs-btn.has-icon .icon-first {
    transition: all 0.3s ease-out 0s;
}

.rs-btn.has-icon .icon-second {
    position: absolute;
    transform: translateX(-150%);
    transition: all 0.3s ease-out 0s;
}

.rs-btn.hover-white:hover {
    background: var(--rs-white);
    color: var(--rs-black);
}

.rs-btn.hover-black:hover {
    background: var(--rs-black);
    color: var(--rs-white);
}

.rs-btn.hover-black:hover .icon-box svg path {
    fill: var(--rs-white);
}

.rs-btn.is-circle {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: #f2f2f2;
}

.rs-btn.is-circle svg path {
    fill: var(--rs-primary);
}

.rs-btn.is-circle:hover {
    background: var(--rs-primary);
}

.rs-btn.is-circle:hover svg path {
    fill: var(--rs-white);
}

.rs-btn.has-radius {
    border-radius: 50px;
}

.rs-btn.is-small {
    height: 45px;
    padding: 15px 20px;
}

.rs-btn.is-transparent {
    background: transparent;
    border: 1px solid rgba(54, 114, 255, 0.278);
    color: var(--rs-text-primary);
}

.rs-btn.is-transparent:hover {
    background: var(--rs-primary);
    color: var(--rs-white);
}

.rs-btn.has-bg-white {
    background: var(--rs-white);
    color: var(--rs-title-primary);
    height: 52px;
    padding: 15px 16px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
}

.rs-btn.has-bg-white svg {
    width: 17px;
    height: 17px;
}

.rs-btn.has-bg-white:hover {
    background: var(--rs-theme-primary);
    color: var(--rs-white);
}

.rs-btn.has-bg-white:hover svg {
    animation: rs-spin 5s linear infinite alternate;
}

.rs-btn.has-bg-white:hover svg path {
    fill: var(--rs-white);
}

.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-theme-primary);
    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-theme-primary);
    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: 40px;
    height: 40px;
    font-size: 13px;
}

.rs-play-btn.is-small::before {
    width: 35px;
    height: 35px;
}

.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-theme-primary);
    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-theme-primary);
    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;
}

.rs-btn-circle {
    width: 60px;
    height: 60px;
    background: var(--rs-theme-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out 0s;
    border-radius: 50%;
}

.rs-btn-circle:hover svg {
    transform: rotate(45deg);
}

.rs-btn-circle svg {
    width: 14px;
    height: 14px;
}

.rs-btn-circle svg path {
    fill: var(--rs-white);
}

.rs-square-btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 9px;
    height: 30px;
    transition: all 0.3s linear;
    border-radius: 2px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #202021;
}

.rs-square-btn.has-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rs-square-btn.has-icon .icon-box {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    transition: all 0.3s ease-out 0s;
}

[dir=rtl] .rs-square-btn.has-icon .icon-box {
    transform: rotate(-180deg);
}

.rs-square-btn.has-icon .icon-box svg {
    width: 12px;
}

.rs-square-btn.has-icon .icon-box svg path {
    fill: var(--rs-white);
}

.rs-square-btn.has-icon .icon-box:hover .icon-first {
    transform: translateX(150%);
}

.rs-square-btn.has-icon .icon-box:hover .icon-second {
    transform: translateX(0%);
}

.rs-square-btn.has-icon .icon-first {
    transition: all 0.3s ease-out 0s;
}

.rs-square-btn.has-icon .icon-second {
    position: absolute;
    transform: translateX(-150%);
    transition: all 0.3s ease-out 0s;
}

.rs-square-btn.has-icon:hover {
    background: var(--rs-theme-primary);
}

.rs-square-btn.has-icon:hover .icon-first {
    transform: translateX(150%);
}

.rs-square-btn.has-icon:hover .icon-second {
    transform: translateX(0%);
}

.rs-square-btn.has-transparent {
    background: transparent;
    border: 1px solid var(--rs-border-primary);
}

.rs-square-btn.has-transparent .icon-box svg path {
    fill: var(--rs-black);
}

.rs-square-btn.has-transparent:hover {
    border-color: var(--rs-theme-primary);
}

.rs-square-btn.has-transparent:hover .icon-box svg path {
    fill: var(--rs-white);
}

/*----------------------------------------*/

/*  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;
    right: -100%;
    top: 0;
    width: 400px;
    height: 100%;
    z-index: 999;
    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: 100%;
    }
}

.offcanvas-area.info-open {
    right: 0%;
}

.offcanvas-area .mean-container .mean-nav ul li.active>a {
    color: var(--rs-theme-primary);
}

.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: 104px;
}

.offcanvas-logo .logo-white {
    display: none;
}

.offcanvas-content {
    padding-bottom: 45px;
}

.offcanvas-wrapper {
    position: relative;
    height: 100%;
    padding: 40px 40px;
}

@media only screen and (max-width: 575px) {
    .offcanvas-wrapper {
        padding: 30px 30px;
    }
}

.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-theme-primary);
    color: var(--rs-white);
    border-color: var(--rs-theme-primary);
}

.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: 20px;
}

.offcanvas-contact ul li a:hover {
    color: var(--rs-theme-primary);
}

.offcanvas-contact ul li:hover svg {
    animation: rs-fold linear 0.5s;
}

.offcanvas-contact-icon {
    flex: 0 0 auto;
}

.offcanvas-contact-icon svg {
    width: 22px;
    height: 22px;
}

.offcanvas-contact-icon svg path {
    fill: var(--rs-theme-primary);
}

.offcanvas-gallery-thumb-wrapper {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.offcanvas-gallery-thumb-wrapper .offcanvas-popup-thumb img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

.offcanvas-about p {
    max-width: 300px;
}

.offcanvas-close {
    width: 35px;
    height: 35px;
    background: var(--rs-theme-primary);
    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-title {
    color: var(--rs-title-primary);
    font-weight: var(--rs-fw-sbold);
    font-family: var(--rs-ff-title);
    font-size: 36px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1600px) {
    .section-title {
        font-size: 34px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .section-title {
        font-size: 26px;
    }
}

.section-title.is-small {
    font-size: 24px;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1199px) {
    .section-title.is-small {
        font-size: 22px;
    }
}

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

.section-subtitle {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    text-transform: capitalize;
    color: var(--rs-title-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

[dir=rtl] .section-subtitle svg {
    transform: rotateY(-180deg);
}

.section-subtitle.is-uppercase {
    text-transform: uppercase;
}

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

.section-subtitle.text-purple-uppercase {
    color: var(--rs-theme-purple);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle.text-purple-capitalize {
    color: var(--rs-theme-purple);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.section-subtitle.has-text-primary {
    color: var(--rs-theme-primary);
    letter-spacing: 3px;
    font-size: 18px;
}

.section-subtitle.is-text-white {
    color: var(--rs-white);
}

.section-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--rs-theme-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

[dir=rtl] .section-subtitle-wrapper svg {
    transform: rotateY(180deg);
}

.section-title-wrapper.section-border {
    display: flex;
    align-items: center;
    width: 100%;
}

.section-title-wrapper.section-border .rs-section-dot {
    width: 7px;
    height: 7px;
    background-color: var(--rs-theme-primary);
    display: inline-block;
    transform: rotate(45deg);
    margin-inline-end: 5px;
    margin-inline-start: 5px;
}

.section-title-wrapper.section-border .rs-section-line {
    border: 1px solid var(--rs-border-primary);
    border-width: 1px 0;
    flex-grow: 1;
    height: 4px;
}

.section-title-wrapper.section-border .section-gap {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

@media only screen and (max-width: 575px) {
    .section-title-wrapper.section-border .section-gap {
        padding-inline-start: 10px;
        padding-inline-end: 10px;
    }
}

.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-title {
    padding-inline-end: 20px;
    flex: 0 0 auto;
}

@media only screen and (max-width: 991px) {
    .section-wrapper .section-title {
        padding-inline-end: 0px;
    }
}

.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);
}

/*----------------------------------------*/

/*  2.5 Breadcrumb
/*----------------------------------------*/

.rs-breadcrumb-one {
    background: var(--rs-bg-secondary);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .rs-breadcrumb-one {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.rs-breadcrumb-one .rs-breadcrumb-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.rs-breadcrumb-one .rs-breadcrumb-bg-thumb.thumb-black {
    display: none;
}

.rs-breadcrumb-one .rs-breadcrumb-wrapper {
    text-align: center;
}

@media only screen and (max-width: 575px) {
    .rs-breadcrumb-one .rs-breadcrumb-wrapper {
        text-align: start;
    }
}

.rs-breadcrumb-one .rs-breadcrumb-title-wrapper {
    margin-bottom: 10px;
}

.rs-breadcrumb-one .rs-breadcrumb-title {
    font-size: 40px;
    line-height: 1.2;
}

@media only screen and (max-width: 991px) {
    .rs-breadcrumb-one .rs-breadcrumb-title {
        font-size: 35px;
    }
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul {
    display: flex;
    align-items: center;
    gap: 8px 30px;
    justify-content: center;
}

@media only screen and (max-width: 575px) {
    .rs-breadcrumb-one .rs-breadcrumb-menu ul {
        justify-content: start;
    }
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul>svg {
    width: 20px;
    height: 20px;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li {
    list-style: none;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li:last-child {
    color: var(--rs-theme-primary);
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li a:hover {
    color: var(--rs-theme-primary);
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li a:hover svg path {
    fill: var(--rs-theme-primary);
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li a svg path {
    transition: 0.3s;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li span {
    position: relative;
    display: inline-block;
}

.rs-breadcrumb-one .rs-breadcrumb-menu ul li span::before {
    content: "";
    position: absolute;
    inset-inline-end: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23616C74'%3E%3Cpath d='M1.99974 13.0001L1.9996 11.0002L18.1715 11.0002L14.2218 7.05044L15.636 5.63623L22 12.0002L15.636 18.3642L14.2218 16.9499L18.1716 13.0002L1.99974 13.0001Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
}

[dir=rtl] .rs-breadcrumb-one .rs-breadcrumb-menu ul li span::before {
    transform: translateY(-50%) rotateY(180deg);
}

.rs-breadcrumb-two {
    background: var(--rs-bg-secondary);
    padding-top: 25px;
    padding-bottom: 25px;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul {
    display: flex;
    align-items: center;
    gap: 8px 22px;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li {
    list-style: none;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li:last-child {
    color: var(--rs-theme-primary);
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li a:hover {
    color: var(--rs-theme-primary);
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li a:hover svg path {
    fill: var(--rs-theme-primary);
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li a svg path {
    transition: 0.3s;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li span {
    position: relative;
    display: inline-block;
}

.rs-breadcrumb-two .rs-breadcrumb-menu ul li span::before {
    content: "\f2e5";
    position: absolute;
    font-family: remixicon !important;
    font-size: 20px;
    inset-inline-end: -20px;
    opacity: 1;
    color: #616C74;
    top: 50%;
    transform: translateY(-50%);
}

/*----------------------------------------
   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-theme-primary);
}

.rs-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--rs-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
    border-color: var(--rs-theme-primary);
}

.common-pagination ul li a.current {
    background: var(--rs-theme-primary);
    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-theme-primary);
    border-color: var(--rs-theme-primary);
}

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: 12px;
    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-theme-primary);
    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-theme-primary);
}

.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-instagram {
    background: #E1306C;
}

.theme-social.rs-social-links a.is-twitter {
    background: #202021;
}

.theme-social.rs-social-links a.is-linkedin {
    background: #0077B5;
}

.theme-social.has-transform a:hover {
    transform: translate(0, -10%);
}

/*----------------------------------------*/

/*  2.4 Back to top
/*----------------------------------------*/

.backtotop-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    background: var(--rs-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    color: var(--rs-white);
}

.backtotop-wrap:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 575px) {
    .backtotop-wrap {
        bottom: 20px;
        inset-inline-end: 20px;
    }
}

.backtotop-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

/*----------------------------------------*/

/*  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;
}

@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-theme-primary);
    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-theme-primary);
    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-theme-primary);
    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-theme-primary);
    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-theme-primary);
}

/*----------------------------------------*/

/* 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: 60px;
    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-theme-primary);
    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-theme-primary);
    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-theme-primary);
}

.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-theme-primary);
    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-theme-primary);
}

.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-theme-primary);
}

/*----------------------------------------
   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: 8px;
    font-size: 13px;
    font-weight: 600;
    color: black;
}

.rs-post-meta .rs-meta svg {
    width: 15px;
    height: 15px;
}

.rs-post-meta .rs-meta svg path {
    fill: #616C74;
}

[rs-theme=rs-theme-dark] .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-theme-primary);
}

.rs-post-meta .rs-meta .rs-meta-thumb img {
    width: 30px;
    height: 30px;
}

.rs-post-meta.meta-white span {
    color: rgba(255, 255, 255, 0.8);
}

.rs-post-meta.meta-white .rs-meta svg path {
    fill: rgba(255, 255, 255, 0.8);
}

/*----------------------------------------*/

/*  2.18 post list css
/*----------------------------------------*/

/*----------------------------------------*/

/*  2.11 DARK LIGHT CSS
/*----------------------------------------*/

[rs-theme=rs-theme-dark] {
    --rs-title-primary: var(--rs-white);
    --rs-bg-primary: #171A1E;
    --rs-bg-black: #121213;
    --rs-text-primary: rgba(255, 255, 255, 0.8);
    --rs-border-primary: rgba(255, 255, 255, 0.1);
}



/* Reset Header to Red/Black Combination (Removing Global Orange) */
.rs-header-one,
.rs-header-area,
.rs-sticky-header {
    background-color: #ff0000 !important;
}

.main-menu ul li.active>a,
.main-menu>ul>li:hover>a,
.main-menu li a:hover,
.main-menu .submenu li:hover>a,
.main-menu .mega-grid-three li a:hover,
.main-menu .mega-menu-title a:hover {
    color: #000000 !important;
    font-weight: 700;
}

/* Make Nav Arrows Black on Hover */
.main-menu ul li.menu-item-has-children:hover>a::after,
.main-menu ul li.active.menu-item-has-children>a::after {
    color: #000000 !important;
}

/* Make Hamburger Icon Black */
.header-bar-icon span {
    background-color: #000000 !important;
}

/* Make Search Icon and Input Black */
.header-search input {
    border: 1px solid #000000 !important;
    color: #000000 !important;
}

.header-search input::placeholder {
    color: #000000 !important;
    opacity: 0.7;
}

.header-search button i {
    color: #000000 !important;
}

.main-menu .submenu,
.main-menu .mega-menu {
    background-color: #ff0000 !important;
}

.main-menu .mega-menu .rs-post-small-title a,
.main-menu .mega-menu .rs-post-medium-title a {
    color: #ffffff !important;
}

/* Banner Section Reddish Background */
.rs-banner-area {
    background-color: #FFF5F5 !important;
}

/* Glassmorphism for Banner Overlay */
.rs-post-overlay-content {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 8px 8px;
}

/* Ticker Link Hover */
.header-top-description a:hover {
    color: #ff0000 !important;
    text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */

/*-----------------------------------------------------------------------------------
    5. CUSTOM REFINEMENTS - ALTROZ NEWS PREMIUM UI
-----------------------------------------------------------------------------------*/

/* Global News Card Hover Elevation */
.rs-post-medium-item,
.rs-post-small-item,
.rs-post-overlay {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.rs-post-medium-item:hover,
.rs-post-small-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Enhanced Tag Styling */
.post-tag {
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post-tag:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Improve Typography Readability */
.rs-post-description {
    line-height: 1.6 !important;
    color: #444;
    margin-bottom: 20px !important;
}

[rs-theme=rs-theme-dark] .rs-post-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Professional Header Contrast */
.rs-header-one {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.header-top-title {
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vibrant Gradients for Banner/Overlay Tags */
.rs-post-overlay .post-tag.is-yellow {
    background: linear-gradient(45deg, #FFDE21, #FF9900) !important;
}

/* Interactive Image Link Scaling */
.image-link img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.rs-post-medium-item:hover .image-link img,
.rs-post-small-item:hover img {
    transform: scale(1.08) !important;
}

/* Light mode css */

[rs-theme=rs-theme-light] .rs-featured-post-one {
    background: var(--rs-white);
}

[rs-theme=rs-theme-dark] .bg-primary {
    background-color: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .secondary-bg {
    background-color: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-sticky-header {
    box-shadow: 0 0 25px 0 rgba(255, 255, 255, 0.04);
}

[rs-theme=rs-theme-dark] .rs-banner-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-feature-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-feature-one .feature-wrapper {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-post-small-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-categories-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-post-small-five {
    background: #FFF5F5 !important;
}

[rs-theme=rs-theme-dark] .rs-post-small-five.has-bg-secondary {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-social-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-social-one .rs-social-item:nth-child(2) a {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-btn.has-bg-white {
    color: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-btn.has-bg-white:hover {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-cta-one {
    background: var(--rs-bg-primary);
    padding-top: 0;
}

[rs-theme=rs-theme-dark] .rs-featured-post-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .sidebar-widget {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .sidebar-widget.white-bg {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-banner-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-feature-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-top-stories-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-top-stories-one.has-bg {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-trending-news-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-post-small-nine {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .tagcloud.has-bg-white a {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .tagcloud.has-bg-white a:hover {
    background: var(--rs-theme-primary);
}

[rs-theme=rs-theme-dark] .rs-featured-post-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-banner-three {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-latest-stories-area {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-post-small-twelve {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-post-small-twelve.has-bg {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-latest-post-area {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-latest-post-area.has-bg {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-post-small-fourteen {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-categories-two.has-space {
    padding-bottom: 0;
}

[rs-theme=rs-theme-dark] .rs-video-area.has-space {
    padding-bottom: 0;
}

[rs-theme=rs-theme-dark] .rs-cta-area.has-space {
    padding-top: 80px;
}

@media only screen and (max-width: 767px) {
    [rs-theme=rs-theme-dark] .rs-cta-area.has-space {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 480px) {
    [rs-theme=rs-theme-dark] .rs-cta-area.has-space {
        padding-top: 60px;
    }
}

[rs-theme=rs-theme-dark] .rs-top-post-area {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-trending-news-three {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-trending-stories-one.has-bg {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-trending-stories-one.has-space {
    padding-top: 0;
}

[rs-theme=rs-theme-dark] .rs-header-three .header-bottom-wrapper {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-header-three .header-logo .logo-black {
    display: none;
}

[rs-theme=rs-theme-dark] .rs-header-three .header-logo .logo-white {
    display: block;
}

[rs-theme=rs-theme-dark] .rs-banner-six {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-square-btn.has-transparent .icon-box svg path {
    fill: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-one .rs-breadcrumb-menu ul li span {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-one .rs-breadcrumb-menu ul li span::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M1.99974 13.0001L1.9996 11.0002L18.1715 11.0002L14.2218 7.05044L15.636 5.63623L22 12.0002L15.636 18.3642L14.2218 16.9499L18.1716 13.0002L1.99974 13.0001Z'/%3E%3C/svg%3E") no-repeat center;
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-bg-thumb.thumb-black {
    display: block;
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-bg-thumb.thumb-white {
    display: none;
}

[rs-theme=rs-theme-dark] .rs-about-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-about-one .rs-about-thumb img {
    border-color: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-about-one .rs-rotate-btn {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-team-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-team-one .rs-team-item {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-team-details {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-team-details .team-details-wrapper {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-team-details .team-details-thumb img {
    border-color: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .theme-social.rs-social-links a.is-twitter {
    background: #3a3a4b;
}

[rs-theme=rs-theme-dark] .rs-footer-one.has-bg {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-copyright-one.has-bg {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-login-area {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper input[type=checkbox]~label {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper input {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper .rs-login-link:hover {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper .rs-login-meta-divider-title {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper .rs-login-label {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-login-wrapper .form-input-title label {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-forgot-area {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-error-area {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .policy-area {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .policy-wrapper {
    background-color: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .policy-contact ul li {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .policy-item ul li b {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-postbox-area {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-two {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-two .rs-breadcrumb-menu ul li span {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-two .rs-breadcrumb-menu ul li span::before {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-breadcrumb-two .rs-breadcrumb-menu ul li a svg path {
    fill: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-blog-post-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-postbox-details-feature ul li {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-postbox-quote .rs-postbox-quote-shape {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-postbox-comment-form .rs-contact-input input {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-postbox-comment-form .rs-contact-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

[rs-theme=rs-theme-dark] .rs-postbox-comment-form .rs-contact-input textarea {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-postbox-comment-form .rs-contact-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

[rs-theme=rs-theme-dark] .rs-contact-one {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-contact-one .rs-contact-item {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-contact-two {
    background: var(--rs-bg-black);
}

[rs-theme=rs-theme-dark] .rs-contact-two .rs-contact-wrapper {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-contact-two .rs-contact-input input {
    background: var(--rs-bg-black);
    color: rgba(255, 255, 255, 0.3);
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-contact-two .rs-contact-input textarea {
    background: var(--rs-bg-black);
    color: rgba(255, 255, 255, 0.3);
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .main-menu .mega-menu {
    background: #242424;
}

[rs-theme=rs-theme-dark] .main-menu .mega-grid-three li a {
    border-color: rgba(200, 192, 226, 0.1);
}

[rs-theme=rs-theme-dark] .offcanvas-logo .logo-white {
    display: block;
}

[rs-theme=rs-theme-dark] .offcanvas-logo .logo-black {
    display: none;
}

[rs-theme=rs-theme-dark] .offcanvas-area {
    background: var(--rs-bg-primary) none repeat scroll 0 0;
}

[rs-theme=rs-theme-dark] .offcanvas-social ul li a {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .rs-header-two .header-search input {
    background: #26282B;
    color: #fff;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li a,
[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li span {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li a.mean-expand,
[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li span.mean-expand {
    color: var(--rs-white);
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-post-overlay-title a {
    border: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-mega-menu-btn a {
    border: 0;
    background: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .icon-box {
    border: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-post-small-eight .rs-post-small-title a {
    border: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li {
    border-bottom: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-post-meta .rs-meta {
    border: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-post-medium-item a {
    border-top: 0;
}

[rs-theme=rs-theme-dark] .mean-container .mean-nav ul li .rs-post-meta .rs-meta span {
    border-top: 0;
}

/* HEADER CSS */

/*----------------------------------------*/

/*  3.4.1 Header Style 1
/*----------------------------------------*/

.rs-header-one {
    background: var(--rs-theme-primary);
    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: 15px;
        padding-bottom: 15px;
    }
}

@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.1 Header Style 2
/*----------------------------------------*/

.rs-header-two {
    background: var(--rs-theme-primary);
    overflow-x: clip;
}

.rs-header-two.has-border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.121);
}

.rs-header-two .header-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
    justify-content: space-between;
    background: var(--rs-bg-primary);
    padding-inline-start: 170px;
    padding-inline-end: 170px;
}

@media only screen and (max-width: 1600px) {
    .rs-header-two .header-wrapper {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-two .header-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-header-two .header-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-header-two .header-wrapper.rs-sticky {
        padding-inline-end: 15px;
        padding-inline-start: 15px;
    }
}

.rs-header-two .header-wrapper.is-small-padding {
    padding-inline-start: 140px;
    padding-inline-end: 140px;
}

@media only screen and (max-width: 1600px) {
    .rs-header-two .header-wrapper.is-small-padding {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

.rs-header-two .header-logo {
    position: relative;
    z-index: 1;
}

.rs-header-two .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
}

.rs-header-two .header-menu {
    display: flex;
    align-items: center;
}

.rs-header-two .header-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

@media only screen and (max-width: 1600px) {
    .rs-header-two .header-right {
        gap: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-two .header-right {
        gap: 30px;
    }
}

@media only screen and (max-width: 1366px) {
    .rs-header-two .header-btn {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-header-two .header-btn {
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .rs-header-two .header-btn {
        display: none;
    }
}

.rs-header-two.rs-sticky.has-sticky-bg {
    background: rgba(16, 23, 30, 0.878);
}

.rs-header-two .header-search-wrapper {
    position: relative;
}

.rs-header-two .header-search-inner {
    display: none;
    position: absolute;
    width: 290px;
    top: 71px;
    z-index: 2;
    inset-inline-end: 0;
}

@media only screen and (max-width: 1199px) {
    .rs-header-two .header-search-inner {
        top: 59px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-header-two .header-search-inner {
        top: 64px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-header-two .header-search-inner {
        width: 240px;
    }
}

.rs-header-two .header-search input {
    color: #444;
    padding-inline-end: 50px;
    padding-inline-start: 15px;
    width: 100%;
    background: var(--rs-white);
    border-radius: 5px;
    border: 1px solid rgba(62, 62, 62, 0.1);
    font-size: 14px;
    height: 50px;
}

@media only screen and (max-width: 480px) {
    .rs-header-two .header-search {
        display: block;
    }
}

.rs-header-two .header-search-icon {
    cursor: pointer;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.rs-header-two .header-search-icon .has-close {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
}

.rs-header-two .header-search-icon i {
    font-size: 20px;
    transition: all 0.3s ease-out 0s;
}

.rs-header-two .rs-header-search button {
    position: absolute;
    right: 10px;
    font-size: 22px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #00204A;
}

/*----------------------------------------*/

/*  3.4.2 Header Style 3
/*----------------------------------------*/

.rs-header-three {
    overflow-x: clip;
}

.rs-header-three .header-bottom-wrapper {
    display: flex;
    align-items: center;
    padding-inline-start: 248px;
    padding-inline-end: 248px;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 30px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1700px) {
    .rs-header-three .header-bottom-wrapper {
        padding-inline-start: 150px;
        padding-inline-end: 150px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-header-three .header-bottom-wrapper {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-header-three .header-bottom-wrapper {
        justify-content: center;
    }
}

.rs-header-three .header-wrapper {
    padding-inline-start: 248px;
    padding-inline-end: 248px;
    background: var(--rs-black);
    position: relative;
}

@media only screen and (max-width: 1700px) {
    .rs-header-three .header-wrapper {
        padding-inline-start: 150px;
        padding-inline-end: 150px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-header-three .header-wrapper {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

.rs-header-three .header-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 460px;
    justify-content: end;
    margin-inline-start: auto;
}

[dir=rtl] .rs-header-three .header-right {
    gap: 20px;
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .header-right {
        max-width: 100%;
        justify-content: start;
        margin-inline-start: unset;
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

.rs-header-three .header-right .swiper-slide {
    width: auto !important;
}

.rs-header-three .header-right .swiper-slide:not(:last-child) .header-top-tag ul li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 12px);
    background: var(--rs-border-secondary);
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.rs-header-three .header-right .swiper-wrapper .swiper-slide:last-child {
    padding-right: 0;
}

.rs-header-three .main-menu li a {
    padding: 18px 0px;
}

.rs-header-three .header-top-tag ul li {
    list-style: none;
    position: relative;
    text-align: center;
}

.rs-header-three .header-top-tag ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.rs-header-three .header-top-tag ul li a:hover {
    color: var(--rs-theme-primary);
}

.rs-header-three .header-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rs-header-three .header-navigation button {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    width: 10px;
}

[dir=rtl] .rs-header-three .header-navigation button {
    transform: rotateY(180deg);
}

.rs-header-three .header-navigation button i {
    font-weight: 400;
    font-size: 20px;
}

.rs-header-three .header-navigation button:hover {
    color: var(--rs-theme-primary);
}

.rs-header-three .header-logo {
    max-width: 130px;
}

.rs-header-three .header-logo .logo-white {
    display: none;
}

.rs-header-three .header-toggle {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .rs-header-three .header-toggle {
        display: block;
        padding-inline-start: 20px;
    }
}

/*----------------------------------------*/

/*  3.4.3 Header Top Style
/*----------------------------------------*/

.rs-header-top.rs-header-top-one {
    padding-inline-start: 248px;
    padding-inline-end: 248px;
    padding-bottom: 12px;
    padding-top: 12px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@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 {
        flex-wrap: wrap;
        gap: 10px 30px;
        justify-content: center;
    }
}

.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-theme-primary);
    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);
}

.rs-header-top.rs-header-top-two {
    padding-inline-start: 170px;
    padding-inline-end: 170px;
    padding-bottom: 12px;
    padding-top: 12px;
    background: var(--rs-black);
}

@media only screen and (max-width: 1600px) {
    .rs-header-top.rs-header-top-two {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-header-top.rs-header-top-two {
        justify-content: center;
    }
}

.rs-header-top.rs-header-top-two .header-top-left {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .rs-header-top.rs-header-top-two .header-top-left {
        justify-content: center;
    }
}

@media only screen and (max-width: 575px) {
    .rs-header-top.rs-header-top-two .header-top-left {
        gap: 5px 30px;
        flex-wrap: wrap;
    }
}

.rs-header-top.rs-header-top-two .header-top-content {
    overflow: hidden;
    position: relative;
}

.rs-header-top.rs-header-top-two .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-two .header-top-description {
        text-align: center;
    }
}

.rs-header-top.rs-header-top-two .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-two .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-two .header-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.rs-header-top.rs-header-top-two .header-top-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}

.rs-header-top.rs-header-top-two .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-two .header-top-item:not(:last-child):not(:last-child) {
        padding-inline-end: 0px;
        margin-inline-end: 0px;
    }

    .rs-header-top.rs-header-top-two .header-top-item:not(:last-child):not(:last-child)::before {
        content: none;
    }
}

.rs-header-top.rs-header-top-two .header-top-item h6 {
    font-size: 15px;
    font-weight: 400;
    color: var(--rs-white);
}

.rs-header-top.rs-header-top-two .header-top-item h6 a:hover {
    color: rgba(255, 255, 255, 0.72);
}

.rs-header-top.rs-header-top-two .popup-circle {
    width: 8px;
    height: 8px;
    position: relative;
}

.rs-header-top.rs-header-top-two .header-top-title {
    font-size: 14px;
    font-weight: 600;
    color: #E40101;
    text-transform: uppercase;
    line-height: 20px;
}

.rs-header-top.rs-header-top-two .header-top-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    justify-content: end;
    margin-inline-start: auto;
}

[dir=rtl] .rs-header-top.rs-header-top-two .header-top-right {
    gap: 20px;
}

@media only screen and (max-width: 767px) {
    .rs-header-top.rs-header-top-two .header-top-right {
        justify-content: unset;
        margin-inline-start: unset;
        margin: 0 auto;
    }
}

.rs-header-top.rs-header-top-two .header-top-right .swiper-slide {
    width: auto !important;
}

.rs-header-top.rs-header-top-two .header-top-right .swiper-slide:not(:last-child) .header-top-tag ul li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 12px);
    background: var(--rs-border-secondary);
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.rs-header-top.rs-header-top-two .header-top-right .swiper-wrapper .swiper-slide:last-child {
    padding-right: 0;
}

.rs-header-top.rs-header-top-two .header-top-tag ul li {
    list-style: none;
    position: relative;
    text-align: center;
}

.rs-header-top.rs-header-top-two .header-top-tag ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.rs-header-top.rs-header-top-two .header-top-tag ul li a:hover {
    color: var(--rs-theme-primary);
}

.rs-header-top.rs-header-top-two .header-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rs-header-top.rs-header-top-two .header-navigation button {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    width: 10px;
}

[dir=rtl] .rs-header-top.rs-header-top-two .header-navigation button {
    transform: rotateY(180deg);
}

.rs-header-top.rs-header-top-two .header-navigation button i {
    font-weight: 400;
    font-size: 20px;
}

.rs-header-top.rs-header-top-two .header-navigation button:hover {
    color: var(--rs-theme-primary);
}

/*----------------------------------------*/

/*  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-theme-primary);
}

.header-search-icon:hover .has-close {
    color: var(--rs-theme-primary);
}

.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-theme-primary);
}

.header-icon-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

.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;
    }
}

.sidebar-toggle {
    cursor: pointer;
    padding: 12px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rs-bg-primary);
}

.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
/*----------------------------------------*/

.rs-banner-three {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
}

@media only screen and (max-width: 480px) {
    .rs-banner-three {
        padding-inline-start: 0px;
        padding-inline-end: 0px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-banner-three .rs-post-overlay-two .rs-post-overlay-content {
        padding: 30px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-banner-three .rs-post-overlay-two .rs-post-overlay-content {
        padding: 25px 25px 25px 25px;
    }
}

.rs-banner-four {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.rs-banner-four .rs-banner-wrapper {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-wrapper {
        display: unset;
    }
}

.rs-banner-four .rs-banner-bg-thumb {
    position: absolute;
    width: calc(100% - 513px);
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 1700px) {
    .rs-banner-four .rs-banner-bg-thumb {
        width: 100%;
    }
}

[dir=rtl] .rs-banner-four .rs-banner-bg-thumb {
    transform: rotateY(180deg);
}

.rs-banner-four .rs-banner-video-post {
    display: flex;
    gap: 30px;
    margin-top: 155px;
    max-width: 930px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-video-post {
        max-width: 100%;
        margin-top: 50px;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1600px) and (max-width: 575px) {
    .rs-banner-four .rs-banner-video-post {
        margin-top: 30px;
    }
}

.rs-banner-four .rs-banner-title {
    color: var(--rs-white);
    line-height: 1.16;
    margin-top: 17px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-title {
        font-size: 55px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-four .rs-banner-title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-banner-four .rs-banner-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-banner-four .rs-banner-title {
        font-size: 35px;
    }
}

.rs-banner-four .rs-banner-left {
    padding-top: 150px;
    padding-inline-start: 140px;
    padding-bottom: 50px;
    padding-inline-end: 130px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-left {
        padding-top: 100px;
        padding-inline-start: 50px;
        padding-bottom: 50px;
        padding-inline-end: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-left {
        padding-inline-start: 30px;
        padding-inline-end: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-four .rs-banner-left {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-banner-four .rs-banner-left {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

.rs-banner-four .rs-banner-content-inner {
    max-width: 650px;
}

.rs-banner-four .rs-banner-btn {
    margin-top: 45px;
}

.rs-banner-four .rs-banner-line {
    width: 583px;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-line {
        width: 100%;
    }
}

.rs-banner-four .rs-banner-line::after {
    position: absolute;
    content: "";
    width: 145px;
    background: var(--rs-white);
    inset-inline-start: 0;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.rs-banner-four .rs-banner-line::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rs-banner-four .rs-banner-right {
    padding: 40px 40px 40px 40px;
    background: var(--rs-theme-secondary);
    width: 530px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-banner-right {
        width: 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-four .rs-banner-right {
        display: none;
    }
}

.rs-banner-four .rs-banner-overlay-card {
    height: 250px;
    margin-bottom: 35px;
}

.rs-banner-four .section-title.is-small {
    margin-bottom: 0;
}

.rs-banner-four .rs-post-overlay-one .rs-post-overlay-bg-thumb:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(23, 29, 110, 0) -14.45%, #171D6E 86.15%);
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}

.rs-banner-four .rs-post-overlay-one .rs-post-overlay-content {
    padding-top: 30px;
    padding-inline-end: 60px;
    padding-bottom: 30px;
    padding-inline-start: 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-four .rs-post-overlay-one .rs-post-overlay-content {
        padding: 25px;
    }
}

.rs-banner-four .rs-banner-text-btn {
    display: flex;
    justify-content: end;
}

.rs-banner-five {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.rs-banner-five .rs-banner-wrapper {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-wrapper {
        display: unset;
    }
}

.rs-banner-five .rs-banner-stroke-text {
    position: absolute;
    top: 230px;
    transform: rotate(-90deg);
    z-index: 2;
    inset-inline-end: -190px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-stroke-text {
        inset-inline-end: -130px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-stroke-text {
        inset-inline-end: -100px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-stroke-text {
        inset-inline-end: -100px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-five .rs-banner-stroke-text {
        display: none;
    }
}

.rs-banner-five .stroke-text {
    font-size: 200px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    line-height: 0.85;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .stroke-text {
        font-size: 150px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .stroke-text {
        font-size: 120px;
    }
}

.rs-banner-five .rs-banner-bg-thumb {
    position: absolute;
    width: 1456px;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

[dir=rtl] .rs-banner-five .rs-banner-bg-thumb {
    transform: rotateY(180deg);
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-bg-thumb {
        background-position: center;
    }
}

@media only screen and (max-width: 480px) {
    .rs-banner-five .rs-banner-bg-thumb {
        background-position: unset;
    }
}

.rs-banner-five .rs-banner-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(259.33deg, rgba(23, 26, 30, 0) -22.76%, #171A1E 76.25%);
}

@media only screen and (max-width: 1700px) {
    .rs-banner-five .rs-banner-bg-thumb {
        width: 100%;
    }
}

.rs-banner-five .rs-banner-video-post {
    gap: 30px;
    max-width: 1390px;
    margin: 150px 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-video-post {
        grid-template-columns: repeat(2, 1fr);
        margin: 100px 0px 0;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-five .rs-banner-video-post {
        grid-template-columns: repeat(1, 1fr);
        margin: 40px 0px 0;
    }
}

@media only screen and (max-width: 575px) {
    .rs-banner-five .rs-banner-video-post {
        margin-top: 30px;
    }
}

.rs-banner-five .rs-banner-title {
    color: var(--rs-white);
    line-height: 1.2;
    margin-top: 17px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-title {
        font-size: 55px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-five .rs-banner-title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-banner-five .rs-banner-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-banner-five .rs-banner-title {
        font-size: 35px;
    }
}

.rs-banner-five .rs-banner-left {
    padding-top: 150px;
    padding-bottom: 50px;
    position: relative;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-left {
        padding-top: 100px;
        padding-inline-start: 50px;
        padding-bottom: 50px;
        padding-inline-end: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-left {
        padding-inline-start: 30px;
        padding-inline-end: 30px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-five .rs-banner-left {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-banner-five .rs-banner-left {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

.rs-banner-five .rs-banner-content-inner {
    max-width: 650px;
    margin-inline-start: 170px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-content-inner {
        margin-inline-start: 0px;
    }
}

.rs-banner-five .rs-banner-btn {
    margin-top: 45px;
}

.rs-banner-five .rs-banner-line {
    width: 583px;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-line {
        width: 100%;
    }
}

.rs-banner-five .rs-banner-line::after {
    position: absolute;
    content: "";
    width: 145px;
    background: var(--rs-white);
    inset-inline-start: 0;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.rs-banner-five .rs-banner-line::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rs-banner-five .rs-banner-right {
    padding: 35px 40px 40px 40px;
    background: var(--rs-theme-secondary);
    width: 465px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-banner-right {
        width: 600px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-five .rs-banner-right {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .rs-banner-five .rs-banner-right {
        padding: 35px 15px 40px 15px;
    }
}

.rs-banner-five .rs-banner-overlay-card {
    height: 250px;
    margin-bottom: 35px;
}

.rs-banner-five .section-title.is-small {
    margin-bottom: 0;
}

.rs-banner-five .rs-post-overlay-one .rs-post-overlay-bg-thumb:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(23, 29, 110, 0) -14.45%, #171D6E 86.15%);
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}

.rs-banner-five .rs-post-overlay-one .rs-post-overlay-content {
    padding: 30px 60px 30px 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-five .rs-post-overlay-one .rs-post-overlay-content {
        padding: 25px 25px 25px 25px;
    }
}

.rs-banner-five .rs-banner-text-btn {
    display: flex;
    justify-content: end;
}

.rs-banner-five .rs-banner-bg-thumb-two {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.rs-banner-six .rs-banner-wrapper {
    display: grid;
    grid-template-columns: 450px auto 280px;
    gap: 30px;
}

@media only screen and (max-width: 1600px) {
    .rs-banner-six .rs-banner-wrapper {
        grid-template-columns: 380px auto 220px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-banner-six .rs-banner-wrapper {
        grid-template-columns: 450px auto;
    }
}

@media only screen and (max-width: 991px) {
    .rs-banner-six .rs-banner-wrapper {
        grid-template-columns: auto;
    }
}

/* Menu index */

.main-menu ul li.active>a {
    color: var(--rs-theme-primary);
}

.main-menu ul li ul.submenu li.active>a {
    color: var(--rs-theme-primary);
}

.main-menu>ul {
    display: inline-flex;
    gap: 0 40px;
}

@media only screen and (max-width: 1366px) {
    .main-menu>ul {
        gap: 0 30px;
    }
}

.main-menu>ul>li:hover>a {
    color: var(--rs-theme-primary);
}

.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: 17px;
    font-weight: 500;
    line-height: 1;
    color: var(--rs-white);
    padding: 37px 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-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
}

/*----------------------------------------*/

/*  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: 30px;
}

.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-theme-primary);
}

.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-theme-primary);
}

.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-theme-primary);
    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-theme-primary);
    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-theme-primary);
}

.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-theme-primary);
}

.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.2 Blog css
/*----------------------------------------*/

.rs-blog-one .blog-item:hover .blog-thumb img {
    transform: scale(1.05);
}

.rs-blog-one .blog-title {
    margin-top: 10px;
    margin-bottom: 25px;
}

.rs-blog-one .blog-thumb {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.rs-blog-one .blog-thumb.has-radius {
    border-radius: 5px;
}

.rs-blog-one .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear 0.3s;
}

.rs-blog-one .blog-meta-item {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.rs-blog-one .blog-meta-item span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    position: relative;
}

.rs-blog-one .blog-meta-item::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    inset-inline-start: -18px;
    top: 50%;
    background: #666;
    transform: translate(-50%, -50%);
}

.rs-blog-one .blog-meta-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}

.rs-blog-one .blog-meta-item:not(:last-child)::before {
    content: none;
}

.rs-blog-one .blog-meta-author {
    font-weight: 700;
}

.rs-blog-one .blog-meta-author:hover {
    color: var(--rs-theme-primary);
}

.rs-blog-one .blog-meta-author.is-hover-purple:hover {
    color: var(--rs-theme-purple);
}

.rs-blog-one .blog-btn .rs-btn {
    padding: 15px 22px;
    height: 50px;
}

.rs-blog-two .blog-item {
    background: var(--rs-white);
    padding: 25px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
}

.rs-blog-two .blog-item:hover .blog-thumb img {
    transform: scale(1.1);
}

.rs-blog-two .blog-title {
    color: var(--rs-title-secondary);
}

.rs-blog-two .blog-title.underline a:hover {
    color: var(--rs-title-secondary);
}

.rs-blog-two .blog-description {
    margin-top: 13px;
    margin-bottom: 15px;
}

.rs-blog-two .blog-thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 5px;
}

.rs-blog-two .blog-thumb img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.rs-blog-two .blog-meta {
    margin-top: 22px;
    margin-bottom: 15px;
}

.rs-blog-two .blog-meta-item {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.rs-blog-two .blog-meta-item span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    position: relative;
}

.rs-blog-two .blog-meta-item::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    inset-inline-start: -18px;
    top: 50%;
    background: var(--rs-theme-purple-light);
    transform: translate(-50%, -50%);
}

.rs-blog-two .blog-meta-item:not(:last-child) {
    padding-inline-end: 15px;
    margin-inline-end: 15px;
}

.rs-blog-two .blog-meta-item:not(:last-child)::before {
    content: none;
}

.rs-blog-two .blog-meta-author {
    font-weight: 700;
}

.rs-blog-two .blog-meta-author:hover {
    color: var(--rs-theme-purple-light);
}

/*----------------------------------------*/

/*  3.2.1 Blog tag css
/*----------------------------------------*/

.blog-tag a {
    color: var(--rs-white);
    font-size: 14px;
    padding: 6px 15px 6px 15px;
    border-radius: 5px;
    background: var(--rs-primary);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-weight: 500;
}

.blog-tag a:hover {
    background: var(--rs-white);
    color: var(--rs-title-primary);
}

/*----------------------------------------*/

/*  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-theme-primary);
}

.rs-postbox-more-navigation a:hover svg path {
    fill: var(--rs-theme-primary);
}

.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-theme-primary);
    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-theme-primary);
    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-theme-primary);
}

.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 var(--rs-border-primary);
    border-bottom: 1px solid var(--rs-border-primary);
    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: 50px;
}

@media only screen and (max-width: 1199px) {
    .rs-postbox-details-video {
        height: 300px;
    }

    .rs-postbox-details-video {

        margin-bottom: 127px;
    }


}

.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-theme-primary);
    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-theme-primary);
}

.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-theme-primary);
}

.rs-blog-post-one .rs-blog-post-wrapper {
    display: grid;
    grid-template-columns: 870px auto;
    gap: 30px;
    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: 30px;
    line-height: 1.25;
}

.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: #FFF5F5 !important;
    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-theme-primary);
    border-color: var(--rs-theme-primary);
    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-theme-primary);
}

.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-theme-primary);
}

/*----------------------------------------*/

/*  3.2.4 Sidebar css
/*----------------------------------------*/

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tagcloud.has-bg-transparent {
    background: transparent;
    border: 1px solid var(--rs-white);
    border-radius: 8px;
    padding: 30px;
}

.tagcloud.has-bg-transparent a {
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--rs-white);
    background: #000;
}

.tagcloud.has-bg-white a {
    background: #ff0000;
}

.tagcloud a {
    font-size: 16px;
    border: 1px solid var(--rs-border-primary);
    padding: 7px 15px;
    position: relative;
    transition: 0.3s;
    font-weight: 500;
    background: #ff0000;
    border-radius: 6px;
    color: #ffffff;
}

@media only screen and (max-width: 480px) {
    .tagcloud a {
        font-size: 14px;
        padding: 6px 13px;
    }
}

.tagcloud a:hover {
    color: var(--rs-white);
    background-color: var(--rs-theme-primary);
    border-color: var(--rs-theme-primary);
}

/*----------------------------------------*/

/*  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: 100px;
    padding-bottom: 95px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .rs-footer-one .footer-top {
        padding-top: 80px;
        padding-bottom: 75px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-footer-one .footer-top {
        padding-top: 70px;
        padding-bottom: 65px;
    }
}

.rs-footer-one .rs-footer-widget-description {
    color:#FFFFFF;
    margin-bottom: 25px;
    margin-top: 30px;
}

.rs-footer-one .footer-widget-title {
    color: var(--rs-white);
    margin-bottom: 27px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 27px;
    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 {
    list-style: none;
    line-height: 1;
    font-weight: 500;
    color: var(--rs-white);
}

.rs-footer-one .footer-widget-link ul li:not(:last-child) {
    margin-bottom: 19px;
}

.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-link ul li a:hover {
    color: #FFFFFF;
    padding-inline-start: 20px;
}

.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: #000;
}

.rs-copyright-one .rs-footer-copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .rs-copyright-one .rs-footer-copyright-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
        justify-content: center;
    }
}

.rs-copyright-one .rs-footer-copyright-item {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .rs-copyright-one .rs-footer-copyright-item {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    top: 0;
    inset-inline-end: -205px;
}

@media only screen and (max-width: 1199px) {
    .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
        inset-inline-end: -85px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
        inset-inline-end: -25px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
        display: none;
    }
}

.rs-copyright-one .rs-footer-copyright {
    text-align: center;
}

.rs-copyright-one .rs-footer-copyright a {
    color: var(--rs-theme-primary);
}

.rs-copyright-one .rs-footer-copyright a:hover {
    color: var(--rs-theme-primary);
}

.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-theme-primary);
}

/*----------------------------------------*/

/*  4.1 About css
/*----------------------------------------*/

.rs-about-one {
    overflow-x: clip;
}

.rs-about-one .rs-about-wrapper {
    display: grid;
    grid-template-columns: 605px auto;
    gap: 30px 75px;
    align-items: center;
}

@media only screen and (max-width: 1600px) {
    .rs-about-one .rs-about-wrapper {
        grid-template-columns: 500px auto;
        gap: 30px 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-about-one .rs-about-wrapper {
        align-items: start;
    }
}

@media only screen and (max-width: 991px) {
    .rs-about-one .rs-about-wrapper {
        grid-template-columns: auto;
    }
}

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

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

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

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

@media only screen and (max-width: 1199px) {
    .rs-about-one .rs-about-thumb-wrapper {
        position: sticky;
        top: 110px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-about-one .rs-about-thumb-wrapper {
        position: relative;
        top: unset;
    }
}

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

.rs-about-one .rs-about-thumb.thumb-small img {
    border-radius: 500px;
}

.rs-about-one .rs-about-thumb.thumb-large img {
    border-radius: 8px;
}

.rs-about-one .rs-about-thumb-top {
    display: flex;
    align-items: center;
    gap: 30px 40px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
    .rs-about-one .rs-about-thumb-top {
        flex-wrap: wrap;
        gap: 30px 30px;
        flex-direction: column-reverse;
    }
}

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

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

.rs-about-one .rs-about-btn {
    margin-top: 40px;
}

/*----------------------------------------*/

/*  4.5 call to action css
/*----------------------------------------*/

.rs-cta-one .cta-shape-one {
    position: absolute;
    inset-inline-end: 80px;
    top: 15px;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .rs-cta-one .cta-shape-one {
        display: none;
    }
}

.rs-cta-one .cta-shape-two {
    position: absolute;
    inset-inline-end: 124px;
    bottom: -13px;
    z-index: 0;
}

@media only screen and (max-width: 1199px) {
    .rs-cta-one .cta-shape-two {
        display: none;
    }
}

.rs-cta-one .cta-shape-three {
    position: absolute;
    inset-inline-end: -195px;
    top: 98px;
}

@media only screen and (max-width: 1199px) {
    .rs-cta-one .cta-shape-three {
        display: none;
    }
}

.rs-cta-one .cta-shape-four {
    position: absolute;
    bottom: -144px;
    inset-inline-end: -10px;
}

@media only screen and (max-width: 1199px) {
    .rs-cta-one .cta-shape-four {
        display: none;
    }
}

.rs-cta-one .cta-shape-five {
    position: absolute;
    top: 40px;
    inset-inline-start: 51%;
}

@media only screen and (max-width: 1199px) {
    .rs-cta-one .cta-shape-five {
        display: none;
    }
}

.rs-cta-one .rs-cta-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-inline-start: 65px;
    padding-inline-end: 65px;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .rs-cta-one .rs-cta-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-inline-start: 30px;
        padding-inline-end: 30px;
    }
}

.rs-cta-one .rs-cta-bg-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;
    border-radius: 8px;
}

.rs-cta-one .rs-cta-content-wrapper {
    max-width: 510px;
}

.rs-cta-one .section-title {
    font-size: 30px;
}

@media only screen and (max-width: 991px) {
    .rs-cta-one .section-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-cta-one .section-title {
        font-size: 24px;
    }
}

.rs-cta-one .rs-cta-input {
    position: relative;
    margin-top: 20px;
    margin-bottom: 15px;
}

.rs-cta-one .rs-cta-input input {
    background: var(--rs-white);
    border-radius: 6px;
    height: 66px;
    width: 100%;
    padding-inline-end: 155px;
    padding-inline-start: 20px;
    border: none;
}

.rs-cta-one .rs-cta-input input::placeholder {
    color: var(--rs-text-primary);
    font-weight: 500;
}

[rs-theme=rs-theme-dark] .rs-cta-one .rs-cta-input input::placeholder {
    color: #616C74;
}

@media only screen and (max-width: 480px) {
    .rs-cta-one .rs-cta-input input {
        padding-inline-end: 20px;
        height: 56px;
    }
}

.rs-cta-one .rs-cta-input button {
    position: absolute;
    inset-inline-end: 10px;
    top: 10px;
    height: 46px;
    padding: 15px 16px;
}

@media only screen and (max-width: 480px) {
    .rs-cta-one .rs-cta-input button {
        position: relative;
        margin-top: 10px;
        width: 100%;
        inset-inline-end: 0px;
        top: 0;
    }
}

/*----------------------------------------*/

/*  4.17 Team css
/*----------------------------------------*/

.rs-team-one .rs-team-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media only screen and (max-width: 1366px) {
    .rs-team-one .rs-team-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .rs-team-one .rs-team-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-team-one .rs-team-item {
    border: 1px solid var(--rs-border-primary);
    border-radius: 30px 200px 200px 30px;
    padding: 30px 20px 30px 30px;
    display: flex;
    background: var(--rs-bg-secondary);
    margin-top: 41px;
    transition: 0.5s;
    justify-content: space-between;
}

[dir=rtl] .rs-team-one .rs-team-item {
    flex-direction: row-reverse;
    text-align: end;
}

@media only screen and (max-width: 480px) {
    [dir=rtl] .rs-team-one .rs-team-item {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-team-one .rs-team-item {
        padding: 30px 20px 30px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-team-one .rs-team-item {
        margin-top: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-team-one .rs-team-item {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: column-reverse;
    }
}

.rs-team-one .rs-team-item:hover {
    background: var(--rs-theme-primary);
    border-color: var(--rs-theme-primary);
}

.rs-team-one .rs-team-item:hover .rs-team-title {
    color: var(--rs-white);
}

.rs-team-one .rs-team-item:hover .rs-team-designation {
    color: var(--rs-white);
}

.rs-team-one .rs-team-thumb {
    position: relative;
    z-index: 1;
    width: 256px;
    margin-top: -73px;
}

@media only screen and (max-width: 480px) {
    [dir=rtl] .rs-team-one .rs-team-thumb {
        margin-inline-end: auto;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-team-one .rs-team-thumb {
        width: 200px;
    }
}

@media only screen and (max-width: 1366px) {
    .rs-team-one .rs-team-thumb {
        width: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-team-one .rs-team-thumb {
        width: 170px;
        margin-top: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .rs-team-one .rs-team-thumb {
        width: 250px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-team-one .rs-team-thumb {
        width: 100%;
    }
}

.rs-team-one .rs-team-thumb img {
    width: 100%;
}

.rs-team-one .rs-team-social {
    width: 36px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

[dir=rtl] .rs-team-one .rs-team-social {
    margin-right: auto;
}

.rs-team-one .rs-team-social:hover .rs-team-social-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

[dir=rtl] .rs-team-one .rs-team-social:hover .rs-team-social-icon {
    transform: translateY(0px) rotateY(180deg);
}

.rs-team-one .rs-team-social:hover .rs-team-social-icon a:nth-child(1) {
    transition-delay: 0s;
}

.rs-team-one .rs-team-social:hover .rs-team-social-icon a:nth-child(2) {
    transition-delay: 0.1s;
}

.rs-team-one .rs-team-social:hover .rs-team-social-icon a:nth-child(3) {
    transition-delay: 0.2s;
}

.rs-team-one .rs-team-social-icon a {
    color: var(--rs-theme-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    background-color: var(--rs-white);
    transition: 0.3s;
    border-radius: 50%;
    border: 1px solid var(--rs-border-primary);
    flex: 0 0 auto;
}

.rs-team-one .rs-team-social-icon a:hover {
    color: var(--rs-theme-primary);
}

.rs-team-one .rs-team-social-trigger-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    transition: 0.3s;
    border-radius: 50%;
    border: 1px solid var(--rs-border-primary);
    background: var(--rs-white);
    color: var(--rs-theme-primary);
}

.rs-team-one .rs-team-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.rs-team-one .rs-team-social-icon {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-15px);
}

@media only screen and (max-width: 480px) {
    .rs-team-one .rs-team-social-icon {
        flex-direction: row;
    }
}

@media only screen and (max-width: 480px) {
    [dir=rtl] .rs-team-one .rs-team-social-icon {
        transform: translateY(-15px) rotateY(180deg);
    }
}

.rs-team-one .rs-team-title {
    line-height: 1.1;
    margin-bottom: 5px;
}

@media only screen and (max-width: 1600px) {
    .rs-team-one .rs-team-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1600px) {
    .rs-team-one .rs-team-designation {
        font-size: 14px;
    }
}

.rs-team-details .team-details-wrapper {
    padding: 30px 50px 30px 30px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px 30px;
    border-radius: 8px;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    background: var(--rs-bg-secondary);
    margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
    .rs-team-details .team-details-wrapper {
        padding: 30px 30px 30px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-team-details .team-details-wrapper {
        padding: 20px 20px 20px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-team-details .team-details-wrapper {
        grid-template-columns: auto;
    }
}

.rs-team-details .team-details-thumb {
    width: 156px;
    height: 156px;
}

@media only screen and (max-width: 480px) {
    .rs-team-details .team-details-thumb {
        width: 100%;
        height: 100%;
    }
}

.rs-team-details .team-details-thumb img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
    border: 6px solid var(--rs-white);
}

.rs-team-details .team-details-description {
    margin-top: 6px;
    margin-bottom: 20px;
}

/*----------------------------------------*/

/*   4.4 Contact css
/*----------------------------------------*/

.rs-contact-one .rs-contact-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media only screen and (max-width: 1199px) {
    .rs-contact-one .rs-contact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .rs-contact-one .rs-contact-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-contact-one .rs-contact-item {
    background: var(--rs-bg-secondary);
    padding: 20px 20px 45px 20px;
    text-align: center;
    border-radius: 8px;
}

.rs-contact-one .rs-contact-item:hover .rs-contact-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-contact-one .rs-contact-thumb {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 144px;
}

.rs-contact-one .rs-contact-thumb img {
    width: 100%;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-contact-one .rs-contact-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.rs-contact-one .rs-contact-title::before {
    position: absolute;
    content: "";
    width: 145px;
    height: 1px;
    background: var(--rs-border-primary);
    bottom: 0;
    inset-inline-start: 0;
}

.rs-contact-one .rs-contact-title::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background: var(--rs-theme-primary);
    inset-inline-start: 0;
    bottom: 0px;
}

.rs-contact-one .rs-contact-info span {
    display: block;
}

.rs-contact-one .rs-contact-info span:not(:last-child) {
    margin-bottom: 5px;
}

.rs-contact-one .rs-contact-info a:hover {
    color: var(--rs-theme-primary);
}

.rs-contact-two {
    margin-bottom: -340px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .rs-contact-two {
        margin-bottom: -220px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-contact-two {
        margin-bottom: -190px;
    }
}

.rs-contact-two .rs-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 30px 60px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    background: var(--rs-white);
    border-radius: 16px;
    padding: 45px 60px 60px 60px;
    border-top: 4px solid var(--rs-theme-primary);
}

@media only screen and (max-width: 1600px) {
    .rs-contact-two .rs-contact-wrapper {
        gap: 30px 30px;
        padding: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-contact-two .rs-contact-wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 480px) {
    .rs-contact-two .rs-contact-wrapper {
        padding: 25px;
    }
}

.rs-contact-two .rs-contact-input-box {
    margin-bottom: 20px;
}

.rs-contact-two .rs-contact-form-title {
    margin-bottom: 17px;
}

.rs-contact-two .rs-contact-input-title label {
    font-size: 16px;
    color: var(--rs-title-primary);
    margin-bottom: 7px;
}

.rs-contact-two .rs-contact-input input {
    height: 56px;
    border-radius: 6px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    background: var(--rs-bg-secondary);
}

.rs-contact-two .rs-contact-input textarea {
    height: 174px;
    border-radius: 6px;
    padding: 15px 20px;
    background: var(--rs-bg-secondary);
}

.rs-contact-two .rs-contact-thumb img {
    width: 100%;
    border-radius: 10px;
}

.rs-map-one {
    line-height: 0;
}

.rs-map-one .rs-google-map iframe {
    width: 100%;
    height: 655px;
}

@media only screen and (max-width: 1600px) {
    .rs-map-one .rs-google-map iframe {
        height: 500px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-map-one .rs-google-map iframe {
        height: 450px;
    }
}

@media only screen and (max-width: 1199px) {
    .rs-map-one .rs-google-map iframe {
        height: 400px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-map-one .rs-google-map iframe {
        height: 300px;
    }
}

@media only screen and (max-width: 575px) {
    .rs-map-one .rs-google-map iframe {
        height: 250px;
    }
}

/*----------------------------------------*/

/*  4.22 video css
/*----------------------------------------*/

.rs-video-one .section-btn {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 991px) {
    .rs-video-one .section-btn {
        justify-content: start;
    }
}

.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-black);
    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;
}

@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: 350px;
    }
}

.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;
}

.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: 12px;
    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: 80px;
    padding-bottom: 35px;
    padding-inline-start: 40px;
}

@media only screen and (max-width: 1199px) {
    .rs-post-overlay-one .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-one .rs-post-overlay-content {
        padding-top: 25px;
        padding-inline-end: 25px;
        padding-bottom: 25px;
        padding-inline-start: 25px;
    }
}

.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-one {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.rs-post-small-one:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-one .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

.rs-post-small-one .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-one .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-one .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-one .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-one .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-two {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
    padding: 12px;
    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: 20px;
        gap: 15px;
    }
}

.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: 100%;
        max-width: 100%;
    }
}

.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: 7px;
    text-transform: capitalize;
}

.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;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-three .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-three .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-three .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-three .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.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 var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-three .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.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 {
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

.rs-post-small-three .rs-post-small-item:last-child {
    margin-bottom: 0;
}

.rs-post-small-four {
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
}

.rs-post-small-four .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

.rs-post-small-four .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-four .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-four .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-four .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-four .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-four .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.rs-post-small-four .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-four .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-four .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-five {
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
    background: #FFF5F5 !important;
}

@media only screen and (max-width: 1600px) {
    .rs-post-small-five {
        padding: 10px 20px 20px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-post-small-five {
        padding: 20px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-post-small-five {
        padding: 10px 20px 20px 20px;
    }
}

.rs-post-small-five.has-bg-secondary {
    background: var(--rs-bg-secondary);
}

.rs-post-small-five .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
    height: 100%;
}

@media only screen and (max-width: 1366px) {
    .rs-post-small-five .rs-post-small-thumb {
        min-width: 120px;
        max-width: 120px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-post-small-five .rs-post-small-thumb {
        min-width: 140px;
        max-width: 140px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-post-small-five .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-five .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-five .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
    height: 123px;
}

.rs-post-small-five .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-five .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-five .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-five .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-five .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-five .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-five .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-five .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-six {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid rgb(255 255 255);
    padding-bottom: 12px;
    border-top: 1px solid rgb(255 255 255);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-six {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-six:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-six .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-six .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-six .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-six .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-six .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
}

.rs-post-small-six .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-six .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-seven .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 80px;
    max-width: 65px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-seven .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-seven .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-seven .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-seven .rs-post-small-title {
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
    font-size: 16px;
}

.rs-post-small-seven .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-seven .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-seven .rs-post-small-item {
    border-bottom: 1px solid var(--rs-white);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-seven .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-seven .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-seven .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-seven .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-eight {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eight {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-eight:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-eight .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eight .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-eight .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-eight .rs-post-small-thumb img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eight .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-eight .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-eight .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-eight .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-nine {
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
    background: var(--rs-bg-secondary);
}

@media only screen and (max-width: 1600px) {
    .rs-post-small-nine {
        padding: 10px 20px 20px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-post-small-nine {
        padding: 20px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nine {
        padding: 10px 20px 20px 20px;
    }
}

.rs-post-small-nine .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nine .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-nine .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-nine .rs-post-small-thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nine .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-nine .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-nine .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-nine .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-nine .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nine .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-nine .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-nine .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-nine .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-ten {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--rs-border-secondary);
    padding-bottom: 12px;
    border-top: 1px solid var(--rs-border-secondary);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-ten {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-ten:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-ten .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-ten .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-ten .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-ten .rs-post-small-thumb img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-ten .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-ten .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
}

.rs-post-small-ten .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-ten .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-eleven .rs-post-small-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

@media only screen and (max-width: 767px) {
    .rs-post-small-eleven .rs-post-small-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-post-small-eleven .rs-post-small {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 12px;
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eleven .rs-post-small {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-eleven .rs-post-small:nth-child(5) {
    border-bottom: 1px solid var(--rs-border-primary);
}

.rs-post-small-eleven .rs-post-small:nth-child(6) {
    border-bottom: 1px solid var(--rs-border-primary);
}

.rs-post-small-eleven .rs-post-small:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-eleven .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eleven .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-eleven .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-eleven .rs-post-small-thumb img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-eleven .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-eleven .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-eleven .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-eleven .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-twelve {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px;
    border-radius: 8px;
    background: var(--rs-bg-secondary);
}

@media only screen and (max-width: 480px) {
    .rs-post-small-twelve {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-twelve:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-twelve .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-twelve .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-twelve .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-twelve .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-twelve .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-twelve .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-twelve .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-thirteen {
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
    background: var(--rs-white);
}

.rs-post-small-thirteen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

.rs-post-small-thirteen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-thirteen .rs-post-small-thumb img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-thirteen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-thirteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-thirteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-thirteen .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.rs-post-small-thirteen .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-thirteen .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-thirteen .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-fourteen {
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
    margin-bottom: 23px;
    background: var(--rs-white);
}

@media only screen and (max-width: 1600px) {
    .rs-post-small-fourteen {
        padding: 10px 20px 20px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-post-small-fourteen {
        padding: 20px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-post-small-fourteen {
        padding: 10px 20px 20px 20px;
    }
}

.rs-post-small-fourteen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 50%;
}

.rs-post-small-fourteen .rs-post-small-thumb.thumb-rounded {
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-fourteen .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-fourteen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-fourteen .rs-post-small-thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-fourteen .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-fourteen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-fourteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-fourteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-fourteen .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-fourteen .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-fourteen .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-fourteen .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-fourteen .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-fourteen .rs-post-small-tab .nav-link {
    background: transparent;
    color: var(--rs-title-primary);
    font-weight: 500;
    padding: 7px 0px 7px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s ease;
    border-radius: 6px;
    border: 1px solid var(--rs-border-primary);
    width: 124px;
}

.rs-post-small-fourteen .rs-post-small-tab .nav-link:hover {
    background: var(--rs-theme-primary);
    color: var(--rs-white);
}

.rs-post-small-fourteen .rs-post-small-tab .nav-link.active {
    background: var(--rs-theme-primary);
    color: var(--rs-white);
}

.rs-post-small-fourteen .rs-post-small-tab .nav-pills {
    gap: 8px;
    margin-bottom: 23px;
    justify-content: center;
}

@media only screen and (max-width: 1199px) {
    .rs-post-small-fourteen .rs-post-small-tab .nav-pills {
        justify-content: start;
    }
}

.rs-post-small-fourteen .rs-post-small-tab-anim .tab-pane.active .rs-post-small-item {
    -webkit-animation: slide-down 5s ease-out;
    animation: slide-down 5s ease-out;
}

.rs-post-small-fifteen {
    position: relative;
}

.rs-post-small-fifteen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

.rs-post-small-fifteen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-fifteen .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-fifteen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
}

.rs-post-small-fifteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-fifteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-fifteen .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-secondary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.rs-post-small-fifteen .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-fifteen .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-fifteen .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-sixteen .rs-post-small-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

@media only screen and (max-width: 991px) {
    .rs-post-small-sixteen .rs-post-small-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-post-small-sixteen .rs-post-small {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 12px;
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-sixteen .rs-post-small {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-sixteen .rs-post-small:nth-child(5) {
    border-bottom: 1px solid var(--rs-border-primary);
}

.rs-post-small-sixteen .rs-post-small:nth-child(6) {
    border-bottom: 1px solid var(--rs-border-primary);
}

.rs-post-small-sixteen .rs-post-small:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-sixteen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 6px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-sixteen .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-sixteen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-sixteen .rs-post-small-thumb img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-sixteen .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-sixteen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-sixteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-sixteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-seventeen {
    position: relative;
}

.rs-post-small-seventeen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-seventeen .rs-post-small-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-small-seventeen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-seventeen .rs-post-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-small-seventeen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-title-primary);
}

.rs-post-small-seventeen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-seventeen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-seventeen .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-seventeen .rs-post-small-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-seventeen .rs-post-small-item:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-seventeen .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-seventeen .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-eighteen {
    position: relative;
}

.rs-post-small-eighteen .rs-post-small-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-title-primary);
}

.rs-post-small-eighteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-eighteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

.rs-post-small-eighteen .rs-post-small-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
}

.rs-post-small-eighteen .rs-post-small-item:first-child {
    padding-top: 0px;
}

.rs-post-small-eighteen .rs-post-small-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.rs-post-small-nineteen .rs-post-small-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
}

@media only screen and (max-width: 991px) {
    .rs-post-small-nineteen .rs-post-small-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rs-post-small-nineteen .rs-post-small {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 12px;
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nineteen .rs-post-small {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.rs-post-small-nineteen .rs-post-small:nth-child(1) {
    padding-top: 0;
    border-top: 0;
}

.rs-post-small-nineteen .rs-post-small:nth-child(2) {
    padding-top: 0;
    border-top: 0;
}

@media only screen and (max-width: 991px) {
    .rs-post-small-nineteen .rs-post-small:nth-child(2) {
        border-top: 1px solid var(--rs-border-primary);
        padding-top: 12px;
    }
}

.rs-post-small-nineteen .rs-post-small:nth-child(7) {
    padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .rs-post-small-nineteen .rs-post-small:nth-child(7) {
        padding-bottom: 12px;
    }
}

.rs-post-small-nineteen .rs-post-small:nth-child(8) {
    padding-bottom: 0;
}

.rs-post-small-nineteen .rs-post-small:hover .rs-post-small-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-small-nineteen .rs-post-small-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 6px;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nineteen .rs-post-small-thumb {
        flex: unset;
    }
}

.rs-post-small-nineteen .rs-post-small-thumb a {
    display: block;
}

.rs-post-small-nineteen .rs-post-small-thumb img {
    width: 130px;
    height: 108px;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

@media only screen and (max-width: 480px) {
    .rs-post-small-nineteen .rs-post-small-thumb img {
        width: 100%;
        height: 100%;
    }
}

.rs-post-small-nineteen .rs-post-small-title {
    margin-top: 5px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.rs-post-small-nineteen .rs-post-small-title a {
    background-size: 0 1px;
}

.rs-post-small-nineteen .rs-post-small-title a:hover {
    background-size: 100% 1px;
}

/*----------------------------------------*/

/*  4.11 medium card css
/*----------------------------------------*/

.rs-post-medium-one .rs-post-medium-item {
    position: relative;
    display: flex;
    gap: 30px;
    display: grid;
    grid-template-columns: 400px 1fr;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--rs-border-primary);
}

@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: 25px;
        padding-bottom: 35px;
        margin-bottom: 0px;
    }
}

.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;
}

.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: 100%;
}

.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: 30px;
}

.rs-post-medium-one .rs-post-medium-title {
    margin-top: 12px;
    margin-bottom: 8px;
    text-transform: capitalize;
    max-width: 400px;
}

.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;
    border: 1px solid var(--rs-border-primary);
    padding: 12px 12px 30px 12px;
    border-radius: 8px;
}

.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%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-medium-two .rs-post-medium-content {
    padding-top: 25px;
    padding-inline-start: 15px;
}

@media only screen and (max-width: 480px) {
    .rs-post-medium-two .rs-post-medium-content {
        padding-inline-start: 0px;
    }
}

.rs-post-medium-two .rs-post-medium-title {
    margin-top: 12px;
    margin-bottom: 15px;
    text-transform: capitalize;
    max-width: 400px;
}

.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%);
}

/*----------------------------------------*/

/*  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-two .rs-post-video-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

.rs-post-video-two .rs-post-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-video-two .rs-post-video-title {
    margin-top: 8px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.rs-post-video-two .rs-post-video-title a {
    background-size: 0 1px;
}

.rs-post-video-two .rs-post-video-title a:hover {
    background-size: 100% 1px;
}

.rs-post-video-two .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rs-post-video-two .rs-post-video-item {
    border-bottom: 1px solid var(--rs-border-primary);
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.rs-post-video-two .rs-post-video-item:hover .rs-post-video-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-video-two .rs-post-video-item:first-child {
    border-top: 1px solid var(--rs-border-primary);
    padding-top: 12px;
}

.rs-post-video-two .rs-post-video-item:last-child {
    margin-bottom: 0;
}

.rs-post-video-three .rs-post-video-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-video-three .rs-post-video-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.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: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
}

.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: 25px;
}

@media only screen and (max-width: 480px) {
    .rs-post-video-three .rs-post-video-item {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.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;
}

.rs-post-video-four .rs-post-video-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 8px;
}

@media only screen and (max-width: 480px) {
    .rs-post-video-four .rs-post-video-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}

.rs-post-video-four .rs-post-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.rs-post-video-four .rs-post-video-title {
    margin-top: 9px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: var(--rs-white);
}

.rs-post-video-four .rs-post-video-title a {
    background-size: 0 1px;
}

.rs-post-video-four .rs-post-video-title a:hover {
    background-size: 100% 1px;
}

.rs-post-video-four .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rs-post-video-four .rs-post-video-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    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);
    padding: 12px;
    border-radius: 6px;
}

@media only screen and (max-width: 480px) {
    .rs-post-video-four .rs-post-video-item {
        flex-wrap: wrap;
    }
}

.rs-post-video-four .rs-post-video-item:hover .rs-post-video-thumb img {
    transform: scale3d(1.1, 1.1, 1);
}

.rs-post-video-five {
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}

@media only screen and (max-width: 991px) {
    .rs-post-video-five {
        height: 400px;
    }
}

.rs-post-video-five .rs-post-video-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-video-five .rs-post-video-bg-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0) 18.83%, #121213 91.88%);
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}

.rs-post-video-five .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: 40px;
    padding-bottom: 35px;
    padding-inline-start: 40px;
}

@media only screen and (max-width: 1199px) {
    .rs-post-video-five .rs-post-video-content {
        padding-top: 30px;
        padding-inline-end: 30px;
        padding-bottom: 25px;
        padding-inline-start: 30px;
    }
}

.rs-post-video-five .rs-post-video-title {
    margin-top: 15px;
    margin-bottom: 12px;
}

.rs-post-video-five .rs-post-video-title.is-white {
    color: var(--rs-white);
}

.rs-post-video-five .rs-video-play-btn {
    position: absolute;
    left: 50%;
    top: 130px;
    transform: translateX(-50%);
}

@media only screen and (max-width: 480px) {
    .rs-post-video-five .rs-video-play-btn {
        top: 80px;
    }
}

/*----------------------------------------*/

/*  4.2 ad banner css
/*----------------------------------------*/

.rs-ad-banner-one .rs-ad-banner-thumb img {
    width: 100%;
}

[rs-theme=rs-theme-dark] .rs-ad-banner-one {
    background: var(--rs-bg-primary);
}

[rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space {
    padding-bottom: 0;
    padding-top: 80px;
}

@media only screen and (max-width: 767px) {
    [rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 480px) {
    [rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space {
        padding-top: 60px;
    }
}

[rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space-two {
    padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    [rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space-two {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 480px) {
    [rs-theme=rs-theme-dark] .rs-ad-banner-one.has-space-two {
        padding-bottom: 60px;
    }
}

/*----------------------------------------*/

/*  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: #FFF5F5 !important;
    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: rgba(0, 0, 0, 0.4);
    /* Subtle dark overlay for readability */
    z-index: -1;
    border-radius: 3px;
    transition: all 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-theme-primary);
    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.2;
    background: rgba(0, 0, 0, 0.2);
}

.rs-categories-one ul li .rs-categories-bg-thumb:hover::after {
    opacity: 0;
}

.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: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.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
/*----------------------------------------*/

.rs-social-one {
    background: #FFF5F5 !important;
    border: 1px solid var(--rs-border-primary);
    padding: 20px 30px 30px 30px;
    border-radius: 8px;
}

@media only screen and (max-width: 1600px) {
    .rs-social-one {
        padding: 10px 20px 20px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .rs-social-one {
        padding: 20px 30px 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .rs-social-one {
        padding: 10px 20px 20px 20px;
    }
}

.rs-social-one .rs-social-wrapper li {
    list-style: none;
}

.rs-social-one .rs-social-wrapper li:not(:last-child) {
    margin-bottom: 12px;
}

.rs-social-one .rs-social-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-social-one .rs-social-item a {
    display: flex;
    align-items: center;
    background: var(--rs-theme-primary);
    padding: 15px;
    border-radius: 6px;
    height: 52px;
    justify-content: space-between;
}

.rs-social-one .rs-social-item:nth-child(1) a {
    background: #2264CB;
}

.rs-social-one .rs-social-item:nth-child(2) a {
    background: #121213;
}

.rs-social-one .rs-social-item:nth-child(3) a {
    background: #F53E82;
}

.rs-social-one .rs-social-item:nth-child(4) a {
    background: #AF091C;
}

.rs-social-one .rs-social-item:nth-child(5) a {
    background: #0077B5;
}

.rs-social-one .rs-social-item:nth-child(6) a {
    background: #E1306C;
}

.rs-social-one .rs-social-name {
    color: var(--rs-white);
    font-size: 16px;
    font-weight: 500;
}

.rs-social-one .rs-social-icon {
    line-height: 1;
}

.rs-social-one .rs-social-icon svg {
    width: 18px;
    height: 18px;
}

.rs-social-one .rs-social-count {
    color: var(--rs-white);
    font-size: 16px;
    font-weight: 500;
}

/*----------------------------------------*/

/*  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-thumb-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media only screen and (max-width: 991px) {
    .rs-work-one .rs-work-thumb-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .rs-work-one .rs-work-thumb-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.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;
}

.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-theme-primary);
}

.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: 28px;
}

@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-theme-primary);
    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-theme-primary);
}

.policy-address p {
    font-size: 16px;
    line-height: 1.5;
}

/* =====================================================
   ALPHA NEWS - PREMIUM BRANDED REFINEMENTS
   ===================================================== */

/* Global Brand Colors */
:root {
    --brand-red: #ff0000;
    --brand-yellow: #FFDE21;
}

/* Card Hover Elevation */
.rs-post-medium-item,
.rs-post-small-item,
.rs-post-overlay {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.rs-post-medium-item:hover,
.rs-post-small-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Branded Tag Styling */
.rs-post-tag .post-tag,
.rs-post-overlay .post-tag.is-yellow {
    background: linear-gradient(45deg, var(--brand-red), var(--brand-yellow)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
}

/* Branded CTA Background */
.rs-cta-branded-bg {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9) 0%, rgba(18, 18, 19, 0.95) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ff0000'/%3E%3Cstop offset='1' stop-color='%23FFDE21'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='none' stroke='rgba(255,222,33,0.1)' stroke-width='2' d='M0 100h1600M0 200h1600M0 300h1600M0 400h1600M0 500h1600M0 600h1600M0 700h1600'/%3E%3Cpath fill='url(%23a)' fill-opacity='0.05' d='M0 0h1600v800H0z'/%3E%3Ccircle cx='800' cy='400' r='600' fill='none' stroke='rgba(255,0,0,0.1)' stroke-width='100'/%3E%3Cpath fill='none' stroke='url(%23a)' stroke-opacity='0.2' stroke-width='1' d='M-100 0l1800 800M1700 0L-100 800'/%3E%3C/svg%3E") !important;
    background-size: cover !important;
}

/* Premium Button Styling */
.rs-btn,
.header-search button,
#rs-sticky-header .rs-btn {
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
    color: #fff !important;
}

.rs-btn:hover,
.header-search button:hover {
    background-color: var(--brand-yellow) !important;
    border-color: var(--brand-yellow) !important;
    color: #000 !important;
}

/* Typography & Author Branding */
.rs-meta .meta-author {
    color: #000 !important;
    font-weight: 700 !important;
}

/* Glassmorphism for Banner Overlay */
.rs-post-overlay-content {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}